blob: de6fff7bb914362cb736e5dba6678721e52e0ddc [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.
483 if (Type *Ty = D->getFriendType()) {
484 QualType T = SemaRef.SubstType(QualType(Ty,0), TemplateArgs,
485 D->getLocation(), DeclarationName());
486 if (T.isNull()) return 0;
487
488 assert(getLangOptions().CPlusPlus0x || T->isRecordType());
489 FU = T.getTypePtr();
490
491 // Handle everything else by appropriate substitution.
492 } else {
493 NamedDecl *ND = D->getFriendDecl();
494 assert(ND && "friend decl must be a decl or a type!");
495
Douglas Gregora735b202009-10-13 14:39:41 +0000496 // FIXME: We have a problem here, because the nested call to Visit(ND)
497 // will inject the thing that the friend references into the current
498 // owner, which is wrong.
John McCalle129d442009-12-17 23:21:11 +0000499 Decl *NewND;
500
501 // Hack to make this work almost well pending a rewrite.
Douglas Gregor63644fa2010-02-07 10:31:35 +0000502 if (ND->getDeclContext()->isRecord()) {
John McCall93ba8572010-03-25 06:39:04 +0000503 // FIXME: Hack to avoid crashing when incorrectly trying to instantiate
504 // templated friend declarations. This doesn't produce a correct AST;
505 // however this is sufficient for some AST analysis. The real solution
506 // must be put in place during the pending rewrite. See PR5848.
507 return 0;
Douglas Gregor63644fa2010-02-07 10:31:35 +0000508 } else if (D->wasSpecialization()) {
Douglas Gregor7557a132009-12-24 20:56:24 +0000509 // Totally egregious hack to work around PR5866
510 return 0;
John McCall93ba8572010-03-25 06:39:04 +0000511 } else {
John McCalle129d442009-12-17 23:21:11 +0000512 NewND = Visit(ND);
John McCall93ba8572010-03-25 06:39:04 +0000513 }
John McCall02cace72009-08-28 07:59:38 +0000514 if (!NewND) return 0;
515
516 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000517 }
Mike Stump1eb44332009-09-09 15:08:12 +0000518
John McCall02cace72009-08-28 07:59:38 +0000519 FriendDecl *FD =
520 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
521 D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000522 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000523 Owner->addDecl(FD);
524 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000525}
526
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000527Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
528 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Douglas Gregorac7610d2009-06-22 20:57:11 +0000530 // The expression in a static assertion is not potentially evaluated.
531 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000532
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000533 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000534 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000535 if (InstantiatedAssertExpr.isInvalid())
536 return 0;
537
Douglas Gregor43d9d922009-08-08 01:41:12 +0000538 OwningExprResult Message(SemaRef, D->getMessage());
539 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000540 Decl *StaticAssert
541 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000542 move(InstantiatedAssertExpr),
543 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000544 return StaticAssert;
545}
546
547Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000548 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000549 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000550 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000551 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000552 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000553 Enum->setAccess(D->getAccess());
John McCallb6217662010-03-15 10:12:16 +0000554 if (SubstQualifier(D, Enum)) return 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000555 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000556 Enum->startDefinition();
557
Douglas Gregor96084f12010-03-01 19:00:07 +0000558 if (D->getDeclContext()->isFunctionOrMethod())
559 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
560
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000561 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000562
563 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000564 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
565 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000566 EC != ECEnd; ++EC) {
567 // The specified value for the enumerator.
568 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000569 if (Expr *UninstValue = EC->getInitExpr()) {
570 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000571 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000572 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000573
John McCallce3ff2b2009-08-25 22:02:44 +0000574 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000575 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000576
577 // Drop the initial value and continue.
578 bool isInvalid = false;
579 if (Value.isInvalid()) {
580 Value = SemaRef.Owned((Expr *)0);
581 isInvalid = true;
582 }
583
Mike Stump1eb44332009-09-09 15:08:12 +0000584 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000585 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
586 EC->getLocation(), EC->getIdentifier(),
587 move(Value));
588
589 if (isInvalid) {
590 if (EnumConst)
591 EnumConst->setInvalidDecl();
592 Enum->setInvalidDecl();
593 }
594
595 if (EnumConst) {
John McCall3b85ecf2010-01-23 22:37:59 +0000596 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000597 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000598 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000599 LastEnumConst = EnumConst;
Douglas Gregor96084f12010-03-01 19:00:07 +0000600
601 if (D->getDeclContext()->isFunctionOrMethod()) {
602 // If the enumeration is within a function or method, record the enum
603 // constant as a local.
604 SemaRef.CurrentInstantiationScope->InstantiatedLocal(*EC, EnumConst);
605 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000606 }
607 }
Mike Stump1eb44332009-09-09 15:08:12 +0000608
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000609 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000610 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000611 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
612 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000613 &Enumerators[0], Enumerators.size(),
614 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000615
616 return Enum;
617}
618
Douglas Gregor6477b692009-03-25 15:04:13 +0000619Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
620 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
621 return 0;
622}
623
Douglas Gregored9c0f92009-10-29 00:04:11 +0000624namespace {
625 class SortDeclByLocation {
626 SourceManager &SourceMgr;
627
628 public:
629 explicit SortDeclByLocation(SourceManager &SourceMgr)
630 : SourceMgr(SourceMgr) { }
631
632 bool operator()(const Decl *X, const Decl *Y) const {
633 return SourceMgr.isBeforeInTranslationUnit(X->getLocation(),
634 Y->getLocation());
635 }
636 };
637}
638
John McCalle29ba202009-08-20 01:44:21 +0000639Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall93ba8572010-03-25 06:39:04 +0000640 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
641
Douglas Gregor550d9b22009-10-31 17:21:17 +0000642 // Create a local instantiation scope for this class template, which
643 // will contain the instantiations of the template parameters.
644 Sema::LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000645 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000646 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000647 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000648 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000649
650 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall93ba8572010-03-25 06:39:04 +0000651
652 // Instantiate the qualifier. We have to do this first in case
653 // we're a friend declaration, because if we are then we need to put
654 // the new declaration in the appropriate context.
655 NestedNameSpecifier *Qualifier = Pattern->getQualifier();
656 if (Qualifier) {
657 Qualifier = SemaRef.SubstNestedNameSpecifier(Qualifier,
658 Pattern->getQualifierRange(),
659 TemplateArgs);
660 if (!Qualifier) return 0;
661 }
662
663 CXXRecordDecl *PrevDecl = 0;
664 ClassTemplateDecl *PrevClassTemplate = 0;
665
666 // If this isn't a friend, then it's a member template, in which
667 // case we just want to build the instantiation in the
668 // specialization. If it is a friend, we want to build it in
669 // the appropriate context.
670 DeclContext *DC = Owner;
671 if (isFriend) {
672 if (Qualifier) {
673 CXXScopeSpec SS;
674 SS.setScopeRep(Qualifier);
675 SS.setRange(Pattern->getQualifierRange());
676 DC = SemaRef.computeDeclContext(SS);
677 if (!DC) return 0;
678 } else {
679 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
680 Pattern->getDeclContext(),
681 TemplateArgs);
682 }
683
684 // Look for a previous declaration of the template in the owning
685 // context.
686 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
687 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
688 SemaRef.LookupQualifiedName(R, DC);
689
690 if (R.isSingleResult()) {
691 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
692 if (PrevClassTemplate)
693 PrevDecl = PrevClassTemplate->getTemplatedDecl();
694 }
695
696 if (!PrevClassTemplate && Qualifier) {
697 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
698 << Pattern->getDeclName() << Pattern->getQualifierRange();
699 return 0;
700 }
701
702 if (PrevClassTemplate) {
703 TemplateParameterList *PrevParams
704 = PrevClassTemplate->getTemplateParameters();
705
706 // Make sure the parameter lists match.
707 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
708 /*Complain=*/true,
709 Sema::TPL_TemplateMatch))
710 return 0;
711
712 // Do some additional validation, then merge default arguments
713 // from the existing declarations.
714 if (SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
715 Sema::TPC_ClassTemplate))
716 return 0;
717 }
718 }
719
John McCalle29ba202009-08-20 01:44:21 +0000720 CXXRecordDecl *RecordInst
John McCall93ba8572010-03-25 06:39:04 +0000721 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
John McCalle29ba202009-08-20 01:44:21 +0000722 Pattern->getLocation(), Pattern->getIdentifier(),
John McCall93ba8572010-03-25 06:39:04 +0000723 Pattern->getTagKeywordLoc(), PrevDecl,
Douglas Gregorf0510d42009-10-12 23:11:44 +0000724 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000725
John McCall93ba8572010-03-25 06:39:04 +0000726 if (Qualifier)
727 RecordInst->setQualifierInfo(Qualifier, Pattern->getQualifierRange());
John McCallb6217662010-03-15 10:12:16 +0000728
John McCalle29ba202009-08-20 01:44:21 +0000729 ClassTemplateDecl *Inst
John McCall93ba8572010-03-25 06:39:04 +0000730 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
731 D->getIdentifier(), InstParams, RecordInst,
732 PrevClassTemplate);
John McCalle29ba202009-08-20 01:44:21 +0000733 RecordInst->setDescribedClassTemplate(Inst);
John McCall93ba8572010-03-25 06:39:04 +0000734 if (isFriend) {
735 Inst->setObjectOfFriendDecl(PrevClassTemplate != 0);
736 // TODO: do we want to track the instantiation progeny of this
737 // friend target decl?
738 } else {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000739 Inst->setAccess(D->getAccess());
John McCall93ba8572010-03-25 06:39:04 +0000740 Inst->setInstantiatedFromMemberTemplate(D);
741 }
Douglas Gregorf0510d42009-10-12 23:11:44 +0000742
743 // Trigger creation of the type for the instantiation.
John McCall3cb0ebd2010-03-10 03:28:59 +0000744 SemaRef.Context.getInjectedClassNameType(RecordInst,
745 Inst->getInjectedClassNameSpecialization(SemaRef.Context));
Douglas Gregorf0510d42009-10-12 23:11:44 +0000746
Douglas Gregor259571e2009-10-30 22:42:42 +0000747 // Finish handling of friends.
John McCall93ba8572010-03-25 06:39:04 +0000748 if (isFriend) {
749 DC->makeDeclVisibleInContext(Inst, /*Recoverable*/ false);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000750 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000751 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000752
John McCall46460a62010-01-20 21:53:11 +0000753 Inst->setAccess(D->getAccess());
John McCalle29ba202009-08-20 01:44:21 +0000754 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000755
756 // First, we sort the partial specializations by location, so
757 // that we instantiate them in the order they were declared.
758 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
759 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
760 P = D->getPartialSpecializations().begin(),
761 PEnd = D->getPartialSpecializations().end();
762 P != PEnd; ++P)
763 PartialSpecs.push_back(&*P);
764 std::sort(PartialSpecs.begin(), PartialSpecs.end(),
765 SortDeclByLocation(SemaRef.SourceMgr));
766
767 // Instantiate all of the partial specializations of this member class
768 // template.
769 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
770 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
771
John McCalle29ba202009-08-20 01:44:21 +0000772 return Inst;
773}
774
Douglas Gregord60e1052009-08-27 16:57:43 +0000775Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000776TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
777 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000778 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
779
780 // Lookup the already-instantiated declaration in the instantiation
781 // of the class template and return that.
782 DeclContext::lookup_result Found
783 = Owner->lookup(ClassTemplate->getDeclName());
784 if (Found.first == Found.second)
785 return 0;
786
787 ClassTemplateDecl *InstClassTemplate
788 = dyn_cast<ClassTemplateDecl>(*Found.first);
789 if (!InstClassTemplate)
790 return 0;
791
792 Decl *DCanon = D->getCanonicalDecl();
793 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
794 P = InstClassTemplate->getPartialSpecializations().begin(),
795 PEnd = InstClassTemplate->getPartialSpecializations().end();
796 P != PEnd; ++P) {
797 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
798 return &*P;
799 }
800
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000801 return 0;
802}
803
804Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000805TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000806 // Create a local instantiation scope for this function template, which
807 // will contain the instantiations of the template parameters and then get
808 // merged with the local instantiation scope for the function template
809 // itself.
810 Sema::LocalInstantiationScope Scope(SemaRef);
811
Douglas Gregord60e1052009-08-27 16:57:43 +0000812 TemplateParameterList *TempParams = D->getTemplateParameters();
813 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000814 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000815 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000816
Douglas Gregora735b202009-10-13 14:39:41 +0000817 FunctionDecl *Instantiated = 0;
818 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
819 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
820 InstParams));
821 else
822 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
823 D->getTemplatedDecl(),
824 InstParams));
825
826 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000827 return 0;
828
John McCall46460a62010-01-20 21:53:11 +0000829 Instantiated->setAccess(D->getAccess());
830
Mike Stump1eb44332009-09-09 15:08:12 +0000831 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000832 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000833 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000834 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000835 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000836 assert(InstTemplate &&
837 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000838
839 // Link the instantiation back to the pattern *unless* this is a
840 // non-definition friend declaration.
841 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
842 !(InstTemplate->getFriendObjectKind() &&
843 !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000844 InstTemplate->setInstantiatedFromMemberTemplate(D);
845
846 // Add non-friends into the owner.
847 if (!InstTemplate->getFriendObjectKind())
848 Owner->addDecl(InstTemplate);
Douglas Gregord60e1052009-08-27 16:57:43 +0000849 return InstTemplate;
850}
851
Douglas Gregord475b8d2009-03-25 21:17:03 +0000852Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
853 CXXRecordDecl *PrevDecl = 0;
854 if (D->isInjectedClassName())
855 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000856 else if (D->getPreviousDeclaration()) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000857 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
858 D->getPreviousDeclaration(),
John McCall6c1c1b82009-12-15 22:29:06 +0000859 TemplateArgs);
860 if (!Prev) return 0;
861 PrevDecl = cast<CXXRecordDecl>(Prev);
862 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000863
864 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000865 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000866 D->getLocation(), D->getIdentifier(),
867 D->getTagKeywordLoc(), PrevDecl);
John McCallb6217662010-03-15 10:12:16 +0000868
869 // Substitute the nested name specifier, if any.
870 if (SubstQualifier(D, Record))
871 return 0;
872
Douglas Gregord475b8d2009-03-25 21:17:03 +0000873 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000874 // FIXME: Check against AS_none is an ugly hack to work around the issue that
875 // the tag decls introduced by friend class declarations don't have an access
876 // specifier. Remove once this area of the code gets sorted out.
877 if (D->getAccess() != AS_none)
878 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000879 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000880 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000881
John McCall02cace72009-08-28 07:59:38 +0000882 // If the original function was part of a friend declaration,
883 // inherit its namespace state.
884 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
885 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
886
Anders Carlssond8b285f2009-09-01 04:26:58 +0000887 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
888
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000889 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000890 return Record;
891}
892
John McCall02cace72009-08-28 07:59:38 +0000893/// Normal class members are of more specific types and therefore
894/// don't make it here. This function serves two purposes:
895/// 1) instantiating function templates
896/// 2) substituting friend declarations
897/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000898Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000899 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000900 // Check whether there is already a function template specialization for
901 // this declaration.
902 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
903 void *InsertPos = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000904 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000905 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000906 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000907 TemplateArgs.getInnermost().getFlatArgumentList(),
908 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000909 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000910
911 FunctionTemplateSpecializationInfo *Info
912 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000913 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000914
Douglas Gregor127102b2009-06-29 20:59:39 +0000915 // If we already have a function template specialization, return it.
916 if (Info)
917 return Info->Function;
918 }
Mike Stump1eb44332009-09-09 15:08:12 +0000919
Douglas Gregor79c22782010-01-16 20:21:20 +0000920 bool MergeWithParentScope = (TemplateParams != 0) ||
921 !(isa<Decl>(Owner) &&
922 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
923 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000924
Douglas Gregore53060f2009-06-25 22:08:12 +0000925 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +0000926 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
927 TInfo = SubstFunctionType(D, Params);
928 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000929 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +0000930 QualType T = TInfo->getType();
John McCallfd810b12009-08-14 02:03:10 +0000931
John McCall68b6b872010-02-06 01:50:47 +0000932 // If we're instantiating a local function declaration, put the result
933 // in the owner; otherwise we need to find the instantiated context.
934 DeclContext *DC;
935 if (D->getDeclContext()->isFunctionOrMethod())
936 DC = Owner;
937 else
Douglas Gregor7c1e98f2010-03-01 15:56:25 +0000938 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
939 TemplateArgs);
John McCall68b6b872010-02-06 01:50:47 +0000940
John McCall02cace72009-08-28 07:59:38 +0000941 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000942 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +0000943 D->getDeclName(), T, TInfo,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000944 D->getStorageClass(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000945 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCallb6217662010-03-15 10:12:16 +0000946
947 // Substitute the nested name specifier, if any.
948 if (SubstQualifier(D, Function))
949 return 0;
950
John McCall02cace72009-08-28 07:59:38 +0000951 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000952
Douglas Gregore53060f2009-06-25 22:08:12 +0000953 // Attach the parameters
954 for (unsigned P = 0; P < Params.size(); ++P)
955 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +0000956 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000957
Douglas Gregora735b202009-10-13 14:39:41 +0000958 if (TemplateParams) {
959 // Our resulting instantiation is actually a function template, since we
960 // are substituting only the outer template parameters. For example, given
961 //
962 // template<typename T>
963 // struct X {
964 // template<typename U> friend void f(T, U);
965 // };
966 //
967 // X<int> x;
968 //
969 // We are instantiating the friend function template "f" within X<int>,
970 // which means substituting int for T, but leaving "f" as a friend function
971 // template.
972 // Build the function template itself.
973 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Owner,
974 Function->getLocation(),
975 Function->getDeclName(),
976 TemplateParams, Function);
977 Function->setDescribedFunctionTemplate(FunctionTemplate);
978 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregor66724ea2009-11-14 01:20:54 +0000979 } else if (FunctionTemplate) {
980 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +0000981 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +0000982 &TemplateArgs.getInnermost(),
983 InsertPos);
John McCall02cace72009-08-28 07:59:38 +0000984 }
Douglas Gregora735b202009-10-13 14:39:41 +0000985
Douglas Gregore53060f2009-06-25 22:08:12 +0000986 if (InitFunctionInstantiation(Function, D))
987 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Douglas Gregore53060f2009-06-25 22:08:12 +0000989 bool Redeclaration = false;
990 bool OverloadableAttrRequired = false;
Douglas Gregora735b202009-10-13 14:39:41 +0000991
John McCall68263142009-11-18 22:49:29 +0000992 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
993 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
994
Douglas Gregora735b202009-10-13 14:39:41 +0000995 if (TemplateParams || !FunctionTemplate) {
996 // Look only into the namespace where the friend would be declared to
997 // find a previous declaration. This is the innermost enclosing namespace,
998 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +0000999 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +00001000
Douglas Gregora735b202009-10-13 14:39:41 +00001001 // In C++, the previous declaration we find might be a tag type
1002 // (class or enum). In this case, the new declaration will hide the
1003 // tag type. Note that this does does not apply if we're declaring a
1004 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001005 if (Previous.isSingleTagDecl())
1006 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +00001007 }
1008
John McCall9f54ad42009-12-10 09:41:52 +00001009 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
1010 false, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +00001011 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001012
Douglas Gregora735b202009-10-13 14:39:41 +00001013 // If the original function was part of a friend declaration,
1014 // inherit its namespace state and add it to the owner.
1015 NamedDecl *FromFriendD
1016 = TemplateParams? cast<NamedDecl>(D->getDescribedFunctionTemplate()) : D;
1017 if (FromFriendD->getFriendObjectKind()) {
1018 NamedDecl *ToFriendD = 0;
John McCall68263142009-11-18 22:49:29 +00001019 NamedDecl *PrevDecl;
Douglas Gregora735b202009-10-13 14:39:41 +00001020 if (TemplateParams) {
1021 ToFriendD = cast<NamedDecl>(FunctionTemplate);
1022 PrevDecl = FunctionTemplate->getPreviousDeclaration();
1023 } else {
1024 ToFriendD = Function;
1025 PrevDecl = Function->getPreviousDeclaration();
1026 }
1027 ToFriendD->setObjectOfFriendDecl(PrevDecl != NULL);
1028 if (!Owner->isDependentContext() && !PrevDecl)
1029 DC->makeDeclVisibleInContext(ToFriendD, /* Recoverable = */ false);
1030
1031 if (!TemplateParams)
1032 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
1033 }
1034
Douglas Gregore53060f2009-06-25 22:08:12 +00001035 return Function;
1036}
1037
Douglas Gregord60e1052009-08-27 16:57:43 +00001038Decl *
1039TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
1040 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +00001041 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
1042 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +00001043 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +00001044 // We are creating a function template specialization from a function
1045 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +00001046 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +00001047 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +00001048 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001049 TemplateArgs.getInnermost().getFlatArgumentList(),
1050 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +00001051 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +00001052
1053 FunctionTemplateSpecializationInfo *Info
1054 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +00001055 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001056
Douglas Gregor6b906862009-08-21 00:16:32 +00001057 // If we already have a function template specialization, return it.
1058 if (Info)
1059 return Info->Function;
1060 }
1061
Douglas Gregor79c22782010-01-16 20:21:20 +00001062 bool MergeWithParentScope = (TemplateParams != 0) ||
1063 !(isa<Decl>(Owner) &&
1064 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
1065 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001066
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001067 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCall21ef0fa2010-03-11 09:03:00 +00001068 TypeSourceInfo *TInfo = D->getTypeSourceInfo();
1069 TInfo = SubstFunctionType(D, Params);
1070 if (!TInfo)
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001071 return 0;
John McCall21ef0fa2010-03-11 09:03:00 +00001072 QualType T = TInfo->getType();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001073
1074 // Build the instantiated method declaration.
1075 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +00001076 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Douglas Gregordec06662009-08-21 18:42:58 +00001078 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +00001079 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +00001080 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
1081 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
1082 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +00001083 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
1084 Constructor->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001085 Name, T, TInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001086 Constructor->isExplicit(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001087 Constructor->isInlineSpecified(), false);
Douglas Gregor17e32f32009-08-21 22:43:28 +00001088 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
1089 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
1090 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
1091 SemaRef.Context.getCanonicalType(ClassTy));
1092 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
1093 Destructor->getLocation(), Name,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001094 T, Destructor->isInlineSpecified(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001095 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001096 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001097 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +00001098 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001099 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
1100 ConvTy);
1101 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
1102 Conversion->getLocation(), Name,
John McCall21ef0fa2010-03-11 09:03:00 +00001103 T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001104 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001105 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +00001106 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00001107 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
John McCall21ef0fa2010-03-11 09:03:00 +00001108 D->getDeclName(), T, TInfo,
Douglas Gregor0130f3c2009-10-27 21:01:01 +00001109 D->isStatic(), D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +00001110 }
Douglas Gregor6b906862009-08-21 00:16:32 +00001111
John McCallb6217662010-03-15 10:12:16 +00001112 // Substitute the nested name specifier, if any.
1113 if (SubstQualifier(D, Method))
1114 return 0;
1115
Douglas Gregord60e1052009-08-27 16:57:43 +00001116 if (TemplateParams) {
1117 // Our resulting instantiation is actually a function template, since we
1118 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +00001119 //
Douglas Gregord60e1052009-08-27 16:57:43 +00001120 // template<typename T>
1121 // struct X {
1122 // template<typename U> void f(T, U);
1123 // };
1124 //
1125 // X<int> x;
1126 //
1127 // We are instantiating the member template "f" within X<int>, which means
1128 // substituting int for T, but leaving "f" as a member function template.
1129 // Build the function template itself.
1130 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1131 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001132 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +00001133 TemplateParams, Method);
1134 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +00001135 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +00001136 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001137 } else if (FunctionTemplate) {
1138 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +00001139 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +00001140 &TemplateArgs.getInnermost(),
1141 InsertPos);
1142 } else {
1143 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +00001144 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +00001145 }
1146
Mike Stump1eb44332009-09-09 15:08:12 +00001147 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +00001148 // out-of-line, the instantiation will have the same lexical
1149 // context (which will be a namespace scope) as the template.
1150 if (D->isOutOfLine())
1151 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001152
Douglas Gregor5545e162009-03-24 00:38:23 +00001153 // Attach the parameters
1154 for (unsigned P = 0; P < Params.size(); ++P)
1155 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +00001156 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +00001157
1158 if (InitMethodInstantiation(Method, D))
1159 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001160
John McCall68263142009-11-18 22:49:29 +00001161 LookupResult Previous(SemaRef, Name, SourceLocation(),
1162 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +00001163
Douglas Gregord60e1052009-08-27 16:57:43 +00001164 if (!FunctionTemplate || TemplateParams) {
John McCall68263142009-11-18 22:49:29 +00001165 SemaRef.LookupQualifiedName(Previous, Owner);
Mike Stump1eb44332009-09-09 15:08:12 +00001166
Douglas Gregordec06662009-08-21 18:42:58 +00001167 // In C++, the previous declaration we find might be a tag type
1168 // (class or enum). In this case, the new declaration will hide the
1169 // tag type. Note that this does does not apply if we're declaring a
1170 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +00001171 if (Previous.isSingleTagDecl())
1172 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +00001173 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001174
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001175 bool Redeclaration = false;
1176 bool OverloadableAttrRequired = false;
John McCall9f54ad42009-12-10 09:41:52 +00001177 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001178 /*FIXME:*/OverloadableAttrRequired);
1179
Douglas Gregor4ba31362009-12-01 17:24:26 +00001180 if (D->isPure())
1181 SemaRef.CheckPureMethod(Method, SourceRange());
1182
John McCall46460a62010-01-20 21:53:11 +00001183 Method->setAccess(D->getAccess());
1184
John McCall68263142009-11-18 22:49:29 +00001185 if (!FunctionTemplate && (!Method->isInvalidDecl() || Previous.empty()) &&
Douglas Gregora735b202009-10-13 14:39:41 +00001186 !Method->getFriendObjectKind())
Douglas Gregordec06662009-08-21 18:42:58 +00001187 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +00001188
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001189 return Method;
1190}
1191
Douglas Gregor615c5d42009-03-24 16:43:20 +00001192Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001193 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001194}
1195
Douglas Gregor03b2b072009-03-24 00:15:49 +00001196Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001197 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001198}
1199
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001200Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001201 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001202}
1203
Douglas Gregor6477b692009-03-25 15:04:13 +00001204ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCall58e46772009-10-23 21:48:59 +00001205 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001206 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCall58e46772009-10-23 21:48:59 +00001207 if (DI) {
1208 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1209 D->getDeclName());
1210 if (DI) T = DI->getType();
1211 } else {
1212 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1213 D->getDeclName());
1214 DI = 0;
1215 }
1216
1217 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001218 return 0;
1219
John McCall58e46772009-10-23 21:48:59 +00001220 T = SemaRef.adjustParameterType(T);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001221
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001222 // Allocate the parameter
John McCall58e46772009-10-23 21:48:59 +00001223 ParmVarDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +00001224 = ParmVarDecl::Create(SemaRef.Context,
1225 SemaRef.Context.getTranslationUnitDecl(),
1226 D->getLocation(),
John McCall58e46772009-10-23 21:48:59 +00001227 D->getIdentifier(), T, DI, D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001228
Anders Carlsson9351c172009-08-25 03:18:48 +00001229 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +00001230 if (D->hasUninstantiatedDefaultArg())
1231 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +00001232 else if (Expr *Arg = D->getDefaultArg())
1233 Param->setUninstantiatedDefaultArg(Arg);
1234
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001235 // Note: we don't try to instantiate function parameters until after
1236 // we've instantiated the function's type. Therefore, we don't have
1237 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001238 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001239 return Param;
1240}
1241
John McCalle29ba202009-08-20 01:44:21 +00001242Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1243 TemplateTypeParmDecl *D) {
1244 // TODO: don't always clone when decls are refcounted.
1245 const Type* T = D->getTypeForDecl();
1246 assert(T->isTemplateTypeParmType());
1247 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001248
John McCalle29ba202009-08-20 01:44:21 +00001249 TemplateTypeParmDecl *Inst =
1250 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor550d9b22009-10-31 17:21:17 +00001251 TTPT->getDepth() - 1, TTPT->getIndex(),
John McCalle29ba202009-08-20 01:44:21 +00001252 TTPT->getName(),
1253 D->wasDeclaredWithTypename(),
1254 D->isParameterPack());
1255
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001256 if (D->hasDefaultArgument())
1257 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001258
Douglas Gregor550d9b22009-10-31 17:21:17 +00001259 // Introduce this template parameter's instantiation into the instantiation
1260 // scope.
1261 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1262
John McCalle29ba202009-08-20 01:44:21 +00001263 return Inst;
1264}
1265
Douglas Gregor33642df2009-10-23 23:25:44 +00001266Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1267 NonTypeTemplateParmDecl *D) {
1268 // Substitute into the type of the non-type template parameter.
1269 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001270 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor33642df2009-10-23 23:25:44 +00001271 if (DI) {
1272 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1273 D->getDeclName());
1274 if (DI) T = DI->getType();
1275 } else {
1276 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1277 D->getDeclName());
1278 DI = 0;
1279 }
1280 if (T.isNull())
1281 return 0;
1282
1283 // Check that this type is acceptable for a non-type template parameter.
1284 bool Invalid = false;
1285 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
1286 if (T.isNull()) {
1287 T = SemaRef.Context.IntTy;
1288 Invalid = true;
1289 }
1290
1291 NonTypeTemplateParmDecl *Param
1292 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1293 D->getDepth() - 1, D->getPosition(),
1294 D->getIdentifier(), T, DI);
1295 if (Invalid)
1296 Param->setInvalidDecl();
1297
1298 Param->setDefaultArgument(D->getDefaultArgument());
Douglas Gregor550d9b22009-10-31 17:21:17 +00001299
1300 // Introduce this template parameter's instantiation into the instantiation
1301 // scope.
1302 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001303 return Param;
1304}
1305
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001306Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001307TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1308 TemplateTemplateParmDecl *D) {
1309 // Instantiate the template parameter list of the template template parameter.
1310 TemplateParameterList *TempParams = D->getTemplateParameters();
1311 TemplateParameterList *InstParams;
1312 {
1313 // Perform the actual substitution of template parameters within a new,
1314 // local instantiation scope.
1315 Sema::LocalInstantiationScope Scope(SemaRef);
1316 InstParams = SubstTemplateParams(TempParams);
1317 if (!InstParams)
1318 return NULL;
1319 }
1320
1321 // Build the template template parameter.
1322 TemplateTemplateParmDecl *Param
1323 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1324 D->getDepth() - 1, D->getPosition(),
1325 D->getIdentifier(), InstParams);
1326 Param->setDefaultArgument(D->getDefaultArgument());
1327
1328 // Introduce this template parameter's instantiation into the instantiation
1329 // scope.
1330 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1331
1332 return Param;
1333}
1334
Douglas Gregor48c32a72009-11-17 06:07:40 +00001335Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1336 // Using directives are never dependent, so they require no explicit
1337
1338 UsingDirectiveDecl *Inst
1339 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1340 D->getNamespaceKeyLocation(),
1341 D->getQualifierRange(), D->getQualifier(),
1342 D->getIdentLocation(),
1343 D->getNominatedNamespace(),
1344 D->getCommonAncestor());
1345 Owner->addDecl(Inst);
1346 return Inst;
1347}
1348
John McCalled976492009-12-04 22:46:56 +00001349Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
1350 // The nested name specifier is non-dependent, so no transformation
1351 // is required.
1352
John McCall9f54ad42009-12-10 09:41:52 +00001353 // We only need to do redeclaration lookups if we're in a class
1354 // scope (in fact, it's not really even possible in non-class
1355 // scopes).
1356 bool CheckRedeclaration = Owner->isRecord();
1357
1358 LookupResult Prev(SemaRef, D->getDeclName(), D->getLocation(),
1359 Sema::LookupUsingDeclName, Sema::ForRedeclaration);
1360
John McCalled976492009-12-04 22:46:56 +00001361 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
1362 D->getLocation(),
1363 D->getNestedNameRange(),
1364 D->getUsingLocation(),
1365 D->getTargetNestedNameDecl(),
1366 D->getDeclName(),
1367 D->isTypeName());
1368
1369 CXXScopeSpec SS;
1370 SS.setScopeRep(D->getTargetNestedNameDecl());
1371 SS.setRange(D->getNestedNameRange());
John McCall9f54ad42009-12-10 09:41:52 +00001372
1373 if (CheckRedeclaration) {
1374 Prev.setHideTags(false);
1375 SemaRef.LookupQualifiedName(Prev, Owner);
1376
1377 // Check for invalid redeclarations.
1378 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1379 D->isTypeName(), SS,
1380 D->getLocation(), Prev))
1381 NewUD->setInvalidDecl();
1382
1383 }
1384
1385 if (!NewUD->isInvalidDecl() &&
1386 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001387 D->getLocation()))
1388 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001389
John McCalled976492009-12-04 22:46:56 +00001390 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1391 NewUD->setAccess(D->getAccess());
1392 Owner->addDecl(NewUD);
1393
John McCall9f54ad42009-12-10 09:41:52 +00001394 // Don't process the shadow decls for an invalid decl.
1395 if (NewUD->isInvalidDecl())
1396 return NewUD;
1397
John McCall323c3102009-12-22 22:26:37 +00001398 bool isFunctionScope = Owner->isFunctionOrMethod();
1399
John McCall9f54ad42009-12-10 09:41:52 +00001400 // Process the shadow decls.
1401 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1402 I != E; ++I) {
1403 UsingShadowDecl *Shadow = *I;
1404 NamedDecl *InstTarget =
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00001405 cast<NamedDecl>(SemaRef.FindInstantiatedDecl(Shadow->getLocation(),
1406 Shadow->getTargetDecl(),
John McCall9f54ad42009-12-10 09:41:52 +00001407 TemplateArgs));
1408
1409 if (CheckRedeclaration &&
1410 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1411 continue;
1412
1413 UsingShadowDecl *InstShadow
1414 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1415 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001416
1417 if (isFunctionScope)
1418 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001419 }
John McCalled976492009-12-04 22:46:56 +00001420
1421 return NewUD;
1422}
1423
1424Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001425 // Ignore these; we handle them in bulk when processing the UsingDecl.
1426 return 0;
John McCalled976492009-12-04 22:46:56 +00001427}
1428
John McCall7ba107a2009-11-18 02:36:19 +00001429Decl * TemplateDeclInstantiator
1430 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001431 NestedNameSpecifier *NNS =
1432 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1433 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001434 TemplateArgs);
1435 if (!NNS)
1436 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001437
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001438 CXXScopeSpec SS;
1439 SS.setRange(D->getTargetNestedNameRange());
1440 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001441
1442 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001443 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
John McCall7ba107a2009-11-18 02:36:19 +00001444 D->getUsingLoc(), SS, D->getLocation(),
1445 D->getDeclName(), 0,
1446 /*instantiation*/ true,
1447 /*typename*/ true, D->getTypenameLoc());
1448 if (UD)
John McCalled976492009-12-04 22:46:56 +00001449 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1450
John McCall7ba107a2009-11-18 02:36:19 +00001451 return UD;
1452}
1453
1454Decl * TemplateDeclInstantiator
1455 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1456 NestedNameSpecifier *NNS =
1457 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1458 D->getTargetNestedNameRange(),
1459 TemplateArgs);
1460 if (!NNS)
1461 return 0;
1462
1463 CXXScopeSpec SS;
1464 SS.setRange(D->getTargetNestedNameRange());
1465 SS.setScopeRep(NNS);
1466
1467 NamedDecl *UD =
1468 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
1469 D->getUsingLoc(), SS, D->getLocation(),
1470 D->getDeclName(), 0,
1471 /*instantiation*/ true,
1472 /*typename*/ false, SourceLocation());
Anders Carlsson0d8df782009-08-29 19:37:28 +00001473 if (UD)
John McCalled976492009-12-04 22:46:56 +00001474 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1475
Anders Carlsson0d8df782009-08-29 19:37:28 +00001476 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001477}
1478
John McCallce3ff2b2009-08-25 22:02:44 +00001479Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001480 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001481 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor2fa98002010-02-16 19:28:15 +00001482 if (D->isInvalidDecl())
1483 return 0;
1484
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001485 return Instantiator.Visit(D);
1486}
1487
John McCalle29ba202009-08-20 01:44:21 +00001488/// \brief Instantiates a nested template parameter list in the current
1489/// instantiation context.
1490///
1491/// \param L The parameter list to instantiate
1492///
1493/// \returns NULL if there was an error
1494TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001495TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001496 // Get errors for all the parameters before bailing out.
1497 bool Invalid = false;
1498
1499 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001500 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001501 ParamVector Params;
1502 Params.reserve(N);
1503 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1504 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001505 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001506 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001507 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001508 }
1509
1510 // Clean up if we had an error.
1511 if (Invalid) {
1512 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
1513 PI != PE; ++PI)
1514 if (*PI)
1515 (*PI)->Destroy(SemaRef.Context);
1516 return NULL;
1517 }
1518
1519 TemplateParameterList *InstL
1520 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1521 L->getLAngleLoc(), &Params.front(), N,
1522 L->getRAngleLoc());
1523 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001524}
John McCalle29ba202009-08-20 01:44:21 +00001525
Douglas Gregored9c0f92009-10-29 00:04:11 +00001526/// \brief Instantiate the declaration of a class template partial
1527/// specialization.
1528///
1529/// \param ClassTemplate the (instantiated) class template that is partially
1530// specialized by the instantiation of \p PartialSpec.
1531///
1532/// \param PartialSpec the (uninstantiated) class template partial
1533/// specialization that we are instantiating.
1534///
1535/// \returns true if there was an error, false otherwise.
1536bool
1537TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1538 ClassTemplateDecl *ClassTemplate,
1539 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001540 // Create a local instantiation scope for this class template partial
1541 // specialization, which will contain the instantiations of the template
1542 // parameters.
1543 Sema::LocalInstantiationScope Scope(SemaRef);
1544
Douglas Gregored9c0f92009-10-29 00:04:11 +00001545 // Substitute into the template parameters of the class template partial
1546 // specialization.
1547 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1548 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1549 if (!InstParams)
1550 return true;
1551
1552 // Substitute into the template arguments of the class template partial
1553 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001554 const TemplateArgumentLoc *PartialSpecTemplateArgs
1555 = PartialSpec->getTemplateArgsAsWritten();
1556 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1557
John McCalld5532b62009-11-23 01:53:49 +00001558 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
John McCall833ca992009-10-29 08:12:44 +00001559 for (unsigned I = 0; I != N; ++I) {
John McCalld5532b62009-11-23 01:53:49 +00001560 TemplateArgumentLoc Loc;
1561 if (SemaRef.Subst(PartialSpecTemplateArgs[I], Loc, TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001562 return true;
John McCalld5532b62009-11-23 01:53:49 +00001563 InstTemplateArgs.addArgument(Loc);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001564 }
1565
1566
1567 // Check that the template argument list is well-formed for this
1568 // class template.
1569 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1570 InstTemplateArgs.size());
1571 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1572 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001573 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001574 false,
1575 Converted))
1576 return true;
1577
1578 // Figure out where to insert this class template partial specialization
1579 // in the member template's set of class template partial specializations.
1580 llvm::FoldingSetNodeID ID;
1581 ClassTemplatePartialSpecializationDecl::Profile(ID,
1582 Converted.getFlatArguments(),
1583 Converted.flatSize(),
1584 SemaRef.Context);
1585 void *InsertPos = 0;
1586 ClassTemplateSpecializationDecl *PrevDecl
1587 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1588 InsertPos);
1589
1590 // Build the canonical type that describes the converted template
1591 // arguments of the class template partial specialization.
1592 QualType CanonType
1593 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1594 Converted.getFlatArguments(),
1595 Converted.flatSize());
1596
1597 // Build the fully-sugared type for this class template
1598 // specialization as the user wrote in the specialization
1599 // itself. This means that we'll pretty-print the type retrieved
1600 // from the specialization's declaration the way that the user
1601 // actually wrote the specialization, rather than formatting the
1602 // name based on the "canonical" representation used to store the
1603 // template arguments in the specialization.
John McCall3cb0ebd2010-03-10 03:28:59 +00001604 TypeSourceInfo *WrittenTy
1605 = SemaRef.Context.getTemplateSpecializationTypeInfo(
1606 TemplateName(ClassTemplate),
1607 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001608 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001609 CanonType);
1610
1611 if (PrevDecl) {
1612 // We've already seen a partial specialization with the same template
1613 // parameters and template arguments. This can happen, for example, when
1614 // substituting the outer template arguments ends up causing two
1615 // class template partial specializations of a member class template
1616 // to have identical forms, e.g.,
1617 //
1618 // template<typename T, typename U>
1619 // struct Outer {
1620 // template<typename X, typename Y> struct Inner;
1621 // template<typename Y> struct Inner<T, Y>;
1622 // template<typename Y> struct Inner<U, Y>;
1623 // };
1624 //
1625 // Outer<int, int> outer; // error: the partial specializations of Inner
1626 // // have the same signature.
1627 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1628 << WrittenTy;
1629 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1630 << SemaRef.Context.getTypeDeclType(PrevDecl);
1631 return true;
1632 }
1633
1634
1635 // Create the class template partial specialization declaration.
1636 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1637 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1638 PartialSpec->getLocation(),
1639 InstParams,
1640 ClassTemplate,
1641 Converted,
John McCalld5532b62009-11-23 01:53:49 +00001642 InstTemplateArgs,
John McCall3cb0ebd2010-03-10 03:28:59 +00001643 CanonType,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001644 0);
John McCallb6217662010-03-15 10:12:16 +00001645 // Substitute the nested name specifier, if any.
1646 if (SubstQualifier(PartialSpec, InstPartialSpec))
1647 return 0;
1648
Douglas Gregored9c0f92009-10-29 00:04:11 +00001649 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1650 InstPartialSpec->setTypeAsWritten(WrittenTy);
1651
1652 // Add this partial specialization to the set of class template partial
1653 // specializations.
1654 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1655 InsertPos);
1656 return false;
1657}
1658
John McCall21ef0fa2010-03-11 09:03:00 +00001659bool
1660Sema::CheckInstantiatedParams(llvm::SmallVectorImpl<ParmVarDecl*> &Params) {
1661 bool Invalid = false;
1662 for (unsigned i = 0, i_end = Params.size(); i != i_end; ++i)
1663 if (ParmVarDecl *PInst = Params[i]) {
1664 if (PInst->isInvalidDecl())
1665 Invalid = true;
1666 else if (PInst->getType()->isVoidType()) {
1667 Diag(PInst->getLocation(), diag::err_param_with_void_type);
1668 PInst->setInvalidDecl();
1669 Invalid = true;
1670 }
1671 else if (RequireNonAbstractType(PInst->getLocation(),
1672 PInst->getType(),
1673 diag::err_abstract_type_in_decl,
1674 Sema::AbstractParamType)) {
1675 PInst->setInvalidDecl();
1676 Invalid = true;
1677 }
1678 }
1679 return Invalid;
1680}
Douglas Gregor5545e162009-03-24 00:38:23 +00001681
John McCall21ef0fa2010-03-11 09:03:00 +00001682TypeSourceInfo*
John McCallce3ff2b2009-08-25 22:02:44 +00001683TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001684 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall21ef0fa2010-03-11 09:03:00 +00001685 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
1686 assert(OldTInfo && "substituting function without type source info");
1687 assert(Params.empty() && "parameter vector is non-empty at start");
1688 TypeSourceInfo *NewTInfo = SemaRef.SubstType(OldTInfo, TemplateArgs,
1689 D->getTypeSpecStartLoc(),
1690 D->getDeclName());
1691 if (!NewTInfo)
1692 return 0;
Douglas Gregor5545e162009-03-24 00:38:23 +00001693
John McCall21ef0fa2010-03-11 09:03:00 +00001694 // Get parameters from the new type info.
1695 TypeLoc NewTL = NewTInfo->getTypeLoc();
1696 FunctionProtoTypeLoc *NewProtoLoc = cast<FunctionProtoTypeLoc>(&NewTL);
1697 assert(NewProtoLoc && "Missing prototype?");
1698 for (unsigned i = 0, i_end = NewProtoLoc->getNumArgs(); i != i_end; ++i)
1699 Params.push_back(NewProtoLoc->getArg(i));
Douglas Gregor5545e162009-03-24 00:38:23 +00001700
John McCall21ef0fa2010-03-11 09:03:00 +00001701 return NewTInfo;
Douglas Gregor5545e162009-03-24 00:38:23 +00001702}
1703
Mike Stump1eb44332009-09-09 15:08:12 +00001704/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001705/// declaration (New) from the corresponding fields of its template (Tmpl).
1706///
1707/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001708bool
1709TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001710 FunctionDecl *Tmpl) {
1711 if (Tmpl->isDeleted())
1712 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001713
Douglas Gregorcca9e962009-07-01 22:01:06 +00001714 // If we are performing substituting explicitly-specified template arguments
1715 // or deduced template arguments into a function template and we reach this
1716 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001717 // to keeping the new function template specialization. We therefore
1718 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001719 // into a template instantiation for this specific function template
1720 // specialization, which is not a SFINAE context, so that we diagnose any
1721 // further errors in the declaration itself.
1722 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1723 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1724 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1725 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001726 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001727 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001728 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001729 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001730 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001731 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1732 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001733 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001734 }
1735 }
Mike Stump1eb44332009-09-09 15:08:12 +00001736
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001737 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
1738 assert(Proto && "Function template without prototype?");
1739
1740 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
1741 Proto->getNoReturnAttr()) {
1742 // The function has an exception specification or a "noreturn"
1743 // attribute. Substitute into each of the exception types.
1744 llvm::SmallVector<QualType, 4> Exceptions;
1745 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
1746 // FIXME: Poor location information!
1747 QualType T
1748 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
1749 New->getLocation(), New->getDeclName());
1750 if (T.isNull() ||
1751 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
1752 continue;
1753
1754 Exceptions.push_back(T);
1755 }
1756
1757 // Rebuild the function type
1758
1759 const FunctionProtoType *NewProto
1760 = New->getType()->getAs<FunctionProtoType>();
1761 assert(NewProto && "Template instantiation without function prototype?");
1762 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
1763 NewProto->arg_type_begin(),
1764 NewProto->getNumArgs(),
1765 NewProto->isVariadic(),
1766 NewProto->getTypeQuals(),
1767 Proto->hasExceptionSpec(),
1768 Proto->hasAnyExceptionSpec(),
1769 Exceptions.size(),
1770 Exceptions.data(),
Douglas Gregorab8bbf42010-01-18 17:14:39 +00001771 Proto->getNoReturnAttr(),
1772 Proto->getCallConv()));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001773 }
1774
Douglas Gregore53060f2009-06-25 22:08:12 +00001775 return false;
1776}
1777
Douglas Gregor5545e162009-03-24 00:38:23 +00001778/// \brief Initializes common fields of an instantiated method
1779/// declaration (New) from the corresponding fields of its template
1780/// (Tmpl).
1781///
1782/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001783bool
1784TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001785 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001786 if (InitFunctionInstantiation(New, Tmpl))
1787 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001788
Douglas Gregor5545e162009-03-24 00:38:23 +00001789 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1790 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00001791 if (Tmpl->isVirtualAsWritten())
1792 Record->setMethodAsVirtual(New);
Douglas Gregor5545e162009-03-24 00:38:23 +00001793
1794 // FIXME: attributes
1795 // FIXME: New needs a pointer to Tmpl
1796 return false;
1797}
Douglas Gregora58861f2009-05-13 20:28:22 +00001798
1799/// \brief Instantiate the definition of the given function from its
1800/// template.
1801///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001802/// \param PointOfInstantiation the point at which the instantiation was
1803/// required. Note that this is not precisely a "point of instantiation"
1804/// for the function, but it's close.
1805///
Douglas Gregora58861f2009-05-13 20:28:22 +00001806/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001807/// function template specialization or member function of a class template
1808/// specialization.
1809///
1810/// \param Recursive if true, recursively instantiates any functions that
1811/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001812///
1813/// \param DefinitionRequired if true, then we are performing an explicit
1814/// instantiation where the body of the function is required. Complain if
1815/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001816void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001817 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001818 bool Recursive,
1819 bool DefinitionRequired) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001820 if (Function->isInvalidDecl())
1821 return;
1822
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001823 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +00001824
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001825 // Never instantiate an explicit specialization.
1826 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1827 return;
1828
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001829 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00001830 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001831 Stmt *Pattern = 0;
1832 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001833 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001834
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001835 if (!Pattern) {
1836 if (DefinitionRequired) {
1837 if (Function->getPrimaryTemplate())
1838 Diag(PointOfInstantiation,
1839 diag::err_explicit_instantiation_undefined_func_template)
1840 << Function->getPrimaryTemplate();
1841 else
1842 Diag(PointOfInstantiation,
1843 diag::err_explicit_instantiation_undefined_member)
1844 << 1 << Function->getDeclName() << Function->getDeclContext();
1845
1846 if (PatternDecl)
1847 Diag(PatternDecl->getLocation(),
1848 diag::note_explicit_instantiation_here);
1849 }
1850
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001851 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001852 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001853
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001854 // C++0x [temp.explicit]p9:
1855 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001856 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001857 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001858 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001859 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001860 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001861 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001862
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001863 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1864 if (Inst)
1865 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001866
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001867 // If we're performing recursive template instantiation, create our own
1868 // queue of pending implicit instantiations that we will instantiate later,
1869 // while we're still within our own instantiation context.
1870 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1871 if (Recursive)
1872 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001873
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001874 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1875
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001876 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00001877 // recorded, unless we're actually a member function within a local
1878 // class, in which case we need to merge our results with the parent
1879 // scope (of the enclosing function).
1880 bool MergeWithParentScope = false;
1881 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
1882 MergeWithParentScope = Rec->isLocalClass();
1883
1884 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001885
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001886 // Introduce the instantiated function parameters into the local
1887 // instantiation scope.
1888 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1889 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1890 Function->getParamDecl(I));
1891
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001892 // Enter the scope of this instantiation. We don't use
1893 // PushDeclContext because we don't have a scope.
1894 DeclContext *PreviousContext = CurContext;
1895 CurContext = Function;
1896
Mike Stump1eb44332009-09-09 15:08:12 +00001897 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001898 getTemplateInstantiationArgs(Function);
1899
1900 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001901 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001902 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1903 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1904 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001905 }
1906
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001907 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001908 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001909
Douglas Gregor52604ab2009-09-11 21:19:12 +00001910 if (Body.isInvalid())
1911 Function->setInvalidDecl();
1912
Mike Stump1eb44332009-09-09 15:08:12 +00001913 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001914 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001915
John McCall0c01d182010-03-24 05:22:00 +00001916 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
1917
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001918 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001919
1920 DeclGroupRef DG(Function);
1921 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001922
Douglas Gregor60406be2010-01-16 22:29:39 +00001923 // This class may have local implicit instantiations that need to be
1924 // instantiation within this scope.
1925 PerformPendingImplicitInstantiations(/*LocalOnly=*/true);
1926 Scope.Exit();
1927
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001928 if (Recursive) {
1929 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001930 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001931 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001932
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001933 // Restore the set of pending implicit instantiations.
1934 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1935 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001936}
1937
1938/// \brief Instantiate the definition of the given variable from its
1939/// template.
1940///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001941/// \param PointOfInstantiation the point at which the instantiation was
1942/// required. Note that this is not precisely a "point of instantiation"
1943/// for the function, but it's close.
1944///
1945/// \param Var the already-instantiated declaration of a static member
1946/// variable of a class template specialization.
1947///
1948/// \param Recursive if true, recursively instantiates any functions that
1949/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001950///
1951/// \param DefinitionRequired if true, then we are performing an explicit
1952/// instantiation where an out-of-line definition of the member variable
1953/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001954void Sema::InstantiateStaticDataMemberDefinition(
1955 SourceLocation PointOfInstantiation,
1956 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001957 bool Recursive,
1958 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001959 if (Var->isInvalidDecl())
1960 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001961
Douglas Gregor7caa6822009-07-24 20:34:43 +00001962 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001963 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00001964 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00001965 assert(Def->isStaticDataMember() && "Not a static data member?");
1966 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00001967
Douglas Gregor0d035142009-10-27 18:42:08 +00001968 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001969 // We did not find an out-of-line definition of this static data member,
1970 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001971 // instantiate this definition (or provide a specialization for it) in
1972 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001973 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00001974 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001975 Diag(PointOfInstantiation,
1976 diag::err_explicit_instantiation_undefined_member)
1977 << 2 << Var->getDeclName() << Var->getDeclContext();
1978 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
1979 }
1980
Douglas Gregor7caa6822009-07-24 20:34:43 +00001981 return;
1982 }
1983
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001984 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001985 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001986 return;
1987
1988 // C++0x [temp.explicit]p9:
1989 // Except for inline functions, other explicit instantiation declarations
1990 // have the effect of suppressing the implicit instantiation of the entity
1991 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001992 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001993 == TSK_ExplicitInstantiationDeclaration)
1994 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Douglas Gregor7caa6822009-07-24 20:34:43 +00001996 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1997 if (Inst)
1998 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001999
Douglas Gregor7caa6822009-07-24 20:34:43 +00002000 // If we're performing recursive template instantiation, create our own
2001 // queue of pending implicit instantiations that we will instantiate later,
2002 // while we're still within our own instantiation context.
2003 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
2004 if (Recursive)
2005 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002006
Douglas Gregor7caa6822009-07-24 20:34:43 +00002007 // Enter the scope of this instantiation. We don't use
2008 // PushDeclContext because we don't have a scope.
2009 DeclContext *PreviousContext = CurContext;
2010 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00002011
Douglas Gregor1028c9f2009-10-14 21:29:40 +00002012 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00002013 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00002014 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00002015 CurContext = PreviousContext;
2016
2017 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00002018 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
2019 assert(MSInfo && "Missing member specialization information?");
2020 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
2021 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00002022 DeclGroupRef DG(Var);
2023 Consumer.HandleTopLevelDecl(DG);
2024 }
Mike Stump1eb44332009-09-09 15:08:12 +00002025
Douglas Gregor7caa6822009-07-24 20:34:43 +00002026 if (Recursive) {
2027 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00002028 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00002029 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00002030
Douglas Gregor7caa6822009-07-24 20:34:43 +00002031 // Restore the set of pending implicit instantiations.
2032 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00002033 }
Douglas Gregora58861f2009-05-13 20:28:22 +00002034}
Douglas Gregor815215d2009-05-27 05:35:12 +00002035
Anders Carlsson09025312009-08-29 05:16:22 +00002036void
2037Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
2038 const CXXConstructorDecl *Tmpl,
2039 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00002040
Anders Carlsson09025312009-08-29 05:16:22 +00002041 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002042 bool AnyErrors = false;
2043
Anders Carlsson09025312009-08-29 05:16:22 +00002044 // Instantiate all the initializers.
2045 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00002046 InitsEnd = Tmpl->init_end();
2047 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00002048 CXXBaseOrMemberInitializer *Init = *Inits;
2049
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002050 SourceLocation LParenLoc, RParenLoc;
Anders Carlsson09025312009-08-29 05:16:22 +00002051 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002052 llvm::SmallVector<SourceLocation, 4> CommaLocs;
Mike Stump1eb44332009-09-09 15:08:12 +00002053
Douglas Gregor6b98b2e2010-03-02 07:38:39 +00002054 // Instantiate the initializer.
2055 if (InstantiateInitializer(*this, Init->getInit(), TemplateArgs,
2056 LParenLoc, CommaLocs, NewArgs, RParenLoc)) {
2057 AnyErrors = true;
2058 continue;
Anders Carlsson09025312009-08-29 05:16:22 +00002059 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002060
Anders Carlsson09025312009-08-29 05:16:22 +00002061 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00002062 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00002063 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002064 TemplateArgs,
2065 Init->getSourceLocation(),
2066 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00002067 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002068 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00002069 New->setInvalidDecl();
2070 continue;
2071 }
2072
John McCalla93c9342009-12-07 02:54:59 +00002073 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00002074 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002075 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002076 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002077 Init->getRParenLoc(),
2078 New->getParent());
2079 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002080 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00002081
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002082 // Is this an anonymous union?
2083 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002084 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2085 UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00002086 else
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002087 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMemberLocation(),
2088 Init->getMember(),
Douglas Gregore95b4092009-09-16 18:34:49 +00002089 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00002090
2091 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00002092 NewArgs.size(),
2093 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00002094 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00002095 Init->getRParenLoc());
2096 }
2097
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002098 if (NewInit.isInvalid()) {
2099 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00002100 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002101 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00002102 // FIXME: It would be nice if ASTOwningVector had a release function.
2103 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00002104
Anders Carlsson09025312009-08-29 05:16:22 +00002105 NewInits.push_back((MemInitTy *)NewInit.get());
2106 }
2107 }
Mike Stump1eb44332009-09-09 15:08:12 +00002108
Anders Carlsson09025312009-08-29 05:16:22 +00002109 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00002110 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00002111 /*FIXME: ColonLoc */
2112 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00002113 NewInits.data(), NewInits.size(),
2114 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00002115}
2116
John McCall52a575a2009-08-29 08:11:13 +00002117// TODO: this could be templated if the various decl types used the
2118// same method name.
2119static bool isInstantiationOf(ClassTemplateDecl *Pattern,
2120 ClassTemplateDecl *Instance) {
2121 Pattern = Pattern->getCanonicalDecl();
2122
2123 do {
2124 Instance = Instance->getCanonicalDecl();
2125 if (Pattern == Instance) return true;
2126 Instance = Instance->getInstantiatedFromMemberTemplate();
2127 } while (Instance);
2128
2129 return false;
2130}
2131
Douglas Gregor0d696532009-09-28 06:34:35 +00002132static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
2133 FunctionTemplateDecl *Instance) {
2134 Pattern = Pattern->getCanonicalDecl();
2135
2136 do {
2137 Instance = Instance->getCanonicalDecl();
2138 if (Pattern == Instance) return true;
2139 Instance = Instance->getInstantiatedFromMemberTemplate();
2140 } while (Instance);
2141
2142 return false;
2143}
2144
Douglas Gregored9c0f92009-10-29 00:04:11 +00002145static bool
2146isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
2147 ClassTemplatePartialSpecializationDecl *Instance) {
2148 Pattern
2149 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
2150 do {
2151 Instance = cast<ClassTemplatePartialSpecializationDecl>(
2152 Instance->getCanonicalDecl());
2153 if (Pattern == Instance)
2154 return true;
2155 Instance = Instance->getInstantiatedFromMember();
2156 } while (Instance);
2157
2158 return false;
2159}
2160
John McCall52a575a2009-08-29 08:11:13 +00002161static bool isInstantiationOf(CXXRecordDecl *Pattern,
2162 CXXRecordDecl *Instance) {
2163 Pattern = Pattern->getCanonicalDecl();
2164
2165 do {
2166 Instance = Instance->getCanonicalDecl();
2167 if (Pattern == Instance) return true;
2168 Instance = Instance->getInstantiatedFromMemberClass();
2169 } while (Instance);
2170
2171 return false;
2172}
2173
2174static bool isInstantiationOf(FunctionDecl *Pattern,
2175 FunctionDecl *Instance) {
2176 Pattern = Pattern->getCanonicalDecl();
2177
2178 do {
2179 Instance = Instance->getCanonicalDecl();
2180 if (Pattern == Instance) return true;
2181 Instance = Instance->getInstantiatedFromMemberFunction();
2182 } while (Instance);
2183
2184 return false;
2185}
2186
2187static bool isInstantiationOf(EnumDecl *Pattern,
2188 EnumDecl *Instance) {
2189 Pattern = Pattern->getCanonicalDecl();
2190
2191 do {
2192 Instance = Instance->getCanonicalDecl();
2193 if (Pattern == Instance) return true;
2194 Instance = Instance->getInstantiatedFromMemberEnum();
2195 } while (Instance);
2196
2197 return false;
2198}
2199
John McCalled976492009-12-04 22:46:56 +00002200static bool isInstantiationOf(UsingShadowDecl *Pattern,
2201 UsingShadowDecl *Instance,
2202 ASTContext &C) {
2203 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2204}
2205
2206static bool isInstantiationOf(UsingDecl *Pattern,
2207 UsingDecl *Instance,
2208 ASTContext &C) {
2209 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2210}
2211
John McCall7ba107a2009-11-18 02:36:19 +00002212static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2213 UsingDecl *Instance,
2214 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002215 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002216}
2217
2218static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002219 UsingDecl *Instance,
2220 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002221 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002222}
2223
John McCall52a575a2009-08-29 08:11:13 +00002224static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2225 VarDecl *Instance) {
2226 assert(Instance->isStaticDataMember());
2227
2228 Pattern = Pattern->getCanonicalDecl();
2229
2230 do {
2231 Instance = Instance->getCanonicalDecl();
2232 if (Pattern == Instance) return true;
2233 Instance = Instance->getInstantiatedFromStaticDataMember();
2234 } while (Instance);
2235
2236 return false;
2237}
2238
John McCalled976492009-12-04 22:46:56 +00002239// Other is the prospective instantiation
2240// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002241static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002242 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002243 if (UnresolvedUsingTypenameDecl *UUD
2244 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2245 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2246 return isInstantiationOf(UUD, UD, Ctx);
2247 }
2248 }
2249
2250 if (UnresolvedUsingValueDecl *UUD
2251 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002252 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2253 return isInstantiationOf(UUD, UD, Ctx);
2254 }
2255 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002256
Anders Carlsson0d8df782009-08-29 19:37:28 +00002257 return false;
2258 }
Mike Stump1eb44332009-09-09 15:08:12 +00002259
John McCall52a575a2009-08-29 08:11:13 +00002260 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2261 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002262
John McCall52a575a2009-08-29 08:11:13 +00002263 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2264 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002265
John McCall52a575a2009-08-29 08:11:13 +00002266 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2267 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002268
Douglas Gregor7caa6822009-07-24 20:34:43 +00002269 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002270 if (Var->isStaticDataMember())
2271 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2272
2273 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2274 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002275
Douglas Gregor0d696532009-09-28 06:34:35 +00002276 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2277 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2278
Douglas Gregored9c0f92009-10-29 00:04:11 +00002279 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2280 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2281 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2282 PartialSpec);
2283
Anders Carlssond8b285f2009-09-01 04:26:58 +00002284 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2285 if (!Field->getDeclName()) {
2286 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002287 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002288 cast<FieldDecl>(D);
2289 }
2290 }
Mike Stump1eb44332009-09-09 15:08:12 +00002291
John McCalled976492009-12-04 22:46:56 +00002292 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2293 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2294
2295 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2296 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2297
Douglas Gregor815215d2009-05-27 05:35:12 +00002298 return D->getDeclName() && isa<NamedDecl>(Other) &&
2299 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2300}
2301
2302template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002303static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002304 NamedDecl *D,
2305 ForwardIterator first,
2306 ForwardIterator last) {
2307 for (; first != last; ++first)
2308 if (isInstantiationOf(Ctx, D, *first))
2309 return cast<NamedDecl>(*first);
2310
2311 return 0;
2312}
2313
John McCall02cace72009-08-28 07:59:38 +00002314/// \brief Finds the instantiation of the given declaration context
2315/// within the current instantiation.
2316///
2317/// \returns NULL if there was an error
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002318DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregore95b4092009-09-16 18:34:49 +00002319 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002320 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002321 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002322 return cast_or_null<DeclContext>(ID);
2323 } else return DC;
2324}
2325
Douglas Gregored961e72009-05-27 17:54:46 +00002326/// \brief Find the instantiation of the given declaration within the
2327/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002328///
2329/// This routine is intended to be used when \p D is a declaration
2330/// referenced from within a template, that needs to mapped into the
2331/// corresponding declaration within an instantiation. For example,
2332/// given:
2333///
2334/// \code
2335/// template<typename T>
2336/// struct X {
2337/// enum Kind {
2338/// KnownValue = sizeof(T)
2339/// };
2340///
2341/// bool getKind() const { return KnownValue; }
2342/// };
2343///
2344/// template struct X<int>;
2345/// \endcode
2346///
2347/// In the instantiation of X<int>::getKind(), we need to map the
2348/// EnumConstantDecl for KnownValue (which refers to
2349/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002350/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2351/// this mapping from within the instantiation of X<int>.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002352NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregore95b4092009-09-16 18:34:49 +00002353 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002354 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002355 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002356 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor550d9b22009-10-31 17:21:17 +00002357 ParentDC->isFunctionOrMethod()) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002358 // D is a local of some kind. Look into the map of local
2359 // declarations to their instantiations.
2360 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
2361 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002362
Douglas Gregore95b4092009-09-16 18:34:49 +00002363 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2364 if (!Record->isDependentContext())
2365 return D;
2366
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002367 // If the RecordDecl is actually the injected-class-name or a
2368 // "templated" declaration for a class template, class template
2369 // partial specialization, or a member class of a class template,
2370 // substitute into the injected-class-name of the class template
2371 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002372 QualType T;
2373 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2374
2375 if (ClassTemplate) {
John McCall3cb0ebd2010-03-10 03:28:59 +00002376 T = ClassTemplate->getInjectedClassNameSpecialization(Context);
Douglas Gregore95b4092009-09-16 18:34:49 +00002377 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2378 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002379 ClassTemplate = PartialSpec->getSpecializedTemplate();
John McCall3cb0ebd2010-03-10 03:28:59 +00002380
2381 // If we call SubstType with an InjectedClassNameType here we
2382 // can end up in an infinite loop.
2383 T = Context.getTypeDeclType(Record);
2384 assert(isa<InjectedClassNameType>(T) &&
2385 "type of partial specialization is not an InjectedClassNameType");
2386 T = cast<InjectedClassNameType>(T)->getUnderlyingType();
2387 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002388
2389 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002390 // Substitute into the injected-class-name to get the type
2391 // corresponding to the instantiation we want, which may also be
2392 // the current instantiation (if we're in a template
2393 // definition). This substitution should never fail, since we
2394 // know we can instantiate the injected-class-name or we
2395 // wouldn't have gotten to the injected-class-name!
2396
2397 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2398 // extra instantiation in the common case?
Douglas Gregore95b4092009-09-16 18:34:49 +00002399 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
2400 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2401
2402 if (!T->isDependentType()) {
2403 assert(T->isRecordType() && "Instantiation must produce a record type");
2404 return T->getAs<RecordType>()->getDecl();
2405 }
2406
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002407 // We are performing "partial" template instantiation to create
2408 // the member declarations for the members of a class template
2409 // specialization. Therefore, D is actually referring to something
2410 // in the current instantiation. Look through the current
2411 // context, which contains actual instantiations, to find the
2412 // instantiation of the "current instantiation" that D refers
2413 // to.
2414 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002415 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002416 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002417 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002418 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002419 if (isInstantiationOf(ClassTemplate,
2420 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002421 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002422
2423 if (!DC->isDependentContext())
2424 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002425 }
2426
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002427 // We're performing "instantiation" of a member of the current
2428 // instantiation while we are type-checking the
2429 // definition. Compute the declaration context and return that.
2430 assert(!SawNonDependentContext &&
2431 "No dependent context while instantiating record");
2432 DeclContext *DC = computeDeclContext(T);
2433 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002434 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002435 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002436 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002437
Douglas Gregore95b4092009-09-16 18:34:49 +00002438 // Fall through to deal with other dependent record types (e.g.,
2439 // anonymous unions in class templates).
2440 }
John McCall52a575a2009-08-29 08:11:13 +00002441
Douglas Gregore95b4092009-09-16 18:34:49 +00002442 if (!ParentDC->isDependentContext())
2443 return D;
2444
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002445 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002446 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00002447 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002448
Douglas Gregor815215d2009-05-27 05:35:12 +00002449 if (ParentDC != D->getDeclContext()) {
2450 // We performed some kind of instantiation in the parent context,
2451 // so now we need to look into the instantiated parent context to
2452 // find the instantiation of the declaration D.
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002453
John McCall3cb0ebd2010-03-10 03:28:59 +00002454 // If our context used to be dependent, we may need to instantiate
2455 // it before performing lookup into that context.
2456 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002457 if (!Spec->isDependentContext()) {
2458 QualType T = Context.getTypeDeclType(Spec);
John McCall3cb0ebd2010-03-10 03:28:59 +00002459 const RecordType *Tag = T->getAs<RecordType>();
2460 assert(Tag && "type of non-dependent record is not a RecordType");
2461 if (!Tag->isBeingDefined() &&
2462 RequireCompleteType(Loc, T, diag::err_incomplete_type))
2463 return 0;
Douglas Gregor7c1e98f2010-03-01 15:56:25 +00002464 }
2465 }
2466
Douglas Gregor815215d2009-05-27 05:35:12 +00002467 NamedDecl *Result = 0;
2468 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002469 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00002470 Result = findInstantiationOf(Context, D, Found.first, Found.second);
2471 } else {
2472 // Since we don't have a name for the entity we're looking for,
2473 // our only option is to walk through all of the declarations to
2474 // find that name. This will occur in a few cases:
2475 //
2476 // - anonymous struct/union within a template
2477 // - unnamed class/struct/union/enum within a template
2478 //
2479 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00002480 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002481 ParentDC->decls_begin(),
2482 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00002483 }
Mike Stump1eb44332009-09-09 15:08:12 +00002484
John McCall9f54ad42009-12-10 09:41:52 +00002485 // UsingShadowDecls can instantiate to nothing because of using hiding.
Douglas Gregor00225542010-03-01 18:27:54 +00002486 assert((Result || isa<UsingShadowDecl>(D) || D->isInvalidDecl() ||
2487 cast<Decl>(ParentDC)->isInvalidDecl())
John McCall9f54ad42009-12-10 09:41:52 +00002488 && "Unable to find instantiation of declaration!");
2489
Douglas Gregor815215d2009-05-27 05:35:12 +00002490 D = Result;
2491 }
2492
Douglas Gregor815215d2009-05-27 05:35:12 +00002493 return D;
2494}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002495
Mike Stump1eb44332009-09-09 15:08:12 +00002496/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002497/// instantiations we have seen until this point.
Douglas Gregor60406be2010-01-16 22:29:39 +00002498void Sema::PerformPendingImplicitInstantiations(bool LocalOnly) {
2499 while (!PendingLocalImplicitInstantiations.empty() ||
2500 (!LocalOnly && !PendingImplicitInstantiations.empty())) {
2501 PendingImplicitInstantiation Inst;
2502
2503 if (PendingLocalImplicitInstantiations.empty()) {
2504 Inst = PendingImplicitInstantiations.front();
2505 PendingImplicitInstantiations.pop_front();
2506 } else {
2507 Inst = PendingLocalImplicitInstantiations.front();
2508 PendingLocalImplicitInstantiations.pop_front();
2509 }
Mike Stump1eb44332009-09-09 15:08:12 +00002510
Douglas Gregor7caa6822009-07-24 20:34:43 +00002511 // Instantiate function definitions
2512 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002513 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002514 Function->getLocation(), *this,
2515 Context.getSourceManager(),
2516 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002517
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002518 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002519 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002520 continue;
2521 }
Mike Stump1eb44332009-09-09 15:08:12 +00002522
Douglas Gregor7caa6822009-07-24 20:34:43 +00002523 // Instantiate static data member definitions.
2524 VarDecl *Var = cast<VarDecl>(Inst.first);
2525 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002526
Chandler Carruth291b4412010-02-13 10:17:50 +00002527 // Don't try to instantiate declarations if the most recent redeclaration
2528 // is invalid.
2529 if (Var->getMostRecentDeclaration()->isInvalidDecl())
2530 continue;
2531
2532 // Check if the most recent declaration has changed the specialization kind
2533 // and removed the need for implicit instantiation.
2534 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
2535 case TSK_Undeclared:
2536 assert(false && "Cannot instantitiate an undeclared specialization.");
2537 case TSK_ExplicitInstantiationDeclaration:
2538 case TSK_ExplicitInstantiationDefinition:
2539 case TSK_ExplicitSpecialization:
2540 continue; // No longer need implicit instantiation.
2541 case TSK_ImplicitInstantiation:
2542 break;
2543 }
2544
Mike Stump1eb44332009-09-09 15:08:12 +00002545 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002546 Var->getLocation(), *this,
2547 Context.getSourceManager(),
2548 "instantiating static data member "
2549 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002550
Douglas Gregor7caa6822009-07-24 20:34:43 +00002551 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002552 }
2553}
John McCall0c01d182010-03-24 05:22:00 +00002554
2555void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
2556 const MultiLevelTemplateArgumentList &TemplateArgs) {
2557 for (DeclContext::ddiag_iterator I = Pattern->ddiag_begin(),
2558 E = Pattern->ddiag_end(); I != E; ++I) {
2559 DependentDiagnostic *DD = *I;
2560
2561 switch (DD->getKind()) {
2562 case DependentDiagnostic::Access:
2563 HandleDependentAccessCheck(*DD, TemplateArgs);
2564 break;
2565 }
2566 }
2567}