blob: 8974ecbdf42cba89af91a8bc375f07e102170ca9 [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//===----------------------------------------------------------------------===/
12#include "Sema.h"
John McCall7d384dd2009-11-18 07:57:50 +000013#include "Lookup.h"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000014#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000015#include "clang/AST/ASTContext.h"
16#include "clang/AST/DeclTemplate.h"
17#include "clang/AST/DeclVisitor.h"
John McCall0c01d182010-03-24 05:22:00 +000018#include "clang/AST/DependentDiagnostic.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000019#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000020#include "clang/AST/ExprCXX.h"
John McCall21ef0fa2010-03-11 09:03:00 +000021#include "clang/AST/TypeLoc.h"
Anders Carlssonc17fb7b2009-09-01 05:12:24 +000022#include "clang/Basic/PrettyStackTrace.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000023#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000024
25using namespace clang;
26
27namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000028 class TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000029 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000030 Sema &SemaRef;
31 DeclContext *Owner;
Douglas Gregord6350ae2009-08-28 20:31:08 +000032 const MultiLevelTemplateArgumentList &TemplateArgs;
Mike Stump1eb44332009-09-09 15:08:12 +000033
Anders Carlssond8fe2d52009-11-07 06:07:58 +000034 void InstantiateAttrs(Decl *Tmpl, Decl *New);
35
Douglas Gregor8dbc2692009-03-17 21:15:40 +000036 public:
37 typedef Sema::OwningExprResult OwningExprResult;
38
39 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +000040 const MultiLevelTemplateArgumentList &TemplateArgs)
Douglas Gregor7e063902009-05-11 23:53:27 +000041 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Mike Stump1eb44332009-09-09 15:08:12 +000042
Mike Stump390b4cc2009-05-16 07:39:55 +000043 // FIXME: Once we get closer to completion, replace these manually-written
44 // declarations with automatically-generated ones from
45 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000046 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
47 Decl *VisitNamespaceDecl(NamespaceDecl *D);
John McCall3dbd3d52010-02-16 06:53:13 +000048 Decl *VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000049 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000050 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000051 Decl *VisitFieldDecl(FieldDecl *D);
52 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
53 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000054 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000055 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregora735b202009-10-13 14:39:41 +000056 Decl *VisitFunctionDecl(FunctionDecl *D,
57 TemplateParameterList *TemplateParams = 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +000058 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000059 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
60 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000061 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000062 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000063 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000064 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000065 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +000066 Decl *VisitClassTemplatePartialSpecializationDecl(
67 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000068 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000069 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Douglas Gregor33642df2009-10-23 23:25:44 +000070 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
Douglas Gregor9106ef72009-11-11 16:58:32 +000071 Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Douglas Gregor48c32a72009-11-17 06:07:40 +000072 Decl *VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
John McCalled976492009-12-04 22:46:56 +000073 Decl *VisitUsingDecl(UsingDecl *D);
74 Decl *VisitUsingShadowDecl(UsingShadowDecl *D);
John McCall7ba107a2009-11-18 02:36:19 +000075 Decl *VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
76 Decl *VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000077
Douglas Gregor8dbc2692009-03-17 21:15:40 +000078 // Base case. FIXME: Remove once we can instantiate everything.
Douglas Gregor48c32a72009-11-17 06:07:40 +000079 Decl *VisitDecl(Decl *D) {
80 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
81 Diagnostic::Error,
82 "cannot instantiate %0 yet");
83 SemaRef.Diag(D->getLocation(), DiagID)
84 << D->getDeclKindName();
85
Douglas Gregor8dbc2692009-03-17 21:15:40 +000086 return 0;
87 }
Douglas Gregor5545e162009-03-24 00:38:23 +000088
John McCallfd810b12009-08-14 02:03:10 +000089 const LangOptions &getLangOptions() {
90 return SemaRef.getLangOptions();
91 }
92
Douglas Gregor5545e162009-03-24 00:38:23 +000093 // Helper functions for instantiating methods.
John McCall21ef0fa2010-03-11 09:03:00 +000094 TypeSourceInfo *SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000095 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000096 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000097 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000098
99 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +0000100 SubstTemplateParams(TemplateParameterList *List);
John McCallb6217662010-03-15 10:12:16 +0000101
102 bool SubstQualifier(const DeclaratorDecl *OldDecl,
103 DeclaratorDecl *NewDecl);
104 bool SubstQualifier(const TagDecl *OldDecl,
105 TagDecl *NewDecl);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000106
107 bool InstantiateClassTemplatePartialSpecialization(
108 ClassTemplateDecl *ClassTemplate,
109 ClassTemplatePartialSpecializationDecl *PartialSpec);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000110 };
111}
112
John McCallb6217662010-03-15 10:12:16 +0000113bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
114 DeclaratorDecl *NewDecl) {
115 NestedNameSpecifier *OldQual = OldDecl->getQualifier();
116 if (!OldQual) return false;
117
118 SourceRange QualRange = OldDecl->getQualifierRange();
119
120 NestedNameSpecifier *NewQual
121 = SemaRef.SubstNestedNameSpecifier(OldQual, QualRange, TemplateArgs);
122 if (!NewQual)
123 return true;
124
125 NewDecl->setQualifierInfo(NewQual, QualRange);
126 return false;
127}
128
129bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
130 TagDecl *NewDecl) {
131 NestedNameSpecifier *OldQual = OldDecl->getQualifier();
132 if (!OldQual) return false;
133
134 SourceRange QualRange = OldDecl->getQualifierRange();
135
136 NestedNameSpecifier *NewQual
137 = SemaRef.SubstNestedNameSpecifier(OldQual, QualRange, TemplateArgs);
138 if (!NewQual)
139 return true;
140
141 NewDecl->setQualifierInfo(NewQual, QualRange);
142 return false;
143}
144
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000145// FIXME: Is this too simple?
146void TemplateDeclInstantiator::InstantiateAttrs(Decl *Tmpl, Decl *New) {
147 for (const Attr *TmplAttr = Tmpl->getAttrs(); TmplAttr;
148 TmplAttr = TmplAttr->getNext()) {
149
150 // FIXME: Is cloning correct for all attributes?
151 Attr *NewAttr = TmplAttr->clone(SemaRef.Context);
152
153 New->addAttr(NewAttr);
154 }
155}
156
Douglas Gregor4f722be2009-03-25 15:45:12 +0000157Decl *
158TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
159 assert(false && "Translation units cannot be instantiated");
160 return D;
161}
162
163Decl *
164TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
165 assert(false && "Namespaces cannot be instantiated");
166 return D;
167}
168
John McCall3dbd3d52010-02-16 06:53:13 +0000169Decl *
170TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
171 NamespaceAliasDecl *Inst
172 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
173 D->getNamespaceLoc(),
174 D->getAliasLoc(),
175 D->getNamespace()->getIdentifier(),
176 D->getQualifierRange(),
177 D->getQualifier(),
178 D->getTargetNameLoc(),
179 D->getNamespace());
180 Owner->addDecl(Inst);
181 return Inst;
182}
183
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000184Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
185 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000186 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCallba6a9bd2009-10-24 08:00:42 +0000187 if (DI->getType()->isDependentType()) {
188 DI = SemaRef.SubstType(DI, TemplateArgs,
189 D->getLocation(), D->getDeclName());
190 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000191 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000192 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000193 }
194 }
Mike Stump1eb44332009-09-09 15:08:12 +0000195
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000196 // Create the new typedef
197 TypedefDecl *Typedef
198 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
John McCallba6a9bd2009-10-24 08:00:42 +0000199 D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000200 if (Invalid)
201 Typedef->setInvalidDecl();
202
Douglas Gregord57a38e2010-04-23 16:25:07 +0000203 if (const TagType *TT = DI->getType()->getAs<TagType>()) {
204 TagDecl *TD = TT->getDecl();
205
206 // If the TagDecl that the TypedefDecl points to is an anonymous decl
207 // keep track of the TypedefDecl.
208 if (!TD->getIdentifier() && !TD->getTypedefForAnonDecl())
209 TD->setTypedefForAnonDecl(Typedef);
210 }
211
John McCall5126fd02009-12-30 00:31:22 +0000212 if (TypedefDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000213 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
214 TemplateArgs);
John McCall5126fd02009-12-30 00:31:22 +0000215 Typedef->setPreviousDeclaration(cast<TypedefDecl>(InstPrev));
216 }
217
Douglas Gregord57a38e2010-04-23 16:25:07 +0000218
John McCall46460a62010-01-20 21:53:11 +0000219 Typedef->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000220 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000222 return Typedef;
223}
224
Douglas Gregor6eef5192009-12-14 19:27:10 +0000225/// \brief Instantiate the arguments provided as part of initialization.
226///
227/// \returns true if an error occurred, false otherwise.
228static bool InstantiateInitializationArguments(Sema &SemaRef,
229 Expr **Args, unsigned NumArgs,
230 const MultiLevelTemplateArgumentList &TemplateArgs,
231 llvm::SmallVectorImpl<SourceLocation> &FakeCommaLocs,
232 ASTOwningVector<&ActionBase::DeleteExpr> &InitArgs) {
233 for (unsigned I = 0; I != NumArgs; ++I) {
234 // When we hit the first defaulted argument, break out of the loop:
235 // we don't pass those default arguments on.
236 if (Args[I]->isDefaultArgument())
237 break;
238
239 Sema::OwningExprResult Arg = SemaRef.SubstExpr(Args[I], TemplateArgs);
240 if (Arg.isInvalid())
241 return true;
242
243 Expr *ArgExpr = (Expr *)Arg.get();
244 InitArgs.push_back(Arg.release());
245
246 // FIXME: We're faking all of the comma locations. Do we need them?
247 FakeCommaLocs.push_back(
248 SemaRef.PP.getLocForEndOfToken(ArgExpr->getLocEnd()));
249 }
250
251 return false;
252}
253
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000254/// \brief Instantiate an initializer, breaking it into separate
255/// initialization arguments.
256///
257/// \param S The semantic analysis object.
258///
259/// \param Init The initializer to instantiate.
260///
261/// \param TemplateArgs Template arguments to be substituted into the
262/// initializer.
263///
264/// \param NewArgs Will be filled in with the instantiation arguments.
265///
266/// \returns true if an error occurred, false otherwise
267static bool InstantiateInitializer(Sema &S, Expr *Init,
268 const MultiLevelTemplateArgumentList &TemplateArgs,
269 SourceLocation &LParenLoc,
270 llvm::SmallVector<SourceLocation, 4> &CommaLocs,
271 ASTOwningVector<&ActionBase::DeleteExpr> &NewArgs,
272 SourceLocation &RParenLoc) {
273 NewArgs.clear();
274 LParenLoc = SourceLocation();
275 RParenLoc = SourceLocation();
276
277 if (!Init)
278 return false;
279
280 if (CXXExprWithTemporaries *ExprTemp = dyn_cast<CXXExprWithTemporaries>(Init))
281 Init = ExprTemp->getSubExpr();
282
283 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
284 Init = Binder->getSubExpr();
285
286 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
287 Init = ICE->getSubExprAsWritten();
288
289 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
290 LParenLoc = ParenList->getLParenLoc();
291 RParenLoc = ParenList->getRParenLoc();
292 return InstantiateInitializationArguments(S, ParenList->getExprs(),
293 ParenList->getNumExprs(),
294 TemplateArgs, CommaLocs,
295 NewArgs);
296 }
297
298 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000299 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
300 if (InstantiateInitializationArguments(S,
301 Construct->getArgs(),
302 Construct->getNumArgs(),
303 TemplateArgs,
304 CommaLocs, NewArgs))
305 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000306
Douglas Gregor28329e52010-03-24 21:22:47 +0000307 // FIXME: Fake locations!
308 LParenLoc = S.PP.getLocForEndOfToken(Init->getLocStart());
309 RParenLoc = CommaLocs.empty()? LParenLoc : CommaLocs.back();
310 return false;
311 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000312 }
313
314 Sema::OwningExprResult Result = S.SubstExpr(Init, TemplateArgs);
315 if (Result.isInvalid())
316 return true;
317
318 NewArgs.push_back(Result.takeAs<Expr>());
319 return false;
320}
321
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000322Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000323 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000324 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000325 TemplateArgs,
326 D->getTypeSpecStartLoc(),
327 D->getDeclName());
328 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000329 return 0;
330
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000331 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000332 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
333 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000334 DI->getType(), DI,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000335 D->getStorageClass(),
336 D->getStorageClassAsWritten());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000337 Var->setThreadSpecified(D->isThreadSpecified());
338 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
339 Var->setDeclaredInCondition(D->isDeclaredInCondition());
Mike Stump1eb44332009-09-09 15:08:12 +0000340
John McCallb6217662010-03-15 10:12:16 +0000341 // Substitute the nested name specifier, if any.
342 if (SubstQualifier(D, Var))
343 return 0;
344
Mike Stump1eb44332009-09-09 15:08:12 +0000345 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000346 // out-of-line, the instantiation will have the same lexical
347 // context (which will be a namespace scope) as the template.
348 if (D->isOutOfLine())
349 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000350
John McCall46460a62010-01-20 21:53:11 +0000351 Var->setAccess(D->getAccess());
352
Mike Stump390b4cc2009-05-16 07:39:55 +0000353 // FIXME: In theory, we could have a previous declaration for variables that
354 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000355 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000356 // FIXME: having to fake up a LookupResult is dumb.
357 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000358 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000359 if (D->isStaticDataMember())
360 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000361 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000362
Douglas Gregor7caa6822009-07-24 20:34:43 +0000363 if (D->isOutOfLine()) {
364 D->getLexicalDeclContext()->addDecl(Var);
365 Owner->makeDeclVisibleInContext(Var);
366 } else {
367 Owner->addDecl(Var);
368 }
Mike Stump1eb44332009-09-09 15:08:12 +0000369
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000370 // Link instantiations of static data members back to the template from
371 // which they were instantiated.
372 if (Var->isStaticDataMember())
373 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000374 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000375
Douglas Gregor60c93c92010-02-09 07:26:29 +0000376 if (Var->getAnyInitializer()) {
377 // We already have an initializer in the class.
378 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000379 if (Var->isStaticDataMember() && !D->isOutOfLine())
380 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
381 else
382 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
383
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000384 // Instantiate the initializer.
385 SourceLocation LParenLoc, RParenLoc;
386 llvm::SmallVector<SourceLocation, 4> CommaLocs;
387 ASTOwningVector<&ActionBase::DeleteExpr> InitArgs(SemaRef);
388 if (!InstantiateInitializer(SemaRef, D->getInit(), TemplateArgs, LParenLoc,
389 CommaLocs, InitArgs, RParenLoc)) {
390 // Attach the initializer to the declaration.
391 if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000392 // Add the direct initializer to the declaration.
Douglas Gregora88cfbf2009-12-12 18:16:41 +0000393 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000394 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000395 move_arg(InitArgs),
396 CommaLocs.data(),
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000397 RParenLoc);
398 } else if (InitArgs.size() == 1) {
399 Expr *Init = (Expr*)(InitArgs.take()[0]);
400 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var),
401 SemaRef.Owned(Init),
402 false);
403 } else {
404 assert(InitArgs.size() == 0);
405 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000406 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000407 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000408 // FIXME: Not too happy about invalidating the declaration
409 // because of a bogus initializer.
410 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000411 }
412
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000413 SemaRef.PopExpressionEvaluationContext();
Douglas Gregor65b90052009-07-27 17:43:39 +0000414 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
415 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000416
417 return Var;
418}
419
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000420Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
421 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000422 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000423 if (DI->getType()->isDependentType()) {
424 DI = SemaRef.SubstType(DI, TemplateArgs,
425 D->getLocation(), D->getDeclName());
426 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000427 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000428 Invalid = true;
429 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000430 // C++ [temp.arg.type]p3:
431 // If a declaration acquires a function type through a type
432 // dependent on a template-parameter and this causes a
433 // declaration that does not use the syntactic form of a
434 // function declarator to have function type, the program is
435 // ill-formed.
436 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000437 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000438 Invalid = true;
439 }
440 }
441
442 Expr *BitWidth = D->getBitWidth();
443 if (Invalid)
444 BitWidth = 0;
445 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000446 // The bit-width expression is not potentially evaluated.
447 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000449 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000450 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000451 if (InstantiatedBitWidth.isInvalid()) {
452 Invalid = true;
453 BitWidth = 0;
454 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000455 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000456 }
457
John McCall07fb6be2009-10-22 23:33:21 +0000458 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
459 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000460 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000461 D->getLocation(),
462 D->isMutable(),
463 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000464 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000465 D->getAccess(),
466 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000467 if (!Field) {
468 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000469 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000470 }
Mike Stump1eb44332009-09-09 15:08:12 +0000471
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000472 InstantiateAttrs(D, Field);
473
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000474 if (Invalid)
475 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000476
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000477 if (!Field->getDeclName()) {
478 // Keep track of where this decl came from.
479 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000480 }
Mike Stump1eb44332009-09-09 15:08:12 +0000481
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000482 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000483 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000484 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000485
486 return Field;
487}
488
John McCall02cace72009-08-28 07:59:38 +0000489Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCall02cace72009-08-28 07:59:38 +0000490 // Handle friend type expressions by simply substituting template
Douglas Gregor06245bf2010-04-07 17:57:12 +0000491 // parameters into the pattern type and checking the result.
John McCall32f2fb52010-03-25 18:04:51 +0000492 if (TypeSourceInfo *Ty = D->getFriendType()) {
493 TypeSourceInfo *InstTy =
494 SemaRef.SubstType(Ty, TemplateArgs,
495 D->getLocation(), DeclarationName());
Douglas Gregor06245bf2010-04-07 17:57:12 +0000496 if (!InstTy)
Douglas Gregor7557a132009-12-24 20:56:24 +0000497 return 0;
John McCall02cace72009-08-28 07:59:38 +0000498
Douglas Gregor06245bf2010-04-07 17:57:12 +0000499 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getFriendLoc(), InstTy);
500 if (!FD)
501 return 0;
502
503 FD->setAccess(AS_public);
504 Owner->addDecl(FD);
505 return FD;
506 }
507
508 NamedDecl *ND = D->getFriendDecl();
509 assert(ND && "friend decl must be a decl or a type!");
510
John McCallaf2094e2010-04-08 09:05:18 +0000511 // All of the Visit implementations for the various potential friend
512 // declarations have to be carefully written to work for friend
513 // objects, with the most important detail being that the target
514 // decl should almost certainly not be placed in Owner.
515 Decl *NewND = Visit(ND);
Douglas Gregor06245bf2010-04-07 17:57:12 +0000516 if (!NewND) return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000517
John McCall02cace72009-08-28 07:59:38 +0000518 FriendDecl *FD =
Douglas Gregor06245bf2010-04-07 17:57:12 +0000519 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
520 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000521 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000522 Owner->addDecl(FD);
523 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000524}
525
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000526Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
527 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000528
Douglas Gregorac7610d2009-06-22 20:57:11 +0000529 // The expression in a static assertion is not potentially evaluated.
530 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000531
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000532 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000533 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000534 if (InstantiatedAssertExpr.isInvalid())
535 return 0;
536
Douglas Gregor43d9d922009-08-08 01:41:12 +0000537 OwningExprResult Message(SemaRef, D->getMessage());
538 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000539 Decl *StaticAssert
540 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000541 move(InstantiatedAssertExpr),
542 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000543 return StaticAssert;
544}
545
546Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000547 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000548 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000549 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000550 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000551 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000552 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000553 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000554 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000555 Enum->startDefinition();
556
Douglas Gregor96084f12010-03-01 19:00:07 +0000557 if (D->getDeclContext()->isFunctionOrMethod())
558 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
559
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000560 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000561
562 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000563 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
564 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000565 EC != ECEnd; ++EC) {
566 // The specified value for the enumerator.
567 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000568 if (Expr *UninstValue = EC->getInitExpr()) {
569 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000570 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000571 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000572
John McCallce3ff2b2009-08-25 22:02:44 +0000573 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000574 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000575
576 // Drop the initial value and continue.
577 bool isInvalid = false;
578 if (Value.isInvalid()) {
579 Value = SemaRef.Owned((Expr *)0);
580 isInvalid = true;
581 }
582
Mike Stump1eb44332009-09-09 15:08:12 +0000583 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000584 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
585 EC->getLocation(), EC->getIdentifier(),
586 move(Value));
587
588 if (isInvalid) {
589 if (EnumConst)
590 EnumConst->setInvalidDecl();
591 Enum->setInvalidDecl();
592 }
593
594 if (EnumConst) {
John McCall3b85ecf2010-01-23 22:37:59 +0000595 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000596 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000597 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000598 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000599
600 if (D->getDeclContext()->isFunctionOrMethod()) {
601 // If the enumeration is within a function or method, record the enum
602 // constant as a local.
603 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
604 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000605 }
606 }
Mike Stump1eb44332009-09-09 15:08:12 +0000607
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000608 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000609 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000610 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
611 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000612 &Enumerators[0], Enumerators.size(),
613 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000614
615 return Enum;
616}
617
Douglas Gregor6477b692009-03-25 15:04:13 +0000618Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
619 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
620 return 0;
621}
622
John McCalle29ba202009-08-20 01:44:21 +0000623Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000624 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
625
Douglas Gregor550d9b22009-10-31 17:21:17 +0000626 // Create a local instantiation scope for this class template, which
627 // will contain the instantiations of the template parameters.
628 Sema::LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000629 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000630 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000631 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000632 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000633
634 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000635
636 // Instantiate the qualifier. We have to do this first in case
637 // we're a friend declaration, because if we are then we need to put
638 // the new declaration in the appropriate context.
639 NestedNameSpecifier *Qualifier = Pattern->getQualifier();
640 if (Qualifier) {
641 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
642 Pattern->getQualifierRange(),
643 TemplateArgs);
644 if (!Qualifier) return 0;
645 }
646
647 CXXRecordDecl *PrevDecl = 0;
648 ClassTemplateDecl *PrevClassTemplate = 0;
649
650 // If this isn't a friend, then it's a member template, in which
651 // case we just want to build the instantiation in the
652 // specialization. If it is a friend, we want to build it in
653 // the appropriate context.
654 DeclContext *DC = Owner;
655 if (isFriend) {
656 if (Qualifier) {
657 CXXScopeSpec SS;
658 SS.setScopeRep(Qualifier);
659 SS.setRange(Pattern->getQualifierRange());
660 DC = SemaRef.computeDeclContext(SS);
661 if (!DC) return 0;
662 } else {
663 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
664 Pattern->getDeclContext(),
665 TemplateArgs);
666 }
667
668 // Look for a previous declaration of the template in the owning
669 // context.
670 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
671 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
672 SemaRef.LookupQualifiedName(R, DC);
673
674 if (R.isSingleResult()) {
675 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
676 if (PrevClassTemplate)
677 PrevDecl = PrevClassTemplate->getTemplatedDecl();
678 }
679
680 if (!PrevClassTemplate && Qualifier) {
681 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregor1eabb7d2010-03-31 23:17:41 +0000682 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
683 << Pattern->getQualifierRange();
John McCall93ba8572010-03-25 06:39:04 +0000684 return 0;
685 }
686
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000687 bool AdoptedPreviousTemplateParams = false;
John McCall93ba8572010-03-25 06:39:04 +0000688 if (PrevClassTemplate) {
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000689 bool Complain = true;
690
691 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
692 // template for struct std::tr1::__detail::_Map_base, where the
693 // template parameters of the friend declaration don't match the
694 // template parameters of the original declaration. In this one
695 // case, we don't complain about the ill-formed friend
696 // declaration.
697 if (isFriend && Pattern->getIdentifier() &&
698 Pattern->getIdentifier()->isStr("_Map_base") &&
699 DC->isNamespace() &&
700 cast<NamespaceDecl>(DC)->getIdentifier() &&
701 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
702 DeclContext *DCParent = DC->getParent();
703 if (DCParent->isNamespace() &&
704 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
705 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
706 DeclContext *DCParent2 = DCParent->getParent();
707 if (DCParent2->isNamespace() &&
708 cast<NamespaceDecl>(DCParent2)->getIdentifier() &&
709 cast<NamespaceDecl>(DCParent2)->getIdentifier()->isStr("std") &&
710 DCParent2->getParent()->isTranslationUnit())
711 Complain = false;
712 }
713 }
714
John McCall93ba8572010-03-25 06:39:04 +0000715 TemplateParameterList *PrevParams
716 = PrevClassTemplate->getTemplateParameters();
717
718 // Make sure the parameter lists match.
719 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000720 Complain,
721 Sema::TPL_TemplateMatch)) {
722 if (Complain)
723 return 0;
724
725 AdoptedPreviousTemplateParams = true;
726 InstParams = PrevParams;
727 }
John McCall93ba8572010-03-25 06:39:04 +0000728
729 // Do some additional validation, then merge default arguments
730 // from the existing declarations.
Douglas Gregorc53d0d72010-04-08 18:16:15 +0000731 if (!AdoptedPreviousTemplateParams &&
732 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall93ba8572010-03-25 06:39:04 +0000733 Sema::TPC_ClassTemplate))
734 return 0;
735 }
736 }
737
John McCalle29ba202009-08-20 01:44:21 +0000738 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000739 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
John McCalle29ba202009-08-20 01:44:21 +0000740 Pattern->getLocation(), Pattern->getIdentifier(),
John McCall93ba8572010-03-25 06:39:04 +0000741 Pattern->getTagKeywordLoc(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000742 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000743
John McCall93ba8572010-03-25 06:39:04 +0000744 if (Qualifier)
745 RecordInst->setQualifierInfo(Qualifier, Pattern->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000746
John McCalle29ba202009-08-20 01:44:21 +0000747 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000748 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
749 D->getIdentifier(), InstParams, RecordInst,
750 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000751 RecordInst->setDescribedClassTemplate(Inst);
John McCallea7390c2010-04-08 20:25:50 +0000752
John McCall93ba8572010-03-25 06:39:04 +0000753 if (isFriend) {
John McCallea7390c2010-04-08 20:25:50 +0000754 if (PrevClassTemplate)
755 Inst->setAccess(PrevClassTemplate->getAccess());
756 else
757 Inst->setAccess(D->getAccess());
758
John McCall93ba8572010-03-25 06:39:04 +0000759 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
760 // TODO: do we want to track the instantiation progeny of this
761 // friend target decl?
762 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000763 Inst->setAccess(D->getAccess());
John McCall93ba8572010-03-25 06:39:04 +0000764 Inst->setInstantiatedFromMemberTemplate(D);
765 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000766
767 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000768 SemaRef.Context.getInjectedClassNameType(RecordInst,
769 Inst->getInjectedClassNameSpecialization(SemaRef.Context));
John McCallea7390c2010-04-08 20:25:50 +0000770
Douglas Gregor259571e2009-10-30 22:42:42 +0000771 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000772 if (isFriend) {
773 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000774 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000775 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000776
John McCalle29ba202009-08-20 01:44:21 +0000777 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000778
Douglas Gregored9c0f92009-10-29 00:04:11 +0000779 // Instantiate all of the partial specializations of this member class
780 // template.
Douglas Gregordc60c1e2010-04-30 05:56:50 +0000781 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
782 D->getPartialSpecializations(PartialSpecs);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000783 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
784 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
785
John McCalle29ba202009-08-20 01:44:21 +0000786 return Inst;
787}
788
Douglas Gregord60e1052009-08-27 16:57:43 +0000789Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000790TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
791 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000792 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
793
794 // Lookup the already-instantiated declaration in the instantiation
795 // of the class template and return that.
796 DeclContext::lookup_result Found
797 = Owner->lookup(ClassTemplate->getDeclName());
798 if (Found.first == Found.second)
799 return 0;
800
801 ClassTemplateDecl *InstClassTemplate
802 = dyn_cast<ClassTemplateDecl>(*Found.first);
803 if (!InstClassTemplate)
804 return 0;
805
806 Decl *DCanon = D->getCanonicalDecl();
807 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
808 P = InstClassTemplate->getPartialSpecializations().begin(),
809 PEnd = InstClassTemplate->getPartialSpecializations().end();
810 P != PEnd; ++P) {
811 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
812 return &*P;
813 }
814
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000815 return 0;
816}
817
818Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000819TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000820 // Create a local instantiation scope for this function template, which
821 // will contain the instantiations of the template parameters and then get
822 // merged with the local instantiation scope for the function template
823 // itself.
824 Sema::LocalInstantiationScope Scope(SemaRef);
Douglas Gregor895162d2010-04-30 18:55:50 +0000825
Douglas Gregord60e1052009-08-27 16:57:43 +0000826 TemplateParameterList *TempParams = D->getTemplateParameters();
827 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000828 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000829 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000830
Douglas Gregora735b202009-10-13 14:39:41 +0000831 FunctionDecl *Instantiated = 0;
832 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
833 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
834 InstParams));
835 else
836 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
837 D->getTemplatedDecl(),
838 InstParams));
839
840 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000841 return 0;
842
John McCall46460a62010-01-20 21:53:11 +0000843 Instantiated->setAccess(D->getAccess());
844
Mike Stump1eb44332009-09-09 15:08:12 +0000845 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000846 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000847 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000848 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000849 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000850 assert(InstTemplate &&
851 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000852
John McCallb1a56e72010-03-26 23:10:15 +0000853 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
854
John McCalle976ffe2009-12-14 23:19:40 +0000855 // Link the instantiation back to the pattern *unless* this is a
856 // non-definition friend declaration.
857 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000858 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000859 InstTemplate->setInstantiatedFromMemberTemplate(D);
860
John McCallb1a56e72010-03-26 23:10:15 +0000861 // Make declarations visible in the appropriate context.
862 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000863 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000864
Douglas Gregord60e1052009-08-27 16:57:43 +0000865 return InstTemplate;
866}
867
Douglas Gregord475b8d2009-03-25 21:17:03 +0000868Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
869 CXXRecordDecl *PrevDecl = 0;
870 if (D->isInjectedClassName())
871 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000872 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000873 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
874 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000875 TemplateArgs);
876 if (!Prev) return 0;
877 PrevDecl = cast<CXXRecordDecl>(Prev);
878 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000879
880 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000881 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000882 D->getLocation(), D->getIdentifier(),
883 D->getTagKeywordLoc(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000884
885 // Substitute the nested name specifier, if any.
886 if (SubstQualifier(D, Record))
887 return 0;
888
Douglas Gregord475b8d2009-03-25 21:17:03 +0000889 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000890 // FIXME: Check against AS_none is an ugly hack to work around the issue that
891 // the tag decls introduced by friend class declarations don't have an access
892 // specifier. Remove once this area of the code gets sorted out.
893 if (D->getAccess() != AS_none)
894 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000895 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000896 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000897
John McCall02cace72009-08-28 07:59:38 +0000898 // If the original function was part of a friend declaration,
899 // inherit its namespace state.
900 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
901 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
902
Anders Carlssond8b285f2009-09-01 04:26:58 +0000903 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
904
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000905 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000906 return Record;
907}
908
John McCall02cace72009-08-28 07:59:38 +0000909/// Normal class members are of more specific types and therefore
910/// don't make it here. This function serves two purposes:
911/// 1) instantiating function templates
912/// 2) substituting friend declarations
913/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000914Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000915 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000916 // Check whether there is already a function template specialization for
917 // this declaration.
918 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
919 void *InsertPos = 0;
John McCallb0cb0222010-03-27 05:57:59 +0000920 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000921 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000922 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000923 TemplateArgs.getInnermost().getFlatArgumentList(),
924 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000925 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000926
927 FunctionTemplateSpecializationInfo *Info
928 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000929 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000930
Douglas Gregor127102b2009-06-29 20:59:39 +0000931 // If we already have a function template specialization, return it.
932 if (Info)
933 return Info->Function;
934 }
Mike Stump1eb44332009-09-09 15:08:12 +0000935
John McCallb0cb0222010-03-27 05:57:59 +0000936 bool isFriend;
937 if (FunctionTemplate)
938 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
939 else
940 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
941
Douglas Gregor79c22782010-01-16 20:21:20 +0000942 bool MergeWithParentScope = (TemplateParams != 0) ||
943 !(isa<Decl>(Owner) &&
944 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
945 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000946
Douglas Gregore53060f2009-06-25 22:08:12 +0000947 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +0000948 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
949 TInfo = SubstFunctionType(D, Params);
950 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000951 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +0000952 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +0000953
John McCalld325daa2010-03-26 04:53:08 +0000954 NestedNameSpecifier *Qualifier = D->getQualifier();
955 if (Qualifier) {
956 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
957 D->getQualifierRange(),
958 TemplateArgs);
959 if (!Qualifier) return 0;
960 }
961
John McCall68b6b872010-02-06 01:50:47 +0000962 // If we're instantiating a local function declaration, put the result
963 // in the owner; otherwise we need to find the instantiated context.
964 DeclContext *DC;
965 if (D->getDeclContext()->isFunctionOrMethod())
966 DC = Owner;
John McCalld325daa2010-03-26 04:53:08 +0000967 else if (isFriend && Qualifier) {
968 CXXScopeSpec SS;
969 SS.setScopeRep(Qualifier);
970 SS.setRange(D->getQualifierRange());
971 DC = SemaRef.computeDeclContext(SS);
972 if (!DC) return 0;
973 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000974 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
975 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +0000976 }
John McCall68b6b872010-02-06 01:50:47 +0000977
John McCall02cace72009-08-28 07:59:38 +0000978 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000979 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +0000980 D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +0000981 D->getStorageClass(), D->getStorageClassAsWritten(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000982 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +0000983
John McCalld325daa2010-03-26 04:53:08 +0000984 if (Qualifier)
985 Function->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000986
John McCallb1a56e72010-03-26 23:10:15 +0000987 DeclContext *LexicalDC = Owner;
988 if (!isFriend && D->isOutOfLine()) {
989 assert(D->getDeclContext()->isFileContext());
990 LexicalDC = D->getDeclContext();
991 }
992
993 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Douglas Gregore53060f2009-06-25 22:08:12 +0000995 // Attach the parameters
996 for (unsigned P = 0; P < Params.size(); ++P)
997 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +0000998 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000999
Douglas Gregora735b202009-10-13 14:39:41 +00001000 if (TemplateParams) {
1001 // Our resulting instantiation is actually a function template, since we
1002 // are substituting only the outer template parameters. For example, given
1003 //
1004 // template<typename T>
1005 // struct X {
1006 // template<typename U> friend void f(T, U);
1007 // };
1008 //
1009 // X<int> x;
1010 //
1011 // We are instantiating the friend function template "f" within X<int>,
1012 // which means substituting int for T, but leaving "f" as a friend function
1013 // template.
1014 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001015 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001016 Function->getLocation(),
1017 Function->getDeclName(),
1018 TemplateParams, Function);
1019 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001020
1021 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001022
1023 if (isFriend && D->isThisDeclarationADefinition()) {
1024 // TODO: should we remember this connection regardless of whether
1025 // the friend declaration provided a body?
1026 FunctionTemplate->setInstantiatedFromMemberTemplate(
1027 D->getDescribedFunctionTemplate());
1028 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001029 } else if (FunctionTemplate) {
1030 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +00001031 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +00001032 &TemplateArgs.getInnermost(),
1033 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001034 } else if (isFriend && D->isThisDeclarationADefinition()) {
1035 // TODO: should we remember this connection regardless of whether
1036 // the friend declaration provided a body?
1037 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001038 }
Douglas Gregora735b202009-10-13 14:39:41 +00001039
Douglas Gregore53060f2009-06-25 22:08:12 +00001040 if (InitFunctionInstantiation(Function, D))
1041 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001042
Douglas Gregore53060f2009-06-25 22:08:12 +00001043 bool Redeclaration = false;
1044 bool OverloadableAttrRequired = false;
John McCallaf2094e2010-04-08 09:05:18 +00001045 bool isExplicitSpecialization = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001046
John McCall68263142009-11-18 22:49:29 +00001047 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1048 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1049
John McCallaf2094e2010-04-08 09:05:18 +00001050 if (DependentFunctionTemplateSpecializationInfo *Info
1051 = D->getDependentSpecializationInfo()) {
1052 assert(isFriend && "non-friend has dependent specialization info?");
1053
1054 // This needs to be set now for future sanity.
1055 Function->setObjectOfFriendDecl(/*HasPrevious*/ true);
1056
1057 // Instantiate the explicit template arguments.
1058 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1059 Info->getRAngleLoc());
1060 for (unsigned I = 0, E = Info->getNumTemplateArgs(); I != E; ++I) {
1061 TemplateArgumentLoc Loc;
1062 if (SemaRef.Subst(Info->getTemplateArg(I), Loc, TemplateArgs))
1063 return 0;
1064
1065 ExplicitArgs.addArgument(Loc);
1066 }
1067
1068 // Map the candidate templates to their instantiations.
1069 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1070 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1071 Info->getTemplate(I),
1072 TemplateArgs);
1073 if (!Temp) return 0;
1074
1075 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1076 }
1077
1078 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1079 &ExplicitArgs,
1080 Previous))
1081 Function->setInvalidDecl();
1082
1083 isExplicitSpecialization = true;
1084
1085 } else if (TemplateParams || !FunctionTemplate) {
Douglas Gregora735b202009-10-13 14:39:41 +00001086 // Look only into the namespace where the friend would be declared to
1087 // find a previous declaration. This is the innermost enclosing namespace,
1088 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001089 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001090
Douglas Gregora735b202009-10-13 14:39:41 +00001091 // In C++, the previous declaration we find might be a tag type
1092 // (class or enum). In this case, the new declaration will hide the
1093 // tag type. Note that this does does not apply if we're declaring a
1094 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001095 if (Previous.isSingleTagDecl())
1096 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001097 }
1098
John McCall9f54ad42009-12-10 09:41:52 +00001099 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
John McCallaf2094e2010-04-08 09:05:18 +00001100 isExplicitSpecialization, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +00001101 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001102
John McCall76d32642010-04-24 01:30:58 +00001103 NamedDecl *PrincipalDecl = (TemplateParams
1104 ? cast<NamedDecl>(FunctionTemplate)
1105 : Function);
1106
Douglas Gregora735b202009-10-13 14:39:41 +00001107 // If the original function was part of a friend declaration,
1108 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001109 if (isFriend) {
John McCall68263142009-11-18 22:49:29 +00001110 NamedDecl *PrevDecl;
John McCall76d32642010-04-24 01:30:58 +00001111 if (TemplateParams)
Douglas Gregora735b202009-10-13 14:39:41 +00001112 PrevDecl = FunctionTemplate->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001113 else
Douglas Gregora735b202009-10-13 14:39:41 +00001114 PrevDecl = Function->getPreviousDeclaration();
John McCall76d32642010-04-24 01:30:58 +00001115
1116 PrincipalDecl->setObjectOfFriendDecl(PrevDecl != 0);
1117 DC->makeDeclVisibleInContext(PrincipalDecl, /*Recoverable=*/ false);
Douglas Gregora735b202009-10-13 14:39:41 +00001118 }
1119
John McCall76d32642010-04-24 01:30:58 +00001120 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1121 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1122 PrincipalDecl->setNonMemberOperator();
1123
Douglas Gregore53060f2009-06-25 22:08:12 +00001124 return Function;
1125}
1126
Douglas Gregord60e1052009-08-27 16:57:43 +00001127Decl *
1128TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1129 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001130 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1131 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001132 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001133 // We are creating a function template specialization from a function
1134 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001135 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +00001136 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +00001137 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001138 TemplateArgs.getInnermost().getFlatArgumentList(),
1139 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +00001140 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +00001141
1142 FunctionTemplateSpecializationInfo *Info
1143 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +00001144 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001145
Douglas Gregor6b906862009-08-21 00:16:32 +00001146 // If we already have a function template specialization, return it.
1147 if (Info)
1148 return Info->Function;
1149 }
1150
John McCallb0cb0222010-03-27 05:57:59 +00001151 bool isFriend;
1152 if (FunctionTemplate)
1153 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1154 else
1155 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1156
Douglas Gregor79c22782010-01-16 20:21:20 +00001157 bool MergeWithParentScope = (TemplateParams != 0) ||
1158 !(isa<Decl>(Owner) &&
1159 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
1160 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001161
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001162 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001163 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1164 TInfo = SubstFunctionType(D, Params);
1165 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001166 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001167 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001168
John McCallb0cb0222010-03-27 05:57:59 +00001169 NestedNameSpecifier *Qualifier = D->getQualifier();
1170 if (Qualifier) {
1171 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
1172 D->getQualifierRange(),
1173 TemplateArgs);
1174 if (!Qualifier) return 0;
1175 }
1176
1177 DeclContext *DC = Owner;
1178 if (isFriend) {
1179 if (Qualifier) {
1180 CXXScopeSpec SS;
1181 SS.setScopeRep(Qualifier);
1182 SS.setRange(D->getQualifierRange());
1183 DC = SemaRef.computeDeclContext(SS);
1184 } else {
1185 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1186 D->getDeclContext(),
1187 TemplateArgs);
1188 }
1189 if (!DC) return 0;
1190 }
1191
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001192 // Build the instantiated method declaration.
John McCallb0cb0222010-03-27 05:57:59 +00001193 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Douglas Gregordec06662009-08-21 18:42:58 +00001194 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Douglas Gregordec06662009-08-21 18:42:58 +00001196 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +00001197 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +00001198 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
1199 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
1200 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +00001201 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
1202 Constructor->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001203 Name, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001204 Constructor->isExplicit(),
Douglas Gregor16573fa2010-04-19 22:54:31 +00001205 Constructor->isInlineSpecified(),
1206 false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001207 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
1208 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
1209 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
1210 SemaRef.Context.getCanonicalType(ClassTy));
1211 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
1212 Destructor->getLocation(), Name,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001213 T, Destructor->isInlineSpecified(),
1214 false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001215 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001216 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001217 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +00001218 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001219 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
1220 ConvTy);
1221 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
1222 Conversion->getLocation(), Name,
John McCall21ef0fa2010-03-11 09:03:00 +00001223 T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001224 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001225 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +00001226 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001227 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001228 D->getDeclName(), T, TInfo,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001229 D->isStatic(),
1230 D->getStorageClassAsWritten(),
1231 D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +00001232 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001233
John McCallb0cb0222010-03-27 05:57:59 +00001234 if (Qualifier)
1235 Method->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +00001236
Douglas Gregord60e1052009-08-27 16:57:43 +00001237 if (TemplateParams) {
1238 // Our resulting instantiation is actually a function template, since we
1239 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001240 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001241 // template<typename T>
1242 // struct X {
1243 // template<typename U> void f(T, U);
1244 // };
1245 //
1246 // X<int> x;
1247 //
1248 // We are instantiating the member template "f" within X<int>, which means
1249 // substituting int for T, but leaving "f" as a member function template.
1250 // Build the function template itself.
1251 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1252 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001253 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001254 TemplateParams, Method);
John McCallb0cb0222010-03-27 05:57:59 +00001255 if (isFriend) {
1256 FunctionTemplate->setLexicalDeclContext(Owner);
1257 FunctionTemplate->setObjectOfFriendDecl(true);
1258 } else if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001259 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001260 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001261 } else if (FunctionTemplate) {
1262 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +00001263 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +00001264 &TemplateArgs.getInnermost(),
1265 InsertPos);
John McCallb0cb0222010-03-27 05:57:59 +00001266 } else if (!isFriend) {
Douglas Gregor66724ea2009-11-14 01:20:54 +00001267 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001268 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001269 }
1270
Mike Stump1eb44332009-09-09 15:08:12 +00001271 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001272 // out-of-line, the instantiation will have the same lexical
1273 // context (which will be a namespace scope) as the template.
John McCallb0cb0222010-03-27 05:57:59 +00001274 if (isFriend) {
1275 Method->setLexicalDeclContext(Owner);
1276 Method->setObjectOfFriendDecl(true);
1277 } else if (D->isOutOfLine())
Douglas Gregor7caa6822009-07-24 20:34:43 +00001278 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Douglas Gregor5545e162009-03-24 00:38:23 +00001280 // Attach the parameters
1281 for (unsigned P = 0; P < Params.size(); ++P)
1282 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001283 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001284
1285 if (InitMethodInstantiation(Method, D))
1286 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001287
John McCall68263142009-11-18 22:49:29 +00001288 LookupResult Previous(SemaRef, Name, SourceLocation(),
1289 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001290
John McCallb0cb0222010-03-27 05:57:59 +00001291 if (!FunctionTemplate || TemplateParams || isFriend) {
1292 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001293
Douglas Gregordec06662009-08-21 18:42:58 +00001294 // In C++, the previous declaration we find might be a tag type
1295 // (class or enum). In this case, the new declaration will hide the
1296 // tag type. Note that this does does not apply if we're declaring a
1297 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001298 if (Previous.isSingleTagDecl())
1299 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001300 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001301
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001302 bool Redeclaration = false;
1303 bool OverloadableAttrRequired = false;
John McCall9f54ad42009-12-10 09:41:52 +00001304 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001305 /*FIXME:*/OverloadableAttrRequired);
1306
Douglas Gregor4ba31362009-12-01 17:24:26 +00001307 if (D->isPure())
1308 SemaRef.CheckPureMethod(Method, SourceRange());
1309
John McCall46460a62010-01-20 21:53:11 +00001310 Method->setAccess(D->getAccess());
1311
John McCallb0cb0222010-03-27 05:57:59 +00001312 if (FunctionTemplate) {
1313 // If there's a function template, let our caller handle it.
1314 } else if (Method->isInvalidDecl() && !Previous.empty()) {
1315 // Don't hide a (potentially) valid declaration with an invalid one.
1316 } else {
1317 NamedDecl *DeclToAdd = (TemplateParams
1318 ? cast<NamedDecl>(FunctionTemplate)
1319 : Method);
1320 if (isFriend)
1321 Record->makeDeclVisibleInContext(DeclToAdd);
1322 else
1323 Owner->addDecl(DeclToAdd);
1324 }
Mike Stump1eb44332009-09-09 15:08:12 +00001325
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001326 return Method;
1327}
1328
Douglas Gregor615c5d42009-03-24 16:43:20 +00001329Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001330 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001331}
1332
Douglas Gregor03b2b072009-03-24 00:15:49 +00001333Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001334 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001335}
1336
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001337Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001338 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001339}
1340
Douglas Gregor6477b692009-03-25 15:04:13 +00001341ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001342 return SemaRef.SubstParmVarDecl(D, TemplateArgs);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001343}
1344
John McCalle29ba202009-08-20 01:44:21 +00001345Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1346 TemplateTypeParmDecl *D) {
1347 // TODO: don't always clone when decls are refcounted.
1348 const Type* T = D->getTypeForDecl();
1349 assert(T->isTemplateTypeParmType());
1350 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001351
John McCalle29ba202009-08-20 01:44:21 +00001352 TemplateTypeParmDecl *Inst =
1353 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor550d9b22009-10-31 17:21:17 +00001354 TTPT->getDepth() - 1, TTPT->getIndex(),
John McCalle29ba202009-08-20 01:44:21 +00001355 TTPT->getName(),
1356 D->wasDeclaredWithTypename(),
1357 D->isParameterPack());
1358
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001359 if (D->hasDefaultArgument())
1360 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001361
Douglas Gregor550d9b22009-10-31 17:21:17 +00001362 // Introduce this template parameter's instantiation into the instantiation
1363 // scope.
1364 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1365
John McCalle29ba202009-08-20 01:44:21 +00001366 return Inst;
1367}
1368
Douglas Gregor33642df2009-10-23 23:25:44 +00001369Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1370 NonTypeTemplateParmDecl *D) {
1371 // Substitute into the type of the non-type template parameter.
1372 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001373 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor33642df2009-10-23 23:25:44 +00001374 if (DI) {
1375 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1376 D->getDeclName());
1377 if (DI) T = DI->getType();
1378 } else {
1379 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1380 D->getDeclName());
1381 DI = 0;
1382 }
1383 if (T.isNull())
1384 return 0;
1385
1386 // Check that this type is acceptable for a non-type template parameter.
1387 bool Invalid = false;
1388 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
1389 if (T.isNull()) {
1390 T = SemaRef.Context.IntTy;
1391 Invalid = true;
1392 }
1393
1394 NonTypeTemplateParmDecl *Param
1395 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1396 D->getDepth() - 1, D->getPosition(),
1397 D->getIdentifier(), T, DI);
1398 if (Invalid)
1399 Param->setInvalidDecl();
1400
1401 Param->setDefaultArgument(D->getDefaultArgument());
Douglas Gregor550d9b22009-10-31 17:21:17 +00001402
1403 // Introduce this template parameter's instantiation into the instantiation
1404 // scope.
1405 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001406 return Param;
1407}
1408
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001409Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001410TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1411 TemplateTemplateParmDecl *D) {
1412 // Instantiate the template parameter list of the template template parameter.
1413 TemplateParameterList *TempParams = D->getTemplateParameters();
1414 TemplateParameterList *InstParams;
1415 {
1416 // Perform the actual substitution of template parameters within a new,
1417 // local instantiation scope.
1418 Sema::LocalInstantiationScope Scope(SemaRef);
1419 InstParams = SubstTemplateParams(TempParams);
1420 if (!InstParams)
1421 return NULL;
1422 }
1423
1424 // Build the template template parameter.
1425 TemplateTemplateParmDecl *Param
1426 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1427 D->getDepth() - 1, D->getPosition(),
1428 D->getIdentifier(), InstParams);
1429 Param->setDefaultArgument(D->getDefaultArgument());
1430
1431 // Introduce this template parameter's instantiation into the instantiation
1432 // scope.
1433 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1434
1435 return Param;
1436}
1437
Douglas Gregor48c32a72009-11-17 06:07:40 +00001438Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1439 // Using directives are never dependent, so they require no explicit
1440
1441 UsingDirectiveDecl *Inst
1442 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1443 D->getNamespaceKeyLocation(),
1444 D->getQualifierRange(), D->getQualifier(),
1445 D->getIdentLocation(),
1446 D->getNominatedNamespace(),
1447 D->getCommonAncestor());
1448 Owner->addDecl(Inst);
1449 return Inst;
1450}
1451
John McCalled976492009-12-04 22:46:56 +00001452Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
1453 // The nested name specifier is non-dependent, so no transformation
1454 // is required.
1455
John McCall9f54ad42009-12-10 09:41:52 +00001456 // We only need to do redeclaration lookups if we're in a class
1457 // scope (in fact, it's not really even possible in non-class
1458 // scopes).
1459 bool CheckRedeclaration = Owner->isRecord();
1460
1461 LookupResult Prev(SemaRef, D->getDeclName(), D->getLocation(),
1462 Sema::LookupUsingDeclName, Sema::ForRedeclaration);
1463
John McCalled976492009-12-04 22:46:56 +00001464 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
1465 D->getLocation(),
1466 D->getNestedNameRange(),
1467 D->getUsingLocation(),
1468 D->getTargetNestedNameDecl(),
1469 D->getDeclName(),
1470 D->isTypeName());
1471
1472 CXXScopeSpec SS;
1473 SS.setScopeRep(D->getTargetNestedNameDecl());
1474 SS.setRange(D->getNestedNameRange());
John McCall9f54ad42009-12-10 09:41:52 +00001475
1476 if (CheckRedeclaration) {
1477 Prev.setHideTags(false);
1478 SemaRef.LookupQualifiedName(Prev, Owner);
1479
1480 // Check for invalid redeclarations.
1481 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1482 D->isTypeName(), SS,
1483 D->getLocation(), Prev))
1484 NewUD->setInvalidDecl();
1485
1486 }
1487
1488 if (!NewUD->isInvalidDecl() &&
1489 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001490 D->getLocation()))
1491 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001492
John McCalled976492009-12-04 22:46:56 +00001493 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1494 NewUD->setAccess(D->getAccess());
1495 Owner->addDecl(NewUD);
1496
John McCall9f54ad42009-12-10 09:41:52 +00001497 // Don't process the shadow decls for an invalid decl.
1498 if (NewUD->isInvalidDecl())
1499 return NewUD;
1500
John McCall323c3102009-12-22 22:26:37 +00001501 bool isFunctionScope = Owner->isFunctionOrMethod();
1502
John McCall9f54ad42009-12-10 09:41:52 +00001503 // Process the shadow decls.
1504 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1505 I != E; ++I) {
1506 UsingShadowDecl *Shadow = *I;
1507 NamedDecl *InstTarget =
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001508 cast<NamedDecl>(SemaRef.FindInstantiatedDecl(Shadow->getLocation(),
1509 Shadow->getTargetDecl(),
John McCall9f54ad42009-12-10 09:41:52 +00001510 TemplateArgs));
1511
1512 if (CheckRedeclaration &&
1513 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1514 continue;
1515
1516 UsingShadowDecl *InstShadow
1517 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1518 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001519
1520 if (isFunctionScope)
1521 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001522 }
John McCalled976492009-12-04 22:46:56 +00001523
1524 return NewUD;
1525}
1526
1527Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001528 // Ignore these; we handle them in bulk when processing the UsingDecl.
1529 return 0;
John McCalled976492009-12-04 22:46:56 +00001530}
1531
John McCall7ba107a2009-11-18 02:36:19 +00001532Decl * TemplateDeclInstantiator
1533 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001534 NestedNameSpecifier *NNS =
1535 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1536 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001537 TemplateArgs);
1538 if (!NNS)
1539 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001540
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001541 CXXScopeSpec SS;
1542 SS.setRange(D->getTargetNestedNameRange());
1543 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001544
1545 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001546 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
John McCall7ba107a2009-11-18 02:36:19 +00001547 D->getUsingLoc(), SS, D->getLocation(),
1548 D->getDeclName(), 0,
1549 /*instantiation*/ true,
1550 /*typename*/ true, D->getTypenameLoc());
1551 if (UD)
John McCalled976492009-12-04 22:46:56 +00001552 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1553
John McCall7ba107a2009-11-18 02:36:19 +00001554 return UD;
1555}
1556
1557Decl * TemplateDeclInstantiator
1558 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1559 NestedNameSpecifier *NNS =
1560 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1561 D->getTargetNestedNameRange(),
1562 TemplateArgs);
1563 if (!NNS)
1564 return 0;
1565
1566 CXXScopeSpec SS;
1567 SS.setRange(D->getTargetNestedNameRange());
1568 SS.setScopeRep(NNS);
1569
1570 NamedDecl *UD =
1571 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
1572 D->getUsingLoc(), SS, D->getLocation(),
1573 D->getDeclName(), 0,
1574 /*instantiation*/ true,
1575 /*typename*/ false, SourceLocation());
Anders Carlsson0d8df782009-08-29 19:37:28 +00001576 if (UD)
John McCalled976492009-12-04 22:46:56 +00001577 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1578
Anders Carlsson0d8df782009-08-29 19:37:28 +00001579 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001580}
1581
John McCallce3ff2b2009-08-25 22:02:44 +00001582Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001583 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001584 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001585 if (D->isInvalidDecl())
1586 return 0;
1587
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001588 return Instantiator.Visit(D);
1589}
1590
John McCalle29ba202009-08-20 01:44:21 +00001591/// \brief Instantiates a nested template parameter list in the current
1592/// instantiation context.
1593///
1594/// \param L The parameter list to instantiate
1595///
1596/// \returns NULL if there was an error
1597TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001598TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001599 // Get errors for all the parameters before bailing out.
1600 bool Invalid = false;
1601
1602 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001603 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001604 ParamVector Params;
1605 Params.reserve(N);
1606 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1607 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001608 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001609 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001610 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001611 }
1612
1613 // Clean up if we had an error.
1614 if (Invalid) {
1615 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
1616 PI != PE; ++PI)
1617 if (*PI)
1618 (*PI)->Destroy(SemaRef.Context);
1619 return NULL;
1620 }
1621
1622 TemplateParameterList *InstL
1623 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1624 L->getLAngleLoc(), &Params.front(), N,
1625 L->getRAngleLoc());
1626 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001627}
John McCalle29ba202009-08-20 01:44:21 +00001628
Douglas Gregored9c0f92009-10-29 00:04:11 +00001629/// \brief Instantiate the declaration of a class template partial
1630/// specialization.
1631///
1632/// \param ClassTemplate the (instantiated) class template that is partially
1633// specialized by the instantiation of \p PartialSpec.
1634///
1635/// \param PartialSpec the (uninstantiated) class template partial
1636/// specialization that we are instantiating.
1637///
1638/// \returns true if there was an error, false otherwise.
1639bool
1640TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1641 ClassTemplateDecl *ClassTemplate,
1642 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001643 // Create a local instantiation scope for this class template partial
1644 // specialization, which will contain the instantiations of the template
1645 // parameters.
1646 Sema::LocalInstantiationScope Scope(SemaRef);
1647
Douglas Gregored9c0f92009-10-29 00:04:11 +00001648 // Substitute into the template parameters of the class template partial
1649 // specialization.
1650 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1651 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1652 if (!InstParams)
1653 return true;
1654
1655 // Substitute into the template arguments of the class template partial
1656 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001657 const TemplateArgumentLoc *PartialSpecTemplateArgs
1658 = PartialSpec->getTemplateArgsAsWritten();
1659 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1660
John McCalld5532b62009-11-23 01:53:49 +00001661 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
John McCall833ca992009-10-29 08:12:44 +00001662 for (unsigned I = 0; I != N; ++I) {
John McCalld5532b62009-11-23 01:53:49 +00001663 TemplateArgumentLoc Loc;
1664 if (SemaRef.Subst(PartialSpecTemplateArgs[I], Loc, TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001665 return true;
John McCalld5532b62009-11-23 01:53:49 +00001666 InstTemplateArgs.addArgument(Loc);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001667 }
1668
1669
1670 // Check that the template argument list is well-formed for this
1671 // class template.
1672 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1673 InstTemplateArgs.size());
1674 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1675 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001676 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001677 false,
1678 Converted))
1679 return true;
1680
1681 // Figure out where to insert this class template partial specialization
1682 // in the member template's set of class template partial specializations.
1683 llvm::FoldingSetNodeID ID;
1684 ClassTemplatePartialSpecializationDecl::Profile(ID,
1685 Converted.getFlatArguments(),
1686 Converted.flatSize(),
1687 SemaRef.Context);
1688 void *InsertPos = 0;
1689 ClassTemplateSpecializationDecl *PrevDecl
1690 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1691 InsertPos);
1692
1693 // Build the canonical type that describes the converted template
1694 // arguments of the class template partial specialization.
1695 QualType CanonType
1696 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1697 Converted.getFlatArguments(),
1698 Converted.flatSize());
1699
1700 // Build the fully-sugared type for this class template
1701 // specialization as the user wrote in the specialization
1702 // itself. This means that we'll pretty-print the type retrieved
1703 // from the specialization's declaration the way that the user
1704 // actually wrote the specialization, rather than formatting the
1705 // name based on the "canonical" representation used to store the
1706 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001707 TypeSourceInfo *WrittenTy
1708 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1709 TemplateName(ClassTemplate),
1710 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001711 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001712 CanonType);
1713
1714 if (PrevDecl) {
1715 // We've already seen a partial specialization with the same template
1716 // parameters and template arguments. This can happen, for example, when
1717 // substituting the outer template arguments ends up causing two
1718 // class template partial specializations of a member class template
1719 // to have identical forms, e.g.,
1720 //
1721 // template<typename T, typename U>
1722 // struct Outer {
1723 // template<typename X, typename Y> struct Inner;
1724 // template<typename Y> struct Inner<T, Y>;
1725 // template<typename Y> struct Inner<U, Y>;
1726 // };
1727 //
1728 // Outer<int, int> outer; // error: the partial specializations of Inner
1729 // // have the same signature.
1730 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1731 << WrittenTy;
1732 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1733 << SemaRef.Context.getTypeDeclType(PrevDecl);
1734 return true;
1735 }
1736
1737
1738 // Create the class template partial specialization declaration.
1739 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1740 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1741 PartialSpec->getLocation(),
1742 InstParams,
1743 ClassTemplate,
1744 Converted,
John McCalld5532b62009-11-23 01:53:49 +00001745 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001746 CanonType,
Douglas Gregordc60c1e2010-04-30 05:56:50 +00001747 0,
1748 ClassTemplate->getPartialSpecializations().size());
John McCallb6217662010-03-15 10:12:16 +00001749 // Substitute the nested name specifier, if any.
1750 if (SubstQualifier(PartialSpec, InstPartialSpec))
1751 return 0;
1752
Douglas Gregored9c0f92009-10-29 00:04:11 +00001753 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1754 InstPartialSpec->setTypeAsWritten(WrittenTy);
1755
1756 // Add this partial specialization to the set of class template partial
1757 // specializations.
1758 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1759 InsertPos);
1760 return false;
1761}
1762
John McCall21ef0fa2010-03-11 09:03:00 +00001763TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001764TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001765 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001766 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1767 assert(OldTInfo && "substituting function without type source info");
1768 assert(Params.empty() && "parameter vector is non-empty at start");
John McCall6cd3b9f2010-04-09 17:38:44 +00001769 TypeSourceInfo *NewTInfo
1770 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
1771 D->getTypeSpecStartLoc(),
1772 D->getDeclName());
John McCall21ef0fa2010-03-11 09:03:00 +00001773 if (!NewTInfo)
1774 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001775
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001776 if (NewTInfo != OldTInfo) {
1777 // Get parameters from the new type info.
Douglas Gregor895162d2010-04-30 18:55:50 +00001778 TypeLoc OldTL = OldTInfo->getTypeLoc();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001779 if (FunctionProtoTypeLoc *OldProtoLoc
1780 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
1781 TypeLoc NewTL = NewTInfo->getTypeLoc();
1782 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
1783 assert(NewProtoLoc && "Missing prototype?");
1784 for (unsigned i = 0, i_end = NewProtoLoc->getNumArgs(); i != i_end; ++i) {
1785 // FIXME: Variadic templates will break this.
1786 Params.push_back(NewProtoLoc->getArg(i));
1787 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
Douglas Gregor895162d2010-04-30 18:55:50 +00001788 OldProtoLoc->getArg(i),
1789 NewProtoLoc->getArg(i));
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001790 }
Douglas Gregor895162d2010-04-30 18:55:50 +00001791 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001792 } else {
1793 // The function type itself was not dependent and therefore no
1794 // substitution occurred. However, we still need to instantiate
1795 // the function parameters themselves.
1796 TypeLoc OldTL = OldTInfo->getTypeLoc();
Douglas Gregor6920cdc2010-05-03 15:32:18 +00001797 if (FunctionProtoTypeLoc *OldProtoLoc
1798 = dyn_cast<FunctionProtoTypeLoc>(&OldTL)) {
1799 for (unsigned i = 0, i_end = OldProtoLoc->getNumArgs(); i != i_end; ++i) {
1800 ParmVarDecl *Parm = VisitParmVarDecl(OldProtoLoc->getArg(i));
1801 if (!Parm)
1802 return 0;
1803 Params.push_back(Parm);
1804 }
Douglas Gregorcb27b0f2010-04-12 07:48:19 +00001805 }
1806 }
John McCall21ef0fa2010-03-11 09:03:00 +00001807 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00001808}
1809
Mike Stump1eb44332009-09-09 15:08:12 +00001810/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001811/// declaration (New) from the corresponding fields of its template (Tmpl).
1812///
1813/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001814bool
1815TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001816 FunctionDecl *Tmpl) {
1817 if (Tmpl->isDeleted())
1818 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001819
Douglas Gregorcca9e962009-07-01 22:01:06 +00001820 // If we are performing substituting explicitly-specified template arguments
1821 // or deduced template arguments into a function template and we reach this
1822 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001823 // to keeping the new function template specialization. We therefore
1824 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001825 // into a template instantiation for this specific function template
1826 // specialization, which is not a SFINAE context, so that we diagnose any
1827 // further errors in the declaration itself.
1828 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1829 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1830 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1831 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001832 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001833 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001834 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001835 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001836 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001837 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1838 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001839 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001840 }
1841 }
Mike Stump1eb44332009-09-09 15:08:12 +00001842
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001843 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
1844 assert(Proto && "Function template without prototype?");
1845
1846 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
1847 Proto->getNoReturnAttr()) {
1848 // The function has an exception specification or a "noreturn"
1849 // attribute. Substitute into each of the exception types.
1850 llvm::SmallVector<QualType, 4> Exceptions;
1851 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
1852 // FIXME: Poor location information!
1853 QualType T
1854 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
1855 New->getLocation(), New->getDeclName());
1856 if (T.isNull() ||
1857 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
1858 continue;
1859
1860 Exceptions.push_back(T);
1861 }
1862
1863 // Rebuild the function type
1864
1865 const FunctionProtoType *NewProto
1866 = New->getType()->getAs<FunctionProtoType>();
1867 assert(NewProto && "Template instantiation without function prototype?");
1868 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
1869 NewProto->arg_type_begin(),
1870 NewProto->getNumArgs(),
1871 NewProto->isVariadic(),
1872 NewProto->getTypeQuals(),
1873 Proto->hasExceptionSpec(),
1874 Proto->hasAnyExceptionSpec(),
1875 Exceptions.size(),
1876 Exceptions.data(),
Rafael Espindola264ba482010-03-30 20:24:48 +00001877 Proto->getExtInfo()));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001878 }
1879
Douglas Gregore53060f2009-06-25 22:08:12 +00001880 return false;
1881}
1882
Douglas Gregor5545e162009-03-24 00:38:23 +00001883/// \brief Initializes common fields of an instantiated method
1884/// declaration (New) from the corresponding fields of its template
1885/// (Tmpl).
1886///
1887/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001888bool
1889TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001890 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001891 if (InitFunctionInstantiation(New, Tmpl))
1892 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001893
Douglas Gregor5545e162009-03-24 00:38:23 +00001894 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1895 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00001896 if (Tmpl->isVirtualAsWritten())
1897 Record->setMethodAsVirtual(New);
Douglas Gregor5545e162009-03-24 00:38:23 +00001898
1899 // FIXME: attributes
1900 // FIXME: New needs a pointer to Tmpl
1901 return false;
1902}
Douglas Gregora58861f2009-05-13 20:28:22 +00001903
1904/// \brief Instantiate the definition of the given function from its
1905/// template.
1906///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001907/// \param PointOfInstantiation the point at which the instantiation was
1908/// required. Note that this is not precisely a "point of instantiation"
1909/// for the function, but it's close.
1910///
Douglas Gregora58861f2009-05-13 20:28:22 +00001911/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001912/// function template specialization or member function of a class template
1913/// specialization.
1914///
1915/// \param Recursive if true, recursively instantiates any functions that
1916/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001917///
1918/// \param DefinitionRequired if true, then we are performing an explicit
1919/// instantiation where the body of the function is required. Complain if
1920/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001921void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001922 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001923 bool Recursive,
1924 bool DefinitionRequired) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001925 if (Function->isInvalidDecl())
1926 return;
1927
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001928 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +00001929
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001930 // Never instantiate an explicit specialization.
1931 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1932 return;
1933
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001934 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00001935 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001936 Stmt *Pattern = 0;
1937 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001938 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001939
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001940 if (!Pattern) {
1941 if (DefinitionRequired) {
1942 if (Function->getPrimaryTemplate())
1943 Diag(PointOfInstantiation,
1944 diag::err_explicit_instantiation_undefined_func_template)
1945 << Function->getPrimaryTemplate();
1946 else
1947 Diag(PointOfInstantiation,
1948 diag::err_explicit_instantiation_undefined_member)
1949 << 1 << Function->getDeclName() << Function->getDeclContext();
1950
1951 if (PatternDecl)
1952 Diag(PatternDecl->getLocation(),
1953 diag::note_explicit_instantiation_here);
1954 }
1955
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001956 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001957 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001958
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001959 // C++0x [temp.explicit]p9:
1960 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001961 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001962 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001963 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001964 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001965 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001966 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001967
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001968 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1969 if (Inst)
1970 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001971
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001972 // If we're performing recursive template instantiation, create our own
1973 // queue of pending implicit instantiations that we will instantiate later,
1974 // while we're still within our own instantiation context.
1975 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1976 if (Recursive)
1977 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001978
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001979 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1980
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001981 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00001982 // recorded, unless we're actually a member function within a local
1983 // class, in which case we need to merge our results with the parent
1984 // scope (of the enclosing function).
1985 bool MergeWithParentScope = false;
1986 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
1987 MergeWithParentScope = Rec->isLocalClass();
1988
1989 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001990
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001991 // Introduce the instantiated function parameters into the local
1992 // instantiation scope.
1993 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1994 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1995 Function->getParamDecl(I));
1996
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001997 // Enter the scope of this instantiation. We don't use
1998 // PushDeclContext because we don't have a scope.
1999 DeclContext *PreviousContext = CurContext;
2000 CurContext = Function;
2001
Mike Stump1eb44332009-09-09 15:08:12 +00002002 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00002003 getTemplateInstantiationArgs(Function);
2004
2005 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00002006 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00002007 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
2008 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
2009 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002010 }
2011
Douglas Gregor54dabfc2009-05-14 23:26:13 +00002012 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00002013 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002014
Douglas Gregor52604ab2009-09-11 21:19:12 +00002015 if (Body.isInvalid())
2016 Function->setInvalidDecl();
2017
Mike Stump1eb44332009-09-09 15:08:12 +00002018 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00002019 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002020
John McCall0c01d182010-03-24 05:22:00 +00002021 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
2022
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00002023 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00002024
2025 DeclGroupRef DG(Function);
2026 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00002027
Douglas Gregor60406be2010-01-16 22:29:39 +00002028 // This class may have local implicit instantiations that need to be
2029 // instantiation within this scope.
2030 PerformPendingImplicitInstantiations(/*LocalOnly=*/true);
2031 Scope.Exit();
2032
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002033 if (Recursive) {
2034 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002035 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002036 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002037
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002038 // Restore the set of pending implicit instantiations.
2039 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
2040 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002041}
2042
2043/// \brief Instantiate the definition of the given variable from its
2044/// template.
2045///
Douglas Gregor7caa6822009-07-24 20:34:43 +00002046/// \param PointOfInstantiation the point at which the instantiation was
2047/// required. Note that this is not precisely a "point of instantiation"
2048/// for the function, but it's close.
2049///
2050/// \param Var the already-instantiated declaration of a static member
2051/// variable of a class template specialization.
2052///
2053/// \param Recursive if true, recursively instantiates any functions that
2054/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002055///
2056/// \param DefinitionRequired if true, then we are performing an explicit
2057/// instantiation where an out-of-line definition of the member variable
2058/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002059void Sema::InstantiateStaticDataMemberDefinition(
2060 SourceLocation PointOfInstantiation,
2061 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002062 bool Recursive,
2063 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002064 if (Var->isInvalidDecl())
2065 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002066
Douglas Gregor7caa6822009-07-24 20:34:43 +00002067 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002068 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002069 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002070 assert(Def->isStaticDataMember() && "Not a static data member?");
2071 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002072
Douglas Gregor0d035142009-10-27 18:42:08 +00002073 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002074 // We did not find an out-of-line definition of this static data member,
2075 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002076 // instantiate this definition (or provide a specialization for it) in
2077 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002078 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002079 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002080 Diag(PointOfInstantiation,
2081 diag::err_explicit_instantiation_undefined_member)
2082 << 2 << Var->getDeclName() << Var->getDeclContext();
2083 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
2084 }
2085
Douglas Gregor7caa6822009-07-24 20:34:43 +00002086 return;
2087 }
2088
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002089 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002090 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002091 return;
2092
2093 // C++0x [temp.explicit]p9:
2094 // Except for inline functions, other explicit instantiation declarations
2095 // have the effect of suppressing the implicit instantiation of the entity
2096 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002097 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002098 == TSK_ExplicitInstantiationDeclaration)
2099 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002100
Douglas Gregor7caa6822009-07-24 20:34:43 +00002101 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2102 if (Inst)
2103 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002104
Douglas Gregor7caa6822009-07-24 20:34:43 +00002105 // If we're performing recursive template instantiation, create our own
2106 // queue of pending implicit instantiations that we will instantiate later,
2107 // while we're still within our own instantiation context.
2108 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
2109 if (Recursive)
2110 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002111
Douglas Gregor7caa6822009-07-24 20:34:43 +00002112 // Enter the scope of this instantiation. We don't use
2113 // PushDeclContext because we don't have a scope.
2114 DeclContext *PreviousContext = CurContext;
2115 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002116
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002117 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002118 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00002119 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00002120 CurContext = PreviousContext;
2121
2122 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002123 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2124 assert(MSInfo && "Missing member specialization information?");
2125 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2126 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002127 DeclGroupRef DG(Var);
2128 Consumer.HandleTopLevelDecl(DG);
2129 }
Mike Stump1eb44332009-09-09 15:08:12 +00002130
Douglas Gregor7caa6822009-07-24 20:34:43 +00002131 if (Recursive) {
2132 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002133 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002134 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002135
Douglas Gregor7caa6822009-07-24 20:34:43 +00002136 // Restore the set of pending implicit instantiations.
2137 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002138 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002139}
Douglas Gregor815215d2009-05-27 05:35:12 +00002140
Anders Carlsson09025312009-08-29 05:16:22 +00002141void
2142Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2143 const CXXConstructorDecl *Tmpl,
2144 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002145
Anders Carlsson09025312009-08-29 05:16:22 +00002146 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002147 bool AnyErrors = false;
2148
Anders Carlsson09025312009-08-29 05:16:22 +00002149 // Instantiate all the initializers.
2150 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002151 InitsEnd = Tmpl->init_end();
2152 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00002153 CXXBaseOrMemberInitializer *Init = *Inits;
2154
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002155 SourceLocation LParenLoc, RParenLoc;
Anders Carlsson09025312009-08-29 05:16:22 +00002156 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002157 llvm::SmallVector<SourceLocation, 4> CommaLocs;
Mike Stump1eb44332009-09-09 15:08:12 +00002158
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002159 // Instantiate the initializer.
2160 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
2161 LParenLoc, CommaLocs, NewArgs, RParenLoc)) {
2162 AnyErrors = true;
2163 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002164 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002165
Anders Carlsson09025312009-08-29 05:16:22 +00002166 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002167 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002168 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002169 TemplateArgs,
2170 Init->getSourceLocation(),
2171 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002172 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002173 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002174 New->setInvalidDecl();
2175 continue;
2176 }
2177
John McCalla93c9342009-12-07 02:54:59 +00002178 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002179 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002180 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002181 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002182 Init->getRParenLoc(),
2183 New->getParent());
2184 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002185 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00002186
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002187 // Is this an anonymous union?
2188 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002189 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2190 UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002191 else
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002192 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2193 Init->getMember(),
Douglas Gregore95b4092009-09-16 18:34:49 +00002194 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00002195
2196 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002197 NewArgs.size(),
2198 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002199 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002200 Init->getRParenLoc());
2201 }
2202
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002203 if (NewInit.isInvalid()) {
2204 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002205 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002206 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002207 // FIXME: It would be nice if ASTOwningVector had a release function.
2208 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002209
Anders Carlsson09025312009-08-29 05:16:22 +00002210 NewInits.push_back((MemInitTy *)NewInit.get());
2211 }
2212 }
Mike Stump1eb44332009-09-09 15:08:12 +00002213
Anders Carlsson09025312009-08-29 05:16:22 +00002214 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00002215 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00002216 /*FIXME: ColonLoc */
2217 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002218 NewInits.data(), NewInits.size(),
2219 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002220}
2221
John McCall52a575a2009-08-29 08:11:13 +00002222// TODO: this could be templated if the various decl types used the
2223// same method name.
2224static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2225 ClassTemplateDecl *Instance) {
2226 Pattern = Pattern->getCanonicalDecl();
2227
2228 do {
2229 Instance = Instance->getCanonicalDecl();
2230 if (Pattern == Instance) return true;
2231 Instance = Instance->getInstantiatedFromMemberTemplate();
2232 } while (Instance);
2233
2234 return false;
2235}
2236
Douglas Gregor0d696532009-09-28 06:34:35 +00002237static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2238 FunctionTemplateDecl *Instance) {
2239 Pattern = Pattern->getCanonicalDecl();
2240
2241 do {
2242 Instance = Instance->getCanonicalDecl();
2243 if (Pattern == Instance) return true;
2244 Instance = Instance->getInstantiatedFromMemberTemplate();
2245 } while (Instance);
2246
2247 return false;
2248}
2249
Douglas Gregored9c0f92009-10-29 00:04:11 +00002250static bool
2251isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2252 ClassTemplatePartialSpecializationDecl *Instance) {
2253 Pattern
2254 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2255 do {
2256 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2257 Instance->getCanonicalDecl());
2258 if (Pattern == Instance)
2259 return true;
2260 Instance = Instance->getInstantiatedFromMember();
2261 } while (Instance);
2262
2263 return false;
2264}
2265
John McCall52a575a2009-08-29 08:11:13 +00002266static bool isInstantiationOf(CXXRecordDecl *Pattern,
2267 CXXRecordDecl *Instance) {
2268 Pattern = Pattern->getCanonicalDecl();
2269
2270 do {
2271 Instance = Instance->getCanonicalDecl();
2272 if (Pattern == Instance) return true;
2273 Instance = Instance->getInstantiatedFromMemberClass();
2274 } while (Instance);
2275
2276 return false;
2277}
2278
2279static bool isInstantiationOf(FunctionDecl *Pattern,
2280 FunctionDecl *Instance) {
2281 Pattern = Pattern->getCanonicalDecl();
2282
2283 do {
2284 Instance = Instance->getCanonicalDecl();
2285 if (Pattern == Instance) return true;
2286 Instance = Instance->getInstantiatedFromMemberFunction();
2287 } while (Instance);
2288
2289 return false;
2290}
2291
2292static bool isInstantiationOf(EnumDecl *Pattern,
2293 EnumDecl *Instance) {
2294 Pattern = Pattern->getCanonicalDecl();
2295
2296 do {
2297 Instance = Instance->getCanonicalDecl();
2298 if (Pattern == Instance) return true;
2299 Instance = Instance->getInstantiatedFromMemberEnum();
2300 } while (Instance);
2301
2302 return false;
2303}
2304
John McCalled976492009-12-04 22:46:56 +00002305static bool isInstantiationOf(UsingShadowDecl *Pattern,
2306 UsingShadowDecl *Instance,
2307 ASTContext &C) {
2308 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2309}
2310
2311static bool isInstantiationOf(UsingDecl *Pattern,
2312 UsingDecl *Instance,
2313 ASTContext &C) {
2314 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2315}
2316
John McCall7ba107a2009-11-18 02:36:19 +00002317static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2318 UsingDecl *Instance,
2319 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002320 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002321}
2322
2323static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002324 UsingDecl *Instance,
2325 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002326 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002327}
2328
John McCall52a575a2009-08-29 08:11:13 +00002329static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2330 VarDecl *Instance) {
2331 assert(Instance->isStaticDataMember());
2332
2333 Pattern = Pattern->getCanonicalDecl();
2334
2335 do {
2336 Instance = Instance->getCanonicalDecl();
2337 if (Pattern == Instance) return true;
2338 Instance = Instance->getInstantiatedFromStaticDataMember();
2339 } while (Instance);
2340
2341 return false;
2342}
2343
John McCalled976492009-12-04 22:46:56 +00002344// Other is the prospective instantiation
2345// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002346static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002347 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002348 if (UnresolvedUsingTypenameDecl *UUD
2349 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2350 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2351 return isInstantiationOf(UUD, UD, Ctx);
2352 }
2353 }
2354
2355 if (UnresolvedUsingValueDecl *UUD
2356 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002357 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2358 return isInstantiationOf(UUD, UD, Ctx);
2359 }
2360 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002361
Anders Carlsson0d8df782009-08-29 19:37:28 +00002362 return false;
2363 }
Mike Stump1eb44332009-09-09 15:08:12 +00002364
John McCall52a575a2009-08-29 08:11:13 +00002365 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2366 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002367
John McCall52a575a2009-08-29 08:11:13 +00002368 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2369 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002370
John McCall52a575a2009-08-29 08:11:13 +00002371 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2372 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002373
Douglas Gregor7caa6822009-07-24 20:34:43 +00002374 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002375 if (Var->isStaticDataMember())
2376 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2377
2378 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2379 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002380
Douglas Gregor0d696532009-09-28 06:34:35 +00002381 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2382 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2383
Douglas Gregored9c0f92009-10-29 00:04:11 +00002384 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2385 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2386 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2387 PartialSpec);
2388
Anders Carlssond8b285f2009-09-01 04:26:58 +00002389 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2390 if (!Field->getDeclName()) {
2391 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002392 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002393 cast<FieldDecl>(D);
2394 }
2395 }
Mike Stump1eb44332009-09-09 15:08:12 +00002396
John McCalled976492009-12-04 22:46:56 +00002397 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2398 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2399
2400 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2401 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2402
Douglas Gregor815215d2009-05-27 05:35:12 +00002403 return D->getDeclName() && isa<NamedDecl>(Other) &&
2404 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2405}
2406
2407template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002408static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002409 NamedDecl *D,
2410 ForwardIterator first,
2411 ForwardIterator last) {
2412 for (; first != last; ++first)
2413 if (isInstantiationOf(Ctx, D, *first))
2414 return cast<NamedDecl>(*first);
2415
2416 return 0;
2417}
2418
John McCall02cace72009-08-28 07:59:38 +00002419/// \brief Finds the instantiation of the given declaration context
2420/// within the current instantiation.
2421///
2422/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002423DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002424 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002425 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002426 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002427 return cast_or_null<DeclContext>(ID);
2428 } else return DC;
2429}
2430
Douglas Gregored961e72009-05-27 17:54:46 +00002431/// \brief Find the instantiation of the given declaration within the
2432/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002433///
2434/// This routine is intended to be used when \p D is a declaration
2435/// referenced from within a template, that needs to mapped into the
2436/// corresponding declaration within an instantiation. For example,
2437/// given:
2438///
2439/// \code
2440/// template<typename T>
2441/// struct X {
2442/// enum Kind {
2443/// KnownValue = sizeof(T)
2444/// };
2445///
2446/// bool getKind() const { return KnownValue; }
2447/// };
2448///
2449/// template struct X<int>;
2450/// \endcode
2451///
2452/// In the instantiation of X<int>::getKind(), we need to map the
2453/// EnumConstantDecl for KnownValue (which refers to
2454/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002455/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2456/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002457NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002458 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002459 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002460 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002461 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor550d9b22009-10-31 17:21:17 +00002462 ParentDC->isFunctionOrMethod()) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002463 // D is a local of some kind. Look into the map of local
2464 // declarations to their instantiations.
2465 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
2466 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002467
Douglas Gregore95b4092009-09-16 18:34:49 +00002468 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2469 if (!Record->isDependentContext())
2470 return D;
2471
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002472 // If the RecordDecl is actually the injected-class-name or a
2473 // "templated" declaration for a class template, class template
2474 // partial specialization, or a member class of a class template,
2475 // substitute into the injected-class-name of the class template
2476 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002477 QualType T;
2478 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2479
2480 if (ClassTemplate) {
John McCall3cb0ebd2010-03-10 03:28:59 +00002481 T = ClassTemplate->getInjectedClassNameSpecialization(Context);
Douglas Gregore95b4092009-09-16 18:34:49 +00002482 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2483 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002484 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002485
2486 // If we call SubstType with an InjectedClassNameType here we
2487 // can end up in an infinite loop.
2488 T = Context.getTypeDeclType(Record);
2489 assert(isa<InjectedClassNameType>(T) &&
2490 "type of partial specialization is not an InjectedClassNameType");
John McCall31f17ec2010-04-27 00:57:59 +00002491 T = cast<InjectedClassNameType>(T)->getInjectedSpecializationType();
John McCall3cb0ebd2010-03-10 03:28:59 +00002492 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002493
2494 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002495 // Substitute into the injected-class-name to get the type
2496 // corresponding to the instantiation we want, which may also be
2497 // the current instantiation (if we're in a template
2498 // definition). This substitution should never fail, since we
2499 // know we can instantiate the injected-class-name or we
2500 // wouldn't have gotten to the injected-class-name!
2501
2502 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2503 // extra instantiation in the common case?
Douglas Gregore95b4092009-09-16 18:34:49 +00002504 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
2505 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2506
2507 if (!T->isDependentType()) {
2508 assert(T->isRecordType() && "Instantiation must produce a record type");
2509 return T->getAs<RecordType>()->getDecl();
2510 }
2511
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002512 // We are performing "partial" template instantiation to create
2513 // the member declarations for the members of a class template
2514 // specialization. Therefore, D is actually referring to something
2515 // in the current instantiation. Look through the current
2516 // context, which contains actual instantiations, to find the
2517 // instantiation of the "current instantiation" that D refers
2518 // to.
2519 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002520 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002521 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002522 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002523 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002524 if (isInstantiationOf(ClassTemplate,
2525 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002526 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002527
2528 if (!DC->isDependentContext())
2529 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002530 }
2531
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002532 // We're performing "instantiation" of a member of the current
2533 // instantiation while we are type-checking the
2534 // definition. Compute the declaration context and return that.
2535 assert(!SawNonDependentContext &&
2536 "No dependent context while instantiating record");
2537 DeclContext *DC = computeDeclContext(T);
2538 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002539 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002540 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002541 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002542
Douglas Gregore95b4092009-09-16 18:34:49 +00002543 // Fall through to deal with other dependent record types (e.g.,
2544 // anonymous unions in class templates).
2545 }
John McCall52a575a2009-08-29 08:11:13 +00002546
Douglas Gregore95b4092009-09-16 18:34:49 +00002547 if (!ParentDC->isDependentContext())
2548 return D;
2549
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002550 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002551 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00002552 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002553
Douglas Gregor815215d2009-05-27 05:35:12 +00002554 if (ParentDC != D->getDeclContext()) {
2555 // We performed some kind of instantiation in the parent context,
2556 // so now we need to look into the instantiated parent context to
2557 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002558
John McCall3cb0ebd2010-03-10 03:28:59 +00002559 // If our context used to be dependent, we may need to instantiate
2560 // it before performing lookup into that context.
2561 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002562 if (!Spec->isDependentContext()) {
2563 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00002564 const RecordType *Tag = T->getAs<RecordType>();
2565 assert(Tag && "type of non-dependent record is not a RecordType");
2566 if (!Tag->isBeingDefined() &&
2567 RequireCompleteType(Loc, T, diag::err_incomplete_type))
2568 return 0;
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002569 }
2570 }
2571
Douglas Gregor815215d2009-05-27 05:35:12 +00002572 NamedDecl *Result = 0;
2573 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002574 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00002575 Result = findInstantiationOf(Context, D, Found.first, Found.second);
2576 } else {
2577 // Since we don't have a name for the entity we're looking for,
2578 // our only option is to walk through all of the declarations to
2579 // find that name. This will occur in a few cases:
2580 //
2581 // - anonymous struct/union within a template
2582 // - unnamed class/struct/union/enum within a template
2583 //
2584 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00002585 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002586 ParentDC->decls_begin(),
2587 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00002588 }
Mike Stump1eb44332009-09-09 15:08:12 +00002589
John McCall9f54ad42009-12-10 09:41:52 +00002590 // UsingShadowDecls can instantiate to nothing because of using hiding.
Douglas Gregor00225542010-03-01 18:27:54 +00002591 assert((Result || isa<UsingShadowDecl>(D) || D->isInvalidDecl() ||
2592 cast<Decl>(ParentDC)->isInvalidDecl())
John McCall9f54ad42009-12-10 09:41:52 +00002593 && "Unable to find instantiation of declaration!");
2594
Douglas Gregor815215d2009-05-27 05:35:12 +00002595 D = Result;
2596 }
2597
Douglas Gregor815215d2009-05-27 05:35:12 +00002598 return D;
2599}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002600
Mike Stump1eb44332009-09-09 15:08:12 +00002601/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002602/// instantiations we have seen until this point.
Douglas Gregor60406be2010-01-16 22:29:39 +00002603void Sema::PerformPendingImplicitInstantiations(bool LocalOnly) {
2604 while (!PendingLocalImplicitInstantiations.empty() ||
2605 (!LocalOnly && !PendingImplicitInstantiations.empty())) {
2606 PendingImplicitInstantiation Inst;
2607
2608 if (PendingLocalImplicitInstantiations.empty()) {
2609 Inst = PendingImplicitInstantiations.front();
2610 PendingImplicitInstantiations.pop_front();
2611 } else {
2612 Inst = PendingLocalImplicitInstantiations.front();
2613 PendingLocalImplicitInstantiations.pop_front();
2614 }
Mike Stump1eb44332009-09-09 15:08:12 +00002615
Douglas Gregor7caa6822009-07-24 20:34:43 +00002616 // Instantiate function definitions
2617 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002618 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002619 Function->getLocation(), *this,
2620 Context.getSourceManager(),
2621 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002622
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002623 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002624 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002625 continue;
2626 }
Mike Stump1eb44332009-09-09 15:08:12 +00002627
Douglas Gregor7caa6822009-07-24 20:34:43 +00002628 // Instantiate static data member definitions.
2629 VarDecl *Var = cast<VarDecl>(Inst.first);
2630 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002631
Chandler Carruth291b4412010-02-13 10:17:50 +00002632 // Don't try to instantiate declarations if the most recent redeclaration
2633 // is invalid.
2634 if (Var->getMostRecentDeclaration()->isInvalidDecl())
2635 continue;
2636
2637 // Check if the most recent declaration has changed the specialization kind
2638 // and removed the need for implicit instantiation.
2639 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
2640 case TSK_Undeclared:
2641 assert(false && "Cannot instantitiate an undeclared specialization.");
2642 case TSK_ExplicitInstantiationDeclaration:
2643 case TSK_ExplicitInstantiationDefinition:
2644 case TSK_ExplicitSpecialization:
2645 continue; // No longer need implicit instantiation.
2646 case TSK_ImplicitInstantiation:
2647 break;
2648 }
2649
Mike Stump1eb44332009-09-09 15:08:12 +00002650 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002651 Var->getLocation(), *this,
2652 Context.getSourceManager(),
2653 "instantiating static data member "
2654 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002655
Douglas Gregor7caa6822009-07-24 20:34:43 +00002656 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002657 }
2658}
John McCall0c01d182010-03-24 05:22:00 +00002659
2660void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
2661 const MultiLevelTemplateArgumentList &TemplateArgs) {
2662 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
2663 E = Pattern->ddiag_end(); I != E; ++I) {
2664 DependentDiagnostic *DD = *I;
2665
2666 switch (DD->getKind()) {
2667 case DependentDiagnostic::Access:
2668 HandleDependentAccessCheck(*DD, TemplateArgs);
2669 break;
2670 }
2671 }
2672}