blob: a55193aa74f25478ccf3cce7e8e1ae68d957a0e0 [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"
18#include "clang/AST/Expr.h"
Douglas Gregora88cfbf2009-12-12 18:16:41 +000019#include "clang/AST/ExprCXX.h"
Anders Carlssonc17fb7b2009-09-01 05:12:24 +000020#include "clang/Basic/PrettyStackTrace.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000021#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000022
23using namespace clang;
24
25namespace {
Benjamin Kramer85b45212009-11-28 19:45:26 +000026 class TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000027 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000028 Sema &SemaRef;
29 DeclContext *Owner;
Douglas Gregord6350ae2009-08-28 20:31:08 +000030 const MultiLevelTemplateArgumentList &TemplateArgs;
Mike Stump1eb44332009-09-09 15:08:12 +000031
Anders Carlssond8fe2d52009-11-07 06:07:58 +000032 void InstantiateAttrs(Decl *Tmpl, Decl *New);
33
Douglas Gregor8dbc2692009-03-17 21:15:40 +000034 public:
35 typedef Sema::OwningExprResult OwningExprResult;
36
37 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +000038 const MultiLevelTemplateArgumentList &TemplateArgs)
Douglas Gregor7e063902009-05-11 23:53:27 +000039 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Mike Stump1eb44332009-09-09 15:08:12 +000040
Mike Stump390b4cc2009-05-16 07:39:55 +000041 // FIXME: Once we get closer to completion, replace these manually-written
42 // declarations with automatically-generated ones from
43 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000044 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
45 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000046 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000047 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000048 Decl *VisitFieldDecl(FieldDecl *D);
49 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
50 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000051 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000052 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregora735b202009-10-13 14:39:41 +000053 Decl *VisitFunctionDecl(FunctionDecl *D,
54 TemplateParameterList *TemplateParams = 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +000055 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000056 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
57 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000058 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000059 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000060 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000061 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000062 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +000063 Decl *VisitClassTemplatePartialSpecializationDecl(
64 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000065 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000066 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Douglas Gregor33642df2009-10-23 23:25:44 +000067 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
Douglas Gregor9106ef72009-11-11 16:58:32 +000068 Decl *VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Douglas Gregor48c32a72009-11-17 06:07:40 +000069 Decl *VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
John McCalled976492009-12-04 22:46:56 +000070 Decl *VisitUsingDecl(UsingDecl *D);
71 Decl *VisitUsingShadowDecl(UsingShadowDecl *D);
John McCall7ba107a2009-11-18 02:36:19 +000072 Decl *VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
73 Decl *VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000074
Douglas Gregor8dbc2692009-03-17 21:15:40 +000075 // Base case. FIXME: Remove once we can instantiate everything.
Douglas Gregor48c32a72009-11-17 06:07:40 +000076 Decl *VisitDecl(Decl *D) {
77 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
78 Diagnostic::Error,
79 "cannot instantiate %0 yet");
80 SemaRef.Diag(D->getLocation(), DiagID)
81 << D->getDeclKindName();
82
Douglas Gregor8dbc2692009-03-17 21:15:40 +000083 return 0;
84 }
Douglas Gregor5545e162009-03-24 00:38:23 +000085
John McCallfd810b12009-08-14 02:03:10 +000086 const LangOptions &getLangOptions() {
87 return SemaRef.getLangOptions();
88 }
89
Douglas Gregor5545e162009-03-24 00:38:23 +000090 // Helper functions for instantiating methods.
John McCallce3ff2b2009-08-25 22:02:44 +000091 QualType SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000092 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000093 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000094 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000095
96 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +000097 SubstTemplateParams(TemplateParameterList *List);
Douglas Gregored9c0f92009-10-29 00:04:11 +000098
99 bool InstantiateClassTemplatePartialSpecialization(
100 ClassTemplateDecl *ClassTemplate,
101 ClassTemplatePartialSpecializationDecl *PartialSpec);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000102 };
103}
104
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000105// FIXME: Is this too simple?
106void TemplateDeclInstantiator::InstantiateAttrs(Decl *Tmpl, Decl *New) {
107 for (const Attr *TmplAttr = Tmpl->getAttrs(); TmplAttr;
108 TmplAttr = TmplAttr->getNext()) {
109
110 // FIXME: Is cloning correct for all attributes?
111 Attr *NewAttr = TmplAttr->clone(SemaRef.Context);
112
113 New->addAttr(NewAttr);
114 }
115}
116
Douglas Gregor4f722be2009-03-25 15:45:12 +0000117Decl *
118TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
119 assert(false && "Translation units cannot be instantiated");
120 return D;
121}
122
123Decl *
124TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
125 assert(false && "Namespaces cannot be instantiated");
126 return D;
127}
128
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000129Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
130 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000131 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCallba6a9bd2009-10-24 08:00:42 +0000132 if (DI->getType()->isDependentType()) {
133 DI = SemaRef.SubstType(DI, TemplateArgs,
134 D->getLocation(), D->getDeclName());
135 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000136 Invalid = true;
John McCalla93c9342009-12-07 02:54:59 +0000137 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000138 }
139 }
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000141 // Create the new typedef
142 TypedefDecl *Typedef
143 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
John McCallba6a9bd2009-10-24 08:00:42 +0000144 D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000145 if (Invalid)
146 Typedef->setInvalidDecl();
147
John McCall5126fd02009-12-30 00:31:22 +0000148 if (TypedefDecl *Prev = D->getPreviousDeclaration()) {
149 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(Prev, TemplateArgs);
150 Typedef->setPreviousDeclaration(cast<TypedefDecl>(InstPrev));
151 }
152
John McCall46460a62010-01-20 21:53:11 +0000153 Typedef->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000154 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000155
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000156 return Typedef;
157}
158
Douglas Gregor6eef5192009-12-14 19:27:10 +0000159/// \brief Instantiate the arguments provided as part of initialization.
160///
161/// \returns true if an error occurred, false otherwise.
162static bool InstantiateInitializationArguments(Sema &SemaRef,
163 Expr **Args, unsigned NumArgs,
164 const MultiLevelTemplateArgumentList &TemplateArgs,
165 llvm::SmallVectorImpl<SourceLocation> &FakeCommaLocs,
166 ASTOwningVector<&ActionBase::DeleteExpr> &InitArgs) {
167 for (unsigned I = 0; I != NumArgs; ++I) {
168 // When we hit the first defaulted argument, break out of the loop:
169 // we don't pass those default arguments on.
170 if (Args[I]->isDefaultArgument())
171 break;
172
173 Sema::OwningExprResult Arg = SemaRef.SubstExpr(Args[I], TemplateArgs);
174 if (Arg.isInvalid())
175 return true;
176
177 Expr *ArgExpr = (Expr *)Arg.get();
178 InitArgs.push_back(Arg.release());
179
180 // FIXME: We're faking all of the comma locations. Do we need them?
181 FakeCommaLocs.push_back(
182 SemaRef.PP.getLocForEndOfToken(ArgExpr->getLocEnd()));
183 }
184
185 return false;
186}
187
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000188Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000189 // Do substitution on the type of the declaration
John McCalla93c9342009-12-07 02:54:59 +0000190 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCall0a5fa062009-10-21 02:39:02 +0000191 TemplateArgs,
192 D->getTypeSpecStartLoc(),
193 D->getDeclName());
194 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000195 return 0;
196
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000197 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000198 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
199 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000200 DI->getType(), DI,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000201 D->getStorageClass());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000202 Var->setThreadSpecified(D->isThreadSpecified());
203 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
204 Var->setDeclaredInCondition(D->isDeclaredInCondition());
Mike Stump1eb44332009-09-09 15:08:12 +0000205
206 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000207 // out-of-line, the instantiation will have the same lexical
208 // context (which will be a namespace scope) as the template.
209 if (D->isOutOfLine())
210 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000211
John McCall46460a62010-01-20 21:53:11 +0000212 Var->setAccess(D->getAccess());
213
Mike Stump390b4cc2009-05-16 07:39:55 +0000214 // FIXME: In theory, we could have a previous declaration for variables that
215 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000216 bool Redeclaration = false;
John McCall68263142009-11-18 22:49:29 +0000217 // FIXME: having to fake up a LookupResult is dumb.
218 LookupResult Previous(SemaRef, Var->getDeclName(), Var->getLocation(),
219 Sema::LookupOrdinaryName);
Douglas Gregor60c93c92010-02-09 07:26:29 +0000220 if (D->isStaticDataMember())
221 SemaRef.LookupQualifiedName(Previous, Owner, false);
John McCall68263142009-11-18 22:49:29 +0000222 SemaRef.CheckVariableDeclaration(Var, Previous, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000223
Douglas Gregor7caa6822009-07-24 20:34:43 +0000224 if (D->isOutOfLine()) {
225 D->getLexicalDeclContext()->addDecl(Var);
226 Owner->makeDeclVisibleInContext(Var);
227 } else {
228 Owner->addDecl(Var);
229 }
Mike Stump1eb44332009-09-09 15:08:12 +0000230
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000231 // Link instantiations of static data members back to the template from
232 // which they were instantiated.
233 if (Var->isStaticDataMember())
234 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
Douglas Gregorcf3293e2009-11-01 20:32:48 +0000235 TSK_ImplicitInstantiation);
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000236
Douglas Gregor60c93c92010-02-09 07:26:29 +0000237 if (Var->getAnyInitializer()) {
238 // We already have an initializer in the class.
239 } else if (D->getInit()) {
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000240 if (Var->isStaticDataMember() && !D->isOutOfLine())
241 SemaRef.PushExpressionEvaluationContext(Sema::Unevaluated);
242 else
243 SemaRef.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
244
Douglas Gregor6eef5192009-12-14 19:27:10 +0000245 // Extract the initializer, skipping through any temporary-binding
246 // expressions and look at the subexpression as it was written.
247 Expr *DInit = D->getInit();
Douglas Gregora89ebea2010-02-03 09:01:59 +0000248 if (CXXExprWithTemporaries *ExprTemp
249 = dyn_cast<CXXExprWithTemporaries>(DInit))
250 DInit = ExprTemp->getSubExpr();
Douglas Gregor6eef5192009-12-14 19:27:10 +0000251 while (CXXBindTemporaryExpr *Binder = dyn_cast<CXXBindTemporaryExpr>(DInit))
252 DInit = Binder->getSubExpr();
253 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(DInit))
254 DInit = ICE->getSubExprAsWritten();
255
256 if (ParenListExpr *PLE = dyn_cast<ParenListExpr>(DInit)) {
257 // The initializer is a parenthesized list of expressions that is
258 // type-dependent. Instantiate each of the expressions; we'll be
259 // performing direct initialization with them.
260 llvm::SmallVector<SourceLocation, 4> CommaLocs;
261 ASTOwningVector<&ActionBase::DeleteExpr> InitArgs(SemaRef);
262 if (!InstantiateInitializationArguments(SemaRef,
263 PLE->getExprs(),
264 PLE->getNumExprs(),
265 TemplateArgs,
266 CommaLocs, InitArgs)) {
267 // Add the direct initializer to the declaration.
Douglas Gregora88cfbf2009-12-12 18:16:41 +0000268 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
Douglas Gregor6eef5192009-12-14 19:27:10 +0000269 PLE->getLParenLoc(),
270 move_arg(InitArgs),
271 CommaLocs.data(),
272 PLE->getRParenLoc());
273 }
274 } else if (CXXConstructExpr *Construct =dyn_cast<CXXConstructExpr>(DInit)) {
275 // The initializer resolved to a constructor. Instantiate the constructor
276 // arguments.
277 llvm::SmallVector<SourceLocation, 4> CommaLocs;
278 ASTOwningVector<&ActionBase::DeleteExpr> InitArgs(SemaRef);
279
280 if (!InstantiateInitializationArguments(SemaRef,
281 Construct->getArgs(),
282 Construct->getNumArgs(),
283 TemplateArgs,
284 CommaLocs, InitArgs)) {
285 if (D->hasCXXDirectInitializer()) {
286 SourceLocation FakeLParenLoc =
287 SemaRef.PP.getLocForEndOfToken(D->getLocation());
288 SourceLocation FakeRParenLoc = CommaLocs.empty()? FakeLParenLoc
289 : CommaLocs.back();
290 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
291 FakeLParenLoc,
292 move_arg(InitArgs),
293 CommaLocs.data(),
294 FakeRParenLoc);
295 } else if (InitArgs.size() == 1) {
296 Expr *Init = (Expr*)(InitArgs.take()[0]);
297 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var),
298 SemaRef.Owned(Init),
299 false);
300 } else {
301 assert(InitArgs.size() == 0);
302 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
303 }
304 }
305 } else {
306 OwningExprResult Init
307 = SemaRef.SubstExpr(D->getInit(), TemplateArgs);
308
309 // FIXME: Not happy about invalidating decls just because of a bad
310 // initializer, unless it affects the type.
311 if (Init.isInvalid())
312 Var->setInvalidDecl();
313 else
314 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init),
315 D->hasCXXDirectInitializer());
316 }
317
Douglas Gregor1f5f3a42009-12-03 17:10:37 +0000318 SemaRef.PopExpressionEvaluationContext();
Douglas Gregor65b90052009-07-27 17:43:39 +0000319 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
320 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000321
322 return Var;
323}
324
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000325Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
326 bool Invalid = false;
John McCalla93c9342009-12-07 02:54:59 +0000327 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000328 if (DI->getType()->isDependentType()) {
329 DI = SemaRef.SubstType(DI, TemplateArgs,
330 D->getLocation(), D->getDeclName());
331 if (!DI) {
John McCalla93c9342009-12-07 02:54:59 +0000332 DI = D->getTypeSourceInfo();
John McCall07fb6be2009-10-22 23:33:21 +0000333 Invalid = true;
334 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000335 // C++ [temp.arg.type]p3:
336 // If a declaration acquires a function type through a type
337 // dependent on a template-parameter and this causes a
338 // declaration that does not use the syntactic form of a
339 // function declarator to have function type, the program is
340 // ill-formed.
341 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000342 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000343 Invalid = true;
344 }
345 }
346
347 Expr *BitWidth = D->getBitWidth();
348 if (Invalid)
349 BitWidth = 0;
350 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000351 // The bit-width expression is not potentially evaluated.
352 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000354 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000355 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000356 if (InstantiatedBitWidth.isInvalid()) {
357 Invalid = true;
358 BitWidth = 0;
359 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000360 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000361 }
362
John McCall07fb6be2009-10-22 23:33:21 +0000363 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
364 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000365 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000366 D->getLocation(),
367 D->isMutable(),
368 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000369 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000370 D->getAccess(),
371 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000372 if (!Field) {
373 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000374 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000375 }
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Anders Carlssond8fe2d52009-11-07 06:07:58 +0000377 InstantiateAttrs(D, Field);
378
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000379 if (Invalid)
380 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000381
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000382 if (!Field->getDeclName()) {
383 // Keep track of where this decl came from.
384 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000385 }
Mike Stump1eb44332009-09-09 15:08:12 +0000386
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000387 Field->setImplicit(D->isImplicit());
John McCall46460a62010-01-20 21:53:11 +0000388 Field->setAccess(D->getAccess());
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000389 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000390
391 return Field;
392}
393
John McCall02cace72009-08-28 07:59:38 +0000394Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
395 FriendDecl::FriendUnion FU;
396
397 // Handle friend type expressions by simply substituting template
398 // parameters into the pattern type.
399 if (Type *Ty = D->getFriendType()) {
400 QualType T = SemaRef.SubstType(QualType(Ty,0), TemplateArgs,
401 D->getLocation(), DeclarationName());
402 if (T.isNull()) return 0;
403
404 assert(getLangOptions().CPlusPlus0x || T->isRecordType());
405 FU = T.getTypePtr();
406
407 // Handle everything else by appropriate substitution.
408 } else {
409 NamedDecl *ND = D->getFriendDecl();
410 assert(ND && "friend decl must be a decl or a type!");
411
Douglas Gregora735b202009-10-13 14:39:41 +0000412 // FIXME: We have a problem here, because the nested call to Visit(ND)
413 // will inject the thing that the friend references into the current
414 // owner, which is wrong.
John McCalle129d442009-12-17 23:21:11 +0000415 Decl *NewND;
416
417 // Hack to make this work almost well pending a rewrite.
Douglas Gregor63644fa2010-02-07 10:31:35 +0000418 if (ND->getDeclContext()->isRecord()) {
419 if (!ND->getDeclContext()->isDependentContext()) {
420 NewND = SemaRef.FindInstantiatedDecl(ND, TemplateArgs);
421 } else {
422 // FIXME: Hack to avoid crashing when incorrectly trying to instantiate
423 // templated friend declarations. This doesn't produce a correct AST;
424 // however this is sufficient for some AST analysis. The real solution
425 // must be put in place during the pending rewrite. See PR5848.
426 return 0;
427 }
428 } else if (D->wasSpecialization()) {
Douglas Gregor7557a132009-12-24 20:56:24 +0000429 // Totally egregious hack to work around PR5866
430 return 0;
431 } else
John McCalle129d442009-12-17 23:21:11 +0000432 NewND = Visit(ND);
John McCall02cace72009-08-28 07:59:38 +0000433 if (!NewND) return 0;
434
435 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000436 }
Mike Stump1eb44332009-09-09 15:08:12 +0000437
John McCall02cace72009-08-28 07:59:38 +0000438 FriendDecl *FD =
439 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
440 D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000441 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000442 Owner->addDecl(FD);
443 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000444}
445
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000446Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
447 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Douglas Gregorac7610d2009-06-22 20:57:11 +0000449 // The expression in a static assertion is not potentially evaluated.
450 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000451
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000452 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000453 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000454 if (InstantiatedAssertExpr.isInvalid())
455 return 0;
456
Douglas Gregor43d9d922009-08-08 01:41:12 +0000457 OwningExprResult Message(SemaRef, D->getMessage());
458 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000459 Decl *StaticAssert
460 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000461 move(InstantiatedAssertExpr),
462 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000463 return StaticAssert;
464}
465
466Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000467 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000468 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000469 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000470 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000471 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000472 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000473 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000474 Enum->startDefinition();
475
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000476 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000477
478 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000479 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
480 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000481 EC != ECEnd; ++EC) {
482 // The specified value for the enumerator.
483 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000484 if (Expr *UninstValue = EC->getInitExpr()) {
485 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000486 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000487 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000488
John McCallce3ff2b2009-08-25 22:02:44 +0000489 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000490 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000491
492 // Drop the initial value and continue.
493 bool isInvalid = false;
494 if (Value.isInvalid()) {
495 Value = SemaRef.Owned((Expr *)0);
496 isInvalid = true;
497 }
498
Mike Stump1eb44332009-09-09 15:08:12 +0000499 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000500 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
501 EC->getLocation(), EC->getIdentifier(),
502 move(Value));
503
504 if (isInvalid) {
505 if (EnumConst)
506 EnumConst->setInvalidDecl();
507 Enum->setInvalidDecl();
508 }
509
510 if (EnumConst) {
John McCall3b85ecf2010-01-23 22:37:59 +0000511 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000512 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000513 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000514 LastEnumConst = EnumConst;
515 }
516 }
Mike Stump1eb44332009-09-09 15:08:12 +0000517
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000518 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000519 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000520 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
521 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000522 &Enumerators[0], Enumerators.size(),
523 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000524
525 return Enum;
526}
527
Douglas Gregor6477b692009-03-25 15:04:13 +0000528Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
529 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
530 return 0;
531}
532
Douglas Gregored9c0f92009-10-29 00:04:11 +0000533namespace {
534 class SortDeclByLocation {
535 SourceManager &SourceMgr;
536
537 public:
538 explicit SortDeclByLocation(SourceManager &SourceMgr)
539 : SourceMgr(SourceMgr) { }
540
541 bool operator()(const Decl *X, const Decl *Y) const {
542 return SourceMgr.isBeforeInTranslationUnit(X->getLocation(),
543 Y->getLocation());
544 }
545 };
546}
547
John McCalle29ba202009-08-20 01:44:21 +0000548Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000549 // Create a local instantiation scope for this class template, which
550 // will contain the instantiations of the template parameters.
551 Sema::LocalInstantiationScope Scope(SemaRef);
John McCalle29ba202009-08-20 01:44:21 +0000552 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000553 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000554 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000555 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000556
557 CXXRecordDecl *Pattern = D->getTemplatedDecl();
558 CXXRecordDecl *RecordInst
559 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), Owner,
560 Pattern->getLocation(), Pattern->getIdentifier(),
Douglas Gregorf0510d42009-10-12 23:11:44 +0000561 Pattern->getTagKeywordLoc(), /*PrevDecl=*/ NULL,
562 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000563
564 ClassTemplateDecl *Inst
565 = ClassTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
566 D->getIdentifier(), InstParams, RecordInst, 0);
567 RecordInst->setDescribedClassTemplate(Inst);
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000568 if (D->getFriendObjectKind())
569 Inst->setObjectOfFriendDecl(true);
570 else
571 Inst->setAccess(D->getAccess());
John McCalle29ba202009-08-20 01:44:21 +0000572 Inst->setInstantiatedFromMemberTemplate(D);
Douglas Gregorf0510d42009-10-12 23:11:44 +0000573
574 // Trigger creation of the type for the instantiation.
575 SemaRef.Context.getTypeDeclType(RecordInst);
576
Douglas Gregor259571e2009-10-30 22:42:42 +0000577 // Finish handling of friends.
578 if (Inst->getFriendObjectKind()) {
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000579 return Inst;
Douglas Gregor259571e2009-10-30 22:42:42 +0000580 }
Douglas Gregore8c01bd2009-10-30 21:07:27 +0000581
John McCall46460a62010-01-20 21:53:11 +0000582 Inst->setAccess(D->getAccess());
John McCalle29ba202009-08-20 01:44:21 +0000583 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000584
585 // First, we sort the partial specializations by location, so
586 // that we instantiate them in the order they were declared.
587 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
588 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
589 P = D->getPartialSpecializations().begin(),
590 PEnd = D->getPartialSpecializations().end();
591 P != PEnd; ++P)
592 PartialSpecs.push_back(&*P);
593 std::sort(PartialSpecs.begin(), PartialSpecs.end(),
594 SortDeclByLocation(SemaRef.SourceMgr));
595
596 // Instantiate all of the partial specializations of this member class
597 // template.
598 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
599 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
600
John McCalle29ba202009-08-20 01:44:21 +0000601 return Inst;
602}
603
Douglas Gregord60e1052009-08-27 16:57:43 +0000604Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000605TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
606 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000607 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
608
609 // Lookup the already-instantiated declaration in the instantiation
610 // of the class template and return that.
611 DeclContext::lookup_result Found
612 = Owner->lookup(ClassTemplate->getDeclName());
613 if (Found.first == Found.second)
614 return 0;
615
616 ClassTemplateDecl *InstClassTemplate
617 = dyn_cast<ClassTemplateDecl>(*Found.first);
618 if (!InstClassTemplate)
619 return 0;
620
621 Decl *DCanon = D->getCanonicalDecl();
622 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
623 P = InstClassTemplate->getPartialSpecializations().begin(),
624 PEnd = InstClassTemplate->getPartialSpecializations().end();
625 P != PEnd; ++P) {
626 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
627 return &*P;
628 }
629
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000630 return 0;
631}
632
633Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000634TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor550d9b22009-10-31 17:21:17 +0000635 // Create a local instantiation scope for this function template, which
636 // will contain the instantiations of the template parameters and then get
637 // merged with the local instantiation scope for the function template
638 // itself.
639 Sema::LocalInstantiationScope Scope(SemaRef);
640
Douglas Gregord60e1052009-08-27 16:57:43 +0000641 TemplateParameterList *TempParams = D->getTemplateParameters();
642 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000643 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000644 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000645
Douglas Gregora735b202009-10-13 14:39:41 +0000646 FunctionDecl *Instantiated = 0;
647 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
648 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
649 InstParams));
650 else
651 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
652 D->getTemplatedDecl(),
653 InstParams));
654
655 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000656 return 0;
657
John McCall46460a62010-01-20 21:53:11 +0000658 Instantiated->setAccess(D->getAccess());
659
Mike Stump1eb44332009-09-09 15:08:12 +0000660 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000661 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000662 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000663 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000664 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000665 assert(InstTemplate &&
666 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCalle976ffe2009-12-14 23:19:40 +0000667
668 // Link the instantiation back to the pattern *unless* this is a
669 // non-definition friend declaration.
670 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
671 !(InstTemplate->getFriendObjectKind() &&
672 !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregora735b202009-10-13 14:39:41 +0000673 InstTemplate->setInstantiatedFromMemberTemplate(D);
674
675 // Add non-friends into the owner.
676 if (!InstTemplate->getFriendObjectKind())
677 Owner->addDecl(InstTemplate);
Douglas Gregord60e1052009-08-27 16:57:43 +0000678 return InstTemplate;
679}
680
Douglas Gregord475b8d2009-03-25 21:17:03 +0000681Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
682 CXXRecordDecl *PrevDecl = 0;
683 if (D->isInjectedClassName())
684 PrevDecl = cast<CXXRecordDecl>(Owner);
John McCall6c1c1b82009-12-15 22:29:06 +0000685 else if (D->getPreviousDeclaration()) {
686 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getPreviousDeclaration(),
687 TemplateArgs);
688 if (!Prev) return 0;
689 PrevDecl = cast<CXXRecordDecl>(Prev);
690 }
Douglas Gregord475b8d2009-03-25 21:17:03 +0000691
692 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000693 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000694 D->getLocation(), D->getIdentifier(),
695 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000696 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000697 // FIXME: Check against AS_none is an ugly hack to work around the issue that
698 // the tag decls introduced by friend class declarations don't have an access
699 // specifier. Remove once this area of the code gets sorted out.
700 if (D->getAccess() != AS_none)
701 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000702 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000703 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000704
John McCall02cace72009-08-28 07:59:38 +0000705 // If the original function was part of a friend declaration,
706 // inherit its namespace state.
707 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
708 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
709
Anders Carlssond8b285f2009-09-01 04:26:58 +0000710 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
711
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000712 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000713 return Record;
714}
715
John McCall02cace72009-08-28 07:59:38 +0000716/// Normal class members are of more specific types and therefore
717/// don't make it here. This function serves two purposes:
718/// 1) instantiating function templates
719/// 2) substituting friend declarations
720/// FIXME: preserve function definitions in case #2
Douglas Gregor7557a132009-12-24 20:56:24 +0000721Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregora735b202009-10-13 14:39:41 +0000722 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000723 // Check whether there is already a function template specialization for
724 // this declaration.
725 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
726 void *InsertPos = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000727 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000728 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000729 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000730 TemplateArgs.getInnermost().getFlatArgumentList(),
731 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000732 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000733
734 FunctionTemplateSpecializationInfo *Info
735 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000736 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000737
Douglas Gregor127102b2009-06-29 20:59:39 +0000738 // If we already have a function template specialization, return it.
739 if (Info)
740 return Info->Function;
741 }
Mike Stump1eb44332009-09-09 15:08:12 +0000742
Douglas Gregor79c22782010-01-16 20:21:20 +0000743 bool MergeWithParentScope = (TemplateParams != 0) ||
744 !(isa<Decl>(Owner) &&
745 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
746 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +0000747
Douglas Gregore53060f2009-06-25 22:08:12 +0000748 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000749 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000750 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000751 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000752
John McCall68b6b872010-02-06 01:50:47 +0000753 // If we're instantiating a local function declaration, put the result
754 // in the owner; otherwise we need to find the instantiated context.
755 DeclContext *DC;
756 if (D->getDeclContext()->isFunctionOrMethod())
757 DC = Owner;
758 else
759 DC = SemaRef.FindInstantiatedContext(D->getDeclContext(), TemplateArgs);
760
John McCall02cace72009-08-28 07:59:38 +0000761 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000762 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
John McCalla93c9342009-12-07 02:54:59 +0000763 D->getDeclName(), T, D->getTypeSourceInfo(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000764 D->getStorageClass(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000765 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000766 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000767
Douglas Gregore53060f2009-06-25 22:08:12 +0000768 // Attach the parameters
769 for (unsigned P = 0; P < Params.size(); ++P)
770 Params[P]->setOwningFunction(Function);
Douglas Gregor838db382010-02-11 01:19:42 +0000771 Function->setParams(Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000772
Douglas Gregora735b202009-10-13 14:39:41 +0000773 if (TemplateParams) {
774 // Our resulting instantiation is actually a function template, since we
775 // are substituting only the outer template parameters. For example, given
776 //
777 // template<typename T>
778 // struct X {
779 // template<typename U> friend void f(T, U);
780 // };
781 //
782 // X<int> x;
783 //
784 // We are instantiating the friend function template "f" within X<int>,
785 // which means substituting int for T, but leaving "f" as a friend function
786 // template.
787 // Build the function template itself.
788 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Owner,
789 Function->getLocation(),
790 Function->getDeclName(),
791 TemplateParams, Function);
792 Function->setDescribedFunctionTemplate(FunctionTemplate);
793 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregor66724ea2009-11-14 01:20:54 +0000794 } else if (FunctionTemplate) {
795 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +0000796 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +0000797 &TemplateArgs.getInnermost(),
798 InsertPos);
John McCall02cace72009-08-28 07:59:38 +0000799 }
Douglas Gregora735b202009-10-13 14:39:41 +0000800
Douglas Gregore53060f2009-06-25 22:08:12 +0000801 if (InitFunctionInstantiation(Function, D))
802 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000803
Douglas Gregore53060f2009-06-25 22:08:12 +0000804 bool Redeclaration = false;
805 bool OverloadableAttrRequired = false;
Douglas Gregora735b202009-10-13 14:39:41 +0000806
John McCall68263142009-11-18 22:49:29 +0000807 LookupResult Previous(SemaRef, Function->getDeclName(), SourceLocation(),
808 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
809
Douglas Gregora735b202009-10-13 14:39:41 +0000810 if (TemplateParams || !FunctionTemplate) {
811 // Look only into the namespace where the friend would be declared to
812 // find a previous declaration. This is the innermost enclosing namespace,
813 // as described in ActOnFriendFunctionDecl.
John McCall68263142009-11-18 22:49:29 +0000814 SemaRef.LookupQualifiedName(Previous, DC);
Douglas Gregora735b202009-10-13 14:39:41 +0000815
Douglas Gregora735b202009-10-13 14:39:41 +0000816 // In C++, the previous declaration we find might be a tag type
817 // (class or enum). In this case, the new declaration will hide the
818 // tag type. Note that this does does not apply if we're declaring a
819 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +0000820 if (Previous.isSingleTagDecl())
821 Previous.clear();
Douglas Gregora735b202009-10-13 14:39:41 +0000822 }
823
John McCall9f54ad42009-12-10 09:41:52 +0000824 SemaRef.CheckFunctionDeclaration(/*Scope*/ 0, Function, Previous,
825 false, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +0000826 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000827
Douglas Gregora735b202009-10-13 14:39:41 +0000828 // If the original function was part of a friend declaration,
829 // inherit its namespace state and add it to the owner.
830 NamedDecl *FromFriendD
831 = TemplateParams? cast<NamedDecl>(D->getDescribedFunctionTemplate()) : D;
832 if (FromFriendD->getFriendObjectKind()) {
833 NamedDecl *ToFriendD = 0;
John McCall68263142009-11-18 22:49:29 +0000834 NamedDecl *PrevDecl;
Douglas Gregora735b202009-10-13 14:39:41 +0000835 if (TemplateParams) {
836 ToFriendD = cast<NamedDecl>(FunctionTemplate);
837 PrevDecl = FunctionTemplate->getPreviousDeclaration();
838 } else {
839 ToFriendD = Function;
840 PrevDecl = Function->getPreviousDeclaration();
841 }
842 ToFriendD->setObjectOfFriendDecl(PrevDecl != NULL);
843 if (!Owner->isDependentContext() && !PrevDecl)
844 DC->makeDeclVisibleInContext(ToFriendD, /* Recoverable = */ false);
845
846 if (!TemplateParams)
847 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
848 }
849
Douglas Gregore53060f2009-06-25 22:08:12 +0000850 return Function;
851}
852
Douglas Gregord60e1052009-08-27 16:57:43 +0000853Decl *
854TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
855 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000856 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
857 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000858 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000859 // We are creating a function template specialization from a function
860 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000861 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000862 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000863 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000864 TemplateArgs.getInnermost().getFlatArgumentList(),
865 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000866 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000867
868 FunctionTemplateSpecializationInfo *Info
869 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000870 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000871
Douglas Gregor6b906862009-08-21 00:16:32 +0000872 // If we already have a function template specialization, return it.
873 if (Info)
874 return Info->Function;
875 }
876
Douglas Gregor79c22782010-01-16 20:21:20 +0000877 bool MergeWithParentScope = (TemplateParams != 0) ||
878 !(isa<Decl>(Owner) &&
879 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
880 Sema::LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000881
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000882 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000883 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000884 if (T.isNull())
885 return 0;
886
887 // Build the instantiated method declaration.
888 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000889 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000890
Douglas Gregordec06662009-08-21 18:42:58 +0000891 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000892 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000893 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
894 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
895 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000896 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
897 Constructor->getLocation(),
898 Name, T,
John McCalla93c9342009-12-07 02:54:59 +0000899 Constructor->getTypeSourceInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000900 Constructor->isExplicit(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000901 Constructor->isInlineSpecified(), false);
Douglas Gregor17e32f32009-08-21 22:43:28 +0000902 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
903 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
904 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
905 SemaRef.Context.getCanonicalType(ClassTy));
906 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
907 Destructor->getLocation(), Name,
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000908 T, Destructor->isInlineSpecified(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000909 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000910 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000911 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000912 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000913 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
914 ConvTy);
915 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
916 Conversion->getLocation(), Name,
John McCalla93c9342009-12-07 02:54:59 +0000917 T, Conversion->getTypeSourceInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000918 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000919 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000920 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000921 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
John McCalla93c9342009-12-07 02:54:59 +0000922 D->getDeclName(), T, D->getTypeSourceInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000923 D->isStatic(), D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +0000924 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000925
Douglas Gregord60e1052009-08-27 16:57:43 +0000926 if (TemplateParams) {
927 // Our resulting instantiation is actually a function template, since we
928 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000929 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000930 // template<typename T>
931 // struct X {
932 // template<typename U> void f(T, U);
933 // };
934 //
935 // X<int> x;
936 //
937 // We are instantiating the member template "f" within X<int>, which means
938 // substituting int for T, but leaving "f" as a member function template.
939 // Build the function template itself.
940 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
941 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000942 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000943 TemplateParams, Method);
944 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000945 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000946 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregor66724ea2009-11-14 01:20:54 +0000947 } else if (FunctionTemplate) {
948 // Record this function template specialization.
Douglas Gregor838db382010-02-11 01:19:42 +0000949 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor66724ea2009-11-14 01:20:54 +0000950 &TemplateArgs.getInnermost(),
951 InsertPos);
952 } else {
953 // Record that this is an instantiation of a member function.
Douglas Gregor2db32322009-10-07 23:56:10 +0000954 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor66724ea2009-11-14 01:20:54 +0000955 }
956
Mike Stump1eb44332009-09-09 15:08:12 +0000957 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000958 // out-of-line, the instantiation will have the same lexical
959 // context (which will be a namespace scope) as the template.
960 if (D->isOutOfLine())
961 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000962
Douglas Gregor5545e162009-03-24 00:38:23 +0000963 // Attach the parameters
964 for (unsigned P = 0; P < Params.size(); ++P)
965 Params[P]->setOwningFunction(Method);
Douglas Gregor838db382010-02-11 01:19:42 +0000966 Method->setParams(Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000967
968 if (InitMethodInstantiation(Method, D))
969 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000970
John McCall68263142009-11-18 22:49:29 +0000971 LookupResult Previous(SemaRef, Name, SourceLocation(),
972 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000973
Douglas Gregord60e1052009-08-27 16:57:43 +0000974 if (!FunctionTemplate || TemplateParams) {
John McCall68263142009-11-18 22:49:29 +0000975 SemaRef.LookupQualifiedName(Previous, Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000976
Douglas Gregordec06662009-08-21 18:42:58 +0000977 // In C++, the previous declaration we find might be a tag type
978 // (class or enum). In this case, the new declaration will hide the
979 // tag type. Note that this does does not apply if we're declaring a
980 // typedef (C++ [dcl.typedef]p4).
John McCall68263142009-11-18 22:49:29 +0000981 if (Previous.isSingleTagDecl())
982 Previous.clear();
Douglas Gregordec06662009-08-21 18:42:58 +0000983 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000984
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000985 bool Redeclaration = false;
986 bool OverloadableAttrRequired = false;
John McCall9f54ad42009-12-10 09:41:52 +0000987 SemaRef.CheckFunctionDeclaration(0, Method, Previous, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000988 /*FIXME:*/OverloadableAttrRequired);
989
Douglas Gregor4ba31362009-12-01 17:24:26 +0000990 if (D->isPure())
991 SemaRef.CheckPureMethod(Method, SourceRange());
992
John McCall46460a62010-01-20 21:53:11 +0000993 Method->setAccess(D->getAccess());
994
John McCall68263142009-11-18 22:49:29 +0000995 if (!FunctionTemplate && (!Method->isInvalidDecl() || Previous.empty()) &&
Douglas Gregora735b202009-10-13 14:39:41 +0000996 !Method->getFriendObjectKind())
Douglas Gregordec06662009-08-21 18:42:58 +0000997 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000998
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000999 return Method;
1000}
1001
Douglas Gregor615c5d42009-03-24 16:43:20 +00001002Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +00001003 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +00001004}
1005
Douglas Gregor03b2b072009-03-24 00:15:49 +00001006Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +00001007 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +00001008}
1009
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001010Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00001011 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +00001012}
1013
Douglas Gregor6477b692009-03-25 15:04:13 +00001014ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCall58e46772009-10-23 21:48:59 +00001015 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001016 TypeSourceInfo *DI = D->getTypeSourceInfo();
John McCall58e46772009-10-23 21:48:59 +00001017 if (DI) {
1018 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1019 D->getDeclName());
1020 if (DI) T = DI->getType();
1021 } else {
1022 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1023 D->getDeclName());
1024 DI = 0;
1025 }
1026
1027 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001028 return 0;
1029
John McCall58e46772009-10-23 21:48:59 +00001030 T = SemaRef.adjustParameterType(T);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001031
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001032 // Allocate the parameter
John McCall58e46772009-10-23 21:48:59 +00001033 ParmVarDecl *Param
John McCall7a9813c2010-01-22 00:28:27 +00001034 = ParmVarDecl::Create(SemaRef.Context,
1035 SemaRef.Context.getTranslationUnitDecl(),
1036 D->getLocation(),
John McCall58e46772009-10-23 21:48:59 +00001037 D->getIdentifier(), T, DI, D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001038
Anders Carlsson9351c172009-08-25 03:18:48 +00001039 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +00001040 if (D->hasUninstantiatedDefaultArg())
1041 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +00001042 else if (Expr *Arg = D->getDefaultArg())
1043 Param->setUninstantiatedDefaultArg(Arg);
1044
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001045 // Note: we don't try to instantiate function parameters until after
1046 // we've instantiated the function's type. Therefore, we don't have
1047 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +00001048 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +00001049 return Param;
1050}
1051
John McCalle29ba202009-08-20 01:44:21 +00001052Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1053 TemplateTypeParmDecl *D) {
1054 // TODO: don't always clone when decls are refcounted.
1055 const Type* T = D->getTypeForDecl();
1056 assert(T->isTemplateTypeParmType());
1057 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +00001058
John McCalle29ba202009-08-20 01:44:21 +00001059 TemplateTypeParmDecl *Inst =
1060 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor550d9b22009-10-31 17:21:17 +00001061 TTPT->getDepth() - 1, TTPT->getIndex(),
John McCalle29ba202009-08-20 01:44:21 +00001062 TTPT->getName(),
1063 D->wasDeclaredWithTypename(),
1064 D->isParameterPack());
1065
Douglas Gregor0f8716b2009-11-09 19:17:50 +00001066 if (D->hasDefaultArgument())
1067 Inst->setDefaultArgument(D->getDefaultArgumentInfo(), false);
John McCalle29ba202009-08-20 01:44:21 +00001068
Douglas Gregor550d9b22009-10-31 17:21:17 +00001069 // Introduce this template parameter's instantiation into the instantiation
1070 // scope.
1071 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
1072
John McCalle29ba202009-08-20 01:44:21 +00001073 return Inst;
1074}
1075
Douglas Gregor33642df2009-10-23 23:25:44 +00001076Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1077 NonTypeTemplateParmDecl *D) {
1078 // Substitute into the type of the non-type template parameter.
1079 QualType T;
John McCalla93c9342009-12-07 02:54:59 +00001080 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor33642df2009-10-23 23:25:44 +00001081 if (DI) {
1082 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
1083 D->getDeclName());
1084 if (DI) T = DI->getType();
1085 } else {
1086 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
1087 D->getDeclName());
1088 DI = 0;
1089 }
1090 if (T.isNull())
1091 return 0;
1092
1093 // Check that this type is acceptable for a non-type template parameter.
1094 bool Invalid = false;
1095 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
1096 if (T.isNull()) {
1097 T = SemaRef.Context.IntTy;
1098 Invalid = true;
1099 }
1100
1101 NonTypeTemplateParmDecl *Param
1102 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1103 D->getDepth() - 1, D->getPosition(),
1104 D->getIdentifier(), T, DI);
1105 if (Invalid)
1106 Param->setInvalidDecl();
1107
1108 Param->setDefaultArgument(D->getDefaultArgument());
Douglas Gregor550d9b22009-10-31 17:21:17 +00001109
1110 // Introduce this template parameter's instantiation into the instantiation
1111 // scope.
1112 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor33642df2009-10-23 23:25:44 +00001113 return Param;
1114}
1115
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001116Decl *
Douglas Gregor9106ef72009-11-11 16:58:32 +00001117TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
1118 TemplateTemplateParmDecl *D) {
1119 // Instantiate the template parameter list of the template template parameter.
1120 TemplateParameterList *TempParams = D->getTemplateParameters();
1121 TemplateParameterList *InstParams;
1122 {
1123 // Perform the actual substitution of template parameters within a new,
1124 // local instantiation scope.
1125 Sema::LocalInstantiationScope Scope(SemaRef);
1126 InstParams = SubstTemplateParams(TempParams);
1127 if (!InstParams)
1128 return NULL;
1129 }
1130
1131 // Build the template template parameter.
1132 TemplateTemplateParmDecl *Param
1133 = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1134 D->getDepth() - 1, D->getPosition(),
1135 D->getIdentifier(), InstParams);
1136 Param->setDefaultArgument(D->getDefaultArgument());
1137
1138 // Introduce this template parameter's instantiation into the instantiation
1139 // scope.
1140 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
1141
1142 return Param;
1143}
1144
Douglas Gregor48c32a72009-11-17 06:07:40 +00001145Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1146 // Using directives are never dependent, so they require no explicit
1147
1148 UsingDirectiveDecl *Inst
1149 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
1150 D->getNamespaceKeyLocation(),
1151 D->getQualifierRange(), D->getQualifier(),
1152 D->getIdentLocation(),
1153 D->getNominatedNamespace(),
1154 D->getCommonAncestor());
1155 Owner->addDecl(Inst);
1156 return Inst;
1157}
1158
John McCalled976492009-12-04 22:46:56 +00001159Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
1160 // The nested name specifier is non-dependent, so no transformation
1161 // is required.
1162
John McCall9f54ad42009-12-10 09:41:52 +00001163 // We only need to do redeclaration lookups if we're in a class
1164 // scope (in fact, it's not really even possible in non-class
1165 // scopes).
1166 bool CheckRedeclaration = Owner->isRecord();
1167
1168 LookupResult Prev(SemaRef, D->getDeclName(), D->getLocation(),
1169 Sema::LookupUsingDeclName, Sema::ForRedeclaration);
1170
John McCalled976492009-12-04 22:46:56 +00001171 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
1172 D->getLocation(),
1173 D->getNestedNameRange(),
1174 D->getUsingLocation(),
1175 D->getTargetNestedNameDecl(),
1176 D->getDeclName(),
1177 D->isTypeName());
1178
1179 CXXScopeSpec SS;
1180 SS.setScopeRep(D->getTargetNestedNameDecl());
1181 SS.setRange(D->getNestedNameRange());
John McCall9f54ad42009-12-10 09:41:52 +00001182
1183 if (CheckRedeclaration) {
1184 Prev.setHideTags(false);
1185 SemaRef.LookupQualifiedName(Prev, Owner);
1186
1187 // Check for invalid redeclarations.
1188 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLocation(),
1189 D->isTypeName(), SS,
1190 D->getLocation(), Prev))
1191 NewUD->setInvalidDecl();
1192
1193 }
1194
1195 if (!NewUD->isInvalidDecl() &&
1196 SemaRef.CheckUsingDeclQualifier(D->getUsingLocation(), SS,
John McCalled976492009-12-04 22:46:56 +00001197 D->getLocation()))
1198 NewUD->setInvalidDecl();
John McCall9f54ad42009-12-10 09:41:52 +00001199
John McCalled976492009-12-04 22:46:56 +00001200 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
1201 NewUD->setAccess(D->getAccess());
1202 Owner->addDecl(NewUD);
1203
John McCall9f54ad42009-12-10 09:41:52 +00001204 // Don't process the shadow decls for an invalid decl.
1205 if (NewUD->isInvalidDecl())
1206 return NewUD;
1207
John McCall323c3102009-12-22 22:26:37 +00001208 bool isFunctionScope = Owner->isFunctionOrMethod();
1209
John McCall9f54ad42009-12-10 09:41:52 +00001210 // Process the shadow decls.
1211 for (UsingDecl::shadow_iterator I = D->shadow_begin(), E = D->shadow_end();
1212 I != E; ++I) {
1213 UsingShadowDecl *Shadow = *I;
1214 NamedDecl *InstTarget =
1215 cast<NamedDecl>(SemaRef.FindInstantiatedDecl(Shadow->getTargetDecl(),
1216 TemplateArgs));
1217
1218 if (CheckRedeclaration &&
1219 SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev))
1220 continue;
1221
1222 UsingShadowDecl *InstShadow
1223 = SemaRef.BuildUsingShadowDecl(/*Scope*/ 0, NewUD, InstTarget);
1224 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCall323c3102009-12-22 22:26:37 +00001225
1226 if (isFunctionScope)
1227 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall9f54ad42009-12-10 09:41:52 +00001228 }
John McCalled976492009-12-04 22:46:56 +00001229
1230 return NewUD;
1231}
1232
1233Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall9f54ad42009-12-10 09:41:52 +00001234 // Ignore these; we handle them in bulk when processing the UsingDecl.
1235 return 0;
John McCalled976492009-12-04 22:46:56 +00001236}
1237
John McCall7ba107a2009-11-18 02:36:19 +00001238Decl * TemplateDeclInstantiator
1239 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +00001240 NestedNameSpecifier *NNS =
1241 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1242 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001243 TemplateArgs);
1244 if (!NNS)
1245 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001247 CXXScopeSpec SS;
1248 SS.setRange(D->getTargetNestedNameRange());
1249 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +00001250
1251 NamedDecl *UD =
John McCall9488ea12009-11-17 05:59:44 +00001252 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
John McCall7ba107a2009-11-18 02:36:19 +00001253 D->getUsingLoc(), SS, D->getLocation(),
1254 D->getDeclName(), 0,
1255 /*instantiation*/ true,
1256 /*typename*/ true, D->getTypenameLoc());
1257 if (UD)
John McCalled976492009-12-04 22:46:56 +00001258 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1259
John McCall7ba107a2009-11-18 02:36:19 +00001260 return UD;
1261}
1262
1263Decl * TemplateDeclInstantiator
1264 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1265 NestedNameSpecifier *NNS =
1266 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
1267 D->getTargetNestedNameRange(),
1268 TemplateArgs);
1269 if (!NNS)
1270 return 0;
1271
1272 CXXScopeSpec SS;
1273 SS.setRange(D->getTargetNestedNameRange());
1274 SS.setScopeRep(NNS);
1275
1276 NamedDecl *UD =
1277 SemaRef.BuildUsingDeclaration(/*Scope*/ 0, D->getAccess(),
1278 D->getUsingLoc(), SS, D->getLocation(),
1279 D->getDeclName(), 0,
1280 /*instantiation*/ true,
1281 /*typename*/ false, SourceLocation());
Anders Carlsson0d8df782009-08-29 19:37:28 +00001282 if (UD)
John McCalled976492009-12-04 22:46:56 +00001283 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
1284
Anders Carlsson0d8df782009-08-29 19:37:28 +00001285 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +00001286}
1287
John McCallce3ff2b2009-08-25 22:02:44 +00001288Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +00001289 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +00001290 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +00001291 return Instantiator.Visit(D);
1292}
1293
John McCalle29ba202009-08-20 01:44:21 +00001294/// \brief Instantiates a nested template parameter list in the current
1295/// instantiation context.
1296///
1297/// \param L The parameter list to instantiate
1298///
1299/// \returns NULL if there was an error
1300TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +00001301TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +00001302 // Get errors for all the parameters before bailing out.
1303 bool Invalid = false;
1304
1305 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001306 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +00001307 ParamVector Params;
1308 Params.reserve(N);
1309 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
1310 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +00001311 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +00001312 Params.push_back(D);
Douglas Gregor9148c3f2009-11-11 19:13:48 +00001313 Invalid = Invalid || !D || D->isInvalidDecl();
John McCalle29ba202009-08-20 01:44:21 +00001314 }
1315
1316 // Clean up if we had an error.
1317 if (Invalid) {
1318 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
1319 PI != PE; ++PI)
1320 if (*PI)
1321 (*PI)->Destroy(SemaRef.Context);
1322 return NULL;
1323 }
1324
1325 TemplateParameterList *InstL
1326 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1327 L->getLAngleLoc(), &Params.front(), N,
1328 L->getRAngleLoc());
1329 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001330}
John McCalle29ba202009-08-20 01:44:21 +00001331
Douglas Gregored9c0f92009-10-29 00:04:11 +00001332/// \brief Instantiate the declaration of a class template partial
1333/// specialization.
1334///
1335/// \param ClassTemplate the (instantiated) class template that is partially
1336// specialized by the instantiation of \p PartialSpec.
1337///
1338/// \param PartialSpec the (uninstantiated) class template partial
1339/// specialization that we are instantiating.
1340///
1341/// \returns true if there was an error, false otherwise.
1342bool
1343TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1344 ClassTemplateDecl *ClassTemplate,
1345 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor550d9b22009-10-31 17:21:17 +00001346 // Create a local instantiation scope for this class template partial
1347 // specialization, which will contain the instantiations of the template
1348 // parameters.
1349 Sema::LocalInstantiationScope Scope(SemaRef);
1350
Douglas Gregored9c0f92009-10-29 00:04:11 +00001351 // Substitute into the template parameters of the class template partial
1352 // specialization.
1353 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1354 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1355 if (!InstParams)
1356 return true;
1357
1358 // Substitute into the template arguments of the class template partial
1359 // specialization.
John McCall833ca992009-10-29 08:12:44 +00001360 const TemplateArgumentLoc *PartialSpecTemplateArgs
1361 = PartialSpec->getTemplateArgsAsWritten();
1362 unsigned N = PartialSpec->getNumTemplateArgsAsWritten();
1363
John McCalld5532b62009-11-23 01:53:49 +00001364 TemplateArgumentListInfo InstTemplateArgs; // no angle locations
John McCall833ca992009-10-29 08:12:44 +00001365 for (unsigned I = 0; I != N; ++I) {
John McCalld5532b62009-11-23 01:53:49 +00001366 TemplateArgumentLoc Loc;
1367 if (SemaRef.Subst(PartialSpecTemplateArgs[I], Loc, TemplateArgs))
Douglas Gregored9c0f92009-10-29 00:04:11 +00001368 return true;
John McCalld5532b62009-11-23 01:53:49 +00001369 InstTemplateArgs.addArgument(Loc);
Douglas Gregored9c0f92009-10-29 00:04:11 +00001370 }
1371
1372
1373 // Check that the template argument list is well-formed for this
1374 // class template.
1375 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1376 InstTemplateArgs.size());
1377 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1378 PartialSpec->getLocation(),
John McCalld5532b62009-11-23 01:53:49 +00001379 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001380 false,
1381 Converted))
1382 return true;
1383
1384 // Figure out where to insert this class template partial specialization
1385 // in the member template's set of class template partial specializations.
1386 llvm::FoldingSetNodeID ID;
1387 ClassTemplatePartialSpecializationDecl::Profile(ID,
1388 Converted.getFlatArguments(),
1389 Converted.flatSize(),
1390 SemaRef.Context);
1391 void *InsertPos = 0;
1392 ClassTemplateSpecializationDecl *PrevDecl
1393 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1394 InsertPos);
1395
1396 // Build the canonical type that describes the converted template
1397 // arguments of the class template partial specialization.
1398 QualType CanonType
1399 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1400 Converted.getFlatArguments(),
1401 Converted.flatSize());
1402
1403 // Build the fully-sugared type for this class template
1404 // specialization as the user wrote in the specialization
1405 // itself. This means that we'll pretty-print the type retrieved
1406 // from the specialization's declaration the way that the user
1407 // actually wrote the specialization, rather than formatting the
1408 // name based on the "canonical" representation used to store the
1409 // template arguments in the specialization.
1410 QualType WrittenTy
1411 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
John McCalld5532b62009-11-23 01:53:49 +00001412 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001413 CanonType);
1414
1415 if (PrevDecl) {
1416 // We've already seen a partial specialization with the same template
1417 // parameters and template arguments. This can happen, for example, when
1418 // substituting the outer template arguments ends up causing two
1419 // class template partial specializations of a member class template
1420 // to have identical forms, e.g.,
1421 //
1422 // template<typename T, typename U>
1423 // struct Outer {
1424 // template<typename X, typename Y> struct Inner;
1425 // template<typename Y> struct Inner<T, Y>;
1426 // template<typename Y> struct Inner<U, Y>;
1427 // };
1428 //
1429 // Outer<int, int> outer; // error: the partial specializations of Inner
1430 // // have the same signature.
1431 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1432 << WrittenTy;
1433 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1434 << SemaRef.Context.getTypeDeclType(PrevDecl);
1435 return true;
1436 }
1437
1438
1439 // Create the class template partial specialization declaration.
1440 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1441 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1442 PartialSpec->getLocation(),
1443 InstParams,
1444 ClassTemplate,
1445 Converted,
John McCalld5532b62009-11-23 01:53:49 +00001446 InstTemplateArgs,
Douglas Gregored9c0f92009-10-29 00:04:11 +00001447 0);
1448 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1449 InstPartialSpec->setTypeAsWritten(WrittenTy);
1450
1451 // Add this partial specialization to the set of class template partial
1452 // specializations.
1453 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1454 InsertPos);
1455 return false;
1456}
1457
John McCallce3ff2b2009-08-25 22:02:44 +00001458/// \brief Does substitution on the type of the given function, including
1459/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +00001460///
John McCallce3ff2b2009-08-25 22:02:44 +00001461/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +00001462///
1463/// \param Params the instantiated parameter declarations
1464
John McCallce3ff2b2009-08-25 22:02:44 +00001465/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +00001466/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +00001467QualType
John McCallce3ff2b2009-08-25 22:02:44 +00001468TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001469 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
1470 bool InvalidDecl = false;
1471
John McCallce3ff2b2009-08-25 22:02:44 +00001472 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +00001473 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001474 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001475 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001476 PEnd = D->param_end();
1477 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +00001478 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +00001479 if (PInst->getType()->isVoidType()) {
1480 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
1481 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001482 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001483 PInst->getType(),
1484 diag::err_abstract_type_in_decl,
1485 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +00001486 PInst->setInvalidDecl();
1487
1488 Params.push_back(PInst);
1489 ParamTys.push_back(PInst->getType());
1490
1491 if (PInst->isInvalidDecl())
1492 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001493 } else
Douglas Gregor5545e162009-03-24 00:38:23 +00001494 InvalidDecl = true;
1495 }
1496
1497 // FIXME: Deallocate dead declarations.
1498 if (InvalidDecl)
1499 return QualType();
1500
John McCall183700f2009-09-21 23:43:11 +00001501 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +00001502 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +00001503 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +00001504 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
1505 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +00001506 if (ResultType.isNull())
1507 return QualType();
1508
Jay Foadbeaaccd2009-05-21 09:52:38 +00001509 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001510 Proto->isVariadic(), Proto->getTypeQuals(),
1511 D->getLocation(), D->getDeclName());
1512}
1513
Mike Stump1eb44332009-09-09 15:08:12 +00001514/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001515/// declaration (New) from the corresponding fields of its template (Tmpl).
1516///
1517/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001518bool
1519TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001520 FunctionDecl *Tmpl) {
1521 if (Tmpl->isDeleted())
1522 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001523
Douglas Gregorcca9e962009-07-01 22:01:06 +00001524 // If we are performing substituting explicitly-specified template arguments
1525 // or deduced template arguments into a function template and we reach this
1526 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001527 // to keeping the new function template specialization. We therefore
1528 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001529 // into a template instantiation for this specific function template
1530 // specialization, which is not a SFINAE context, so that we diagnose any
1531 // further errors in the declaration itself.
1532 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1533 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1534 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1535 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001536 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001537 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001538 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001539 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001540 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001541 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1542 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
Douglas Gregorf35f8282009-11-11 21:54:23 +00001543 --SemaRef.NonInstantiationEntries;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001544 }
1545 }
Mike Stump1eb44332009-09-09 15:08:12 +00001546
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001547 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
1548 assert(Proto && "Function template without prototype?");
1549
1550 if (Proto->hasExceptionSpec() || Proto->hasAnyExceptionSpec() ||
1551 Proto->getNoReturnAttr()) {
1552 // The function has an exception specification or a "noreturn"
1553 // attribute. Substitute into each of the exception types.
1554 llvm::SmallVector<QualType, 4> Exceptions;
1555 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
1556 // FIXME: Poor location information!
1557 QualType T
1558 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
1559 New->getLocation(), New->getDeclName());
1560 if (T.isNull() ||
1561 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
1562 continue;
1563
1564 Exceptions.push_back(T);
1565 }
1566
1567 // Rebuild the function type
1568
1569 const FunctionProtoType *NewProto
1570 = New->getType()->getAs<FunctionProtoType>();
1571 assert(NewProto && "Template instantiation without function prototype?");
1572 New->setType(SemaRef.Context.getFunctionType(NewProto->getResultType(),
1573 NewProto->arg_type_begin(),
1574 NewProto->getNumArgs(),
1575 NewProto->isVariadic(),
1576 NewProto->getTypeQuals(),
1577 Proto->hasExceptionSpec(),
1578 Proto->hasAnyExceptionSpec(),
1579 Exceptions.size(),
1580 Exceptions.data(),
Douglas Gregorab8bbf42010-01-18 17:14:39 +00001581 Proto->getNoReturnAttr(),
1582 Proto->getCallConv()));
Douglas Gregor0ae7b3f2009-12-08 17:45:32 +00001583 }
1584
Douglas Gregore53060f2009-06-25 22:08:12 +00001585 return false;
1586}
1587
Douglas Gregor5545e162009-03-24 00:38:23 +00001588/// \brief Initializes common fields of an instantiated method
1589/// declaration (New) from the corresponding fields of its template
1590/// (Tmpl).
1591///
1592/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001593bool
1594TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001595 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001596 if (InitFunctionInstantiation(New, Tmpl))
1597 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001598
Douglas Gregor5545e162009-03-24 00:38:23 +00001599 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1600 New->setAccess(Tmpl->getAccess());
Fariborz Jahaniane7184df2009-12-03 18:44:40 +00001601 if (Tmpl->isVirtualAsWritten())
1602 Record->setMethodAsVirtual(New);
Douglas Gregor5545e162009-03-24 00:38:23 +00001603
1604 // FIXME: attributes
1605 // FIXME: New needs a pointer to Tmpl
1606 return false;
1607}
Douglas Gregora58861f2009-05-13 20:28:22 +00001608
1609/// \brief Instantiate the definition of the given function from its
1610/// template.
1611///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001612/// \param PointOfInstantiation the point at which the instantiation was
1613/// required. Note that this is not precisely a "point of instantiation"
1614/// for the function, but it's close.
1615///
Douglas Gregora58861f2009-05-13 20:28:22 +00001616/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001617/// function template specialization or member function of a class template
1618/// specialization.
1619///
1620/// \param Recursive if true, recursively instantiates any functions that
1621/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001622///
1623/// \param DefinitionRequired if true, then we are performing an explicit
1624/// instantiation where the body of the function is required. Complain if
1625/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001626void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001627 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001628 bool Recursive,
1629 bool DefinitionRequired) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001630 if (Function->isInvalidDecl())
1631 return;
1632
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001633 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +00001634
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001635 // Never instantiate an explicit specialization.
1636 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1637 return;
1638
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001639 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00001640 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001641 Stmt *Pattern = 0;
1642 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001643 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001644
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001645 if (!Pattern) {
1646 if (DefinitionRequired) {
1647 if (Function->getPrimaryTemplate())
1648 Diag(PointOfInstantiation,
1649 diag::err_explicit_instantiation_undefined_func_template)
1650 << Function->getPrimaryTemplate();
1651 else
1652 Diag(PointOfInstantiation,
1653 diag::err_explicit_instantiation_undefined_member)
1654 << 1 << Function->getDeclName() << Function->getDeclContext();
1655
1656 if (PatternDecl)
1657 Diag(PatternDecl->getLocation(),
1658 diag::note_explicit_instantiation_here);
1659 }
1660
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001661 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001662 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001663
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001664 // C++0x [temp.explicit]p9:
1665 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001666 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001667 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001668 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001669 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001670 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001671 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001672
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001673 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1674 if (Inst)
1675 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001676
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001677 // If we're performing recursive template instantiation, create our own
1678 // queue of pending implicit instantiations that we will instantiate later,
1679 // while we're still within our own instantiation context.
1680 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1681 if (Recursive)
1682 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001683
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001684 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1685
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001686 // Introduce a new scope where local variable instantiations will be
Douglas Gregor60406be2010-01-16 22:29:39 +00001687 // recorded, unless we're actually a member function within a local
1688 // class, in which case we need to merge our results with the parent
1689 // scope (of the enclosing function).
1690 bool MergeWithParentScope = false;
1691 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
1692 MergeWithParentScope = Rec->isLocalClass();
1693
1694 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump1eb44332009-09-09 15:08:12 +00001695
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001696 // Introduce the instantiated function parameters into the local
1697 // instantiation scope.
1698 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1699 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1700 Function->getParamDecl(I));
1701
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001702 // Enter the scope of this instantiation. We don't use
1703 // PushDeclContext because we don't have a scope.
1704 DeclContext *PreviousContext = CurContext;
1705 CurContext = Function;
1706
Mike Stump1eb44332009-09-09 15:08:12 +00001707 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001708 getTemplateInstantiationArgs(Function);
1709
1710 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001711 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001712 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1713 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1714 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001715 }
1716
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001717 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001718 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001719
Douglas Gregor52604ab2009-09-11 21:19:12 +00001720 if (Body.isInvalid())
1721 Function->setInvalidDecl();
1722
Mike Stump1eb44332009-09-09 15:08:12 +00001723 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001724 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001725
1726 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001727
1728 DeclGroupRef DG(Function);
1729 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001730
Douglas Gregor60406be2010-01-16 22:29:39 +00001731 // This class may have local implicit instantiations that need to be
1732 // instantiation within this scope.
1733 PerformPendingImplicitInstantiations(/*LocalOnly=*/true);
1734 Scope.Exit();
1735
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001736 if (Recursive) {
1737 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001738 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001739 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001740
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001741 // Restore the set of pending implicit instantiations.
1742 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1743 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001744}
1745
1746/// \brief Instantiate the definition of the given variable from its
1747/// template.
1748///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001749/// \param PointOfInstantiation the point at which the instantiation was
1750/// required. Note that this is not precisely a "point of instantiation"
1751/// for the function, but it's close.
1752///
1753/// \param Var the already-instantiated declaration of a static member
1754/// variable of a class template specialization.
1755///
1756/// \param Recursive if true, recursively instantiates any functions that
1757/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001758///
1759/// \param DefinitionRequired if true, then we are performing an explicit
1760/// instantiation where an out-of-line definition of the member variable
1761/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001762void Sema::InstantiateStaticDataMemberDefinition(
1763 SourceLocation PointOfInstantiation,
1764 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001765 bool Recursive,
1766 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001767 if (Var->isInvalidDecl())
1768 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001769
Douglas Gregor7caa6822009-07-24 20:34:43 +00001770 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001771 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00001772 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00001773 assert(Def->isStaticDataMember() && "Not a static data member?");
1774 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00001775
Douglas Gregor0d035142009-10-27 18:42:08 +00001776 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001777 // We did not find an out-of-line definition of this static data member,
1778 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001779 // instantiate this definition (or provide a specialization for it) in
1780 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001781 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00001782 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001783 Diag(PointOfInstantiation,
1784 diag::err_explicit_instantiation_undefined_member)
1785 << 2 << Var->getDeclName() << Var->getDeclContext();
1786 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
1787 }
1788
Douglas Gregor7caa6822009-07-24 20:34:43 +00001789 return;
1790 }
1791
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001792 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001793 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001794 return;
1795
1796 // C++0x [temp.explicit]p9:
1797 // Except for inline functions, other explicit instantiation declarations
1798 // have the effect of suppressing the implicit instantiation of the entity
1799 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001800 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001801 == TSK_ExplicitInstantiationDeclaration)
1802 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001803
Douglas Gregor7caa6822009-07-24 20:34:43 +00001804 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1805 if (Inst)
1806 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Douglas Gregor7caa6822009-07-24 20:34:43 +00001808 // If we're performing recursive template instantiation, create our own
1809 // queue of pending implicit instantiations that we will instantiate later,
1810 // while we're still within our own instantiation context.
1811 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1812 if (Recursive)
1813 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001814
Douglas Gregor7caa6822009-07-24 20:34:43 +00001815 // Enter the scope of this instantiation. We don't use
1816 // PushDeclContext because we don't have a scope.
1817 DeclContext *PreviousContext = CurContext;
1818 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00001819
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001820 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00001821 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001822 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00001823 CurContext = PreviousContext;
1824
1825 if (Var) {
Douglas Gregor583f33b2009-10-15 18:07:02 +00001826 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
1827 assert(MSInfo && "Missing member specialization information?");
1828 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
1829 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00001830 DeclGroupRef DG(Var);
1831 Consumer.HandleTopLevelDecl(DG);
1832 }
Mike Stump1eb44332009-09-09 15:08:12 +00001833
Douglas Gregor7caa6822009-07-24 20:34:43 +00001834 if (Recursive) {
1835 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001836 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001837 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Douglas Gregor7caa6822009-07-24 20:34:43 +00001839 // Restore the set of pending implicit instantiations.
1840 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001841 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001842}
Douglas Gregor815215d2009-05-27 05:35:12 +00001843
Anders Carlsson09025312009-08-29 05:16:22 +00001844void
1845Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
1846 const CXXConstructorDecl *Tmpl,
1847 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00001848
Anders Carlsson09025312009-08-29 05:16:22 +00001849 llvm::SmallVector<MemInitTy*, 4> NewInits;
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001850 bool AnyErrors = false;
1851
Anders Carlsson09025312009-08-29 05:16:22 +00001852 // Instantiate all the initializers.
1853 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00001854 InitsEnd = Tmpl->init_end();
1855 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00001856 CXXBaseOrMemberInitializer *Init = *Inits;
1857
1858 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001859 llvm::SmallVector<SourceLocation, 4> CommaLocs;
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Anders Carlsson09025312009-08-29 05:16:22 +00001861 // Instantiate all the arguments.
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001862 Expr *InitE = Init->getInit();
1863 if (!InitE) {
1864 // Nothing to instantiate;
1865 } else if (ParenListExpr *ParenList = dyn_cast<ParenListExpr>(InitE)) {
1866 if (InstantiateInitializationArguments(*this, ParenList->getExprs(),
1867 ParenList->getNumExprs(),
1868 TemplateArgs, CommaLocs,
1869 NewArgs)) {
1870 AnyErrors = true;
1871 continue;
1872 }
1873 } else {
1874 OwningExprResult InitArg = SubstExpr(InitE, TemplateArgs);
1875 if (InitArg.isInvalid()) {
1876 AnyErrors = true;
1877 continue;
1878 }
1879
1880 NewArgs.push_back(InitArg.release());
Anders Carlsson09025312009-08-29 05:16:22 +00001881 }
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001882
Anders Carlsson09025312009-08-29 05:16:22 +00001883 MemInitResult NewInit;
Anders Carlsson09025312009-08-29 05:16:22 +00001884 if (Init->isBaseInitializer()) {
John McCalla93c9342009-12-07 02:54:59 +00001885 TypeSourceInfo *BaseTInfo = SubstType(Init->getBaseClassInfo(),
Douglas Gregor802ab452009-12-02 22:36:29 +00001886 TemplateArgs,
1887 Init->getSourceLocation(),
1888 New->getDeclName());
John McCalla93c9342009-12-07 02:54:59 +00001889 if (!BaseTInfo) {
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001890 AnyErrors = true;
Douglas Gregor802ab452009-12-02 22:36:29 +00001891 New->setInvalidDecl();
1892 continue;
1893 }
1894
John McCalla93c9342009-12-07 02:54:59 +00001895 NewInit = BuildBaseInitializer(BaseTInfo->getType(), BaseTInfo,
Mike Stump1eb44332009-09-09 15:08:12 +00001896 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001897 NewArgs.size(),
Douglas Gregor802ab452009-12-02 22:36:29 +00001898 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00001899 Init->getRParenLoc(),
1900 New->getParent());
1901 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001902 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00001903
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001904 // Is this an anonymous union?
1905 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregore95b4092009-09-16 18:34:49 +00001906 Member = cast<FieldDecl>(FindInstantiatedDecl(UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001907 else
Douglas Gregore95b4092009-09-16 18:34:49 +00001908 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMember(),
1909 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00001910
1911 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001912 NewArgs.size(),
1913 Init->getSourceLocation(),
Douglas Gregor802ab452009-12-02 22:36:29 +00001914 Init->getLParenLoc(),
Anders Carlsson09025312009-08-29 05:16:22 +00001915 Init->getRParenLoc());
1916 }
1917
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001918 if (NewInit.isInvalid()) {
1919 AnyErrors = true;
Anders Carlsson09025312009-08-29 05:16:22 +00001920 New->setInvalidDecl();
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001921 } else {
Anders Carlsson09025312009-08-29 05:16:22 +00001922 // FIXME: It would be nice if ASTOwningVector had a release function.
1923 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00001924
Anders Carlsson09025312009-08-29 05:16:22 +00001925 NewInits.push_back((MemInitTy *)NewInit.get());
1926 }
1927 }
Mike Stump1eb44332009-09-09 15:08:12 +00001928
Anders Carlsson09025312009-08-29 05:16:22 +00001929 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001930 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00001931 /*FIXME: ColonLoc */
1932 SourceLocation(),
Douglas Gregor9db7dbb2010-01-31 09:12:51 +00001933 NewInits.data(), NewInits.size(),
1934 AnyErrors);
Anders Carlsson09025312009-08-29 05:16:22 +00001935}
1936
John McCall52a575a2009-08-29 08:11:13 +00001937// TODO: this could be templated if the various decl types used the
1938// same method name.
1939static bool isInstantiationOf(ClassTemplateDecl *Pattern,
1940 ClassTemplateDecl *Instance) {
1941 Pattern = Pattern->getCanonicalDecl();
1942
1943 do {
1944 Instance = Instance->getCanonicalDecl();
1945 if (Pattern == Instance) return true;
1946 Instance = Instance->getInstantiatedFromMemberTemplate();
1947 } while (Instance);
1948
1949 return false;
1950}
1951
Douglas Gregor0d696532009-09-28 06:34:35 +00001952static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
1953 FunctionTemplateDecl *Instance) {
1954 Pattern = Pattern->getCanonicalDecl();
1955
1956 do {
1957 Instance = Instance->getCanonicalDecl();
1958 if (Pattern == Instance) return true;
1959 Instance = Instance->getInstantiatedFromMemberTemplate();
1960 } while (Instance);
1961
1962 return false;
1963}
1964
Douglas Gregored9c0f92009-10-29 00:04:11 +00001965static bool
1966isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
1967 ClassTemplatePartialSpecializationDecl *Instance) {
1968 Pattern
1969 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
1970 do {
1971 Instance = cast<ClassTemplatePartialSpecializationDecl>(
1972 Instance->getCanonicalDecl());
1973 if (Pattern == Instance)
1974 return true;
1975 Instance = Instance->getInstantiatedFromMember();
1976 } while (Instance);
1977
1978 return false;
1979}
1980
John McCall52a575a2009-08-29 08:11:13 +00001981static bool isInstantiationOf(CXXRecordDecl *Pattern,
1982 CXXRecordDecl *Instance) {
1983 Pattern = Pattern->getCanonicalDecl();
1984
1985 do {
1986 Instance = Instance->getCanonicalDecl();
1987 if (Pattern == Instance) return true;
1988 Instance = Instance->getInstantiatedFromMemberClass();
1989 } while (Instance);
1990
1991 return false;
1992}
1993
1994static bool isInstantiationOf(FunctionDecl *Pattern,
1995 FunctionDecl *Instance) {
1996 Pattern = Pattern->getCanonicalDecl();
1997
1998 do {
1999 Instance = Instance->getCanonicalDecl();
2000 if (Pattern == Instance) return true;
2001 Instance = Instance->getInstantiatedFromMemberFunction();
2002 } while (Instance);
2003
2004 return false;
2005}
2006
2007static bool isInstantiationOf(EnumDecl *Pattern,
2008 EnumDecl *Instance) {
2009 Pattern = Pattern->getCanonicalDecl();
2010
2011 do {
2012 Instance = Instance->getCanonicalDecl();
2013 if (Pattern == Instance) return true;
2014 Instance = Instance->getInstantiatedFromMemberEnum();
2015 } while (Instance);
2016
2017 return false;
2018}
2019
John McCalled976492009-12-04 22:46:56 +00002020static bool isInstantiationOf(UsingShadowDecl *Pattern,
2021 UsingShadowDecl *Instance,
2022 ASTContext &C) {
2023 return C.getInstantiatedFromUsingShadowDecl(Instance) == Pattern;
2024}
2025
2026static bool isInstantiationOf(UsingDecl *Pattern,
2027 UsingDecl *Instance,
2028 ASTContext &C) {
2029 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
2030}
2031
John McCall7ba107a2009-11-18 02:36:19 +00002032static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
2033 UsingDecl *Instance,
2034 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002035 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
John McCall7ba107a2009-11-18 02:36:19 +00002036}
2037
2038static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson0d8df782009-08-29 19:37:28 +00002039 UsingDecl *Instance,
2040 ASTContext &C) {
John McCalled976492009-12-04 22:46:56 +00002041 return C.getInstantiatedFromUsingDecl(Instance) == Pattern;
Anders Carlsson0d8df782009-08-29 19:37:28 +00002042}
2043
John McCall52a575a2009-08-29 08:11:13 +00002044static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
2045 VarDecl *Instance) {
2046 assert(Instance->isStaticDataMember());
2047
2048 Pattern = Pattern->getCanonicalDecl();
2049
2050 do {
2051 Instance = Instance->getCanonicalDecl();
2052 if (Pattern == Instance) return true;
2053 Instance = Instance->getInstantiatedFromStaticDataMember();
2054 } while (Instance);
2055
2056 return false;
2057}
2058
John McCalled976492009-12-04 22:46:56 +00002059// Other is the prospective instantiation
2060// D is the prospective pattern
Douglas Gregor815215d2009-05-27 05:35:12 +00002061static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002062 if (D->getKind() != Other->getKind()) {
John McCall7ba107a2009-11-18 02:36:19 +00002063 if (UnresolvedUsingTypenameDecl *UUD
2064 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
2065 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2066 return isInstantiationOf(UUD, UD, Ctx);
2067 }
2068 }
2069
2070 if (UnresolvedUsingValueDecl *UUD
2071 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00002072 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
2073 return isInstantiationOf(UUD, UD, Ctx);
2074 }
2075 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002076
Anders Carlsson0d8df782009-08-29 19:37:28 +00002077 return false;
2078 }
Mike Stump1eb44332009-09-09 15:08:12 +00002079
John McCall52a575a2009-08-29 08:11:13 +00002080 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
2081 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002082
John McCall52a575a2009-08-29 08:11:13 +00002083 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
2084 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00002085
John McCall52a575a2009-08-29 08:11:13 +00002086 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
2087 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00002088
Douglas Gregor7caa6822009-07-24 20:34:43 +00002089 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00002090 if (Var->isStaticDataMember())
2091 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
2092
2093 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
2094 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00002095
Douglas Gregor0d696532009-09-28 06:34:35 +00002096 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
2097 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
2098
Douglas Gregored9c0f92009-10-29 00:04:11 +00002099 if (ClassTemplatePartialSpecializationDecl *PartialSpec
2100 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
2101 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
2102 PartialSpec);
2103
Anders Carlssond8b285f2009-09-01 04:26:58 +00002104 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
2105 if (!Field->getDeclName()) {
2106 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00002107 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00002108 cast<FieldDecl>(D);
2109 }
2110 }
Mike Stump1eb44332009-09-09 15:08:12 +00002111
John McCalled976492009-12-04 22:46:56 +00002112 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
2113 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
2114
2115 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
2116 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
2117
Douglas Gregor815215d2009-05-27 05:35:12 +00002118 return D->getDeclName() && isa<NamedDecl>(Other) &&
2119 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
2120}
2121
2122template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00002123static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00002124 NamedDecl *D,
2125 ForwardIterator first,
2126 ForwardIterator last) {
2127 for (; first != last; ++first)
2128 if (isInstantiationOf(Ctx, D, *first))
2129 return cast<NamedDecl>(*first);
2130
2131 return 0;
2132}
2133
John McCall02cace72009-08-28 07:59:38 +00002134/// \brief Finds the instantiation of the given declaration context
2135/// within the current instantiation.
2136///
2137/// \returns NULL if there was an error
Douglas Gregore95b4092009-09-16 18:34:49 +00002138DeclContext *Sema::FindInstantiatedContext(DeclContext* DC,
2139 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00002140 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00002141 Decl* ID = FindInstantiatedDecl(D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00002142 return cast_or_null<DeclContext>(ID);
2143 } else return DC;
2144}
2145
Douglas Gregored961e72009-05-27 17:54:46 +00002146/// \brief Find the instantiation of the given declaration within the
2147/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00002148///
2149/// This routine is intended to be used when \p D is a declaration
2150/// referenced from within a template, that needs to mapped into the
2151/// corresponding declaration within an instantiation. For example,
2152/// given:
2153///
2154/// \code
2155/// template<typename T>
2156/// struct X {
2157/// enum Kind {
2158/// KnownValue = sizeof(T)
2159/// };
2160///
2161/// bool getKind() const { return KnownValue; }
2162/// };
2163///
2164/// template struct X<int>;
2165/// \endcode
2166///
2167/// In the instantiation of X<int>::getKind(), we need to map the
2168/// EnumConstantDecl for KnownValue (which refers to
2169/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00002170/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
2171/// this mapping from within the instantiation of X<int>.
Douglas Gregore95b4092009-09-16 18:34:49 +00002172NamedDecl *Sema::FindInstantiatedDecl(NamedDecl *D,
2173 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor815215d2009-05-27 05:35:12 +00002174 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor550d9b22009-10-31 17:21:17 +00002175 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregor6d3e6272010-02-05 19:54:12 +00002176 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregor550d9b22009-10-31 17:21:17 +00002177 ParentDC->isFunctionOrMethod()) {
Douglas Gregor2bba76b2009-05-27 17:07:49 +00002178 // D is a local of some kind. Look into the map of local
2179 // declarations to their instantiations.
2180 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
2181 }
Douglas Gregor815215d2009-05-27 05:35:12 +00002182
Douglas Gregore95b4092009-09-16 18:34:49 +00002183 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
2184 if (!Record->isDependentContext())
2185 return D;
2186
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002187 // If the RecordDecl is actually the injected-class-name or a
2188 // "templated" declaration for a class template, class template
2189 // partial specialization, or a member class of a class template,
2190 // substitute into the injected-class-name of the class template
2191 // or partial specialization to find the new DeclContext.
Douglas Gregore95b4092009-09-16 18:34:49 +00002192 QualType T;
2193 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
2194
2195 if (ClassTemplate) {
2196 T = ClassTemplate->getInjectedClassNameType(Context);
2197 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
2198 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
2199 T = Context.getTypeDeclType(Record);
2200 ClassTemplate = PartialSpec->getSpecializedTemplate();
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002201 }
Douglas Gregore95b4092009-09-16 18:34:49 +00002202
2203 if (!T.isNull()) {
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002204 // Substitute into the injected-class-name to get the type
2205 // corresponding to the instantiation we want, which may also be
2206 // the current instantiation (if we're in a template
2207 // definition). This substitution should never fail, since we
2208 // know we can instantiate the injected-class-name or we
2209 // wouldn't have gotten to the injected-class-name!
2210
2211 // FIXME: Can we use the CurrentInstantiationScope to avoid this
2212 // extra instantiation in the common case?
Douglas Gregore95b4092009-09-16 18:34:49 +00002213 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
2214 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
2215
2216 if (!T->isDependentType()) {
2217 assert(T->isRecordType() && "Instantiation must produce a record type");
2218 return T->getAs<RecordType>()->getDecl();
2219 }
2220
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002221 // We are performing "partial" template instantiation to create
2222 // the member declarations for the members of a class template
2223 // specialization. Therefore, D is actually referring to something
2224 // in the current instantiation. Look through the current
2225 // context, which contains actual instantiations, to find the
2226 // instantiation of the "current instantiation" that D refers
2227 // to.
2228 bool SawNonDependentContext = false;
Mike Stump1eb44332009-09-09 15:08:12 +00002229 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00002230 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002231 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002232 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00002233 if (isInstantiationOf(ClassTemplate,
2234 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00002235 return Spec;
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002236
2237 if (!DC->isDependentContext())
2238 SawNonDependentContext = true;
John McCall52a575a2009-08-29 08:11:13 +00002239 }
2240
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002241 // We're performing "instantiation" of a member of the current
2242 // instantiation while we are type-checking the
2243 // definition. Compute the declaration context and return that.
2244 assert(!SawNonDependentContext &&
2245 "No dependent context while instantiating record");
2246 DeclContext *DC = computeDeclContext(T);
2247 assert(DC &&
John McCall52a575a2009-08-29 08:11:13 +00002248 "Unable to find declaration for the current instantiation");
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002249 return cast<CXXRecordDecl>(DC);
John McCall52a575a2009-08-29 08:11:13 +00002250 }
Douglas Gregor8b013bd2010-02-05 22:40:03 +00002251
Douglas Gregore95b4092009-09-16 18:34:49 +00002252 // Fall through to deal with other dependent record types (e.g.,
2253 // anonymous unions in class templates).
2254 }
John McCall52a575a2009-08-29 08:11:13 +00002255
Douglas Gregore95b4092009-09-16 18:34:49 +00002256 if (!ParentDC->isDependentContext())
2257 return D;
2258
2259 ParentDC = FindInstantiatedContext(ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00002260 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00002261 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00002262
Douglas Gregor815215d2009-05-27 05:35:12 +00002263 if (ParentDC != D->getDeclContext()) {
2264 // We performed some kind of instantiation in the parent context,
2265 // so now we need to look into the instantiated parent context to
2266 // find the instantiation of the declaration D.
2267 NamedDecl *Result = 0;
2268 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002269 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00002270 Result = findInstantiationOf(Context, D, Found.first, Found.second);
2271 } else {
2272 // Since we don't have a name for the entity we're looking for,
2273 // our only option is to walk through all of the declarations to
2274 // find that name. This will occur in a few cases:
2275 //
2276 // - anonymous struct/union within a template
2277 // - unnamed class/struct/union/enum within a template
2278 //
2279 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00002280 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002281 ParentDC->decls_begin(),
2282 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00002283 }
Mike Stump1eb44332009-09-09 15:08:12 +00002284
John McCall9f54ad42009-12-10 09:41:52 +00002285 // UsingShadowDecls can instantiate to nothing because of using hiding.
2286 assert((Result || isa<UsingShadowDecl>(D))
2287 && "Unable to find instantiation of declaration!");
2288
Douglas Gregor815215d2009-05-27 05:35:12 +00002289 D = Result;
2290 }
2291
Douglas Gregor815215d2009-05-27 05:35:12 +00002292 return D;
2293}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002294
Mike Stump1eb44332009-09-09 15:08:12 +00002295/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002296/// instantiations we have seen until this point.
Douglas Gregor60406be2010-01-16 22:29:39 +00002297void Sema::PerformPendingImplicitInstantiations(bool LocalOnly) {
2298 while (!PendingLocalImplicitInstantiations.empty() ||
2299 (!LocalOnly && !PendingImplicitInstantiations.empty())) {
2300 PendingImplicitInstantiation Inst;
2301
2302 if (PendingLocalImplicitInstantiations.empty()) {
2303 Inst = PendingImplicitInstantiations.front();
2304 PendingImplicitInstantiations.pop_front();
2305 } else {
2306 Inst = PendingLocalImplicitInstantiations.front();
2307 PendingLocalImplicitInstantiations.pop_front();
2308 }
Mike Stump1eb44332009-09-09 15:08:12 +00002309
Douglas Gregor7caa6822009-07-24 20:34:43 +00002310 // Instantiate function definitions
2311 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002312 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002313 Function->getLocation(), *this,
2314 Context.getSourceManager(),
2315 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002316
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002317 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00002318 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00002319 continue;
2320 }
Mike Stump1eb44332009-09-09 15:08:12 +00002321
Douglas Gregor7caa6822009-07-24 20:34:43 +00002322 // Instantiate static data member definitions.
2323 VarDecl *Var = cast<VarDecl>(Inst.first);
2324 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002325
Chandler Carruth291b4412010-02-13 10:17:50 +00002326 // Don't try to instantiate declarations if the most recent redeclaration
2327 // is invalid.
2328 if (Var->getMostRecentDeclaration()->isInvalidDecl())
2329 continue;
2330
2331 // Check if the most recent declaration has changed the specialization kind
2332 // and removed the need for implicit instantiation.
2333 switch (Var->getMostRecentDeclaration()->getTemplateSpecializationKind()) {
2334 case TSK_Undeclared:
2335 assert(false && "Cannot instantitiate an undeclared specialization.");
2336 case TSK_ExplicitInstantiationDeclaration:
2337 case TSK_ExplicitInstantiationDefinition:
2338 case TSK_ExplicitSpecialization:
2339 continue; // No longer need implicit instantiation.
2340 case TSK_ImplicitInstantiation:
2341 break;
2342 }
2343
Mike Stump1eb44332009-09-09 15:08:12 +00002344 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00002345 Var->getLocation(), *this,
2346 Context.getSourceManager(),
2347 "instantiating static data member "
2348 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00002349
Douglas Gregor7caa6822009-07-24 20:34:43 +00002350 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002351 }
2352}