blob: e60882d6cba842af80be3abfad56eed8a3cddde4 [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) {
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000536 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000537 D->getLocation(), D->getIdentifier(),
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000538 /*PrevDecl=*/0, D->isScoped(),
539 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000540 if (D->isFixed()) {
541 if (TypeSourceInfo* TI = D->getIntegerTypeSourceInfo()) {
542 // If we have type source information for the underlying type, it means it
543 // has been explicitly set by the user. Perform substitution on it before
544 // moving on.
545 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
546 Enum->setIntegerTypeSourceInfo(SemaRef.SubstType(TI,
547 TemplateArgs,
548 UnderlyingLoc,
549 DeclarationName()));
550
551 if (!Enum->getIntegerTypeSourceInfo())
552 Enum->setIntegerType(SemaRef.Context.IntTy);
553 }
554 else {
555 assert(!D->getIntegerType()->isDependentType()
556 && "Dependent type without type source info");
557 Enum->setIntegerType(D->getIntegerType());
558 }
559 }
560
John McCall5b629aa2010-10-22 23:36:17 +0000561 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
562
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000563 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000564 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000565 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000566 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000567 Enum->startDefinition();
568
Douglas Gregor96084f12010-03-01 19:00:07 +0000569 if (D->getDeclContext()->isFunctionOrMethod())
570 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
571
John McCalld226f652010-08-21 09:40:31 +0000572 llvm::SmallVector<Decl*, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000573
574 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000575 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
576 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000577 EC != ECEnd; ++EC) {
578 // The specified value for the enumerator.
John McCall60d7b3a2010-08-24 06:29:42 +0000579 ExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000580 if (Expr *UninstValue = EC->getInitExpr()) {
581 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000582 EnterExpressionEvaluationContext Unevaluated(SemaRef,
John McCallf312b1e2010-08-26 23:41:50 +0000583 Sema::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000584
John McCallce3ff2b2009-08-25 22:02:44 +0000585 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000586 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000587
588 // Drop the initial value and continue.
589 bool isInvalid = false;
590 if (Value.isInvalid()) {
591 Value = SemaRef.Owned((Expr *)0);
592 isInvalid = true;
593 }
594
Mike Stump1eb44332009-09-09 15:08:12 +0000595 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000596 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
597 EC->getLocation(), EC->getIdentifier(),
John McCall9ae2f072010-08-23 23:25:46 +0000598 Value.get());
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000599
600 if (isInvalid) {
601 if (EnumConst)
602 EnumConst->setInvalidDecl();
603 Enum->setInvalidDecl();
604 }
605
606 if (EnumConst) {
John McCall5b629aa2010-10-22 23:36:17 +0000607 SemaRef.InstantiateAttrs(TemplateArgs, *EC, EnumConst);
608
John McCall3b85ecf2010-01-23 22:37:59 +0000609 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000610 Enum->addDecl(EnumConst);
John McCalld226f652010-08-21 09:40:31 +0000611 Enumerators.push_back(EnumConst);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000612 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000613
614 if (D->getDeclContext()->isFunctionOrMethod()) {
615 // If the enumeration is within a function or method, record the enum
616 // constant as a local.
617 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
618 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000619 }
620 }
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000622 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000623 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000624 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
John McCalld226f652010-08-21 09:40:31 +0000625 Enum,
Eli Friedmande7a0fc2010-08-15 02:27:09 +0000626 Enumerators.data(), Enumerators.size(),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000627 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000628
629 return Enum;
630}
631
Douglas Gregor6477b692009-03-25 15:04:13 +0000632Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
633 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
634 return 0;
635}
636
John McCalle29ba202009-08-20 01:44:21 +0000637Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000638 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
639
Douglas Gregor550d9b22009-10-31 17:21:17 +0000640 // Create a local instantiation scope for this class template, which
641 // will contain the instantiations of the template parameters.
John McCall2a7fb272010-08-25 05:32:35 +0000642 LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000643 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000644 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000645 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000646 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000647
648 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000649
650 // Instantiate the qualifier. We have to do this first in case
651 // we're a friend declaration, because if we are then we need to put
652 // the new declaration in the appropriate context.
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000653 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
654 if (QualifierLoc) {
655 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
656 TemplateArgs);
657 if (!QualifierLoc)
658 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000659 }
660
661 CXXRecordDecl *PrevDecl = 0;
662 ClassTemplateDecl *PrevClassTemplate = 0;
663
Nick Lewycky37574f52010-11-08 23:29:42 +0000664 if (!isFriend && Pattern->getPreviousDeclaration()) {
665 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
666 if (Found.first != Found.second) {
667 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(*Found.first);
668 if (PrevClassTemplate)
669 PrevDecl = PrevClassTemplate->getTemplatedDecl();
670 }
671 }
672
John McCall93ba8572010-03-25 06:39:04 +0000673 // If this isn't a friend, then it's a member template, in which
674 // case we just want to build the instantiation in the
675 // specialization. If it is a friend, we want to build it in
676 // the appropriate context.
677 DeclContext *DC = Owner;
678 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000679 if (QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000680 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000681 SS.Adopt(QualifierLoc);
John McCall93ba8572010-03-25 06:39:04 +0000682 DC = SemaRef.computeDeclContext(SS);
683 if (!DC) return 0;
684 } else {
685 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
686 Pattern->getDeclContext(),
687 TemplateArgs);
688 }
689
690 // Look for a previous declaration of the template in the owning
691 // context.
692 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
693 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
694 SemaRef.LookupQualifiedName(R, DC);
695
696 if (R.isSingleResult()) {
697 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
698 if (PrevClassTemplate)
699 PrevDecl = PrevClassTemplate->getTemplatedDecl();
700 }
701
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000702 if (!PrevClassTemplate && QualifierLoc) {
John McCall93ba8572010-03-25 06:39:04 +0000703 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000704 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000705 << QualifierLoc.getSourceRange();
John McCall93ba8572010-03-25 06:39:04 +0000706 return 0;
707 }
708
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000709 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000710 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000711 bool Complain = true;
712
713 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
714 // template for struct std::tr1::__detail::_Map_base, where the
715 // template parameters of the friend declaration don't match the
716 // template parameters of the original declaration. In this one
717 // case, we don't complain about the ill-formed friend
718 // declaration.
719 if (isFriend && Pattern->getIdentifier() &&
720 Pattern->getIdentifier()->isStr("_Map_base") &&
721 DC->isNamespace() &&
722 cast<NamespaceDecl>(DC)->getIdentifier() &&
723 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
724 DeclContext *DCParent = DC->getParent();
725 if (DCParent->isNamespace() &&
726 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
727 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
728 DeclContext *DCParent2 = DCParent->getParent();
729 if (DCParent2->isNamespace() &&
730 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
731 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
732 DCParent2->getParent()->isTranslationUnit())
733 Complain = false;
734 }
735 }
736
John McCall93ba8572010-03-25 06:39:04 +0000737 TemplateParameterList *PrevParams
738 = PrevClassTemplate->getTemplateParameters();
739
740 // Make sure the parameter lists match.
741 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000742 Complain,
743 Sema::TPL_TemplateMatch)) {
744 if (Complain)
745 return 0;
746
747 AdoptedPreviousTemplateParams = true;
748 InstParams = PrevParams;
749 }
John McCall93ba8572010-03-25 06:39:04 +0000750
751 // Do some additional validation, then merge default arguments
752 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000753 if (!AdoptedPreviousTemplateParams &&
754 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000755 Sema::TPC_ClassTemplate))
756 return 0;
757 }
758 }
759
John McCalle29ba202009-08-20 01:44:21 +0000760 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000761 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000762 Pattern->getLocStart(), Pattern->getLocation(),
763 Pattern->getIdentifier(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000764 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000765
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000766 if (QualifierLoc)
767 RecordInst->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +0000768
John McCalle29ba202009-08-20 01:44:21 +0000769 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000770 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
771 D->getIdentifier(), InstParams, RecordInst,
772 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000773 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000774
John McCall93ba8572010-03-25 06:39:04 +0000775 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000776 if (PrevClassTemplate)
777 Inst->setAccess(PrevClassTemplate->getAccess());
778 else
779 Inst->setAccess(D->getAccess());
780
John McCall93ba8572010-03-25 06:39:04 +0000781 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
782 // TODO: do we want to track the instantiation progeny of this
783 // friend target decl?
784 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000785 Inst->setAccess(D->getAccess());
Nick Lewycky37574f52010-11-08 23:29:42 +0000786 if (!PrevClassTemplate)
787 Inst->setInstantiatedFromMemberTemplate(D);
John McCall93ba8572010-03-25 06:39:04 +0000788 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000789
790 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000791 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor24bae922010-07-08 18:37:38 +0000792 Inst->getInjectedClassNameSpecialization());
John McCallea7390c2010-04-08 20:25:50 +0000793
Douglas Gregor259571e2009-10-30 22:42:42 +0000794 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000795 if (isFriend) {
796 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000797 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000798 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000799
John McCalle29ba202009-08-20 01:44:21 +0000800 Owner->addDecl(Inst);
Douglas Gregord65587f2010-11-10 19:44:59 +0000801
802 if (!PrevClassTemplate) {
803 // Queue up any out-of-line partial specializations of this member
804 // class template; the client will force their instantiation once
805 // the enclosing class has been instantiated.
806 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
807 D->getPartialSpecializations(PartialSpecs);
808 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
809 if (PartialSpecs[I]->isOutOfLine())
810 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
811 }
812
John McCalle29ba202009-08-20 01:44:21 +0000813 return Inst;
814}
815
Douglas Gregord60e1052009-08-27 16:57:43 +0000816Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000817TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
818 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000819 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
820
821 // Lookup the already-instantiated declaration in the instantiation
822 // of the class template and return that.
823 DeclContext::lookup_result Found
824 = Owner->lookup(ClassTemplate->getDeclName());
825 if (Found.first == Found.second)
826 return 0;
827
828 ClassTemplateDecl *InstClassTemplate
829 = dyn_cast<ClassTemplateDecl>(*Found.first);
830 if (!InstClassTemplate)
831 return 0;
832
Douglas Gregord65587f2010-11-10 19:44:59 +0000833 if (ClassTemplatePartialSpecializationDecl *Result
834 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
835 return Result;
836
837 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000838}
839
840Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000841TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000842 // Create a local instantiation scope for this function template, which
843 // will contain the instantiations of the template parameters and then get
844 // merged with the local instantiation scope for the function template
845 // itself.
John McCall2a7fb272010-08-25 05:32:35 +0000846 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000847
Douglas Gregord60e1052009-08-27 16:57:43 +0000848 TemplateParameterList *TempParams = D->getTemplateParameters();
849 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000850 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000851 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000852
Douglas Gregora735b202009-10-13 14:39:41 +0000853 FunctionDecl *Instantiated = 0;
854 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
855 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
856 InstParams));
857 else
858 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
859 D->getTemplatedDecl(),
860 InstParams));
861
862 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000863 return 0;
864
John McCall46460a62010-01-20 21:53:11 +0000865 Instantiated->setAccess(D->getAccess());
866
Mike Stump1eb44332009-09-09 15:08:12 +0000867 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000868 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000869 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000870 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000871 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000872 assert(InstTemplate &&
873 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000874
John McCallb1a56e72010-03-26 23:10:15 +0000875 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
876
John McCalle976ffe2009-12-14 23:19:40 +0000877 // Link the instantiation back to the pattern *unless* this is a
878 // non-definition friend declaration.
879 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000880 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000881 InstTemplate->setInstantiatedFromMemberTemplate(D);
882
John McCallb1a56e72010-03-26 23:10:15 +0000883 // Make declarations visible in the appropriate context.
884 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000885 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000886
Douglas Gregord60e1052009-08-27 16:57:43 +0000887 return InstTemplate;
888}
889
Douglas Gregord475b8d2009-03-25 21:17:03 +0000890Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
891 CXXRecordDecl *PrevDecl = 0;
892 if (D->isInjectedClassName())
893 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000894 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000895 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
896 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000897 TemplateArgs);
898 if (!Prev) return 0;
899 PrevDecl = cast<CXXRecordDecl>(Prev);
900 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000901
902 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000903 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +0000904 D->getLocStart(), D->getLocation(),
905 D->getIdentifier(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000906
907 // Substitute the nested name specifier, if any.
908 if (SubstQualifier(D, Record))
909 return 0;
910
Douglas Gregord475b8d2009-03-25 21:17:03 +0000911 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000912 // FIXME: Check against AS_none is an ugly hack to work around the issue that
913 // the tag decls introduced by friend class declarations don't have an access
914 // specifier. Remove once this area of the code gets sorted out.
915 if (D->getAccess() != AS_none)
916 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000917 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000918 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000919
John McCall02cace72009-08-28 07:59:38 +0000920 // If the original function was part of a friend declaration,
921 // inherit its namespace state.
922 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
923 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
924
Douglas Gregor9901c572010-05-21 00:31:19 +0000925 // Make sure that anonymous structs and unions are recorded.
926 if (D->isAnonymousStructOrUnion()) {
927 Record->setAnonymousStructOrUnion(true);
Sebastian Redl7a126a42010-08-31 00:36:30 +0000928 if (Record->getDeclContext()->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor9901c572010-05-21 00:31:19 +0000929 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
930 }
Anders Carlssond8b285f2009-09-01 04:26:58 +0000931
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000932 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000933 return Record;
934}
935
John McCall02cace72009-08-28 07:59:38 +0000936/// Normal class members are of more specific types and therefore
937/// don't make it here. This function serves two purposes:
938/// 1) instantiating function templates
939/// 2) substituting friend declarations
940/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000941Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000942 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000943 // Check whether there is already a function template specialization for
944 // this declaration.
945 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
946 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +0000947 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor24bae922010-07-08 18:37:38 +0000948 std::pair<const TemplateArgument *, unsigned> Innermost
949 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +0000950
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000951 FunctionDecl *SpecFunc
952 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
953 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000954
Douglas Gregor127102b2009-06-29 20:59:39 +0000955 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000956 if (SpecFunc)
957 return SpecFunc;
Douglas Gregor127102b2009-06-29 20:59:39 +0000958 }
Mike Stump1eb44332009-09-09 15:08:12 +0000959
John McCallb0cb0222010-03-27 05:57:59 +0000960 bool isFriend;
961 if (FunctionTemplate)
962 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
963 else
964 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
965
Douglas Gregor79c22782010-01-16 20:21:20 +0000966 bool MergeWithParentScope = (TemplateParams != 0) ||
Douglas Gregorb212d9a2010-05-21 21:25:08 +0000967 Owner->isFunctionOrMethod() ||
Douglas Gregor79c22782010-01-16 20:21:20 +0000968 !(isa<Decl>(Owner) &&
969 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +0000970 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000971
Douglas Gregore53060f2009-06-25 22:08:12 +0000972 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +0000973 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
974 TInfo = SubstFunctionType(D, Params);
975 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000976 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +0000977 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +0000978
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000979 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
980 if (QualifierLoc) {
981 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
982 TemplateArgs);
983 if (!QualifierLoc)
984 return 0;
John McCalld325daa2010-03-26 04:53:08 +0000985 }
986
John McCall68b6b872010-02-06 01:50:47 +0000987 // If we're instantiating a local function declaration, put the result
988 // in the owner; otherwise we need to find the instantiated context.
989 DeclContext *DC;
990 if (D->getDeclContext()->isFunctionOrMethod())
991 DC = Owner;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000992 else if (isFriend && QualifierLoc) {
John McCalld325daa2010-03-26 04:53:08 +0000993 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +0000994 SS.Adopt(QualifierLoc);
John McCalld325daa2010-03-26 04:53:08 +0000995 DC = SemaRef.computeDeclContext(SS);
996 if (!DC) return 0;
997 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000998 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
999 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +00001000 }
John McCall68b6b872010-02-06 01:50:47 +00001001
John McCall02cace72009-08-28 07:59:38 +00001002 FunctionDecl *Function =
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001003 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
1004 D->getLocation(), D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001005 D->getStorageClass(), D->getStorageClassAsWritten(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001006 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +00001007
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001008 if (QualifierLoc)
1009 Function->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001010
John McCallb1a56e72010-03-26 23:10:15 +00001011 DeclContext *LexicalDC = Owner;
1012 if (!isFriend && D->isOutOfLine()) {
1013 assert(D->getDeclContext()->isFileContext());
1014 LexicalDC = D->getDeclContext();
1015 }
1016
1017 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +00001018
Douglas Gregore53060f2009-06-25 22:08:12 +00001019 // Attach the parameters
1020 for (unsigned P = 0; P < Params.size(); ++P)
John McCall3019c442010-09-17 00:50:28 +00001021 if (Params[P])
1022 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +00001023 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +00001024
Douglas Gregorac7c2c82010-05-17 16:38:00 +00001025 SourceLocation InstantiateAtPOI;
Douglas Gregora735b202009-10-13 14:39:41 +00001026 if (TemplateParams) {
1027 // Our resulting instantiation is actually a function template, since we
1028 // are substituting only the outer template parameters. For example, given
1029 //
1030 // template<typename T>
1031 // struct X {
1032 // template<typename U> friend void f(T, U);
1033 // };
1034 //
1035 // X<int> x;
1036 //
1037 // We are instantiating the friend function template "f" within X<int>,
1038 // which means substituting int for T, but leaving "f" as a friend function
1039 // template.
1040 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001041 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001042 Function->getLocation(),
1043 Function->getDeclName(),
1044 TemplateParams, Function);
1045 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001046
1047 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001048
1049 if (isFriend && D->isThisDeclarationADefinition()) {
1050 // TODO: should we remember this connection regardless of whether
1051 // the friend declaration provided a body?
1052 FunctionTemplate->setInstantiatedFromMemberTemplate(
1053 D->getDescribedFunctionTemplate());
1054 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001055 } else if (FunctionTemplate) {
1056 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001057 std::pair<const TemplateArgument *, unsigned> Innermost
1058 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001059 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001060 TemplateArgumentList::CreateCopy(SemaRef.Context,
Douglas Gregor24bae922010-07-08 18:37:38 +00001061 Innermost.first,
1062 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001063 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001064 } else if (isFriend && D->isThisDeclarationADefinition()) {
1065 // TODO: should we remember this connection regardless of whether
1066 // the friend declaration provided a body?
1067 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001068 }
Douglas Gregora735b202009-10-13 14:39:41 +00001069
Douglas Gregore53060f2009-06-25 22:08:12 +00001070 if (InitFunctionInstantiation(Function, D))
1071 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001072
Douglas Gregore53060f2009-06-25 22:08:12 +00001073 bool Redeclaration = false;
John McCallaf2094e2010-04-08 09:05:18 +00001074 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001075
John McCall68263142009-11-18 22:49:29 +00001076 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1077 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1078
John McCallaf2094e2010-04-08 09:05:18 +00001079 if (DependentFunctionTemplateSpecializationInfo *Info
1080 = D->getDependentSpecializationInfo()) {
1081 assert(isFriend && "non-friend has dependent specialization info?");
1082
1083 // This needs to be set now for future sanity.
1084 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1085
1086 // Instantiate the explicit template arguments.
1087 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1088 Info->getRAngleLoc());
Douglas Gregore02e2622010-12-22 21:19:48 +00001089 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1090 ExplicitArgs, TemplateArgs))
1091 return 0;
John McCallaf2094e2010-04-08 09:05:18 +00001092
1093 // Map the candidate templates to their instantiations.
1094 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1095 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1096 Info->getTemplate(I),
1097 TemplateArgs);
1098 if (!Temp) return 0;
1099
1100 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1101 }
1102
1103 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1104 &ExplicitArgs,
1105 Previous))
1106 Function->setInvalidDecl();
1107
1108 isExplicitSpecialization = true;
1109
1110 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001111 // Look only into the namespace where the friend would be declared to
1112 // find a previous declaration. This is the innermost enclosing namespace,
1113 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001114 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001115
Douglas Gregora735b202009-10-13 14:39:41 +00001116 // In C++, the previous declaration we find might be a tag type
1117 // (class or enum). In this case, the new declaration will hide the
1118 // tag type. Note that this does does not apply if we're declaring a
1119 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001120 if (Previous.isSingleTagDecl())
1121 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001122 }
1123
John McCall9f54ad42009-12-10 09:41:52 +00001124 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
Peter Collingbournec80e8112011-01-21 02:08:54 +00001125 isExplicitSpecialization, Redeclaration);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001126
John McCall76d32642010-04-24 01:30:58 +00001127 NamedDecl *PrincipalDecl = (TemplateParams
1128 ? cast<NamedDecl>(FunctionTemplate)
1129 : Function);
1130
Douglas Gregora735b202009-10-13 14:39:41 +00001131 // If the original function was part of a friend declaration,
1132 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001133 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001134 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001135 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001136 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001137 else
Douglas Gregora735b202009-10-13 14:39:41 +00001138 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001139
1140 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1141 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Gabor Greifab297ac2010-08-30 21:10:05 +00001142
Gabor Greif77535df2010-08-30 22:25:56 +00001143 bool queuedInstantiation = false;
Gabor Greifab297ac2010-08-30 21:10:05 +00001144
Douglas Gregor238058c2010-05-18 05:45:02 +00001145 if (!SemaRef.getLangOptions().CPlusPlus0x &&
1146 D->isThisDeclarationADefinition()) {
1147 // Check for a function body.
1148 const FunctionDecl *Definition = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001149 if (Function->hasBody(Definition) &&
Douglas Gregor238058c2010-05-18 05:45:02 +00001150 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
1151 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1152 << Function->getDeclName();
1153 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
1154 Function->setInvalidDecl();
1155 }
1156 // Check for redefinitions due to other instantiations of this or
1157 // a similar friend function.
1158 else for (FunctionDecl::redecl_iterator R = Function->redecls_begin(),
1159 REnd = Function->redecls_end();
1160 R != REnd; ++R) {
Gabor Greif13a8aff2010-08-28 15:42:30 +00001161 if (*R == Function)
1162 continue;
Gabor Greifab297ac2010-08-30 21:10:05 +00001163 switch (R->getFriendObjectKind()) {
1164 case Decl::FOK_None:
1165 if (!queuedInstantiation && R->isUsed(false)) {
1166 if (MemberSpecializationInfo *MSInfo
1167 = Function->getMemberSpecializationInfo()) {
1168 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1169 SourceLocation Loc = R->getLocation(); // FIXME
1170 MSInfo->setPointOfInstantiation(Loc);
1171 SemaRef.PendingLocalImplicitInstantiations.push_back(
1172 std::make_pair(Function, Loc));
1173 queuedInstantiation = true;
1174 }
1175 }
1176 }
1177 break;
1178 default:
Douglas Gregor238058c2010-05-18 05:45:02 +00001179 if (const FunctionDecl *RPattern
Gabor Greif6a557d82010-08-28 15:46:56 +00001180 = R->getTemplateInstantiationPattern())
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00001181 if (RPattern->hasBody(RPattern)) {
Douglas Gregor238058c2010-05-18 05:45:02 +00001182 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1183 << Function->getDeclName();
Gabor Greif6a557d82010-08-28 15:46:56 +00001184 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregor238058c2010-05-18 05:45:02 +00001185 Function->setInvalidDecl();
1186 break;
1187 }
1188 }
1189 }
1190 }
Douglas Gregora735b202009-10-13 14:39:41 +00001191 }
1192
John McCall76d32642010-04-24 01:30:58 +00001193 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1194 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1195 PrincipalDecl->setNonMemberOperator();
1196
Douglas Gregore53060f2009-06-25 22:08:12 +00001197 return Function;
1198}
1199
Douglas Gregord60e1052009-08-27 16:57:43 +00001200Decl *
1201TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1202 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001203 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1204 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001205 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001206 // We are creating a function template specialization from a function
1207 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001208 // specialization for this particular set of template arguments.
Douglas Gregor24bae922010-07-08 18:37:38 +00001209 std::pair<const TemplateArgument *, unsigned> Innermost
1210 = TemplateArgs.getInnermost();
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001212 FunctionDecl *SpecFunc
1213 = FunctionTemplate->findSpecialization(Innermost.first, Innermost.second,
1214 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001215
Douglas Gregor6b906862009-08-21 00:16:32 +00001216 // If we already have a function template specialization, return it.
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +00001217 if (SpecFunc)
1218 return SpecFunc;
Douglas Gregor6b906862009-08-21 00:16:32 +00001219 }
1220
John McCallb0cb0222010-03-27 05:57:59 +00001221 bool isFriend;
1222 if (FunctionTemplate)
1223 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1224 else
1225 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1226
Douglas Gregor79c22782010-01-16 20:21:20 +00001227 bool MergeWithParentScope = (TemplateParams != 0) ||
1228 !(isa<Decl>(Owner) &&
1229 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall2a7fb272010-08-25 05:32:35 +00001230 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001231
John McCall4eab39f2010-10-19 02:26:41 +00001232 // Instantiate enclosing template arguments for friends.
1233 llvm::SmallVector<TemplateParameterList *, 4> TempParamLists;
1234 unsigned NumTempParamLists = 0;
1235 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1236 TempParamLists.set_size(NumTempParamLists);
1237 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1238 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1239 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1240 if (!InstParams)
1241 return NULL;
1242 TempParamLists[I] = InstParams;
1243 }
1244 }
1245
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001246 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001247 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1248 TInfo = SubstFunctionType(D, Params);
1249 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001250 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001251 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001252
Abramo Bagnara723df242010-12-14 22:11:44 +00001253 // \brief If the type of this function, after ignoring parentheses,
1254 // is not *directly* a function type, then we're instantiating a function
1255 // that was declared via a typedef, e.g.,
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001256 //
1257 // typedef int functype(int, int);
1258 // functype func;
1259 //
1260 // In this case, we'll just go instantiate the ParmVarDecls that we
1261 // synthesized in the method declaration.
Abramo Bagnara723df242010-12-14 22:11:44 +00001262 if (!isa<FunctionProtoType>(T.IgnoreParens())) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001263 assert(!Params.size() && "Instantiating type could not yield parameters");
Douglas Gregor12c9c002011-01-07 16:43:16 +00001264 llvm::SmallVector<QualType, 4> ParamTypes;
1265 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
1266 D->getNumParams(), TemplateArgs, ParamTypes,
1267 &Params))
1268 return 0;
Douglas Gregor5f970ee2010-05-04 18:18:31 +00001269 }
1270
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001271 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1272 if (QualifierLoc) {
1273 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCallb0cb0222010-03-27 05:57:59 +00001274 TemplateArgs);
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001275 if (!QualifierLoc)
1276 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001277 }
1278
1279 DeclContext *DC = Owner;
1280 if (isFriend) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001281 if (QualifierLoc) {
John McCallb0cb0222010-03-27 05:57:59 +00001282 CXXScopeSpec SS;
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001283 SS.Adopt(QualifierLoc);
John McCallb0cb0222010-03-27 05:57:59 +00001284 DC = SemaRef.computeDeclContext(SS);
John McCallc54d6882010-10-19 05:01:53 +00001285
1286 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
1287 return 0;
John McCallb0cb0222010-03-27 05:57:59 +00001288 } else {
1289 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1290 D->getDeclContext(),
1291 TemplateArgs);
1292 }
1293 if (!DC) return 0;
1294 }
1295
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001296 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001297 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001298 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001299
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001300 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnara25777432010-08-11 22:01:17 +00001301 DeclarationNameInfo NameInfo
1302 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001303 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001304 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001305 StartLoc, NameInfo, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001306 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001307 Constructor->isInlineSpecified(),
1308 false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001309 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001310 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001311 StartLoc, NameInfo, T, TInfo,
Abramo Bagnara25777432010-08-11 22:01:17 +00001312 Destructor->isInlineSpecified(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001313 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001314 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001315 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001316 StartLoc, NameInfo, T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001317 Conversion->isInlineSpecified(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001318 Conversion->isExplicit(),
1319 Conversion->getLocEnd());
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(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001325 D->isInlineSpecified(),
1326 D->getLocEnd());
Douglas Gregordec06662009-08-21 18:42:58 +00001327 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001328
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00001329 if (QualifierLoc)
1330 Method->setQualifierInfo(QualifierLoc);
John McCallb6217662010-03-15 10:12:16 +00001331
Douglas Gregord60e1052009-08-27 16:57:43 +00001332 if (TemplateParams) {
1333 // Our resulting instantiation is actually a function template, since we
1334 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001335 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001336 // template<typename T>
1337 // struct X {
1338 // template<typename U> void f(T, U);
1339 // };
1340 //
1341 // X<int> x;
1342 //
1343 // We are instantiating the member template "f" within X<int>, which means
1344 // substituting int for T, but leaving "f" as a member function template.
1345 // Build the function template itself.
1346 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1347 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001348 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001349 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001350 if (isFriend) {
1351 FunctionTemplate->setLexicalDeclContext(Owner);
1352 FunctionTemplate->setObjectOfFriendDecl(true);
1353 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001354 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001355 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001356 } else if (FunctionTemplate) {
1357 // Record this function template specialization.
Douglas Gregor24bae922010-07-08 18:37:38 +00001358 std::pair<const TemplateArgument *, unsigned> Innermost
1359 = TemplateArgs.getInnermost();
Douglas Gregor838db382010-02-11 01:19:42 +00001360 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001361 TemplateArgumentList::CreateCopy(SemaRef.Context,
1362 Innermost.first,
1363 Innermost.second),
Douglas Gregor66724ea2009-11-14 01:20:54 +00001364 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001365 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001366 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001367 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001368 }
1369
Mike Stump1eb44332009-09-09 15:08:12 +00001370 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001371 // out-of-line, the instantiation will have the same lexical
1372 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001373 if (isFriend) {
John McCall4eab39f2010-10-19 02:26:41 +00001374 if (NumTempParamLists)
1375 Method->setTemplateParameterListsInfo(SemaRef.Context,
1376 NumTempParamLists,
1377 TempParamLists.data());
1378
John McCallb0cb0222010-03-27 05:57:59 +00001379 Method->setLexicalDeclContext(Owner);
1380 Method->setObjectOfFriendDecl(true);
1381 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001382 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001383
Douglas Gregor5545e162009-03-24 00:38:23 +00001384 // Attach the parameters
1385 for (unsigned P = 0; P < Params.size(); ++P)
1386 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001387 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001388
1389 if (InitMethodInstantiation(Method, D))
1390 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001391
Abramo Bagnara25777432010-08-11 22:01:17 +00001392 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1393 Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001394
John McCallb0cb0222010-03-27 05:57:59 +00001395 if (!FunctionTemplate || TemplateParams || isFriend) {
1396 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001397
Douglas Gregordec06662009-08-21 18:42:58 +00001398 // In C++, the previous declaration we find might be a tag type
1399 // (class or enum). In this case, the new declaration will hide the
1400 // tag type. Note that this does does not apply if we're declaring a
1401 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001402 if (Previous.isSingleTagDecl())
1403 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001404 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001405
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001406 bool Redeclaration = false;
Peter Collingbournec80e8112011-01-21 02:08:54 +00001407 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001408
Douglas Gregor4ba31362009-12-01 17:24:26 +00001409 if (D->isPure())
1410 SemaRef.CheckPureMethod(Method, SourceRange());
1411
John McCall46460a62010-01-20 21:53:11 +00001412 Method->setAccess(D->getAccess());
1413
Anders Carlsson9eefa222011-01-20 06:52:44 +00001414 SemaRef.CheckOverrideControl(Method);
1415
John McCallb0cb0222010-03-27 05:57:59 +00001416 if (FunctionTemplate) {
1417 // If there's a function template, let our caller handle it.
1418 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1419 // Don't hide a (potentially) valid declaration with an invalid one.
1420 } else {
1421 NamedDecl *DeclToAdd = (TemplateParams
1422 ? cast<NamedDecl>(FunctionTemplate)
1423 : Method);
1424 if (isFriend)
1425 Record->makeDeclVisibleInContext(DeclToAdd);
1426 else
1427 Owner->addDecl(DeclToAdd);
1428 }
Argyrios Kyrtzidisbbc64542010-08-15 01:15:20 +00001429
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001430 return Method;
1431}
1432
Douglas Gregor615c5d42009-03-24 16:43:20 +00001433Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001434 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001435}
1436
Douglas Gregor03b2b072009-03-24 00:15:49 +00001437Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001438 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001439}
1440
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001441Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001442 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001443}
1444
Douglas Gregor6477b692009-03-25 15:04:13 +00001445ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregor6a24bfd2011-01-14 22:40:04 +00001446 return SemaRef.SubstParmVarDecl(D, TemplateArgs, llvm::Optional<unsigned>());
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001447}
1448
John McCalle29ba202009-08-20 01:44:21 +00001449Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1450 TemplateTypeParmDecl *D) {
1451 // TODO: don't always clone when decls are refcounted.
Douglas Gregorefed5c82010-06-16 15:23:05 +00001452 const Type* T = D->getTypeForDecl();
1453 assert(T->isTemplateTypeParmType());
1454 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001455
John McCalle29ba202009-08-20 01:44:21 +00001456 TemplateTypeParmDecl *Inst =
Abramo Bagnara344577e2011-03-06 15:48:19 +00001457 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1458 D->getLocStart(), D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001459 TTPT->getDepth() - TemplateArgs.getNumLevels(),
Nick Lewycky61139c52010-10-30 06:48:20 +00001460 TTPT->getIndex(), D->getIdentifier(),
John McCalle29ba202009-08-20 01:44:21 +00001461 D->wasDeclaredWithTypename(),
1462 D->isParameterPack());
Douglas Gregor9a299e02011-03-04 17:52:15 +00001463 Inst->setAccess(AS_public);
1464
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001465 if (D->hasDefaultArgument())
1466 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001467
Douglas Gregor550d9b22009-10-31 17:21:17 +00001468 // Introduce this template parameter's instantiation into the instantiation
1469 // scope.
1470 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1471
John McCalle29ba202009-08-20 01:44:21 +00001472 return Inst;
1473}
1474
Douglas Gregor33642df2009-10-23 23:25:44 +00001475Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1476 NonTypeTemplateParmDecl *D) {
1477 // Substitute into the type of the non-type template parameter.
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001478 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
1479 llvm::SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1480 llvm::SmallVector<QualType, 4> ExpandedParameterPackTypes;
1481 bool IsExpandedParameterPack = false;
1482 TypeSourceInfo *DI;
Douglas Gregor33642df2009-10-23 23:25:44 +00001483 QualType T;
Douglas Gregor33642df2009-10-23 23:25:44 +00001484 bool Invalid = false;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001485
1486 if (D->isExpandedParameterPack()) {
1487 // The non-type template parameter pack is an already-expanded pack
1488 // expansion of types. Substitute into each of the expanded types.
1489 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1490 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1491 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1492 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1493 TemplateArgs,
1494 D->getLocation(),
1495 D->getDeclName());
1496 if (!NewDI)
1497 return 0;
1498
1499 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1500 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1501 D->getLocation());
1502 if (NewT.isNull())
1503 return 0;
1504 ExpandedParameterPackTypes.push_back(NewT);
1505 }
1506
1507 IsExpandedParameterPack = true;
1508 DI = D->getTypeSourceInfo();
1509 T = DI->getType();
1510 } else if (isa<PackExpansionTypeLoc>(TL)) {
1511 // The non-type template parameter pack's type is a pack expansion of types.
1512 // Determine whether we need to expand this parameter pack into separate
1513 // types.
1514 PackExpansionTypeLoc Expansion = cast<PackExpansionTypeLoc>(TL);
1515 TypeLoc Pattern = Expansion.getPatternLoc();
1516 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
1517 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
1518
1519 // Determine whether the set of unexpanded parameter packs can and should
1520 // be expanded.
1521 bool Expand = true;
1522 bool RetainExpansion = false;
1523 llvm::Optional<unsigned> OrigNumExpansions
1524 = Expansion.getTypePtr()->getNumExpansions();
1525 llvm::Optional<unsigned> NumExpansions = OrigNumExpansions;
1526 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1527 Pattern.getSourceRange(),
1528 Unexpanded.data(),
1529 Unexpanded.size(),
1530 TemplateArgs,
1531 Expand, RetainExpansion,
1532 NumExpansions))
1533 return 0;
1534
1535 if (Expand) {
1536 for (unsigned I = 0; I != *NumExpansions; ++I) {
1537 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1538 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
1539 D->getLocation(),
1540 D->getDeclName());
1541 if (!NewDI)
1542 return 0;
1543
1544 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1545 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1546 NewDI->getType(),
1547 D->getLocation());
1548 if (NewT.isNull())
1549 return 0;
1550 ExpandedParameterPackTypes.push_back(NewT);
1551 }
1552
1553 // Note that we have an expanded parameter pack. The "type" of this
1554 // expanded parameter pack is the original expansion type, but callers
1555 // will end up using the expanded parameter pack types for type-checking.
1556 IsExpandedParameterPack = true;
1557 DI = D->getTypeSourceInfo();
1558 T = DI->getType();
1559 } else {
1560 // We cannot fully expand the pack expansion now, so substitute into the
1561 // pattern and create a new pack expansion type.
1562 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1563 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
1564 D->getLocation(),
1565 D->getDeclName());
1566 if (!NewPattern)
1567 return 0;
1568
1569 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1570 NumExpansions);
1571 if (!DI)
1572 return 0;
1573
1574 T = DI->getType();
1575 }
1576 } else {
1577 // Simple case: substitution into a parameter that is not a parameter pack.
1578 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
1579 D->getLocation(), D->getDeclName());
1580 if (!DI)
1581 return 0;
1582
1583 // Check that this type is acceptable for a non-type template parameter.
1584 bool Invalid = false;
1585 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
1586 D->getLocation());
1587 if (T.isNull()) {
1588 T = SemaRef.Context.IntTy;
1589 Invalid = true;
1590 }
Douglas Gregor33642df2009-10-23 23:25:44 +00001591 }
1592
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001593 NonTypeTemplateParmDecl *Param;
1594 if (IsExpandedParameterPack)
1595 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001596 D->getInnerLocStart(),
1597 D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001598 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001599 D->getPosition(),
1600 D->getIdentifier(), T,
1601 DI,
1602 ExpandedParameterPackTypes.data(),
1603 ExpandedParameterPackTypes.size(),
1604 ExpandedParameterPackTypesAsWritten.data());
1605 else
1606 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001607 D->getInnerLocStart(),
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001608 D->getLocation(),
1609 D->getDepth() - TemplateArgs.getNumLevels(),
1610 D->getPosition(),
1611 D->getIdentifier(), T,
1612 D->isParameterPack(), DI);
1613
Douglas Gregor9a299e02011-03-04 17:52:15 +00001614 Param->setAccess(AS_public);
Douglas Gregor33642df2009-10-23 23:25:44 +00001615 if (Invalid)
1616 Param->setInvalidDecl();
1617
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001618 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001619
1620 // Introduce this template parameter's instantiation into the instantiation
1621 // scope.
1622 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001623 return Param;
1624}
1625
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001626Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001627TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1628 TemplateTemplateParmDecl *D) {
1629 // Instantiate the template parameter list of the template template parameter.
1630 TemplateParameterList *TempParams = D->getTemplateParameters();
1631 TemplateParameterList *InstParams;
1632 {
1633 // Perform the actual substitution of template parameters within a new,
1634 // local instantiation scope.
John McCall2a7fb272010-08-25 05:32:35 +00001635 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor9106ef72009-11-11 16:58:32 +00001636 InstParams = SubstTemplateParams(TempParams);
1637 if (!InstParams)
1638 return NULL;
1639 }
1640
1641 // Build the template template parameter.
1642 TemplateTemplateParmDecl *Param
1643 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor71b87e42010-08-30 23:23:59 +00001644 D->getDepth() - TemplateArgs.getNumLevels(),
Douglas Gregor61c4d282011-01-05 15:48:55 +00001645 D->getPosition(), D->isParameterPack(),
1646 D->getIdentifier(), InstParams);
Abramo Bagnarad92f7a22010-06-09 09:26:05 +00001647 Param->setDefaultArgument(D->getDefaultArgument(), false);
Douglas Gregor9a299e02011-03-04 17:52:15 +00001648 Param->setAccess(AS_public);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001649
Douglas Gregor9106ef72009-11-11 16:58:32 +00001650 // Introduce this template parameter's instantiation into the instantiation
1651 // scope.
1652 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1653
1654 return Param;
1655}
1656
Douglas Gregor48c32a72009-11-17 06:07:40 +00001657Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregordb992412011-02-25 16:33:46 +00001658 // Using directives are never dependent (and never contain any types or
1659 // expressions), so they require no explicit instantiation work.
Douglas Gregor48c32a72009-11-17 06:07:40 +00001660
1661 UsingDirectiveDecl *Inst
1662 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1663 D->getNamespaceKeyLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001664 D->getQualifierLoc(),
Douglas Gregor48c32a72009-11-17 06:07:40 +00001665 D->getIdentLocation(),
1666 D->getNominatedNamespace(),
1667 D->getCommonAncestor());
1668 Owner->addDecl(Inst);
1669 return Inst;
1670}
1671
John McCalled976492009-12-04 22:46:56 +00001672Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregor1b398202010-09-29 17:58:28 +00001673
1674 // The nested name specifier may be dependent, for example
1675 // template <typename T> struct t {
1676 // struct s1 { T f1(); };
1677 // struct s2 : s1 { using s1::f1; };
1678 // };
1679 // template struct t<int>;
1680 // Here, in using s1::f1, s1 refers to t<T>::s1;
1681 // we need to substitute for t<int>::s1.
Douglas Gregor5149f372011-02-25 15:54:31 +00001682 NestedNameSpecifierLoc QualifierLoc
1683 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1684 TemplateArgs);
1685 if (!QualifierLoc)
Douglas Gregordc355712011-02-25 00:36:19 +00001686 return 0;
Douglas Gregor1b398202010-09-29 17:58:28 +00001687
1688 // The name info is non-dependent, so no transformation
1689 // is required.
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001690 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCalled976492009-12-04 22:46:56 +00001691
John McCall9f54ad42009-12-10 09:41:52 +00001692 // We only need to do redeclaration lookups if we're in a class
1693 // scope (in fact, it's not really even possible in non-class
1694 // scopes).
1695 bool CheckRedeclaration = Owner->isRecord();
1696
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001697 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
1698 Sema::ForRedeclaration);
John McCall9f54ad42009-12-10 09:41:52 +00001699
John McCalled976492009-12-04 22:46:56 +00001700 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
John McCalled976492009-12-04 22:46:56 +00001701 D->getUsingLocation(),
Douglas Gregor5149f372011-02-25 15:54:31 +00001702 QualifierLoc,
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001703 NameInfo,
John McCalled976492009-12-04 22:46:56 +00001704 D->isTypeName());
1705
Douglas Gregor5149f372011-02-25 15:54:31 +00001706 CXXScopeSpec SS;
1707 SS.Adopt(QualifierLoc);
John McCall9f54ad42009-12-10 09:41:52 +00001708 if (CheckRedeclaration) {
1709 Prev.setHideTags(false);
1710 SemaRef.LookupQualifiedName(Prev, Owner);
1711
1712 // Check for invalid redeclarations.
1713 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1714 D->isTypeName(), SS,
1715 D->getLocation(), Prev))
1716 NewUD->setInvalidDecl();
1717
1718 }
1719
1720 if (!NewUD->isInvalidDecl() &&
1721 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001722 D->getLocation()))
1723 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001724
John McCalled976492009-12-04 22:46:56 +00001725 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1726 NewUD->setAccess(D->getAccess());
1727 Owner->addDecl(NewUD);
1728
John McCall9f54ad42009-12-10 09:41:52 +00001729 // Don't process the shadow decls for an invalid decl.
1730 if (NewUD->isInvalidDecl())
1731 return NewUD;
1732
John McCall323c3102009-12-22 22:26:37 +00001733 bool isFunctionScope = Owner->isFunctionOrMethod();
1734
John McCall9f54ad42009-12-10 09:41:52 +00001735 // Process the shadow decls.
1736 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1737 I != E; ++I) {
1738 UsingShadowDecl *Shadow = *I;
1739 NamedDecl *InstTarget =
Douglas Gregorb7107222011-03-04 19:46:35 +00001740 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
1741 Shadow->getLocation(),
1742 Shadow->getTargetDecl(),
1743 TemplateArgs));
1744 if (!InstTarget)
1745 return 0;
John McCall9f54ad42009-12-10 09:41:52 +00001746
1747 if (CheckRedeclaration &&
1748 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1749 continue;
1750
1751 UsingShadowDecl *InstShadow
1752 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1753 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001754
1755 if (isFunctionScope)
1756 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001757 }
John McCalled976492009-12-04 22:46:56 +00001758
1759 return NewUD;
1760}
1761
1762Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001763 // Ignore these; we handle them in bulk when processing the UsingDecl.
1764 return 0;
John McCalled976492009-12-04 22:46:56 +00001765}
1766
John McCall7ba107a2009-11-18 02:36:19 +00001767Decl * TemplateDeclInstantiator
1768 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001769 NestedNameSpecifierLoc QualifierLoc
1770 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
1771 TemplateArgs);
1772 if (!QualifierLoc)
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001773 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001774
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001775 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001776 SS.Adopt(QualifierLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001777
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001778 // Since NameInfo refers to a typename, it cannot be a C++ special name.
1779 // Hence, no tranformation is required for it.
1780 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump1eb44332009-09-09 15:08:12 +00001781 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001782 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001783 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001784 /*instantiation*/ true,
1785 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001786 if (UD)
John McCalled976492009-12-04 22:46:56 +00001787 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1788
John McCall7ba107a2009-11-18 02:36:19 +00001789 return UD;
1790}
1791
1792Decl * TemplateDeclInstantiator
1793 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor5149f372011-02-25 15:54:31 +00001794 NestedNameSpecifierLoc QualifierLoc
1795 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
1796 if (!QualifierLoc)
John McCall7ba107a2009-11-18 02:36:19 +00001797 return 0;
Douglas Gregor5149f372011-02-25 15:54:31 +00001798
John McCall7ba107a2009-11-18 02:36:19 +00001799 CXXScopeSpec SS;
Douglas Gregor5149f372011-02-25 15:54:31 +00001800 SS.Adopt(QualifierLoc);
John McCall7ba107a2009-11-18 02:36:19 +00001801
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001802 DeclarationNameInfo NameInfo
1803 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1804
John McCall7ba107a2009-11-18 02:36:19 +00001805 NamedDecl *UD =
1806 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001807 D->getUsingLoc(), SS, NameInfo, 0,
John McCall7ba107a2009-11-18 02:36:19 +00001808 /*instantiation*/ true,
1809 /*typename*/ false, SourceLocation());
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001810 if (UD)
John McCalled976492009-12-04 22:46:56 +00001811 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1812
Anders Carlsson0d8df782009-08-29 19:37:28 +00001813 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001814}
1815
John McCallce3ff2b2009-08-25 22:02:44 +00001816Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001817 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001818 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001819 if (D->isInvalidDecl())
1820 return 0;
1821
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001822 return Instantiator.Visit(D);
1823}
1824
John McCalle29ba202009-08-20 01:44:21 +00001825/// \brief Instantiates a nested template parameter list in the current
1826/// instantiation context.
1827///
1828/// \param L The parameter list to instantiate
1829///
1830/// \returns NULL if there was an error
1831TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001832TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001833 // Get errors for all the parameters before bailing out.
1834 bool Invalid = false;
1835
1836 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001837 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001838 ParamVector Params;
1839 Params.reserve(N);
1840 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1841 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001842 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001843 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001844 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001845 }
1846
1847 // Clean up if we had an error.
Douglas Gregorff331c12010-07-25 18:17:45 +00001848 if (Invalid)
John McCalle29ba202009-08-20 01:44:21 +00001849 return NULL;
John McCalle29ba202009-08-20 01:44:21 +00001850
1851 TemplateParameterList *InstL
1852 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1853 L->getLAngleLoc(), &Params.front(), N,
1854 L->getRAngleLoc());
1855 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001856}
John McCalle29ba202009-08-20 01:44:21 +00001857
Douglas Gregored9c0f92009-10-29 00:04:11 +00001858/// \brief Instantiate the declaration of a class template partial
1859/// specialization.
1860///
1861/// \param ClassTemplate the (instantiated) class template that is partially
1862// specialized by the instantiation of \p PartialSpec.
1863///
1864/// \param PartialSpec the (uninstantiated) class template partial
1865/// specialization that we are instantiating.
1866///
Douglas Gregord65587f2010-11-10 19:44:59 +00001867/// \returns The instantiated partial specialization, if successful; otherwise,
1868/// NULL to indicate an error.
1869ClassTemplatePartialSpecializationDecl *
Douglas Gregored9c0f92009-10-29 00:04:11 +00001870TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1871 ClassTemplateDecl *ClassTemplate,
1872 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001873 // Create a local instantiation scope for this class template partial
1874 // specialization, which will contain the instantiations of the template
1875 // parameters.
John McCall2a7fb272010-08-25 05:32:35 +00001876 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor550d9b22009-10-31 17:21:17 +00001877
Douglas Gregored9c0f92009-10-29 00:04:11 +00001878 // Substitute into the template parameters of the class template partial
1879 // specialization.
1880 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1881 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1882 if (!InstParams)
Douglas Gregord65587f2010-11-10 19:44:59 +00001883 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001884
1885 // Substitute into the template arguments of the class template partial
1886 // specialization.
John McCalld5532b62009-11-23 01:53:49 +00001887 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
Douglas Gregore02e2622010-12-22 21:19:48 +00001888 if (SemaRef.Subst(PartialSpec->getTemplateArgsAsWritten(),
1889 PartialSpec->getNumTemplateArgsAsWritten(),
1890 InstTemplateArgs, TemplateArgs))
1891 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001892
Douglas Gregored9c0f92009-10-29 00:04:11 +00001893 // Check that the template argument list is well-formed for this
1894 // class template.
Douglas Gregor910f8002010-11-07 23:05:16 +00001895 llvm::SmallVector<TemplateArgument, 4> Converted;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001896 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1897 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001898 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001899 false,
1900 Converted))
Douglas Gregord65587f2010-11-10 19:44:59 +00001901 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001902
1903 // Figure out where to insert this class template partial specialization
1904 // in the member template's set of class template partial specializations.
Douglas Gregored9c0f92009-10-29 00:04:11 +00001905 void *InsertPos = 0;
1906 ClassTemplateSpecializationDecl *PrevDecl
Douglas Gregor910f8002010-11-07 23:05:16 +00001907 = ClassTemplate->findPartialSpecialization(Converted.data(),
1908 Converted.size(), InsertPos);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001909
1910 // Build the canonical type that describes the converted template
1911 // arguments of the class template partial specialization.
1912 QualType CanonType
1913 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor910f8002010-11-07 23:05:16 +00001914 Converted.data(),
1915 Converted.size());
Douglas Gregored9c0f92009-10-29 00:04:11 +00001916
1917 // Build the fully-sugared type for this class template
1918 // specialization as the user wrote in the specialization
1919 // itself. This means that we'll pretty-print the type retrieved
1920 // from the specialization's declaration the way that the user
1921 // actually wrote the specialization, rather than formatting the
1922 // name based on the "canonical" representation used to store the
1923 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001924 TypeSourceInfo *WrittenTy
1925 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1926 TemplateName(ClassTemplate),
1927 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001928 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001929 CanonType);
1930
1931 if (PrevDecl) {
1932 // We've already seen a partial specialization with the same template
1933 // parameters and template arguments. This can happen, for example, when
1934 // substituting the outer template arguments ends up causing two
1935 // class template partial specializations of a member class template
1936 // to have identical forms, e.g.,
1937 //
1938 // template<typename T, typename U>
1939 // struct Outer {
1940 // template<typename X, typename Y> struct Inner;
1941 // template<typename Y> struct Inner<T, Y>;
1942 // template<typename Y> struct Inner<U, Y>;
1943 // };
1944 //
1945 // Outer<int, int> outer; // error: the partial specializations of Inner
1946 // // have the same signature.
1947 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregord65587f2010-11-10 19:44:59 +00001948 << WrittenTy->getType();
Douglas Gregored9c0f92009-10-29 00:04:11 +00001949 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1950 << SemaRef.Context.getTypeDeclType(PrevDecl);
Douglas Gregord65587f2010-11-10 19:44:59 +00001951 return 0;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001952 }
1953
1954
1955 // Create the class template partial specialization declaration.
1956 ClassTemplatePartialSpecializationDecl *InstPartialSpec
Douglas Gregor13c85772010-05-06 00:28:52 +00001957 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
1958 PartialSpec->getTagKind(),
1959 Owner,
Abramo Bagnaraba877ad2011-03-09 14:09:51 +00001960 PartialSpec->getLocStart(),
1961 PartialSpec->getLocation(),
Douglas Gregored9c0f92009-10-29 00:04:11 +00001962 InstParams,
1963 ClassTemplate,
Douglas Gregor910f8002010-11-07 23:05:16 +00001964 Converted.data(),
1965 Converted.size(),
John McCalld5532b62009-11-23 01:53:49 +00001966 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001967 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001968 0,
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001969 ClassTemplate->getNextPartialSpecSequenceNumber());
John McCallb6217662010-03-15 10:12:16 +00001970 // Substitute the nested name specifier, if any.
1971 if (SubstQualifier(PartialSpec, InstPartialSpec))
1972 return 0;
1973
Douglas Gregored9c0f92009-10-29 00:04:11 +00001974 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor4469e8a2010-05-19 17:02:24 +00001975 InstPartialSpec->setTypeAsWritten(WrittenTy);
1976
Douglas Gregored9c0f92009-10-29 00:04:11 +00001977 // Add this partial specialization to the set of class template partial
1978 // specializations.
Argyrios Kyrtzidiscc0b1bc2010-07-20 13:59:28 +00001979 ClassTemplate->AddPartialSpecialization(InstPartialSpec, InsertPos);
Douglas Gregord65587f2010-11-10 19:44:59 +00001980 return InstPartialSpec;
Douglas Gregored9c0f92009-10-29 00:04:11 +00001981}
1982
John McCall21ef0fa2010-03-11 09:03:00 +00001983TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001984TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001985 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001986 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1987 assert(OldTInfo && "substituting function without type source info");
1988 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00001989 TypeSourceInfo *NewTInfo
1990 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
1991 D->getTypeSpecStartLoc(),
1992 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00001993 if (!NewTInfo)
1994 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001995
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001996 if (NewTInfo != OldTInfo) {
1997 // Get parameters from the new type info.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00001998 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001999 if (FunctionProtoTypeLoc *OldProtoLoc
2000 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002001 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002002 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
2003 assert(NewProtoLoc && "Missing prototype?");
Douglas Gregor12c9c002011-01-07 16:43:16 +00002004 unsigned NewIdx = 0, NumNewParams = NewProtoLoc->getNumArgs();
2005 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc->getNumArgs();
2006 OldIdx != NumOldParams; ++OldIdx) {
2007 ParmVarDecl *OldParam = OldProtoLoc->getArg(OldIdx);
2008 if (!OldParam->isParameterPack() ||
2009 (NewIdx < NumNewParams &&
2010 NewProtoLoc->getArg(NewIdx)->isParameterPack())) {
2011 // Simple case: normal parameter, or a parameter pack that's
2012 // instantiated to a (still-dependent) parameter pack.
2013 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2014 Params.push_back(NewParam);
2015 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldParam,
2016 NewParam);
2017 continue;
2018 }
2019
2020 // Parameter pack: make the instantiation an argument pack.
2021 SemaRef.CurrentInstantiationScope->MakeInstantiatedLocalArgPack(
2022 OldParam);
Douglas Gregor21371ea2011-01-11 03:14:20 +00002023 unsigned NumArgumentsInExpansion
2024 = SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
2025 TemplateArgs);
2026 while (NumArgumentsInExpansion--) {
Douglas Gregor12c9c002011-01-07 16:43:16 +00002027 ParmVarDecl *NewParam = NewProtoLoc->getArg(NewIdx++);
2028 Params.push_back(NewParam);
2029 SemaRef.CurrentInstantiationScope->InstantiatedLocalPackArg(OldParam,
2030 NewParam);
2031 }
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002032 }
Douglas Gregor895162d2010-04-30 18:55:50 +00002033 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002034 } else {
2035 // The function type itself was not dependent and therefore no
2036 // substitution occurred. However, we still need to instantiate
2037 // the function parameters themselves.
Abramo Bagnara140a2bd2010-12-13 22:27:55 +00002038 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00002039 if (FunctionProtoTypeLoc *OldProtoLoc
2040 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
2041 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
2042 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
2043 if (!Parm)
2044 return 0;
2045 Params.push_back(Parm);
2046 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00002047 }
2048 }
John McCall21ef0fa2010-03-11 09:03:00 +00002049 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00002050}
2051
Mike Stump1eb44332009-09-09 15:08:12 +00002052/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00002053/// declaration (New) from the corresponding fields of its template (Tmpl).
2054///
2055/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002056bool
2057TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00002058 FunctionDecl *Tmpl) {
2059 if (Tmpl->isDeleted())
2060 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00002061
Douglas Gregorcca9e962009-07-01 22:01:06 +00002062 // If we are performing substituting explicitly-specified template arguments
2063 // or deduced template arguments into a function template and we reach this
2064 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00002065 // to keeping the new function template specialization. We therefore
2066 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00002067 // into a template instantiation for this specific function template
2068 // specialization, which is not a SFINAE context, so that we diagnose any
2069 // further errors in the declaration itself.
2070 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
2071 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
2072 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
2073 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00002074 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00002075 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002076 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00002077 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00002078 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002079 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
2080 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00002081 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00002082 }
2083 }
Mike Stump1eb44332009-09-09 15:08:12 +00002084
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002085 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
2086 assert(Proto && "Function template without prototype?");
2087
2088 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
2089 Proto->getNoReturnAttr()) {
2090 // The function has an exception specification or a "noreturn"
2091 // attribute. Substitute into each of the exception types.
2092 llvm::SmallVector<QualType, 4> Exceptions;
2093 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
2094 // FIXME: Poor location information!
Douglas Gregorb99268b2010-12-21 00:52:54 +00002095 if (const PackExpansionType *PackExpansion
2096 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
2097 // We have a pack expansion. Instantiate it.
2098 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2099 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
2100 Unexpanded);
2101 assert(!Unexpanded.empty() &&
2102 "Pack expansion without parameter packs?");
2103
2104 bool Expand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002105 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002106 llvm::Optional<unsigned> NumExpansions
2107 = PackExpansion->getNumExpansions();
Douglas Gregorb99268b2010-12-21 00:52:54 +00002108 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
2109 SourceRange(),
2110 Unexpanded.data(),
2111 Unexpanded.size(),
2112 TemplateArgs,
Douglas Gregord3731192011-01-10 07:32:04 +00002113 Expand,
2114 RetainExpansion,
2115 NumExpansions))
Douglas Gregorb99268b2010-12-21 00:52:54 +00002116 break;
2117
2118 if (!Expand) {
2119 // We can't expand this pack expansion into separate arguments yet;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002120 // just substitute into the pattern and create a new pack expansion
2121 // type.
Douglas Gregorb99268b2010-12-21 00:52:54 +00002122 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2123 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2124 TemplateArgs,
2125 New->getLocation(), New->getDeclName());
2126 if (T.isNull())
2127 break;
2128
Douglas Gregorcded4f62011-01-14 17:04:44 +00002129 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
Douglas Gregorb99268b2010-12-21 00:52:54 +00002130 Exceptions.push_back(T);
2131 continue;
2132 }
2133
2134 // Substitute into the pack expansion pattern for each template
2135 bool Invalid = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002136 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
Douglas Gregorb99268b2010-12-21 00:52:54 +00002137 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
2138
2139 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
2140 TemplateArgs,
2141 New->getLocation(), New->getDeclName());
2142 if (T.isNull()) {
2143 Invalid = true;
2144 break;
2145 }
2146
2147 Exceptions.push_back(T);
2148 }
2149
2150 if (Invalid)
2151 break;
2152
2153 continue;
2154 }
2155
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002156 QualType T
2157 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
2158 New->getLocation(), New->getDeclName());
2159 if (T.isNull() ||
2160 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
2161 continue;
2162
2163 Exceptions.push_back(T);
2164 }
2165
2166 // Rebuild the function type
2167
John McCalle23cf432010-12-14 08:05:40 +00002168 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
Sebastian Redl8b5b4092011-03-06 10:52:04 +00002169 EPI.ExceptionSpecType = Proto->hasExceptionSpec() ?
2170 (Proto->hasAnyExceptionSpec() ? EST_DynamicAny : EST_Dynamic) :
2171 EST_None;
John McCalle23cf432010-12-14 08:05:40 +00002172 EPI.NumExceptions = Exceptions.size();
2173 EPI.Exceptions = Exceptions.data();
2174 EPI.ExtInfo = Proto->getExtInfo();
2175
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002176 const FunctionProtoType *NewProto
2177 = New->getType()->getAs<FunctionProtoType>();
2178 assert(NewProto && "Template instantiation without function prototype?");
2179 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
2180 NewProto->arg_type_begin(),
2181 NewProto->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00002182 EPI));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00002183 }
2184
John McCall1d8d1cc2010-08-01 02:01:53 +00002185 SemaRef.InstantiateAttrs(TemplateArgs, Tmpl, New);
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002186
Douglas Gregore53060f2009-06-25 22:08:12 +00002187 return false;
2188}
2189
Douglas Gregor5545e162009-03-24 00:38:23 +00002190/// \brief Initializes common fields of an instantiated method
2191/// declaration (New) from the corresponding fields of its template
2192/// (Tmpl).
2193///
2194/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00002195bool
2196TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00002197 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00002198 if (InitFunctionInstantiation(New, Tmpl))
2199 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002200
Douglas Gregor5545e162009-03-24 00:38:23 +00002201 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00002202 if (Tmpl->isVirtualAsWritten())
Douglas Gregor85606eb2010-09-28 20:50:54 +00002203 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00002204
2205 // FIXME: attributes
2206 // FIXME: New needs a pointer to Tmpl
2207 return false;
2208}
Douglas Gregora58861f2009-05-13 20:28:22 +00002209
2210/// \brief Instantiate the definition of the given function from its
2211/// template.
2212///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002213/// \param PointOfInstantiation the point at which the instantiation was
2214/// required. Note that this is not precisely a "point of instantiation"
2215/// for the function, but it's close.
2216///
Douglas Gregora58861f2009-05-13 20:28:22 +00002217/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002218/// function template specialization or member function of a class template
2219/// specialization.
2220///
2221/// \param Recursive if true, recursively instantiates any functions that
2222/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002223///
2224/// \param DefinitionRequired if true, then we are performing an explicit
2225/// instantiation where the body of the function is required. Complain if
2226/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002227void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002228 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002229 bool Recursive,
2230 bool DefinitionRequired) {
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00002231 if (Function->isInvalidDecl() || Function->hasBody())
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002232 return;
2233
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002234 // Never instantiate an explicit specialization.
2235 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
2236 return;
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00002237
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002238 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00002239 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002240 Stmt *Pattern = 0;
2241 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002242 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002243
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002244 if (!Pattern) {
2245 if (DefinitionRequired) {
2246 if (Function->getPrimaryTemplate())
2247 Diag(PointOfInstantiation,
2248 diag::err_explicit_instantiation_undefined_func_template)
2249 << Function->getPrimaryTemplate();
2250 else
2251 Diag(PointOfInstantiation,
2252 diag::err_explicit_instantiation_undefined_member)
2253 << 1 << Function->getDeclName() << Function->getDeclContext();
2254
2255 if (PatternDecl)
2256 Diag(PatternDecl->getLocation(),
2257 diag::note_explicit_instantiation_here);
Douglas Gregorcfe833b2010-05-17 17:57:54 +00002258 Function->setInvalidDecl();
Chandler Carruth58e390e2010-08-25 08:27:02 +00002259 } else if (Function->getTemplateSpecializationKind()
2260 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002261 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002262 std::make_pair(Function, PointOfInstantiation));
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002263 }
Chandler Carruth58e390e2010-08-25 08:27:02 +00002264
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002265 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002266 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00002267
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002268 // C++0x [temp.explicit]p9:
2269 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00002270 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002271 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00002272 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002273 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00002274 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00002275 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002276
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00002277 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
2278 if (Inst)
Douglas Gregore7089b02010-05-03 23:29:10 +00002279 return;
2280
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002281 // If we're performing recursive template instantiation, create our own
2282 // queue of pending implicit instantiations that we will instantiate later,
2283 // while we're still within our own instantiation context.
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002284 llvm::SmallVector<VTableUse, 16> SavedVTableUses;
Chandler Carruth62c78d52010-08-25 08:44:16 +00002285 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002286 if (Recursive) {
2287 VTableUses.swap(SavedVTableUses);
Chandler Carruth62c78d52010-08-25 08:44:16 +00002288 PendingInstantiations.swap(SavedPendingInstantiations);
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002289 }
Mike Stump1eb44332009-09-09 15:08:12 +00002290
Douglas Gregor9679caf2010-05-12 17:27:19 +00002291 EnterExpressionEvaluationContext EvalContext(*this,
John McCallf312b1e2010-08-26 23:41:50 +00002292 Sema::PotentiallyEvaluated);
John McCalld226f652010-08-21 09:40:31 +00002293 ActOnStartOfFunctionDef(0, Function);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002294
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002295 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00002296 // recorded, unless we're actually a member function within a local
2297 // class, in which case we need to merge our results with the parent
2298 // scope (of the enclosing function).
2299 bool MergeWithParentScope = false;
2300 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
2301 MergeWithParentScope = Rec->isLocalClass();
2302
2303 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00002304
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002305 // Introduce the instantiated function parameters into the local
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002306 // instantiation scope, and set the parameter names to those used
2307 // in the template.
Douglas Gregor12c9c002011-01-07 16:43:16 +00002308 unsigned FParamIdx = 0;
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002309 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
2310 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
Douglas Gregor12c9c002011-01-07 16:43:16 +00002311 if (!PatternParam->isParameterPack()) {
2312 // Simple case: not a parameter pack.
2313 assert(FParamIdx < Function->getNumParams());
2314 ParmVarDecl *FunctionParam = Function->getParamDecl(I);
2315 FunctionParam->setDeclName(PatternParam->getDeclName());
2316 Scope.InstantiatedLocal(PatternParam, FunctionParam);
2317 ++FParamIdx;
2318 continue;
2319 }
2320
2321 // Expand the parameter pack.
2322 Scope.MakeInstantiatedLocalArgPack(PatternParam);
2323 for (unsigned NumFParams = Function->getNumParams();
2324 FParamIdx < NumFParams;
2325 ++FParamIdx) {
2326 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
2327 FunctionParam->setDeclName(PatternParam->getDeclName());
2328 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
2329 }
Peter Collingbourne8a6c0f12010-07-18 16:45:46 +00002330 }
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002331
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002332 // Enter the scope of this instantiation. We don't use
2333 // PushDeclContext because we don't have a scope.
John McCalleee1d542011-02-14 07:13:47 +00002334 Sema::ContextRAII savedContext(*this, Function);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002335
Mike Stump1eb44332009-09-09 15:08:12 +00002336 MultiLevelTemplateArgumentList TemplateArgs =
Douglas Gregore7089b02010-05-03 23:29:10 +00002337 getTemplateInstantiationArgs(Function, 0, false, PatternDecl);
Anders Carlsson09025312009-08-29 05:16:22 +00002338
2339 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00002340 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00002341 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2342 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2343 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002344 }
2345
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002346 // Instantiate the function body.
John McCall60d7b3a2010-08-24 06:29:42 +00002347 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002348
Douglas Gregor52604ab2009-09-11 21:19:12 +00002349 if (Body.isInvalid())
2350 Function->setInvalidDecl();
2351
John McCall9ae2f072010-08-23 23:25:46 +00002352 ActOnFinishFunctionBody(Function, Body.get(),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002353 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002354
John McCall0c01d182010-03-24 05:22:00 +00002355 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2356
John McCalleee1d542011-02-14 07:13:47 +00002357 savedContext.pop();
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002358
2359 DeclGroupRef DG(Function);
2360 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002361
Douglas Gregor60406be2010-01-16 22:29:39 +00002362 // This class may have local implicit instantiations that need to be
2363 // instantiation within this scope.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002364 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor60406be2010-01-16 22:29:39 +00002365 Scope.Exit();
2366
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002367 if (Recursive) {
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002368 // Define any pending vtables.
2369 DefineUsedVTables();
2370
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002371 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002372 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002373 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002374
Nick Lewycky2a5f99e2010-11-25 00:35:20 +00002375 // Restore the set of pending vtables.
2376 VTableUses.swap(SavedVTableUses);
2377
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002378 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002379 PendingInstantiations.swap(SavedPendingInstantiations);
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002380 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002381}
2382
2383/// \brief Instantiate the definition of the given variable from its
2384/// template.
2385///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002386/// \param PointOfInstantiation the point at which the instantiation was
2387/// required. Note that this is not precisely a "point of instantiation"
2388/// for the function, but it's close.
2389///
2390/// \param Var the already-instantiated declaration of a static member
2391/// variable of a class template specialization.
2392///
2393/// \param Recursive if true, recursively instantiates any functions that
2394/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002395///
2396/// \param DefinitionRequired if true, then we are performing an explicit
2397/// instantiation where an out-of-line definition of the member variable
2398/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002399void Sema::InstantiateStaticDataMemberDefinition(
2400 SourceLocation PointOfInstantiation,
2401 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002402 bool Recursive,
2403 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002404 if (Var->isInvalidDecl())
2405 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002406
Douglas Gregor7caa6822009-07-24 20:34:43 +00002407 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002408 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002409 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002410 assert(Def->isStaticDataMember() && "Not a static data member?");
2411 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002412
Douglas Gregor0d035142009-10-27 18:42:08 +00002413 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002414 // We did not find an out-of-line definition of this static data member,
2415 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002416 // instantiate this definition (or provide a specialization for it) in
2417 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002418 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002419 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002420 Diag(PointOfInstantiation,
2421 diag::err_explicit_instantiation_undefined_member)
2422 << 2 << Var->getDeclName() << Var->getDeclContext();
2423 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
Chandler Carruth58e390e2010-08-25 08:27:02 +00002424 } else if (Var->getTemplateSpecializationKind()
2425 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002426 PendingInstantiations.push_back(
Chandler Carruth58e390e2010-08-25 08:27:02 +00002427 std::make_pair(Var, PointOfInstantiation));
2428 }
2429
Douglas Gregor7caa6822009-07-24 20:34:43 +00002430 return;
2431 }
2432
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002433 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002434 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002435 return;
2436
2437 // C++0x [temp.explicit]p9:
2438 // Except for inline functions, other explicit instantiation declarations
2439 // have the effect of suppressing the implicit instantiation of the entity
2440 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002441 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002442 == TSK_ExplicitInstantiationDeclaration)
2443 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002444
Douglas Gregor7caa6822009-07-24 20:34:43 +00002445 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2446 if (Inst)
2447 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002448
Douglas Gregor7caa6822009-07-24 20:34:43 +00002449 // If we're performing recursive template instantiation, create our own
2450 // queue of pending implicit instantiations that we will instantiate later,
2451 // while we're still within our own instantiation context.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002452 std::deque<PendingImplicitInstantiation> SavedPendingInstantiations;
Douglas Gregor7caa6822009-07-24 20:34:43 +00002453 if (Recursive)
Chandler Carruth62c78d52010-08-25 08:44:16 +00002454 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002455
Douglas Gregor7caa6822009-07-24 20:34:43 +00002456 // Enter the scope of this instantiation. We don't use
2457 // PushDeclContext because we don't have a scope.
John McCallf5ba7e02011-02-14 20:37:25 +00002458 ContextRAII previousContext(*this, Var->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002459
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002460 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002461 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Nico Weber6bb4dcb2010-11-28 22:53:37 +00002462 getTemplateInstantiationArgs(Var)));
John McCallf5ba7e02011-02-14 20:37:25 +00002463
2464 previousContext.pop();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002465
2466 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002467 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2468 assert(MSInfo && "Missing member specialization information?");
2469 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2470 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002471 DeclGroupRef DG(Var);
2472 Consumer.HandleTopLevelDecl(DG);
2473 }
Mike Stump1eb44332009-09-09 15:08:12 +00002474
Douglas Gregor7caa6822009-07-24 20:34:43 +00002475 if (Recursive) {
2476 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002477 // instantiation of this template.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002478 PerformPendingInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002479
Douglas Gregor7caa6822009-07-24 20:34:43 +00002480 // Restore the set of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002481 PendingInstantiations.swap(SavedPendingInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002482 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002483}
Douglas Gregor815215d2009-05-27 05:35:12 +00002484
Anders Carlsson09025312009-08-29 05:16:22 +00002485void
2486Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2487 const CXXConstructorDecl *Tmpl,
2488 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002489
Anders Carlsson09025312009-08-29 05:16:22 +00002490 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002491 bool AnyErrors = false;
2492
Anders Carlsson09025312009-08-29 05:16:22 +00002493 // Instantiate all the initializers.
2494 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002495 InitsEnd = Tmpl->init_end();
2496 Inits != InitsEnd; ++Inits) {
Sean Huntcbb67482011-01-08 20:30:50 +00002497 CXXCtorInitializer *Init = *Inits;
Anders Carlsson09025312009-08-29 05:16:22 +00002498
Chandler Carruth030ef472010-09-03 21:54:20 +00002499 // Only instantiate written initializers, let Sema re-construct implicit
2500 // ones.
2501 if (!Init->isWritten())
2502 continue;
2503
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002504 SourceLocation LParenLoc, RParenLoc;
John McCallca0408f2010-08-23 06:44:23 +00002505 ASTOwningVector<Expr*> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002506
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002507 SourceLocation EllipsisLoc;
2508
2509 if (Init->isPackExpansion()) {
2510 // This is a pack expansion. We should expand it now.
2511 TypeLoc BaseTL = Init->getBaseClassInfo()->getTypeLoc();
2512 llvm::SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2513 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
2514 bool ShouldExpand = false;
Douglas Gregord3731192011-01-10 07:32:04 +00002515 bool RetainExpansion = false;
Douglas Gregorcded4f62011-01-14 17:04:44 +00002516 llvm::Optional<unsigned> NumExpansions;
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002517 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
2518 BaseTL.getSourceRange(),
2519 Unexpanded.data(),
2520 Unexpanded.size(),
2521 TemplateArgs, ShouldExpand,
Douglas Gregord3731192011-01-10 07:32:04 +00002522 RetainExpansion,
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002523 NumExpansions)) {
2524 AnyErrors = true;
2525 New->setInvalidDecl();
2526 continue;
2527 }
2528 assert(ShouldExpand && "Partial instantiation of base initializer?");
2529
2530 // Loop over all of the arguments in the argument pack(s),
Douglas Gregorcded4f62011-01-14 17:04:44 +00002531 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002532 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
2533
2534 // Instantiate the initializer.
2535 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
2536 LParenLoc, NewArgs, RParenLoc)) {
2537 AnyErrors = true;
2538 break;
2539 }
2540
2541 // Instantiate the base type.
2542 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
2543 TemplateArgs,
2544 Init->getSourceLocation(),
2545 New->getDeclName());
2546 if (!BaseTInfo) {
2547 AnyErrors = true;
2548 break;
2549 }
2550
2551 // Build the initializer.
2552 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
2553 BaseTInfo,
2554 (Expr **)NewArgs.data(),
2555 NewArgs.size(),
2556 Init->getLParenLoc(),
2557 Init->getRParenLoc(),
2558 New->getParent(),
2559 SourceLocation());
2560 if (NewInit.isInvalid()) {
2561 AnyErrors = true;
2562 break;
2563 }
2564
2565 NewInits.push_back(NewInit.get());
2566 NewArgs.clear();
2567 }
2568
2569 continue;
2570 }
2571
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002572 // Instantiate the initializer.
2573 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00002574 LParenLoc, NewArgs, RParenLoc)) {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002575 AnyErrors = true;
2576 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002577 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002578
Anders Carlsson09025312009-08-29 05:16:22 +00002579 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002580 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002581 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002582 TemplateArgs,
2583 Init->getSourceLocation(),
2584 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002585 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002586 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002587 New->setInvalidDecl();
2588 continue;
2589 }
2590
John McCalla93c9342009-12-07 02:54:59 +00002591 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002592 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002593 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002594 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002595 Init->getRParenLoc(),
Douglas Gregor3fb9e4b2011-01-04 00:32:56 +00002596 New->getParent(),
2597 EllipsisLoc);
Anders Carlsson09025312009-08-29 05:16:22 +00002598 } else if (Init->isMemberInitializer()) {
Douglas Gregorb7107222011-03-04 19:46:35 +00002599 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002600 Init->getMemberLocation(),
2601 Init->getMember(),
2602 TemplateArgs));
Douglas Gregorb7107222011-03-04 19:46:35 +00002603 if (!Member) {
2604 AnyErrors = true;
2605 New->setInvalidDecl();
2606 continue;
2607 }
Mike Stump1eb44332009-09-09 15:08:12 +00002608
2609 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002610 NewArgs.size(),
2611 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002612 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002613 Init->getRParenLoc());
Francois Pichet00eb3f92010-12-04 09:14:42 +00002614 } else if (Init->isIndirectMemberInitializer()) {
2615 IndirectFieldDecl *IndirectMember =
Douglas Gregorb7107222011-03-04 19:46:35 +00002616 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichet00eb3f92010-12-04 09:14:42 +00002617 Init->getMemberLocation(),
2618 Init->getIndirectMember(), TemplateArgs));
2619
Douglas Gregorb7107222011-03-04 19:46:35 +00002620 if (!IndirectMember) {
2621 AnyErrors = true;
2622 New->setInvalidDecl();
2623 continue;
2624 }
2625
Francois Pichet00eb3f92010-12-04 09:14:42 +00002626 NewInit = BuildMemberInitializer(IndirectMember, (Expr **)NewArgs.data(),
2627 NewArgs.size(),
2628 Init->getSourceLocation(),
2629 Init->getLParenLoc(),
2630 Init->getRParenLoc());
Anders Carlsson09025312009-08-29 05:16:22 +00002631 }
2632
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002633 if (NewInit.isInvalid()) {
2634 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002635 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002636 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002637 // FIXME: It would be nice if ASTOwningVector had a release function.
2638 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002639
Anders Carlsson09025312009-08-29 05:16:22 +00002640 NewInits.push_back((MemInitTy *)NewInit.get());
2641 }
2642 }
Mike Stump1eb44332009-09-09 15:08:12 +00002643
Anders Carlsson09025312009-08-29 05:16:22 +00002644 // Assign all the initializers to the new constructor.
John McCalld226f652010-08-21 09:40:31 +00002645 ActOnMemInitializers(New,
Anders Carlsson09025312009-08-29 05:16:22 +00002646 /*FIXME: ColonLoc */
2647 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002648 NewInits.data(), NewInits.size(),
2649 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002650}
2651
John McCall52a575a2009-08-29 08:11:13 +00002652// TODO: this could be templated if the various decl types used the
2653// same method name.
2654static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2655 ClassTemplateDecl *Instance) {
2656 Pattern = Pattern->getCanonicalDecl();
2657
2658 do {
2659 Instance = Instance->getCanonicalDecl();
2660 if (Pattern == Instance) return true;
2661 Instance = Instance->getInstantiatedFromMemberTemplate();
2662 } while (Instance);
2663
2664 return false;
2665}
2666
Douglas Gregor0d696532009-09-28 06:34:35 +00002667static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2668 FunctionTemplateDecl *Instance) {
2669 Pattern = Pattern->getCanonicalDecl();
2670
2671 do {
2672 Instance = Instance->getCanonicalDecl();
2673 if (Pattern == Instance) return true;
2674 Instance = Instance->getInstantiatedFromMemberTemplate();
2675 } while (Instance);
2676
2677 return false;
2678}
2679
Douglas Gregored9c0f92009-10-29 00:04:11 +00002680static bool
2681isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2682 ClassTemplatePartialSpecializationDecl *Instance) {
2683 Pattern
2684 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2685 do {
2686 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2687 Instance->getCanonicalDecl());
2688 if (Pattern == Instance)
2689 return true;
2690 Instance = Instance->getInstantiatedFromMember();
2691 } while (Instance);
2692
2693 return false;
2694}
2695
John McCall52a575a2009-08-29 08:11:13 +00002696static bool isInstantiationOf(CXXRecordDecl *Pattern,
2697 CXXRecordDecl *Instance) {
2698 Pattern = Pattern->getCanonicalDecl();
2699
2700 do {
2701 Instance = Instance->getCanonicalDecl();
2702 if (Pattern == Instance) return true;
2703 Instance = Instance->getInstantiatedFromMemberClass();
2704 } while (Instance);
2705
2706 return false;
2707}
2708
2709static bool isInstantiationOf(FunctionDecl *Pattern,
2710 FunctionDecl *Instance) {
2711 Pattern = Pattern->getCanonicalDecl();
2712
2713 do {
2714 Instance = Instance->getCanonicalDecl();
2715 if (Pattern == Instance) return true;
2716 Instance = Instance->getInstantiatedFromMemberFunction();
2717 } while (Instance);
2718
2719 return false;
2720}
2721
2722static bool isInstantiationOf(EnumDecl *Pattern,
2723 EnumDecl *Instance) {
2724 Pattern = Pattern->getCanonicalDecl();
2725
2726 do {
2727 Instance = Instance->getCanonicalDecl();
2728 if (Pattern == Instance) return true;
2729 Instance = Instance->getInstantiatedFromMemberEnum();
2730 } while (Instance);
2731
2732 return false;
2733}
2734
John McCalled976492009-12-04 22:46:56 +00002735static bool isInstantiationOf(UsingShadowDecl *Pattern,
2736 UsingShadowDecl *Instance,
2737 ASTContext &C) {
2738 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2739}
2740
2741static bool isInstantiationOf(UsingDecl *Pattern,
2742 UsingDecl *Instance,
2743 ASTContext &C) {
2744 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2745}
2746
John McCall7ba107a2009-11-18 02:36:19 +00002747static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2748 UsingDecl *Instance,
2749 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002750 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002751}
2752
2753static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002754 UsingDecl *Instance,
2755 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002756 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002757}
2758
John McCall52a575a2009-08-29 08:11:13 +00002759static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2760 VarDecl *Instance) {
2761 assert(Instance->isStaticDataMember());
2762
2763 Pattern = Pattern->getCanonicalDecl();
2764
2765 do {
2766 Instance = Instance->getCanonicalDecl();
2767 if (Pattern == Instance) return true;
2768 Instance = Instance->getInstantiatedFromStaticDataMember();
2769 } while (Instance);
2770
2771 return false;
2772}
2773
John McCalled976492009-12-04 22:46:56 +00002774// Other is the prospective instantiation
2775// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002776static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002777 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002778 if (UnresolvedUsingTypenameDecl *UUD
2779 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2780 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2781 return isInstantiationOf(UUD, UD, Ctx);
2782 }
2783 }
2784
2785 if (UnresolvedUsingValueDecl *UUD
2786 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002787 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2788 return isInstantiationOf(UUD, UD, Ctx);
2789 }
2790 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002791
Anders Carlsson0d8df782009-08-29 19:37:28 +00002792 return false;
2793 }
Mike Stump1eb44332009-09-09 15:08:12 +00002794
John McCall52a575a2009-08-29 08:11:13 +00002795 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2796 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002797
John McCall52a575a2009-08-29 08:11:13 +00002798 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2799 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002800
John McCall52a575a2009-08-29 08:11:13 +00002801 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2802 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002803
Douglas Gregor7caa6822009-07-24 20:34:43 +00002804 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002805 if (Var->isStaticDataMember())
2806 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2807
2808 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2809 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002810
Douglas Gregor0d696532009-09-28 06:34:35 +00002811 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2812 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2813
Douglas Gregored9c0f92009-10-29 00:04:11 +00002814 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2815 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2816 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2817 PartialSpec);
2818
Anders Carlssond8b285f2009-09-01 04:26:58 +00002819 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2820 if (!Field->getDeclName()) {
2821 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002822 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002823 cast<FieldDecl>(D);
2824 }
2825 }
Mike Stump1eb44332009-09-09 15:08:12 +00002826
John McCalled976492009-12-04 22:46:56 +00002827 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2828 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2829
2830 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2831 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2832
Douglas Gregor815215d2009-05-27 05:35:12 +00002833 return D->getDeclName() && isa<NamedDecl>(Other) &&
2834 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2835}
2836
2837template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002838static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002839 NamedDecl *D,
2840 ForwardIterator first,
2841 ForwardIterator last) {
2842 for (; first != last; ++first)
2843 if (isInstantiationOf(Ctx, D, *first))
2844 return cast<NamedDecl>(*first);
2845
2846 return 0;
2847}
2848
John McCall02cace72009-08-28 07:59:38 +00002849/// \brief Finds the instantiation of the given declaration context
2850/// within the current instantiation.
2851///
2852/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002853DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002854 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002855 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002856 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002857 return cast_or_null<DeclContext>(ID);
2858 } else return DC;
2859}
2860
Douglas Gregored961e72009-05-27 17:54:46 +00002861/// \brief Find the instantiation of the given declaration within the
2862/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002863///
2864/// This routine is intended to be used when \p D is a declaration
2865/// referenced from within a template, that needs to mapped into the
2866/// corresponding declaration within an instantiation. For example,
2867/// given:
2868///
2869/// \code
2870/// template<typename T>
2871/// struct X {
2872/// enum Kind {
2873/// KnownValue = sizeof(T)
2874/// };
2875///
2876/// bool getKind() const { return KnownValue; }
2877/// };
2878///
2879/// template struct X<int>;
2880/// \endcode
2881///
2882/// In the instantiation of X<int>::getKind(), we need to map the
2883/// EnumConstantDecl for KnownValue (which refers to
2884/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002885/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2886/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002887NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002888 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002889 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002890 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002891 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
John McCall76672452010-08-19 23:06:02 +00002892 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext())) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002893 // D is a local of some kind. Look into the map of local
2894 // declarations to their instantiations.
Chris Lattnerd8e54992011-02-17 19:47:42 +00002895 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
2896 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Found
2897 = CurrentInstantiationScope->findInstantiationOf(D);
Chris Lattnerd8e54992011-02-17 19:47:42 +00002898
Chris Lattner57ad3782011-02-17 20:34:02 +00002899 if (Found) {
2900 if (Decl *FD = Found->dyn_cast<Decl *>())
2901 return cast<NamedDecl>(FD);
2902
2903 unsigned PackIdx = ArgumentPackSubstitutionIndex;
2904 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
2905 }
2906
2907 // If we didn't find the decl, then we must have a label decl that hasn't
2908 // been found yet. Lazily instantiate it and return it now.
2909 assert(isa<LabelDecl>(D));
Chris Lattnerd8e54992011-02-17 19:47:42 +00002910
Chris Lattner57ad3782011-02-17 20:34:02 +00002911 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
2912 assert(Inst && "Failed to instantiate label??");
2913
2914 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
2915 return cast<LabelDecl>(Inst);
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002916 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002917
Douglas Gregore95b4092009-09-16 18:34:49 +00002918 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2919 if (!Record->isDependentContext())
2920 return D;
2921
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002922 // If the RecordDecl is actually the injected-class-name or a
2923 // "templated" declaration for a class template, class template
2924 // partial specialization, or a member class of a class template,
2925 // substitute into the injected-class-name of the class template
2926 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002927 QualType T;
2928 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2929
2930 if (ClassTemplate) {
Douglas Gregor24bae922010-07-08 18:37:38 +00002931 T = ClassTemplate->getInjectedClassNameSpecialization();
Douglas Gregore95b4092009-09-16 18:34:49 +00002932 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2933 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002934 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002935
2936 // If we call SubstType with an InjectedClassNameType here we
2937 // can end up in an infinite loop.
2938 T = Context.getTypeDeclType(Record);
2939 assert(isa<InjectedClassNameType>(T) &&
2940 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00002941 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00002942 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002943
2944 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002945 // Substitute into the injected-class-name to get the type
2946 // corresponding to the instantiation we want, which may also be
2947 // the current instantiation (if we're in a template
2948 // definition). This substitution should never fail, since we
2949 // know we can instantiate the injected-class-name or we
2950 // wouldn't have gotten to the injected-class-name!
2951
2952 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2953 // extra instantiation in the common case?
Douglas Gregorb46ae392011-03-03 21:48:55 +00002954 T = SubstType(T, TemplateArgs, Loc, DeclarationName());
Douglas Gregore95b4092009-09-16 18:34:49 +00002955 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2956
2957 if (!T->isDependentType()) {
2958 assert(T->isRecordType() && "Instantiation must produce a record type");
2959 return T->getAs<RecordType>()->getDecl();
2960 }
2961
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002962 // We are performing "partial" template instantiation to create
2963 // the member declarations for the members of a class template
2964 // specialization. Therefore, D is actually referring to something
2965 // in the current instantiation. Look through the current
2966 // context, which contains actual instantiations, to find the
2967 // instantiation of the "current instantiation" that D refers
2968 // to.
2969 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002970 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002971 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002972 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002973 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002974 if (isInstantiationOf(ClassTemplate,
2975 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002976 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002977
2978 if (!DC->isDependentContext())
2979 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002980 }
2981
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002982 // We're performing "instantiation" of a member of the current
2983 // instantiation while we are type-checking the
2984 // definition. Compute the declaration context and return that.
2985 assert(!SawNonDependentContext &&
2986 "No dependent context while instantiating record");
2987 DeclContext *DC = computeDeclContext(T);
2988 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002989 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002990 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002991 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002992
Douglas Gregore95b4092009-09-16 18:34:49 +00002993 // Fall through to deal with other dependent record types (e.g.,
2994 // anonymous unions in class templates).
2995 }
John McCall52a575a2009-08-29 08:11:13 +00002996
Douglas Gregore95b4092009-09-16 18:34:49 +00002997 if (!ParentDC->isDependentContext())
2998 return D;
2999
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003000 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003001 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00003002 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003003
Douglas Gregor815215d2009-05-27 05:35:12 +00003004 if (ParentDC != D->getDeclContext()) {
3005 // We performed some kind of instantiation in the parent context,
3006 // so now we need to look into the instantiated parent context to
3007 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003008
John McCall3cb0ebd2010-03-10 03:28:59 +00003009 // If our context used to be dependent, we may need to instantiate
3010 // it before performing lookup into that context.
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003011 bool IsBeingInstantiated = false;
John McCall3cb0ebd2010-03-10 03:28:59 +00003012 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003013 if (!Spec->isDependentContext()) {
3014 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00003015 const RecordType *Tag = T->getAs<RecordType>();
3016 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003017 if (Tag->isBeingDefined())
3018 IsBeingInstantiated = true;
John McCall3cb0ebd2010-03-10 03:28:59 +00003019 if (!Tag->isBeingDefined() &&
3020 RequireCompleteType(Loc, T, diag::err_incomplete_type))
3021 return 0;
Douglas Gregora43064c2010-11-05 23:22:45 +00003022
3023 ParentDC = Tag->getDecl();
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00003024 }
3025 }
3026
Douglas Gregor815215d2009-05-27 05:35:12 +00003027 NamedDecl *Result = 0;
3028 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003029 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00003030 Result = findInstantiationOf(Context, D, Found.first, Found.second);
3031 } else {
3032 // Since we don't have a name for the entity we're looking for,
3033 // our only option is to walk through all of the declarations to
3034 // find that name. This will occur in a few cases:
3035 //
3036 // - anonymous struct/union within a template
3037 // - unnamed class/struct/union/enum within a template
3038 //
3039 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00003040 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003041 ParentDC->decls_begin(),
3042 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00003043 }
Mike Stump1eb44332009-09-09 15:08:12 +00003044
Douglas Gregoreff1dbe2011-03-06 20:12:45 +00003045 if (!Result) {
3046 if (isa<UsingShadowDecl>(D)) {
3047 // UsingShadowDecls can instantiate to nothing because of using hiding.
3048 } else if (Diags.hasErrorOccurred()) {
3049 // We've already complained about something, so most likely this
3050 // declaration failed to instantiate. There's no point in complaining
3051 // further, since this is normal in invalid code.
3052 } else if (IsBeingInstantiated) {
3053 // The class in which this member exists is currently being
3054 // instantiated, and we haven't gotten around to instantiating this
3055 // member yet. This can happen when the code uses forward declarations
3056 // of member classes, and introduces ordering dependencies via
3057 // template instantiation.
3058 Diag(Loc, diag::err_member_not_yet_instantiated)
3059 << D->getDeclName()
3060 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
3061 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
3062 } else {
3063 // We should have found something, but didn't.
3064 llvm_unreachable("Unable to find instantiation of declaration!");
3065 }
3066 }
3067
Douglas Gregor815215d2009-05-27 05:35:12 +00003068 D = Result;
3069 }
3070
Douglas Gregor815215d2009-05-27 05:35:12 +00003071 return D;
3072}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003073
Mike Stump1eb44332009-09-09 15:08:12 +00003074/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003075/// instantiations we have seen until this point.
Chandler Carruth62c78d52010-08-25 08:44:16 +00003076void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003077 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth62c78d52010-08-25 08:44:16 +00003078 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor60406be2010-01-16 22:29:39 +00003079 PendingImplicitInstantiation Inst;
3080
3081 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00003082 Inst = PendingInstantiations.front();
3083 PendingInstantiations.pop_front();
Douglas Gregor60406be2010-01-16 22:29:39 +00003084 } else {
3085 Inst = PendingLocalImplicitInstantiations.front();
3086 PendingLocalImplicitInstantiations.pop_front();
3087 }
Mike Stump1eb44332009-09-09 15:08:12 +00003088
Douglas Gregor7caa6822009-07-24 20:34:43 +00003089 // Instantiate function definitions
3090 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallf312b1e2010-08-26 23:41:50 +00003091 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
3092 "instantiating function definition");
Chandler Carruth58e390e2010-08-25 08:27:02 +00003093 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
3094 TSK_ExplicitInstantiationDefinition;
3095 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
3096 DefinitionRequired);
Douglas Gregor7caa6822009-07-24 20:34:43 +00003097 continue;
3098 }
Mike Stump1eb44332009-09-09 15:08:12 +00003099
Douglas Gregor7caa6822009-07-24 20:34:43 +00003100 // Instantiate static data member definitions.
3101 VarDecl *Var = cast<VarDecl>(Inst.first);
3102 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00003103
Chandler Carruth291b4412010-02-13 10:17:50 +00003104 // Don't try to instantiate declarations if the most recent redeclaration
3105 // is invalid.
3106 if (Var->getMostRecentDeclaration()->isInvalidDecl())
3107 continue;
3108
3109 // Check if the most recent declaration has changed the specialization kind
3110 // and removed the need for implicit instantiation.
3111 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
3112 case TSK_Undeclared:
3113 assert(false && "Cannot instantitiate an undeclared specialization.");
3114 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth291b4412010-02-13 10:17:50 +00003115 case TSK_ExplicitSpecialization:
Chandler Carruth58e390e2010-08-25 08:27:02 +00003116 continue; // No longer need to instantiate this type.
3117 case TSK_ExplicitInstantiationDefinition:
3118 // We only need an instantiation if the pending instantiation *is* the
3119 // explicit instantiation.
3120 if (Var != Var->getMostRecentDeclaration()) continue;
Chandler Carruth291b4412010-02-13 10:17:50 +00003121 case TSK_ImplicitInstantiation:
3122 break;
3123 }
3124
John McCallf312b1e2010-08-26 23:41:50 +00003125 PrettyDeclStackTraceEntry CrashInfo(*this, Var, Var->getLocation(),
3126 "instantiating static data member "
3127 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00003128
Chandler Carruth58e390e2010-08-25 08:27:02 +00003129 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
3130 TSK_ExplicitInstantiationDefinition;
3131 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true,
3132 DefinitionRequired);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00003133 }
3134}
John McCall0c01d182010-03-24 05:22:00 +00003135
3136void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
3137 const MultiLevelTemplateArgumentList &TemplateArgs) {
3138 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
3139 E = Pattern->ddiag_end(); I != E; ++I) {
3140 DependentDiagnostic *DD = *I;
3141
3142 switch (DD->getKind()) {
3143 case DependentDiagnostic::Access:
3144 HandleDependentAccessCheck(*DD, TemplateArgs);
3145 break;
3146 }
3147 }
3148}