blob: 59c9819751c84ceae8af530ded924b6d04682e69 [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
John McCall5126fd02009-12-30 00:31:22 +0000203 if (TypedefDecl *Prev = D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000204 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
205 TemplateArgs);
John McCall5126fd02009-12-30 00:31:22 +0000206 Typedef->setPreviousDeclaration(cast<TypedefDecl>(InstPrev));
207 }
208
John McCall46460a62010-01-20 21:53:11 +0000209 Typedef->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000210 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000211
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000212 return Typedef;
213}
214
Douglas Gregor6eef5192009-12-14 19:27:10 +0000215/// \brief Instantiate the arguments provided as part of initialization.
216///
217/// \returns true if an error occurred, false otherwise.
218static bool InstantiateInitializationArguments(Sema &SemaRef,
219 Expr **Args, unsigned NumArgs,
220 const MultiLevelTemplateArgumentList &TemplateArgs,
221 llvm::SmallVectorImpl<SourceLocation> &FakeCommaLocs,
222 ASTOwningVector<&ActionBase::DeleteExpr> &InitArgs) {
223 for (unsigned I = 0; I != NumArgs; ++I) {
224 // When we hit the first defaulted argument, break out of the loop:
225 // we don't pass those default arguments on.
226 if (Args[I]->isDefaultArgument())
227 break;
228
229 Sema::OwningExprResult Arg = SemaRef.SubstExpr(Args[I], TemplateArgs);
230 if (Arg.isInvalid())
231 return true;
232
233 Expr *ArgExpr = (Expr *)Arg.get();
234 InitArgs.push_back(Arg.release());
235
236 // FIXME: We're faking all of the comma locations. Do we need them?
237 FakeCommaLocs.push_back(
238 SemaRef.PP.getLocForEndOfToken(ArgExpr->getLocEnd()));
239 }
240
241 return false;
242}
243
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000244/// \brief Instantiate an initializer, breaking it into separate
245/// initialization arguments.
246///
247/// \param S The semantic analysis object.
248///
249/// \param Init The initializer to instantiate.
250///
251/// \param TemplateArgs Template arguments to be substituted into the
252/// initializer.
253///
254/// \param NewArgs Will be filled in with the instantiation arguments.
255///
256/// \returns true if an error occurred, false otherwise
257static bool InstantiateInitializer(Sema &S, Expr *Init,
258 const MultiLevelTemplateArgumentList &TemplateArgs,
259 SourceLocation &LParenLoc,
260 llvm::SmallVector<SourceLocation, 4> &CommaLocs,
261 ASTOwningVector<&ActionBase::DeleteExpr> &NewArgs,
262 SourceLocation &RParenLoc) {
263 NewArgs.clear();
264 LParenLoc = SourceLocation();
265 RParenLoc = SourceLocation();
266
267 if (!Init)
268 return false;
269
270 if (CXXExprWithTemporaries *ExprTemp = dyn_cast<CXXExprWithTemporaries>(Init))
271 Init = ExprTemp->getSubExpr();
272
273 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(Init))
274 Init = Binder->getSubExpr();
275
276 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Init))
277 Init = ICE->getSubExprAsWritten();
278
279 if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(Init)) {
280 LParenLoc = ParenList->getLParenLoc();
281 RParenLoc = ParenList->getRParenLoc();
282 return InstantiateInitializationArguments(S, ParenList->getExprs(),
283 ParenList->getNumExprs(),
284 TemplateArgs, CommaLocs,
285 NewArgs);
286 }
287
288 if (CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) {
Douglas Gregor28329e52010-03-24 21:22:47 +0000289 if (!isa<CXXTemporaryObjectExpr>(Construct)) {
290 if (InstantiateInitializationArguments(S,
291 Construct->getArgs(),
292 Construct->getNumArgs(),
293 TemplateArgs,
294 CommaLocs, NewArgs))
295 return true;
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000296
Douglas Gregor28329e52010-03-24 21:22:47 +0000297 // FIXME: Fake locations!
298 LParenLoc = S.PP.getLocForEndOfToken(Init->getLocStart());
299 RParenLoc = CommaLocs.empty()? LParenLoc : CommaLocs.back();
300 return false;
301 }
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000302 }
303
304 Sema::OwningExprResult Result = S.SubstExpr(Init, TemplateArgs);
305 if (Result.isInvalid())
306 return true;
307
308 NewArgs.push_back(Result.takeAs<Expr>());
309 return false;
310}
311
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000312Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000313 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000314 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000315 TemplateArgs,
316 D->getTypeSpecStartLoc(),
317 D->getDeclName());
318 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000319 return 0;
320
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000321 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000322 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
323 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000324 DI->getType(), DI,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000325 D->getStorageClass());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000326 Var->setThreadSpecified(D->isThreadSpecified());
327 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
328 Var->setDeclaredInCondition(D->isDeclaredInCondition());
Mike Stump1eb44332009-09-09 15:08:12 +0000329
John McCallb6217662010-03-15 10:12:16 +0000330 // Substitute the nested name specifier, if any.
331 if (SubstQualifier(D, Var))
332 return 0;
333
Mike Stump1eb44332009-09-09 15:08:12 +0000334 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000335 // out-of-line, the instantiation will have the same lexical
336 // context (which will be a namespace scope) as the template.
337 if (D->isOutOfLine())
338 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000339
John McCall46460a62010-01-20 21:53:11 +0000340 Var->setAccess(D->getAccess());
341
Mike Stump390b4cc2009-05-16 07:39:55 +0000342 // FIXME: In theory, we could have a previous declaration for variables that
343 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000344 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000345 // FIXME: having to fake up a LookupResult is dumb.
346 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
Douglas Gregor449d0a82010-03-01 19:11:54 +0000347 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000348 if (D->isStaticDataMember())
349 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000350 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000351
Douglas Gregor7caa6822009-07-24 20:34:43 +0000352 if (D->isOutOfLine()) {
353 D->getLexicalDeclContext()->addDecl(Var);
354 Owner->makeDeclVisibleInContext(Var);
355 } else {
356 Owner->addDecl(Var);
357 }
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000359 // Link instantiations of static data members back to the template from
360 // which they were instantiated.
361 if (Var->isStaticDataMember())
362 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000363 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000364
Douglas Gregor60c93c92010-02-09 07:26:29 +0000365 if (Var->getAnyInitializer()) {
366 // We already have an initializer in the class.
367 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000368 if (Var->isStaticDataMember() && !D->isOutOfLine())
369 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
370 else
371 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
372
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000373 // Instantiate the initializer.
374 SourceLocation LParenLoc, RParenLoc;
375 llvm::SmallVector<SourceLocation, 4> CommaLocs;
376 ASTOwningVector<&ActionBase::DeleteExpr> InitArgs(SemaRef);
377 if (!InstantiateInitializer(SemaRef, D->getInit(), TemplateArgs, LParenLoc,
378 CommaLocs, InitArgs, RParenLoc)) {
379 // Attach the initializer to the declaration.
380 if (D->hasCXXDirectInitializer()) {
Douglas Gregor6eef5192009-12-14 19:27:10 +0000381 // Add the direct initializer to the declaration.
Douglas Gregora88cfbf2009-12-12 18:16:41 +0000382 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000383 LParenLoc,
Douglas Gregor6eef5192009-12-14 19:27:10 +0000384 move_arg(InitArgs),
385 CommaLocs.data(),
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000386 RParenLoc);
387 } else if (InitArgs.size() == 1) {
388 Expr *Init = (Expr*)(InitArgs.take()[0]);
389 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var),
390 SemaRef.Owned(Init),
391 false);
392 } else {
393 assert(InitArgs.size() == 0);
394 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor6eef5192009-12-14 19:27:10 +0000395 }
Douglas Gregor6eef5192009-12-14 19:27:10 +0000396 } else {
Douglas Gregor6b98b2e2010-03-02 07:38:39 +0000397 // FIXME: Not too happy about invalidating the declaration
398 // because of a bogus initializer.
399 Var->setInvalidDecl();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000400 }
401
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000402 SemaRef.PopExpressionEvaluationContext();
Douglas Gregor65b90052009-07-27 17:43:39 +0000403 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
404 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000405
406 return Var;
407}
408
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000409Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
410 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000411 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000412 if (DI->getType()->isDependentType()) {
413 DI = SemaRef.SubstType(DI, TemplateArgs,
414 D->getLocation(), D->getDeclName());
415 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000416 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000417 Invalid = true;
418 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000419 // C++ [temp.arg.type]p3:
420 // If a declaration acquires a function type through a type
421 // dependent on a template-parameter and this causes a
422 // declaration that does not use the syntactic form of a
423 // function declarator to have function type, the program is
424 // ill-formed.
425 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000426 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000427 Invalid = true;
428 }
429 }
430
431 Expr *BitWidth = D->getBitWidth();
432 if (Invalid)
433 BitWidth = 0;
434 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000435 // The bit-width expression is not potentially evaluated.
436 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000438 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000439 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000440 if (InstantiatedBitWidth.isInvalid()) {
441 Invalid = true;
442 BitWidth = 0;
443 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000444 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000445 }
446
John McCall07fb6be2009-10-22 23:33:21 +0000447 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
448 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000449 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000450 D->getLocation(),
451 D->isMutable(),
452 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000453 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 D->getAccess(),
455 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000456 if (!Field) {
457 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000458 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000459 }
Mike Stump1eb44332009-09-09 15:08:12 +0000460
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000461 InstantiateAttrs(D, Field);
462
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000463 if (Invalid)
464 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000465
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000466 if (!Field->getDeclName()) {
467 // Keep track of where this decl came from.
468 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000469 }
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000471 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000472 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000473 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000474
475 return Field;
476}
477
John McCall02cace72009-08-28 07:59:38 +0000478Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
479 FriendDecl::FriendUnion FU;
480
481 // Handle friend type expressions by simply substituting template
482 // parameters into the pattern type.
John McCall32f2fb52010-03-25 18:04:51 +0000483 if (TypeSourceInfo *Ty = D->getFriendType()) {
484 TypeSourceInfo *InstTy =
485 SemaRef.SubstType(Ty, TemplateArgs,
486 D->getLocation(), DeclarationName());
487 if (!InstTy) return 0;
John McCall02cace72009-08-28 07:59:38 +0000488
John McCall32f2fb52010-03-25 18:04:51 +0000489 // This assertion is valid because the source type was necessarily
490 // an elaborated-type-specifier with a record tag.
491 assert(getLangOptions().CPlusPlus0x || InstTy->getType()->isRecordType());
492
493 FU = InstTy;
John McCall02cace72009-08-28 07:59:38 +0000494
495 // Handle everything else by appropriate substitution.
496 } else {
497 NamedDecl *ND = D->getFriendDecl();
498 assert(ND && "friend decl must be a decl or a type!");
499
Douglas Gregora735b202009-10-13 14:39:41 +0000500 // FIXME: We have a problem here, because the nested call to Visit(ND)
501 // will inject the thing that the friend references into the current
502 // owner, which is wrong.
John McCalle129d442009-12-17 23:21:11 +0000503 Decl *NewND;
504
505 // Hack to make this work almost well pending a rewrite.
Douglas Gregor63644fa2010-02-07 10:31:35 +0000506 if (ND->getDeclContext()->isRecord()) {
John McCall93ba8572010-03-25 06:39:04 +0000507 // FIXME: Hack to avoid crashing when incorrectly trying to instantiate
508 // templated friend declarations. This doesn't produce a correct AST;
509 // however this is sufficient for some AST analysis. The real solution
510 // must be put in place during the pending rewrite. See PR5848.
511 return 0;
Douglas Gregor63644fa2010-02-07 10:31:35 +0000512 } else if (D->wasSpecialization()) {
Douglas Gregor7557a132009-12-24 20:56:24 +0000513 // Totally egregious hack to work around PR5866
514 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000515 } else {
John McCalle129d442009-12-17 23:21:11 +0000516 NewND = Visit(ND);
John McCall93ba8572010-03-25 06:39:04 +0000517 }
John McCall02cace72009-08-28 07:59:38 +0000518 if (!NewND) return 0;
519
520 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000521 }
Mike Stump1eb44332009-09-09 15:08:12 +0000522
John McCall02cace72009-08-28 07:59:38 +0000523 FriendDecl *FD =
524 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
525 D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000526 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000527 Owner->addDecl(FD);
528 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000529}
530
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000531Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
532 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000533
Douglas Gregorac7610d2009-06-22 20:57:11 +0000534 // The expression in a static assertion is not potentially evaluated.
535 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000536
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000537 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000538 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000539 if (InstantiatedAssertExpr.isInvalid())
540 return 0;
541
Douglas Gregor43d9d922009-08-08 01:41:12 +0000542 OwningExprResult Message(SemaRef, D->getMessage());
543 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000544 Decl *StaticAssert
545 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000546 move(InstantiatedAssertExpr),
547 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000548 return StaticAssert;
549}
550
551Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000552 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000553 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000554 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000555 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000556 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000557 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000558 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000559 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000560 Enum->startDefinition();
561
Douglas Gregor96084f12010-03-01 19:00:07 +0000562 if (D->getDeclContext()->isFunctionOrMethod())
563 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
564
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000565 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000566
567 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000568 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
569 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000570 EC != ECEnd; ++EC) {
571 // The specified value for the enumerator.
572 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000573 if (Expr *UninstValue = EC->getInitExpr()) {
574 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000575 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000576 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000577
John McCallce3ff2b2009-08-25 22:02:44 +0000578 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000579 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000580
581 // Drop the initial value and continue.
582 bool isInvalid = false;
583 if (Value.isInvalid()) {
584 Value = SemaRef.Owned((Expr *)0);
585 isInvalid = true;
586 }
587
Mike Stump1eb44332009-09-09 15:08:12 +0000588 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000589 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
590 EC->getLocation(), EC->getIdentifier(),
591 move(Value));
592
593 if (isInvalid) {
594 if (EnumConst)
595 EnumConst->setInvalidDecl();
596 Enum->setInvalidDecl();
597 }
598
599 if (EnumConst) {
John McCall3b85ecf2010-01-23 22:37:59 +0000600 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000601 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000602 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000603 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000604
605 if (D->getDeclContext()->isFunctionOrMethod()) {
606 // If the enumeration is within a function or method, record the enum
607 // constant as a local.
608 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
609 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000610 }
611 }
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000613 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000614 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000615 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
616 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000617 &Enumerators[0], Enumerators.size(),
618 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000619
620 return Enum;
621}
622
Douglas Gregor6477b692009-03-25 15:04:13 +0000623Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
624 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
625 return 0;
626}
627
Douglas Gregored9c0f92009-10-29 00:04:11 +0000628namespace {
629 class SortDeclByLocation {
630 SourceManager &SourceMgr;
631
632 public:
633 explicit SortDeclByLocation(SourceManager &SourceMgr)
634 : SourceMgr(SourceMgr) { }
635
636 bool operator()(const Decl *X, const Decl *Y) const {
637 return SourceMgr.isBeforeInTranslationUnit(X->getLocation(),
638 Y->getLocation());
639 }
640 };
641}
642
John McCalle29ba202009-08-20 01:44:21 +0000643Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000644 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
645
Douglas Gregor550d9b22009-10-31 17:21:17 +0000646 // Create a local instantiation scope for this class template, which
647 // will contain the instantiations of the template parameters.
648 Sema::LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000649 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000650 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000651 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000652 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000653
654 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000655
656 // Instantiate the qualifier. We have to do this first in case
657 // we're a friend declaration, because if we are then we need to put
658 // the new declaration in the appropriate context.
659 NestedNameSpecifier *Qualifier = Pattern->getQualifier();
660 if (Qualifier) {
661 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
662 Pattern->getQualifierRange(),
663 TemplateArgs);
664 if (!Qualifier) return 0;
665 }
666
667 CXXRecordDecl *PrevDecl = 0;
668 ClassTemplateDecl *PrevClassTemplate = 0;
669
670 // If this isn't a friend, then it's a member template, in which
671 // case we just want to build the instantiation in the
672 // specialization. If it is a friend, we want to build it in
673 // the appropriate context.
674 DeclContext *DC = Owner;
675 if (isFriend) {
676 if (Qualifier) {
677 CXXScopeSpec SS;
678 SS.setScopeRep(Qualifier);
679 SS.setRange(Pattern->getQualifierRange());
680 DC = SemaRef.computeDeclContext(SS);
681 if (!DC) return 0;
682 } else {
683 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
684 Pattern->getDeclContext(),
685 TemplateArgs);
686 }
687
688 // Look for a previous declaration of the template in the owning
689 // context.
690 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
691 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
692 SemaRef.LookupQualifiedName(R, DC);
693
694 if (R.isSingleResult()) {
695 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
696 if (PrevClassTemplate)
697 PrevDecl = PrevClassTemplate->getTemplatedDecl();
698 }
699
700 if (!PrevClassTemplate && Qualifier) {
701 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
702 << Pattern->getDeclName() << Pattern->getQualifierRange();
703 return 0;
704 }
705
706 if (PrevClassTemplate) {
707 TemplateParameterList *PrevParams
708 = PrevClassTemplate->getTemplateParameters();
709
710 // Make sure the parameter lists match.
711 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
712 /*Complain=*/true,
713 Sema::TPL_TemplateMatch))
714 return 0;
715
716 // Do some additional validation, then merge default arguments
717 // from the existing declarations.
718 if (SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
719 Sema::TPC_ClassTemplate))
720 return 0;
721 }
722 }
723
John McCalle29ba202009-08-20 01:44:21 +0000724 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000725 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
John McCalle29ba202009-08-20 01:44:21 +0000726 Pattern->getLocation(), Pattern->getIdentifier(),
John McCall93ba8572010-03-25 06:39:04 +0000727 Pattern->getTagKeywordLoc(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000728 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000729
John McCall93ba8572010-03-25 06:39:04 +0000730 if (Qualifier)
731 RecordInst->setQualifierInfo(Qualifier, Pattern->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000732
John McCalle29ba202009-08-20 01:44:21 +0000733 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000734 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
735 D->getIdentifier(), InstParams, RecordInst,
736 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000737 RecordInst->setDescribedClassTemplate(Inst);
John McCall93ba8572010-03-25 06:39:04 +0000738 if (isFriend) {
739 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
740 // TODO: do we want to track the instantiation progeny of this
741 // friend target decl?
742 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000743 Inst->setAccess(D->getAccess());
John McCall93ba8572010-03-25 06:39:04 +0000744 Inst->setInstantiatedFromMemberTemplate(D);
745 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000746
747 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000748 SemaRef.Context.getInjectedClassNameType(RecordInst,
749 Inst->getInjectedClassNameSpecialization(SemaRef.Context));
Douglas Gregorf0510d42009-10-12 23:11:44 +0000750
Douglas Gregor259571e2009-10-30 22:42:42 +0000751 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000752 if (isFriend) {
753 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000754 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000755 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000756
John McCall46460a62010-01-20 21:53:11 +0000757 Inst->setAccess(D->getAccess());
John McCalle29ba202009-08-20 01:44:21 +0000758 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000759
760 // First, we sort the partial specializations by location, so
761 // that we instantiate them in the order they were declared.
762 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
763 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
764 P = D->getPartialSpecializations().begin(),
765 PEnd = D->getPartialSpecializations().end();
766 P != PEnd; ++P)
767 PartialSpecs.push_back(&*P);
768 std::sort(PartialSpecs.begin(), PartialSpecs.end(),
769 SortDeclByLocation(SemaRef.SourceMgr));
770
771 // Instantiate all of the partial specializations of this member class
772 // template.
773 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
774 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
775
John McCalle29ba202009-08-20 01:44:21 +0000776 return Inst;
777}
778
Douglas Gregord60e1052009-08-27 16:57:43 +0000779Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000780TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
781 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000782 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
783
784 // Lookup the already-instantiated declaration in the instantiation
785 // of the class template and return that.
786 DeclContext::lookup_result Found
787 = Owner->lookup(ClassTemplate->getDeclName());
788 if (Found.first == Found.second)
789 return 0;
790
791 ClassTemplateDecl *InstClassTemplate
792 = dyn_cast<ClassTemplateDecl>(*Found.first);
793 if (!InstClassTemplate)
794 return 0;
795
796 Decl *DCanon = D->getCanonicalDecl();
797 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
798 P = InstClassTemplate->getPartialSpecializations().begin(),
799 PEnd = InstClassTemplate->getPartialSpecializations().end();
800 P != PEnd; ++P) {
801 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
802 return &*P;
803 }
804
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000805 return 0;
806}
807
808Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000809TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000810 // Create a local instantiation scope for this function template, which
811 // will contain the instantiations of the template parameters and then get
812 // merged with the local instantiation scope for the function template
813 // itself.
814 Sema::LocalInstantiationScope Scope(SemaRef);
815
Douglas Gregord60e1052009-08-27 16:57:43 +0000816 TemplateParameterList *TempParams = D->getTemplateParameters();
817 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000818 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000819 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000820
Douglas Gregora735b202009-10-13 14:39:41 +0000821 FunctionDecl *Instantiated = 0;
822 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
823 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
824 InstParams));
825 else
826 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
827 D->getTemplatedDecl(),
828 InstParams));
829
830 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000831 return 0;
832
John McCall46460a62010-01-20 21:53:11 +0000833 Instantiated->setAccess(D->getAccess());
834
Mike Stump1eb44332009-09-09 15:08:12 +0000835 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000836 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000837 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000838 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000839 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000840 assert(InstTemplate &&
841 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000842
John McCallb1a56e72010-03-26 23:10:15 +0000843 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
844
John McCalle976ffe2009-12-14 23:19:40 +0000845 // Link the instantiation back to the pattern *unless* this is a
846 // non-definition friend declaration.
847 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCallb1a56e72010-03-26 23:10:15 +0000848 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000849 InstTemplate->setInstantiatedFromMemberTemplate(D);
850
John McCallb1a56e72010-03-26 23:10:15 +0000851 // Make declarations visible in the appropriate context.
852 if (!isFriend)
Douglas Gregora735b202009-10-13 14:39:41 +0000853 Owner->addDecl(InstTemplate);
John McCallb1a56e72010-03-26 23:10:15 +0000854
Douglas Gregord60e1052009-08-27 16:57:43 +0000855 return InstTemplate;
856}
857
Douglas Gregord475b8d2009-03-25 21:17:03 +0000858Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
859 CXXRecordDecl *PrevDecl = 0;
860 if (D->isInjectedClassName())
861 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000862 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000863 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
864 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000865 TemplateArgs);
866 if (!Prev) return 0;
867 PrevDecl = cast<CXXRecordDecl>(Prev);
868 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000869
870 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000871 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000872 D->getLocation(), D->getIdentifier(),
873 D->getTagKeywordLoc(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000874
875 // Substitute the nested name specifier, if any.
876 if (SubstQualifier(D, Record))
877 return 0;
878
Douglas Gregord475b8d2009-03-25 21:17:03 +0000879 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000880 // FIXME: Check against AS_none is an ugly hack to work around the issue that
881 // the tag decls introduced by friend class declarations don't have an access
882 // specifier. Remove once this area of the code gets sorted out.
883 if (D->getAccess() != AS_none)
884 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000885 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000886 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000887
John McCall02cace72009-08-28 07:59:38 +0000888 // If the original function was part of a friend declaration,
889 // inherit its namespace state.
890 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
891 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
892
Anders Carlssond8b285f2009-09-01 04:26:58 +0000893 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
894
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000895 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000896 return Record;
897}
898
John McCall02cace72009-08-28 07:59:38 +0000899/// Normal class members are of more specific types and therefore
900/// don't make it here. This function serves two purposes:
901/// 1) instantiating function templates
902/// 2) substituting friend declarations
903/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000904Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000905 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000906 // Check whether there is already a function template specialization for
907 // this declaration.
908 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCalld325daa2010-03-26 04:53:08 +0000909
910 bool isFriend;
911 if (FunctionTemplate)
912 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
913 else
914 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
915
Douglas Gregor127102b2009-06-29 20:59:39 +0000916 void *InsertPos = 0;
John McCalld325daa2010-03-26 04:53:08 +0000917 if (!isFriend && FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000918 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000919 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000920 TemplateArgs.getInnermost().getFlatArgumentList(),
921 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000922 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000923
924 FunctionTemplateSpecializationInfo *Info
925 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000926 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000927
Douglas Gregor127102b2009-06-29 20:59:39 +0000928 // If we already have a function template specialization, return it.
929 if (Info)
930 return Info->Function;
931 }
Mike Stump1eb44332009-09-09 15:08:12 +0000932
Douglas Gregor79c22782010-01-16 20:21:20 +0000933 bool MergeWithParentScope = (TemplateParams != 0) ||
934 !(isa<Decl>(Owner) &&
935 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
936 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000937
Douglas Gregore53060f2009-06-25 22:08:12 +0000938 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +0000939 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
940 TInfo = SubstFunctionType(D, Params);
941 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000942 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +0000943 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +0000944
John McCalld325daa2010-03-26 04:53:08 +0000945 NestedNameSpecifier *Qualifier = D->getQualifier();
946 if (Qualifier) {
947 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
948 D->getQualifierRange(),
949 TemplateArgs);
950 if (!Qualifier) return 0;
951 }
952
John McCall68b6b872010-02-06 01:50:47 +0000953 // If we're instantiating a local function declaration, put the result
954 // in the owner; otherwise we need to find the instantiated context.
955 DeclContext *DC;
956 if (D->getDeclContext()->isFunctionOrMethod())
957 DC = Owner;
John McCalld325daa2010-03-26 04:53:08 +0000958 else if (isFriend && Qualifier) {
959 CXXScopeSpec SS;
960 SS.setScopeRep(Qualifier);
961 SS.setRange(D->getQualifierRange());
962 DC = SemaRef.computeDeclContext(SS);
963 if (!DC) return 0;
964 } else {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000965 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
966 TemplateArgs);
John McCalld325daa2010-03-26 04:53:08 +0000967 }
John McCall68b6b872010-02-06 01:50:47 +0000968
John McCall02cace72009-08-28 07:59:38 +0000969 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000970 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +0000971 D->getDeclName(), T, TInfo,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000972 D->getStorageClass(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000973 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +0000974
John McCalld325daa2010-03-26 04:53:08 +0000975 if (Qualifier)
976 Function->setQualifierInfo(Qualifier, D->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000977
John McCallb1a56e72010-03-26 23:10:15 +0000978 DeclContext *LexicalDC = Owner;
979 if (!isFriend && D->isOutOfLine()) {
980 assert(D->getDeclContext()->isFileContext());
981 LexicalDC = D->getDeclContext();
982 }
983
984 Function->setLexicalDeclContext(LexicalDC);
Mike Stump1eb44332009-09-09 15:08:12 +0000985
Douglas Gregore53060f2009-06-25 22:08:12 +0000986 // Attach the parameters
987 for (unsigned P = 0; P < Params.size(); ++P)
988 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +0000989 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000990
Douglas Gregora735b202009-10-13 14:39:41 +0000991 if (TemplateParams) {
992 // Our resulting instantiation is actually a function template, since we
993 // are substituting only the outer template parameters. For example, given
994 //
995 // template<typename T>
996 // struct X {
997 // template<typename U> friend void f(T, U);
998 // };
999 //
1000 // X<int> x;
1001 //
1002 // We are instantiating the friend function template "f" within X<int>,
1003 // which means substituting int for T, but leaving "f" as a friend function
1004 // template.
1005 // Build the function template itself.
John McCalld325daa2010-03-26 04:53:08 +00001006 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregora735b202009-10-13 14:39:41 +00001007 Function->getLocation(),
1008 Function->getDeclName(),
1009 TemplateParams, Function);
1010 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCallb1a56e72010-03-26 23:10:15 +00001011
1012 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalld325daa2010-03-26 04:53:08 +00001013
1014 if (isFriend && D->isThisDeclarationADefinition()) {
1015 // TODO: should we remember this connection regardless of whether
1016 // the friend declaration provided a body?
1017 FunctionTemplate->setInstantiatedFromMemberTemplate(
1018 D->getDescribedFunctionTemplate());
1019 }
Douglas Gregor66724ea2009-11-14 01:20:54 +00001020 } else if (FunctionTemplate) {
1021 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +00001022 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +00001023 &TemplateArgs.getInnermost(),
1024 InsertPos);
John McCalld325daa2010-03-26 04:53:08 +00001025 } else if (isFriend && D->isThisDeclarationADefinition()) {
1026 // TODO: should we remember this connection regardless of whether
1027 // the friend declaration provided a body?
1028 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCall02cace72009-08-28 07:59:38 +00001029 }
Douglas Gregora735b202009-10-13 14:39:41 +00001030
Douglas Gregore53060f2009-06-25 22:08:12 +00001031 if (InitFunctionInstantiation(Function, D))
1032 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001033
Douglas Gregore53060f2009-06-25 22:08:12 +00001034 bool Redeclaration = false;
1035 bool OverloadableAttrRequired = false;
Douglas Gregora735b202009-10-13 14:39:41 +00001036
John McCall68263142009-11-18 22:49:29 +00001037 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
1038 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
1039
Douglas Gregora735b202009-10-13 14:39:41 +00001040 if (TemplateParams || !FunctionTemplate) {
1041 // Look only into the namespace where the friend would be declared to
1042 // find a previous declaration. This is the innermost enclosing namespace,
1043 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +00001044 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001045
Douglas Gregora735b202009-10-13 14:39:41 +00001046 // In C++, the previous declaration we find might be a tag type
1047 // (class or enum). In this case, the new declaration will hide the
1048 // tag type. Note that this does does not apply if we're declaring a
1049 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001050 if (Previous.isSingleTagDecl())
1051 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001052 }
1053
John McCall9f54ad42009-12-10 09:41:52 +00001054 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
1055 false, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +00001056 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001057
Douglas Gregora735b202009-10-13 14:39:41 +00001058 // If the original function was part of a friend declaration,
1059 // inherit its namespace state and add it to the owner.
John McCalld325daa2010-03-26 04:53:08 +00001060 if (isFriend) {
Douglas Gregora735b202009-10-13 14:39:41 +00001061 NamedDecl *ToFriendD = 0;
John McCall68263142009-11-18 22:49:29 +00001062 NamedDecl *PrevDecl;
Douglas Gregora735b202009-10-13 14:39:41 +00001063 if (TemplateParams) {
1064 ToFriendD = cast<NamedDecl>(FunctionTemplate);
1065 PrevDecl = FunctionTemplate->getPreviousDeclaration();
1066 } else {
1067 ToFriendD = Function;
1068 PrevDecl = Function->getPreviousDeclaration();
1069 }
1070 ToFriendD->setObjectOfFriendDecl(PrevDecl != NULL);
John McCalld325daa2010-03-26 04:53:08 +00001071 DC->makeDeclVisibleInContext(ToFriendD, /*Recoverable=*/ false);
Douglas Gregora735b202009-10-13 14:39:41 +00001072 }
1073
Douglas Gregore53060f2009-06-25 22:08:12 +00001074 return Function;
1075}
1076
Douglas Gregord60e1052009-08-27 16:57:43 +00001077Decl *
1078TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1079 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001080 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1081 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001082 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001083 // We are creating a function template specialization from a function
1084 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001085 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +00001086 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +00001087 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001088 TemplateArgs.getInnermost().getFlatArgumentList(),
1089 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +00001090 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +00001091
1092 FunctionTemplateSpecializationInfo *Info
1093 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +00001094 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001095
Douglas Gregor6b906862009-08-21 00:16:32 +00001096 // If we already have a function template specialization, return it.
1097 if (Info)
1098 return Info->Function;
1099 }
1100
Douglas Gregor79c22782010-01-16 20:21:20 +00001101 bool MergeWithParentScope = (TemplateParams != 0) ||
1102 !(isa<Decl>(Owner) &&
1103 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
1104 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001105
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001106 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001107 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1108 TInfo = SubstFunctionType(D, Params);
1109 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001110 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001111 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001112
1113 // Build the instantiated method declaration.
1114 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +00001115 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001116
Douglas Gregordec06662009-08-21 18:42:58 +00001117 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +00001118 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +00001119 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
1120 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
1121 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +00001122 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
1123 Constructor->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001124 Name, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001125 Constructor->isExplicit(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001126 Constructor->isInlineSpecified(), false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001127 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
1128 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
1129 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
1130 SemaRef.Context.getCanonicalType(ClassTy));
1131 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
1132 Destructor->getLocation(), Name,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001133 T, Destructor->isInlineSpecified(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001134 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001135 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001136 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +00001137 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001138 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
1139 ConvTy);
1140 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
1141 Conversion->getLocation(), Name,
John McCall21ef0fa2010-03-11 09:03:00 +00001142 T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001143 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001144 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +00001145 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001146 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001147 D->getDeclName(), T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001148 D->isStatic(), D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +00001149 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001150
John McCallb6217662010-03-15 10:12:16 +00001151 // Substitute the nested name specifier, if any.
1152 if (SubstQualifier(D, Method))
1153 return 0;
1154
Douglas Gregord60e1052009-08-27 16:57:43 +00001155 if (TemplateParams) {
1156 // Our resulting instantiation is actually a function template, since we
1157 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001158 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001159 // template<typename T>
1160 // struct X {
1161 // template<typename U> void f(T, U);
1162 // };
1163 //
1164 // X<int> x;
1165 //
1166 // We are instantiating the member template "f" within X<int>, which means
1167 // substituting int for T, but leaving "f" as a member function template.
1168 // Build the function template itself.
1169 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1170 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001171 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001172 TemplateParams, Method);
1173 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001174 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001175 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001176 } else if (FunctionTemplate) {
1177 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +00001178 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +00001179 &TemplateArgs.getInnermost(),
1180 InsertPos);
1181 } else {
1182 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001183 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001184 }
1185
Mike Stump1eb44332009-09-09 15:08:12 +00001186 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001187 // out-of-line, the instantiation will have the same lexical
1188 // context (which will be a namespace scope) as the template.
1189 if (D->isOutOfLine())
1190 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001191
Douglas Gregor5545e162009-03-24 00:38:23 +00001192 // Attach the parameters
1193 for (unsigned P = 0; P < Params.size(); ++P)
1194 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001195 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001196
1197 if (InitMethodInstantiation(Method, D))
1198 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001199
John McCall68263142009-11-18 22:49:29 +00001200 LookupResult Previous(SemaRef, Name, SourceLocation(),
1201 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001202
Douglas Gregord60e1052009-08-27 16:57:43 +00001203 if (!FunctionTemplate || TemplateParams) {
John McCall68263142009-11-18 22:49:29 +00001204 SemaRef.LookupQualifiedName(Previous, Owner);
Mike Stump1eb44332009-09-09 15:08:12 +00001205
Douglas Gregordec06662009-08-21 18:42:58 +00001206 // In C++, the previous declaration we find might be a tag type
1207 // (class or enum). In this case, the new declaration will hide the
1208 // tag type. Note that this does does not apply if we're declaring a
1209 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001210 if (Previous.isSingleTagDecl())
1211 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001212 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001213
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001214 bool Redeclaration = false;
1215 bool OverloadableAttrRequired = false;
John McCall9f54ad42009-12-10 09:41:52 +00001216 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001217 /*FIXME:*/OverloadableAttrRequired);
1218
Douglas Gregor4ba31362009-12-01 17:24:26 +00001219 if (D->isPure())
1220 SemaRef.CheckPureMethod(Method, SourceRange());
1221
John McCall46460a62010-01-20 21:53:11 +00001222 Method->setAccess(D->getAccess());
1223
John McCall68263142009-11-18 22:49:29 +00001224 if (!FunctionTemplate && (!Method->isInvalidDecl() || Previous.empty()) &&
Douglas Gregora735b202009-10-13 14:39:41 +00001225 !Method->getFriendObjectKind())
Douglas Gregordec06662009-08-21 18:42:58 +00001226 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001228 return Method;
1229}
1230
Douglas Gregor615c5d42009-03-24 16:43:20 +00001231Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001232 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001233}
1234
Douglas Gregor03b2b072009-03-24 00:15:49 +00001235Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001236 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001237}
1238
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001239Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001240 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001241}
1242
Douglas Gregor6477b692009-03-25 15:04:13 +00001243ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCall58e46772009-10-23 21:48:59 +00001244 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001245 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCall58e46772009-10-23 21:48:59 +00001246 if (DI) {
1247 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1248 D->getDeclName());
1249 if (DI) T = DI->getType();
1250 } else {
1251 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1252 D->getDeclName());
1253 DI = 0;
1254 }
1255
1256 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001257 return 0;
1258
John McCall58e46772009-10-23 21:48:59 +00001259 T = SemaRef.adjustParameterType(T);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001260
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001261 // Allocate the parameter
John McCall58e46772009-10-23 21:48:59 +00001262 ParmVarDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +00001263 = ParmVarDecl::Create(SemaRef.Context,
1264 SemaRef.Context.getTranslationUnitDecl(),
1265 D->getLocation(),
John McCall58e46772009-10-23 21:48:59 +00001266 D->getIdentifier(), T, DI, D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001267
Anders Carlsson9351c172009-08-25 03:18:48 +00001268 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +00001269 if (D->hasUninstantiatedDefaultArg())
1270 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +00001271 else if (Expr *Arg = D->getDefaultArg())
1272 Param->setUninstantiatedDefaultArg(Arg);
1273
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001274 // Note: we don't try to instantiate function parameters until after
1275 // we've instantiated the function's type. Therefore, we don't have
1276 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001277 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001278 return Param;
1279}
1280
John McCalle29ba202009-08-20 01:44:21 +00001281Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1282 TemplateTypeParmDecl *D) {
1283 // TODO: don't always clone when decls are refcounted.
1284 const Type* T = D->getTypeForDecl();
1285 assert(T->isTemplateTypeParmType());
1286 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001287
John McCalle29ba202009-08-20 01:44:21 +00001288 TemplateTypeParmDecl *Inst =
1289 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor550d9b22009-10-31 17:21:17 +00001290 TTPT->getDepth() - 1, TTPT->getIndex(),
John McCalle29ba202009-08-20 01:44:21 +00001291 TTPT->getName(),
1292 D->wasDeclaredWithTypename(),
1293 D->isParameterPack());
1294
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001295 if (D->hasDefaultArgument())
1296 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001297
Douglas Gregor550d9b22009-10-31 17:21:17 +00001298 // Introduce this template parameter's instantiation into the instantiation
1299 // scope.
1300 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1301
John McCalle29ba202009-08-20 01:44:21 +00001302 return Inst;
1303}
1304
Douglas Gregor33642df2009-10-23 23:25:44 +00001305Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1306 NonTypeTemplateParmDecl *D) {
1307 // Substitute into the type of the non-type template parameter.
1308 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001309 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor33642df2009-10-23 23:25:44 +00001310 if (DI) {
1311 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1312 D->getDeclName());
1313 if (DI) T = DI->getType();
1314 } else {
1315 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1316 D->getDeclName());
1317 DI = 0;
1318 }
1319 if (T.isNull())
1320 return 0;
1321
1322 // Check that this type is acceptable for a non-type template parameter.
1323 bool Invalid = false;
1324 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
1325 if (T.isNull()) {
1326 T = SemaRef.Context.IntTy;
1327 Invalid = true;
1328 }
1329
1330 NonTypeTemplateParmDecl *Param
1331 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1332 D->getDepth() - 1, D->getPosition(),
1333 D->getIdentifier(), T, DI);
1334 if (Invalid)
1335 Param->setInvalidDecl();
1336
1337 Param->setDefaultArgument(D->getDefaultArgument());
Douglas Gregor550d9b22009-10-31 17:21:17 +00001338
1339 // Introduce this template parameter's instantiation into the instantiation
1340 // scope.
1341 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001342 return Param;
1343}
1344
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001345Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001346TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1347 TemplateTemplateParmDecl *D) {
1348 // Instantiate the template parameter list of the template template parameter.
1349 TemplateParameterList *TempParams = D->getTemplateParameters();
1350 TemplateParameterList *InstParams;
1351 {
1352 // Perform the actual substitution of template parameters within a new,
1353 // local instantiation scope.
1354 Sema::LocalInstantiationScope Scope(SemaRef);
1355 InstParams = SubstTemplateParams(TempParams);
1356 if (!InstParams)
1357 return NULL;
1358 }
1359
1360 // Build the template template parameter.
1361 TemplateTemplateParmDecl *Param
1362 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1363 D->getDepth() - 1, D->getPosition(),
1364 D->getIdentifier(), InstParams);
1365 Param->setDefaultArgument(D->getDefaultArgument());
1366
1367 // Introduce this template parameter's instantiation into the instantiation
1368 // scope.
1369 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1370
1371 return Param;
1372}
1373
Douglas Gregor48c32a72009-11-17 06:07:40 +00001374Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1375 // Using directives are never dependent, so they require no explicit
1376
1377 UsingDirectiveDecl *Inst
1378 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1379 D->getNamespaceKeyLocation(),
1380 D->getQualifierRange(), D->getQualifier(),
1381 D->getIdentLocation(),
1382 D->getNominatedNamespace(),
1383 D->getCommonAncestor());
1384 Owner->addDecl(Inst);
1385 return Inst;
1386}
1387
John McCalled976492009-12-04 22:46:56 +00001388Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
1389 // The nested name specifier is non-dependent, so no transformation
1390 // is required.
1391
John McCall9f54ad42009-12-10 09:41:52 +00001392 // We only need to do redeclaration lookups if we're in a class
1393 // scope (in fact, it's not really even possible in non-class
1394 // scopes).
1395 bool CheckRedeclaration = Owner->isRecord();
1396
1397 LookupResult Prev(SemaRef, D->getDeclName(), D->getLocation(),
1398 Sema::LookupUsingDeclName, Sema::ForRedeclaration);
1399
John McCalled976492009-12-04 22:46:56 +00001400 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
1401 D->getLocation(),
1402 D->getNestedNameRange(),
1403 D->getUsingLocation(),
1404 D->getTargetNestedNameDecl(),
1405 D->getDeclName(),
1406 D->isTypeName());
1407
1408 CXXScopeSpec SS;
1409 SS.setScopeRep(D->getTargetNestedNameDecl());
1410 SS.setRange(D->getNestedNameRange());
John McCall9f54ad42009-12-10 09:41:52 +00001411
1412 if (CheckRedeclaration) {
1413 Prev.setHideTags(false);
1414 SemaRef.LookupQualifiedName(Prev, Owner);
1415
1416 // Check for invalid redeclarations.
1417 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1418 D->isTypeName(), SS,
1419 D->getLocation(), Prev))
1420 NewUD->setInvalidDecl();
1421
1422 }
1423
1424 if (!NewUD->isInvalidDecl() &&
1425 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001426 D->getLocation()))
1427 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001428
John McCalled976492009-12-04 22:46:56 +00001429 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1430 NewUD->setAccess(D->getAccess());
1431 Owner->addDecl(NewUD);
1432
John McCall9f54ad42009-12-10 09:41:52 +00001433 // Don't process the shadow decls for an invalid decl.
1434 if (NewUD->isInvalidDecl())
1435 return NewUD;
1436
John McCall323c3102009-12-22 22:26:37 +00001437 bool isFunctionScope = Owner->isFunctionOrMethod();
1438
John McCall9f54ad42009-12-10 09:41:52 +00001439 // Process the shadow decls.
1440 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1441 I != E; ++I) {
1442 UsingShadowDecl *Shadow = *I;
1443 NamedDecl *InstTarget =
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001444 cast<NamedDecl>(SemaRef.FindInstantiatedDecl(Shadow->getLocation(),
1445 Shadow->getTargetDecl(),
John McCall9f54ad42009-12-10 09:41:52 +00001446 TemplateArgs));
1447
1448 if (CheckRedeclaration &&
1449 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1450 continue;
1451
1452 UsingShadowDecl *InstShadow
1453 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1454 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001455
1456 if (isFunctionScope)
1457 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001458 }
John McCalled976492009-12-04 22:46:56 +00001459
1460 return NewUD;
1461}
1462
1463Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001464 // Ignore these; we handle them in bulk when processing the UsingDecl.
1465 return 0;
John McCalled976492009-12-04 22:46:56 +00001466}
1467
John McCall7ba107a2009-11-18 02:36:19 +00001468Decl * TemplateDeclInstantiator
1469 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001470 NestedNameSpecifier *NNS =
1471 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1472 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001473 TemplateArgs);
1474 if (!NNS)
1475 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001476
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001477 CXXScopeSpec SS;
1478 SS.setRange(D->getTargetNestedNameRange());
1479 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001480
1481 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001482 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
John McCall7ba107a2009-11-18 02:36:19 +00001483 D->getUsingLoc(), SS, D->getLocation(),
1484 D->getDeclName(), 0,
1485 /*instantiation*/ true,
1486 /*typename*/ true, D->getTypenameLoc());
1487 if (UD)
John McCalled976492009-12-04 22:46:56 +00001488 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1489
John McCall7ba107a2009-11-18 02:36:19 +00001490 return UD;
1491}
1492
1493Decl * TemplateDeclInstantiator
1494 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1495 NestedNameSpecifier *NNS =
1496 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1497 D->getTargetNestedNameRange(),
1498 TemplateArgs);
1499 if (!NNS)
1500 return 0;
1501
1502 CXXScopeSpec SS;
1503 SS.setRange(D->getTargetNestedNameRange());
1504 SS.setScopeRep(NNS);
1505
1506 NamedDecl *UD =
1507 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
1508 D->getUsingLoc(), SS, D->getLocation(),
1509 D->getDeclName(), 0,
1510 /*instantiation*/ true,
1511 /*typename*/ false, SourceLocation());
Anders Carlsson0d8df782009-08-29 19:37:28 +00001512 if (UD)
John McCalled976492009-12-04 22:46:56 +00001513 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1514
Anders Carlsson0d8df782009-08-29 19:37:28 +00001515 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001516}
1517
John McCallce3ff2b2009-08-25 22:02:44 +00001518Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001519 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001520 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001521 if (D->isInvalidDecl())
1522 return 0;
1523
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001524 return Instantiator.Visit(D);
1525}
1526
John McCalle29ba202009-08-20 01:44:21 +00001527/// \brief Instantiates a nested template parameter list in the current
1528/// instantiation context.
1529///
1530/// \param L The parameter list to instantiate
1531///
1532/// \returns NULL if there was an error
1533TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001534TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001535 // Get errors for all the parameters before bailing out.
1536 bool Invalid = false;
1537
1538 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001539 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001540 ParamVector Params;
1541 Params.reserve(N);
1542 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1543 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001544 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001545 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001546 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001547 }
1548
1549 // Clean up if we had an error.
1550 if (Invalid) {
1551 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
1552 PI != PE; ++PI)
1553 if (*PI)
1554 (*PI)->Destroy(SemaRef.Context);
1555 return NULL;
1556 }
1557
1558 TemplateParameterList *InstL
1559 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1560 L->getLAngleLoc(), &Params.front(), N,
1561 L->getRAngleLoc());
1562 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001563}
John McCalle29ba202009-08-20 01:44:21 +00001564
Douglas Gregored9c0f92009-10-29 00:04:11 +00001565/// \brief Instantiate the declaration of a class template partial
1566/// specialization.
1567///
1568/// \param ClassTemplate the (instantiated) class template that is partially
1569// specialized by the instantiation of \p PartialSpec.
1570///
1571/// \param PartialSpec the (uninstantiated) class template partial
1572/// specialization that we are instantiating.
1573///
1574/// \returns true if there was an error, false otherwise.
1575bool
1576TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1577 ClassTemplateDecl *ClassTemplate,
1578 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001579 // Create a local instantiation scope for this class template partial
1580 // specialization, which will contain the instantiations of the template
1581 // parameters.
1582 Sema::LocalInstantiationScope Scope(SemaRef);
1583
Douglas Gregored9c0f92009-10-29 00:04:11 +00001584 // Substitute into the template parameters of the class template partial
1585 // specialization.
1586 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1587 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1588 if (!InstParams)
1589 return true;
1590
1591 // Substitute into the template arguments of the class template partial
1592 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001593 const TemplateArgumentLoc *PartialSpecTemplateArgs
1594 = PartialSpec->getTemplateArgsAsWritten();
1595 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1596
John McCalld5532b62009-11-23 01:53:49 +00001597 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
John McCall833ca992009-10-29 08:12:44 +00001598 for (unsigned I = 0; I != N; ++I) {
John McCalld5532b62009-11-23 01:53:49 +00001599 TemplateArgumentLoc Loc;
1600 if (SemaRef.Subst(PartialSpecTemplateArgs[I], Loc, TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001601 return true;
John McCalld5532b62009-11-23 01:53:49 +00001602 InstTemplateArgs.addArgument(Loc);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001603 }
1604
1605
1606 // Check that the template argument list is well-formed for this
1607 // class template.
1608 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1609 InstTemplateArgs.size());
1610 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1611 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001612 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001613 false,
1614 Converted))
1615 return true;
1616
1617 // Figure out where to insert this class template partial specialization
1618 // in the member template's set of class template partial specializations.
1619 llvm::FoldingSetNodeID ID;
1620 ClassTemplatePartialSpecializationDecl::Profile(ID,
1621 Converted.getFlatArguments(),
1622 Converted.flatSize(),
1623 SemaRef.Context);
1624 void *InsertPos = 0;
1625 ClassTemplateSpecializationDecl *PrevDecl
1626 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1627 InsertPos);
1628
1629 // Build the canonical type that describes the converted template
1630 // arguments of the class template partial specialization.
1631 QualType CanonType
1632 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1633 Converted.getFlatArguments(),
1634 Converted.flatSize());
1635
1636 // Build the fully-sugared type for this class template
1637 // specialization as the user wrote in the specialization
1638 // itself. This means that we'll pretty-print the type retrieved
1639 // from the specialization's declaration the way that the user
1640 // actually wrote the specialization, rather than formatting the
1641 // name based on the "canonical" representation used to store the
1642 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001643 TypeSourceInfo *WrittenTy
1644 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1645 TemplateName(ClassTemplate),
1646 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001647 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001648 CanonType);
1649
1650 if (PrevDecl) {
1651 // We've already seen a partial specialization with the same template
1652 // parameters and template arguments. This can happen, for example, when
1653 // substituting the outer template arguments ends up causing two
1654 // class template partial specializations of a member class template
1655 // to have identical forms, e.g.,
1656 //
1657 // template<typename T, typename U>
1658 // struct Outer {
1659 // template<typename X, typename Y> struct Inner;
1660 // template<typename Y> struct Inner<T, Y>;
1661 // template<typename Y> struct Inner<U, Y>;
1662 // };
1663 //
1664 // Outer<int, int> outer; // error: the partial specializations of Inner
1665 // // have the same signature.
1666 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1667 << WrittenTy;
1668 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1669 << SemaRef.Context.getTypeDeclType(PrevDecl);
1670 return true;
1671 }
1672
1673
1674 // Create the class template partial specialization declaration.
1675 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1676 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1677 PartialSpec->getLocation(),
1678 InstParams,
1679 ClassTemplate,
1680 Converted,
John McCalld5532b62009-11-23 01:53:49 +00001681 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001682 CanonType,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001683 0);
John McCallb6217662010-03-15 10:12:16 +00001684 // Substitute the nested name specifier, if any.
1685 if (SubstQualifier(PartialSpec, InstPartialSpec))
1686 return 0;
1687
Douglas Gregored9c0f92009-10-29 00:04:11 +00001688 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1689 InstPartialSpec->setTypeAsWritten(WrittenTy);
1690
1691 // Add this partial specialization to the set of class template partial
1692 // specializations.
1693 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1694 InsertPos);
1695 return false;
1696}
1697
John McCall21ef0fa2010-03-11 09:03:00 +00001698bool
1699Sema::CheckInstantiatedParams(llvm::SmallVectorImpl<ParmVarDecl*> &Params) {
1700 bool Invalid = false;
1701 for (unsigned i = 0, i_end = Params.size(); i != i_end; ++i)
1702 if (ParmVarDecl *PInst = Params[i]) {
1703 if (PInst->isInvalidDecl())
1704 Invalid = true;
1705 else if (PInst->getType()->isVoidType()) {
1706 Diag(PInst->getLocation(), diag::err_param_with_void_type);
1707 PInst->setInvalidDecl();
1708 Invalid = true;
1709 }
1710 else if (RequireNonAbstractType(PInst->getLocation(),
1711 PInst->getType(),
1712 diag::err_abstract_type_in_decl,
1713 Sema::AbstractParamType)) {
1714 PInst->setInvalidDecl();
1715 Invalid = true;
1716 }
1717 }
1718 return Invalid;
1719}
Douglas Gregor5545e162009-03-24 00:38:23 +00001720
John McCall21ef0fa2010-03-11 09:03:00 +00001721TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001722TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001723 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001724 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1725 assert(OldTInfo && "substituting function without type source info");
1726 assert(Params.empty() && "parameter vector is non-empty at start");
1727 TypeSourceInfo *NewTInfo = SemaRef.SubstType(OldTInfo, TemplateArgs,
1728 D->getTypeSpecStartLoc(),
1729 D->getDeclName());
1730 if (!NewTInfo)
1731 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001732
John McCall21ef0fa2010-03-11 09:03:00 +00001733 // Get parameters from the new type info.
1734 TypeLoc NewTL = NewTInfo->getTypeLoc();
1735 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
1736 assert(NewProtoLoc && "Missing prototype?");
1737 for (unsigned i = 0, i_end = NewProtoLoc->getNumArgs(); i != i_end; ++i)
1738 Params.push_back(NewProtoLoc->getArg(i));
Douglas Gregor5545e162009-03-24 00:38:23 +00001739
John McCall21ef0fa2010-03-11 09:03:00 +00001740 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00001741}
1742
Mike Stump1eb44332009-09-09 15:08:12 +00001743/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001744/// declaration (New) from the corresponding fields of its template (Tmpl).
1745///
1746/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001747bool
1748TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001749 FunctionDecl *Tmpl) {
1750 if (Tmpl->isDeleted())
1751 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001752
Douglas Gregorcca9e962009-07-01 22:01:06 +00001753 // If we are performing substituting explicitly-specified template arguments
1754 // or deduced template arguments into a function template and we reach this
1755 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001756 // to keeping the new function template specialization. We therefore
1757 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001758 // into a template instantiation for this specific function template
1759 // specialization, which is not a SFINAE context, so that we diagnose any
1760 // further errors in the declaration itself.
1761 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1762 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1763 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1764 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001765 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001766 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001767 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001768 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001769 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001770 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1771 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001772 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001773 }
1774 }
Mike Stump1eb44332009-09-09 15:08:12 +00001775
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001776 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
1777 assert(Proto && "Function template without prototype?");
1778
1779 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
1780 Proto->getNoReturnAttr()) {
1781 // The function has an exception specification or a "noreturn"
1782 // attribute. Substitute into each of the exception types.
1783 llvm::SmallVector<QualType, 4> Exceptions;
1784 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
1785 // FIXME: Poor location information!
1786 QualType T
1787 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
1788 New->getLocation(), New->getDeclName());
1789 if (T.isNull() ||
1790 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
1791 continue;
1792
1793 Exceptions.push_back(T);
1794 }
1795
1796 // Rebuild the function type
1797
1798 const FunctionProtoType *NewProto
1799 = New->getType()->getAs<FunctionProtoType>();
1800 assert(NewProto && "Template instantiation without function prototype?");
1801 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
1802 NewProto->arg_type_begin(),
1803 NewProto->getNumArgs(),
1804 NewProto->isVariadic(),
1805 NewProto->getTypeQuals(),
1806 Proto->hasExceptionSpec(),
1807 Proto->hasAnyExceptionSpec(),
1808 Exceptions.size(),
1809 Exceptions.data(),
Douglas Gregorab8bbf42010-01-18 17:14:39 +00001810 Proto->getNoReturnAttr(),
1811 Proto->getCallConv()));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001812 }
1813
Douglas Gregore53060f2009-06-25 22:08:12 +00001814 return false;
1815}
1816
Douglas Gregor5545e162009-03-24 00:38:23 +00001817/// \brief Initializes common fields of an instantiated method
1818/// declaration (New) from the corresponding fields of its template
1819/// (Tmpl).
1820///
1821/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001822bool
1823TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001824 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001825 if (InitFunctionInstantiation(New, Tmpl))
1826 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001827
Douglas Gregor5545e162009-03-24 00:38:23 +00001828 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1829 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00001830 if (Tmpl->isVirtualAsWritten())
1831 Record->setMethodAsVirtual(New);
Douglas Gregor5545e162009-03-24 00:38:23 +00001832
1833 // FIXME: attributes
1834 // FIXME: New needs a pointer to Tmpl
1835 return false;
1836}
Douglas Gregora58861f2009-05-13 20:28:22 +00001837
1838/// \brief Instantiate the definition of the given function from its
1839/// template.
1840///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001841/// \param PointOfInstantiation the point at which the instantiation was
1842/// required. Note that this is not precisely a "point of instantiation"
1843/// for the function, but it's close.
1844///
Douglas Gregora58861f2009-05-13 20:28:22 +00001845/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001846/// function template specialization or member function of a class template
1847/// specialization.
1848///
1849/// \param Recursive if true, recursively instantiates any functions that
1850/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001851///
1852/// \param DefinitionRequired if true, then we are performing an explicit
1853/// instantiation where the body of the function is required. Complain if
1854/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001855void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001856 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001857 bool Recursive,
1858 bool DefinitionRequired) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001859 if (Function->isInvalidDecl())
1860 return;
1861
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001862 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +00001863
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001864 // Never instantiate an explicit specialization.
1865 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1866 return;
1867
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001868 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00001869 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001870 Stmt *Pattern = 0;
1871 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001872 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001873
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001874 if (!Pattern) {
1875 if (DefinitionRequired) {
1876 if (Function->getPrimaryTemplate())
1877 Diag(PointOfInstantiation,
1878 diag::err_explicit_instantiation_undefined_func_template)
1879 << Function->getPrimaryTemplate();
1880 else
1881 Diag(PointOfInstantiation,
1882 diag::err_explicit_instantiation_undefined_member)
1883 << 1 << Function->getDeclName() << Function->getDeclContext();
1884
1885 if (PatternDecl)
1886 Diag(PatternDecl->getLocation(),
1887 diag::note_explicit_instantiation_here);
1888 }
1889
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001890 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001891 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001892
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001893 // C++0x [temp.explicit]p9:
1894 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001895 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001896 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001897 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001898 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001899 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001900 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001901
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001902 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1903 if (Inst)
1904 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001905
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001906 // If we're performing recursive template instantiation, create our own
1907 // queue of pending implicit instantiations that we will instantiate later,
1908 // while we're still within our own instantiation context.
1909 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1910 if (Recursive)
1911 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001912
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001913 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1914
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001915 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00001916 // recorded, unless we're actually a member function within a local
1917 // class, in which case we need to merge our results with the parent
1918 // scope (of the enclosing function).
1919 bool MergeWithParentScope = false;
1920 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
1921 MergeWithParentScope = Rec->isLocalClass();
1922
1923 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001924
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001925 // Introduce the instantiated function parameters into the local
1926 // instantiation scope.
1927 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1928 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1929 Function->getParamDecl(I));
1930
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001931 // Enter the scope of this instantiation. We don't use
1932 // PushDeclContext because we don't have a scope.
1933 DeclContext *PreviousContext = CurContext;
1934 CurContext = Function;
1935
Mike Stump1eb44332009-09-09 15:08:12 +00001936 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001937 getTemplateInstantiationArgs(Function);
1938
1939 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001940 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001941 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1942 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1943 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001944 }
1945
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001946 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001947 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001948
Douglas Gregor52604ab2009-09-11 21:19:12 +00001949 if (Body.isInvalid())
1950 Function->setInvalidDecl();
1951
Mike Stump1eb44332009-09-09 15:08:12 +00001952 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001953 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001954
John McCall0c01d182010-03-24 05:22:00 +00001955 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
1956
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001957 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001958
1959 DeclGroupRef DG(Function);
1960 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Douglas Gregor60406be2010-01-16 22:29:39 +00001962 // This class may have local implicit instantiations that need to be
1963 // instantiation within this scope.
1964 PerformPendingImplicitInstantiations(/*LocalOnly=*/true);
1965 Scope.Exit();
1966
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001967 if (Recursive) {
1968 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001969 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001970 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001971
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001972 // Restore the set of pending implicit instantiations.
1973 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1974 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001975}
1976
1977/// \brief Instantiate the definition of the given variable from its
1978/// template.
1979///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001980/// \param PointOfInstantiation the point at which the instantiation was
1981/// required. Note that this is not precisely a "point of instantiation"
1982/// for the function, but it's close.
1983///
1984/// \param Var the already-instantiated declaration of a static member
1985/// variable of a class template specialization.
1986///
1987/// \param Recursive if true, recursively instantiates any functions that
1988/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001989///
1990/// \param DefinitionRequired if true, then we are performing an explicit
1991/// instantiation where an out-of-line definition of the member variable
1992/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001993void Sema::InstantiateStaticDataMemberDefinition(
1994 SourceLocation PointOfInstantiation,
1995 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001996 bool Recursive,
1997 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001998 if (Var->isInvalidDecl())
1999 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002000
Douglas Gregor7caa6822009-07-24 20:34:43 +00002001 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002002 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00002003 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00002004 assert(Def->isStaticDataMember() && "Not a static data member?");
2005 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00002006
Douglas Gregor0d035142009-10-27 18:42:08 +00002007 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00002008 // We did not find an out-of-line definition of this static data member,
2009 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00002010 // instantiate this definition (or provide a specialization for it) in
2011 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002012 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00002013 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00002014 Diag(PointOfInstantiation,
2015 diag::err_explicit_instantiation_undefined_member)
2016 << 2 << Var->getDeclName() << Var->getDeclContext();
2017 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
2018 }
2019
Douglas Gregor7caa6822009-07-24 20:34:43 +00002020 return;
2021 }
2022
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002023 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002024 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002025 return;
2026
2027 // C++0x [temp.explicit]p9:
2028 // Except for inline functions, other explicit instantiation declarations
2029 // have the effect of suppressing the implicit instantiation of the entity
2030 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002031 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00002032 == TSK_ExplicitInstantiationDeclaration)
2033 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002034
Douglas Gregor7caa6822009-07-24 20:34:43 +00002035 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
2036 if (Inst)
2037 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002038
Douglas Gregor7caa6822009-07-24 20:34:43 +00002039 // If we're performing recursive template instantiation, create our own
2040 // queue of pending implicit instantiations that we will instantiate later,
2041 // while we're still within our own instantiation context.
2042 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
2043 if (Recursive)
2044 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002045
Douglas Gregor7caa6822009-07-24 20:34:43 +00002046 // Enter the scope of this instantiation. We don't use
2047 // PushDeclContext because we don't have a scope.
2048 DeclContext *PreviousContext = CurContext;
2049 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002050
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002051 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002052 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00002053 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00002054 CurContext = PreviousContext;
2055
2056 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002057 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2058 assert(MSInfo && "Missing member specialization information?");
2059 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2060 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002061 DeclGroupRef DG(Var);
2062 Consumer.HandleTopLevelDecl(DG);
2063 }
Mike Stump1eb44332009-09-09 15:08:12 +00002064
Douglas Gregor7caa6822009-07-24 20:34:43 +00002065 if (Recursive) {
2066 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002067 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002068 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002069
Douglas Gregor7caa6822009-07-24 20:34:43 +00002070 // Restore the set of pending implicit instantiations.
2071 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002072 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002073}
Douglas Gregor815215d2009-05-27 05:35:12 +00002074
Anders Carlsson09025312009-08-29 05:16:22 +00002075void
2076Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2077 const CXXConstructorDecl *Tmpl,
2078 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002079
Anders Carlsson09025312009-08-29 05:16:22 +00002080 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002081 bool AnyErrors = false;
2082
Anders Carlsson09025312009-08-29 05:16:22 +00002083 // Instantiate all the initializers.
2084 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002085 InitsEnd = Tmpl->init_end();
2086 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00002087 CXXBaseOrMemberInitializer *Init = *Inits;
2088
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002089 SourceLocation LParenLoc, RParenLoc;
Anders Carlsson09025312009-08-29 05:16:22 +00002090 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002091 llvm::SmallVector<SourceLocation, 4> CommaLocs;
Mike Stump1eb44332009-09-09 15:08:12 +00002092
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002093 // Instantiate the initializer.
2094 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
2095 LParenLoc, CommaLocs, NewArgs, RParenLoc)) {
2096 AnyErrors = true;
2097 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002098 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002099
Anders Carlsson09025312009-08-29 05:16:22 +00002100 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002101 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002102 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002103 TemplateArgs,
2104 Init->getSourceLocation(),
2105 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002106 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002107 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002108 New->setInvalidDecl();
2109 continue;
2110 }
2111
John McCalla93c9342009-12-07 02:54:59 +00002112 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002113 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002114 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002115 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002116 Init->getRParenLoc(),
2117 New->getParent());
2118 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002119 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00002120
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002121 // Is this an anonymous union?
2122 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002123 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2124 UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002125 else
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002126 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2127 Init->getMember(),
Douglas Gregore95b4092009-09-16 18:34:49 +00002128 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00002129
2130 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002131 NewArgs.size(),
2132 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002133 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002134 Init->getRParenLoc());
2135 }
2136
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002137 if (NewInit.isInvalid()) {
2138 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002139 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002140 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002141 // FIXME: It would be nice if ASTOwningVector had a release function.
2142 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002143
Anders Carlsson09025312009-08-29 05:16:22 +00002144 NewInits.push_back((MemInitTy *)NewInit.get());
2145 }
2146 }
Mike Stump1eb44332009-09-09 15:08:12 +00002147
Anders Carlsson09025312009-08-29 05:16:22 +00002148 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00002149 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00002150 /*FIXME: ColonLoc */
2151 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002152 NewInits.data(), NewInits.size(),
2153 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002154}
2155
John McCall52a575a2009-08-29 08:11:13 +00002156// TODO: this could be templated if the various decl types used the
2157// same method name.
2158static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2159 ClassTemplateDecl *Instance) {
2160 Pattern = Pattern->getCanonicalDecl();
2161
2162 do {
2163 Instance = Instance->getCanonicalDecl();
2164 if (Pattern == Instance) return true;
2165 Instance = Instance->getInstantiatedFromMemberTemplate();
2166 } while (Instance);
2167
2168 return false;
2169}
2170
Douglas Gregor0d696532009-09-28 06:34:35 +00002171static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2172 FunctionTemplateDecl *Instance) {
2173 Pattern = Pattern->getCanonicalDecl();
2174
2175 do {
2176 Instance = Instance->getCanonicalDecl();
2177 if (Pattern == Instance) return true;
2178 Instance = Instance->getInstantiatedFromMemberTemplate();
2179 } while (Instance);
2180
2181 return false;
2182}
2183
Douglas Gregored9c0f92009-10-29 00:04:11 +00002184static bool
2185isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2186 ClassTemplatePartialSpecializationDecl *Instance) {
2187 Pattern
2188 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2189 do {
2190 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2191 Instance->getCanonicalDecl());
2192 if (Pattern == Instance)
2193 return true;
2194 Instance = Instance->getInstantiatedFromMember();
2195 } while (Instance);
2196
2197 return false;
2198}
2199
John McCall52a575a2009-08-29 08:11:13 +00002200static bool isInstantiationOf(CXXRecordDecl *Pattern,
2201 CXXRecordDecl *Instance) {
2202 Pattern = Pattern->getCanonicalDecl();
2203
2204 do {
2205 Instance = Instance->getCanonicalDecl();
2206 if (Pattern == Instance) return true;
2207 Instance = Instance->getInstantiatedFromMemberClass();
2208 } while (Instance);
2209
2210 return false;
2211}
2212
2213static bool isInstantiationOf(FunctionDecl *Pattern,
2214 FunctionDecl *Instance) {
2215 Pattern = Pattern->getCanonicalDecl();
2216
2217 do {
2218 Instance = Instance->getCanonicalDecl();
2219 if (Pattern == Instance) return true;
2220 Instance = Instance->getInstantiatedFromMemberFunction();
2221 } while (Instance);
2222
2223 return false;
2224}
2225
2226static bool isInstantiationOf(EnumDecl *Pattern,
2227 EnumDecl *Instance) {
2228 Pattern = Pattern->getCanonicalDecl();
2229
2230 do {
2231 Instance = Instance->getCanonicalDecl();
2232 if (Pattern == Instance) return true;
2233 Instance = Instance->getInstantiatedFromMemberEnum();
2234 } while (Instance);
2235
2236 return false;
2237}
2238
John McCalled976492009-12-04 22:46:56 +00002239static bool isInstantiationOf(UsingShadowDecl *Pattern,
2240 UsingShadowDecl *Instance,
2241 ASTContext &C) {
2242 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2243}
2244
2245static bool isInstantiationOf(UsingDecl *Pattern,
2246 UsingDecl *Instance,
2247 ASTContext &C) {
2248 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2249}
2250
John McCall7ba107a2009-11-18 02:36:19 +00002251static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2252 UsingDecl *Instance,
2253 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002254 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002255}
2256
2257static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002258 UsingDecl *Instance,
2259 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002260 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002261}
2262
John McCall52a575a2009-08-29 08:11:13 +00002263static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2264 VarDecl *Instance) {
2265 assert(Instance->isStaticDataMember());
2266
2267 Pattern = Pattern->getCanonicalDecl();
2268
2269 do {
2270 Instance = Instance->getCanonicalDecl();
2271 if (Pattern == Instance) return true;
2272 Instance = Instance->getInstantiatedFromStaticDataMember();
2273 } while (Instance);
2274
2275 return false;
2276}
2277
John McCalled976492009-12-04 22:46:56 +00002278// Other is the prospective instantiation
2279// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002280static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002281 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002282 if (UnresolvedUsingTypenameDecl *UUD
2283 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2284 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2285 return isInstantiationOf(UUD, UD, Ctx);
2286 }
2287 }
2288
2289 if (UnresolvedUsingValueDecl *UUD
2290 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002291 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2292 return isInstantiationOf(UUD, UD, Ctx);
2293 }
2294 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002295
Anders Carlsson0d8df782009-08-29 19:37:28 +00002296 return false;
2297 }
Mike Stump1eb44332009-09-09 15:08:12 +00002298
John McCall52a575a2009-08-29 08:11:13 +00002299 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2300 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002301
John McCall52a575a2009-08-29 08:11:13 +00002302 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2303 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002304
John McCall52a575a2009-08-29 08:11:13 +00002305 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2306 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002307
Douglas Gregor7caa6822009-07-24 20:34:43 +00002308 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002309 if (Var->isStaticDataMember())
2310 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2311
2312 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2313 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002314
Douglas Gregor0d696532009-09-28 06:34:35 +00002315 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2316 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2317
Douglas Gregored9c0f92009-10-29 00:04:11 +00002318 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2319 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2320 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2321 PartialSpec);
2322
Anders Carlssond8b285f2009-09-01 04:26:58 +00002323 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2324 if (!Field->getDeclName()) {
2325 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002326 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002327 cast<FieldDecl>(D);
2328 }
2329 }
Mike Stump1eb44332009-09-09 15:08:12 +00002330
John McCalled976492009-12-04 22:46:56 +00002331 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2332 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2333
2334 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2335 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2336
Douglas Gregor815215d2009-05-27 05:35:12 +00002337 return D->getDeclName() && isa<NamedDecl>(Other) &&
2338 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2339}
2340
2341template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002342static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002343 NamedDecl *D,
2344 ForwardIterator first,
2345 ForwardIterator last) {
2346 for (; first != last; ++first)
2347 if (isInstantiationOf(Ctx, D, *first))
2348 return cast<NamedDecl>(*first);
2349
2350 return 0;
2351}
2352
John McCall02cace72009-08-28 07:59:38 +00002353/// \brief Finds the instantiation of the given declaration context
2354/// within the current instantiation.
2355///
2356/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002357DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002358 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002359 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002360 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002361 return cast_or_null<DeclContext>(ID);
2362 } else return DC;
2363}
2364
Douglas Gregored961e72009-05-27 17:54:46 +00002365/// \brief Find the instantiation of the given declaration within the
2366/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002367///
2368/// This routine is intended to be used when \p D is a declaration
2369/// referenced from within a template, that needs to mapped into the
2370/// corresponding declaration within an instantiation. For example,
2371/// given:
2372///
2373/// \code
2374/// template<typename T>
2375/// struct X {
2376/// enum Kind {
2377/// KnownValue = sizeof(T)
2378/// };
2379///
2380/// bool getKind() const { return KnownValue; }
2381/// };
2382///
2383/// template struct X<int>;
2384/// \endcode
2385///
2386/// In the instantiation of X<int>::getKind(), we need to map the
2387/// EnumConstantDecl for KnownValue (which refers to
2388/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002389/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2390/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002391NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002392 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002393 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002394 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002395 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor550d9b22009-10-31 17:21:17 +00002396 ParentDC->isFunctionOrMethod()) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002397 // D is a local of some kind. Look into the map of local
2398 // declarations to their instantiations.
2399 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
2400 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002401
Douglas Gregore95b4092009-09-16 18:34:49 +00002402 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2403 if (!Record->isDependentContext())
2404 return D;
2405
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002406 // If the RecordDecl is actually the injected-class-name or a
2407 // "templated" declaration for a class template, class template
2408 // partial specialization, or a member class of a class template,
2409 // substitute into the injected-class-name of the class template
2410 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002411 QualType T;
2412 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2413
2414 if (ClassTemplate) {
John McCall3cb0ebd2010-03-10 03:28:59 +00002415 T = ClassTemplate->getInjectedClassNameSpecialization(Context);
Douglas Gregore95b4092009-09-16 18:34:49 +00002416 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2417 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002418 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002419
2420 // If we call SubstType with an InjectedClassNameType here we
2421 // can end up in an infinite loop.
2422 T = Context.getTypeDeclType(Record);
2423 assert(isa<InjectedClassNameType>(T) &&
2424 "type of partial specialization is not an InjectedClassNameType");
2425 T = cast<InjectedClassNameType>(T)->getUnderlyingType();
2426 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002427
2428 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002429 // Substitute into the injected-class-name to get the type
2430 // corresponding to the instantiation we want, which may also be
2431 // the current instantiation (if we're in a template
2432 // definition). This substitution should never fail, since we
2433 // know we can instantiate the injected-class-name or we
2434 // wouldn't have gotten to the injected-class-name!
2435
2436 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2437 // extra instantiation in the common case?
Douglas Gregore95b4092009-09-16 18:34:49 +00002438 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
2439 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2440
2441 if (!T->isDependentType()) {
2442 assert(T->isRecordType() && "Instantiation must produce a record type");
2443 return T->getAs<RecordType>()->getDecl();
2444 }
2445
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002446 // We are performing "partial" template instantiation to create
2447 // the member declarations for the members of a class template
2448 // specialization. Therefore, D is actually referring to something
2449 // in the current instantiation. Look through the current
2450 // context, which contains actual instantiations, to find the
2451 // instantiation of the "current instantiation" that D refers
2452 // to.
2453 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002454 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002455 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002456 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002457 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002458 if (isInstantiationOf(ClassTemplate,
2459 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002460 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002461
2462 if (!DC->isDependentContext())
2463 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002464 }
2465
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002466 // We're performing "instantiation" of a member of the current
2467 // instantiation while we are type-checking the
2468 // definition. Compute the declaration context and return that.
2469 assert(!SawNonDependentContext &&
2470 "No dependent context while instantiating record");
2471 DeclContext *DC = computeDeclContext(T);
2472 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002473 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002474 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002475 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002476
Douglas Gregore95b4092009-09-16 18:34:49 +00002477 // Fall through to deal with other dependent record types (e.g.,
2478 // anonymous unions in class templates).
2479 }
John McCall52a575a2009-08-29 08:11:13 +00002480
Douglas Gregore95b4092009-09-16 18:34:49 +00002481 if (!ParentDC->isDependentContext())
2482 return D;
2483
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002484 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002485 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00002486 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002487
Douglas Gregor815215d2009-05-27 05:35:12 +00002488 if (ParentDC != D->getDeclContext()) {
2489 // We performed some kind of instantiation in the parent context,
2490 // so now we need to look into the instantiated parent context to
2491 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002492
John McCall3cb0ebd2010-03-10 03:28:59 +00002493 // If our context used to be dependent, we may need to instantiate
2494 // it before performing lookup into that context.
2495 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002496 if (!Spec->isDependentContext()) {
2497 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00002498 const RecordType *Tag = T->getAs<RecordType>();
2499 assert(Tag && "type of non-dependent record is not a RecordType");
2500 if (!Tag->isBeingDefined() &&
2501 RequireCompleteType(Loc, T, diag::err_incomplete_type))
2502 return 0;
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002503 }
2504 }
2505
Douglas Gregor815215d2009-05-27 05:35:12 +00002506 NamedDecl *Result = 0;
2507 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002508 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00002509 Result = findInstantiationOf(Context, D, Found.first, Found.second);
2510 } else {
2511 // Since we don't have a name for the entity we're looking for,
2512 // our only option is to walk through all of the declarations to
2513 // find that name. This will occur in a few cases:
2514 //
2515 // - anonymous struct/union within a template
2516 // - unnamed class/struct/union/enum within a template
2517 //
2518 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00002519 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002520 ParentDC->decls_begin(),
2521 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00002522 }
Mike Stump1eb44332009-09-09 15:08:12 +00002523
John McCall9f54ad42009-12-10 09:41:52 +00002524 // UsingShadowDecls can instantiate to nothing because of using hiding.
Douglas Gregor00225542010-03-01 18:27:54 +00002525 assert((Result || isa<UsingShadowDecl>(D) || D->isInvalidDecl() ||
2526 cast<Decl>(ParentDC)->isInvalidDecl())
John McCall9f54ad42009-12-10 09:41:52 +00002527 && "Unable to find instantiation of declaration!");
2528
Douglas Gregor815215d2009-05-27 05:35:12 +00002529 D = Result;
2530 }
2531
Douglas Gregor815215d2009-05-27 05:35:12 +00002532 return D;
2533}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002534
Mike Stump1eb44332009-09-09 15:08:12 +00002535/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002536/// instantiations we have seen until this point.
Douglas Gregor60406be2010-01-16 22:29:39 +00002537void Sema::PerformPendingImplicitInstantiations(bool LocalOnly) {
2538 while (!PendingLocalImplicitInstantiations.empty() ||
2539 (!LocalOnly && !PendingImplicitInstantiations.empty())) {
2540 PendingImplicitInstantiation Inst;
2541
2542 if (PendingLocalImplicitInstantiations.empty()) {
2543 Inst = PendingImplicitInstantiations.front();
2544 PendingImplicitInstantiations.pop_front();
2545 } else {
2546 Inst = PendingLocalImplicitInstantiations.front();
2547 PendingLocalImplicitInstantiations.pop_front();
2548 }
Mike Stump1eb44332009-09-09 15:08:12 +00002549
Douglas Gregor7caa6822009-07-24 20:34:43 +00002550 // Instantiate function definitions
2551 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002552 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002553 Function->getLocation(), *this,
2554 Context.getSourceManager(),
2555 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002556
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002557 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002558 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002559 continue;
2560 }
Mike Stump1eb44332009-09-09 15:08:12 +00002561
Douglas Gregor7caa6822009-07-24 20:34:43 +00002562 // Instantiate static data member definitions.
2563 VarDecl *Var = cast<VarDecl>(Inst.first);
2564 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002565
Chandler Carruth291b4412010-02-13 10:17:50 +00002566 // Don't try to instantiate declarations if the most recent redeclaration
2567 // is invalid.
2568 if (Var->getMostRecentDeclaration()->isInvalidDecl())
2569 continue;
2570
2571 // Check if the most recent declaration has changed the specialization kind
2572 // and removed the need for implicit instantiation.
2573 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
2574 case TSK_Undeclared:
2575 assert(false && "Cannot instantitiate an undeclared specialization.");
2576 case TSK_ExplicitInstantiationDeclaration:
2577 case TSK_ExplicitInstantiationDefinition:
2578 case TSK_ExplicitSpecialization:
2579 continue; // No longer need implicit instantiation.
2580 case TSK_ImplicitInstantiation:
2581 break;
2582 }
2583
Mike Stump1eb44332009-09-09 15:08:12 +00002584 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002585 Var->getLocation(), *this,
2586 Context.getSourceManager(),
2587 "instantiating static data member "
2588 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002589
Douglas Gregor7caa6822009-07-24 20:34:43 +00002590 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002591 }
2592}
John McCall0c01d182010-03-24 05:22:00 +00002593
2594void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
2595 const MultiLevelTemplateArgumentList &TemplateArgs) {
2596 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
2597 E = Pattern->ddiag_end(); I != E; ++I) {
2598 DependentDiagnostic *DD = *I;
2599
2600 switch (DD->getKind()) {
2601 case DependentDiagnostic::Access:
2602 HandleDependentAccessCheck(*DD, TemplateArgs);
2603 break;
2604 }
2605 }
2606}