blob: 50b0fb81d725433784cb6074bfc901755fd786a0 [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"
Douglas Gregoraba43bb2009-05-26 20:50:29 +000013#include "clang/AST/ASTConsumer.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000014#include "clang/AST/ASTContext.h"
15#include "clang/AST/DeclTemplate.h"
16#include "clang/AST/DeclVisitor.h"
17#include "clang/AST/Expr.h"
Anders Carlssonc17fb7b2009-09-01 05:12:24 +000018#include "clang/Basic/PrettyStackTrace.h"
Douglas Gregor83ddad32009-08-26 21:14:46 +000019#include "clang/Lex/Preprocessor.h"
Douglas Gregor8dbc2692009-03-17 21:15:40 +000020#include "llvm/Support/Compiler.h"
21
22using namespace clang;
23
24namespace {
Mike Stump1eb44332009-09-09 15:08:12 +000025 class VISIBILITY_HIDDEN TemplateDeclInstantiator
Chris Lattnerb28317a2009-03-28 19:18:32 +000026 : public DeclVisitor<TemplateDeclInstantiator, Decl *> {
Douglas Gregor8dbc2692009-03-17 21:15:40 +000027 Sema &SemaRef;
28 DeclContext *Owner;
Douglas Gregord6350ae2009-08-28 20:31:08 +000029 const MultiLevelTemplateArgumentList &TemplateArgs;
Mike Stump1eb44332009-09-09 15:08:12 +000030
Douglas Gregor8dbc2692009-03-17 21:15:40 +000031 public:
32 typedef Sema::OwningExprResult OwningExprResult;
33
34 TemplateDeclInstantiator(Sema &SemaRef, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +000035 const MultiLevelTemplateArgumentList &TemplateArgs)
Douglas Gregor7e063902009-05-11 23:53:27 +000036 : SemaRef(SemaRef), Owner(Owner), TemplateArgs(TemplateArgs) { }
Mike Stump1eb44332009-09-09 15:08:12 +000037
Mike Stump390b4cc2009-05-16 07:39:55 +000038 // FIXME: Once we get closer to completion, replace these manually-written
39 // declarations with automatically-generated ones from
40 // clang/AST/DeclNodes.def.
Douglas Gregor4f722be2009-03-25 15:45:12 +000041 Decl *VisitTranslationUnitDecl(TranslationUnitDecl *D);
42 Decl *VisitNamespaceDecl(NamespaceDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000043 Decl *VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000044 Decl *VisitVarDecl(VarDecl *D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000045 Decl *VisitFieldDecl(FieldDecl *D);
46 Decl *VisitStaticAssertDecl(StaticAssertDecl *D);
47 Decl *VisitEnumDecl(EnumDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000048 Decl *VisitEnumConstantDecl(EnumConstantDecl *D);
John McCall02cace72009-08-28 07:59:38 +000049 Decl *VisitFriendDecl(FriendDecl *D);
Douglas Gregora735b202009-10-13 14:39:41 +000050 Decl *VisitFunctionDecl(FunctionDecl *D,
51 TemplateParameterList *TemplateParams = 0);
Douglas Gregord475b8d2009-03-25 21:17:03 +000052 Decl *VisitCXXRecordDecl(CXXRecordDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000053 Decl *VisitCXXMethodDecl(CXXMethodDecl *D,
54 TemplateParameterList *TemplateParams = 0);
Douglas Gregor615c5d42009-03-24 16:43:20 +000055 Decl *VisitCXXConstructorDecl(CXXConstructorDecl *D);
Douglas Gregor03b2b072009-03-24 00:15:49 +000056 Decl *VisitCXXDestructorDecl(CXXDestructorDecl *D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +000057 Decl *VisitCXXConversionDecl(CXXConversionDecl *D);
Douglas Gregor6477b692009-03-25 15:04:13 +000058 ParmVarDecl *VisitParmVarDecl(ParmVarDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000059 Decl *VisitClassTemplateDecl(ClassTemplateDecl *D);
Douglas Gregor7974c3b2009-10-07 17:21:34 +000060 Decl *VisitClassTemplatePartialSpecializationDecl(
61 ClassTemplatePartialSpecializationDecl *D);
Douglas Gregord60e1052009-08-27 16:57:43 +000062 Decl *VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
John McCalle29ba202009-08-20 01:44:21 +000063 Decl *VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Douglas Gregor33642df2009-10-23 23:25:44 +000064 Decl *VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
Anders Carlsson0dde18e2009-08-28 15:18:15 +000065 Decl *VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D);
Mike Stump1eb44332009-09-09 15:08:12 +000066
Douglas Gregor8dbc2692009-03-17 21:15:40 +000067 // Base case. FIXME: Remove once we can instantiate everything.
Mike Stump1eb44332009-09-09 15:08:12 +000068 Decl *VisitDecl(Decl *) {
Douglas Gregor3d7a12a2009-03-25 23:32:15 +000069 assert(false && "Template instantiation of unknown declaration kind!");
Douglas Gregor8dbc2692009-03-17 21:15:40 +000070 return 0;
71 }
Douglas Gregor5545e162009-03-24 00:38:23 +000072
John McCallfd810b12009-08-14 02:03:10 +000073 const LangOptions &getLangOptions() {
74 return SemaRef.getLangOptions();
75 }
76
Douglas Gregor5545e162009-03-24 00:38:23 +000077 // Helper functions for instantiating methods.
John McCallce3ff2b2009-08-25 22:02:44 +000078 QualType SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +000079 llvm::SmallVectorImpl<ParmVarDecl *> &Params);
Douglas Gregore53060f2009-06-25 22:08:12 +000080 bool InitFunctionInstantiation(FunctionDecl *New, FunctionDecl *Tmpl);
Douglas Gregor5545e162009-03-24 00:38:23 +000081 bool InitMethodInstantiation(CXXMethodDecl *New, CXXMethodDecl *Tmpl);
John McCalle29ba202009-08-20 01:44:21 +000082
83 TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +000084 SubstTemplateParams(TemplateParameterList *List);
Douglas Gregored9c0f92009-10-29 00:04:11 +000085
86 bool InstantiateClassTemplatePartialSpecialization(
87 ClassTemplateDecl *ClassTemplate,
88 ClassTemplatePartialSpecializationDecl *PartialSpec);
Douglas Gregor8dbc2692009-03-17 21:15:40 +000089 };
90}
91
Douglas Gregor4f722be2009-03-25 15:45:12 +000092Decl *
93TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
94 assert(false && "Translation units cannot be instantiated");
95 return D;
96}
97
98Decl *
99TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
100 assert(false && "Namespaces cannot be instantiated");
101 return D;
102}
103
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000104Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
105 bool Invalid = false;
John McCallba6a9bd2009-10-24 08:00:42 +0000106 DeclaratorInfo *DI = D->getTypeDeclaratorInfo();
107 if (DI->getType()->isDependentType()) {
108 DI = SemaRef.SubstType(DI, TemplateArgs,
109 D->getLocation(), D->getDeclName());
110 if (!DI) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000111 Invalid = true;
John McCallba6a9bd2009-10-24 08:00:42 +0000112 DI = SemaRef.Context.getTrivialDeclaratorInfo(SemaRef.Context.IntTy);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000113 }
114 }
Mike Stump1eb44332009-09-09 15:08:12 +0000115
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000116 // Create the new typedef
117 TypedefDecl *Typedef
118 = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocation(),
John McCallba6a9bd2009-10-24 08:00:42 +0000119 D->getIdentifier(), DI);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000120 if (Invalid)
121 Typedef->setInvalidDecl();
122
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000123 Owner->addDecl(Typedef);
Mike Stump1eb44332009-09-09 15:08:12 +0000124
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000125 return Typedef;
126}
127
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000128Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
John McCallce3ff2b2009-08-25 22:02:44 +0000129 // Do substitution on the type of the declaration
John McCall0a5fa062009-10-21 02:39:02 +0000130 DeclaratorInfo *DI = SemaRef.SubstType(D->getDeclaratorInfo(),
131 TemplateArgs,
132 D->getTypeSpecStartLoc(),
133 D->getDeclName());
134 if (!DI)
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000135 return 0;
136
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +0000137 // Build the instantiated declaration
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000138 VarDecl *Var = VarDecl::Create(SemaRef.Context, Owner,
139 D->getLocation(), D->getIdentifier(),
John McCall0a5fa062009-10-21 02:39:02 +0000140 DI->getType(), DI,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +0000141 D->getStorageClass());
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000142 Var->setThreadSpecified(D->isThreadSpecified());
143 Var->setCXXDirectInitializer(D->hasCXXDirectInitializer());
144 Var->setDeclaredInCondition(D->isDeclaredInCondition());
Mike Stump1eb44332009-09-09 15:08:12 +0000145
146 // If we are instantiating a static data member defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000147 // out-of-line, the instantiation will have the same lexical
148 // context (which will be a namespace scope) as the template.
149 if (D->isOutOfLine())
150 Var->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000151
Mike Stump390b4cc2009-05-16 07:39:55 +0000152 // FIXME: In theory, we could have a previous declaration for variables that
153 // are not static data members.
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000154 bool Redeclaration = false;
Chris Lattnereaaebc72009-04-25 08:06:05 +0000155 SemaRef.CheckVariableDeclaration(Var, 0, Redeclaration);
Mike Stump1eb44332009-09-09 15:08:12 +0000156
Douglas Gregor7caa6822009-07-24 20:34:43 +0000157 if (D->isOutOfLine()) {
158 D->getLexicalDeclContext()->addDecl(Var);
159 Owner->makeDeclVisibleInContext(Var);
160 } else {
161 Owner->addDecl(Var);
162 }
Mike Stump1eb44332009-09-09 15:08:12 +0000163
Douglas Gregor251b4ff2009-10-08 07:24:58 +0000164 // Link instantiations of static data members back to the template from
165 // which they were instantiated.
166 if (Var->isStaticDataMember())
167 SemaRef.Context.setInstantiatedFromStaticDataMember(Var, D,
168 TSK_ImplicitInstantiation);
169
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000170 if (D->getInit()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000171 OwningExprResult Init
John McCallce3ff2b2009-08-25 22:02:44 +0000172 = SemaRef.SubstExpr(D->getInit(), TemplateArgs);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000173 if (Init.isInvalid())
174 Var->setInvalidDecl();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000175 else if (ParenListExpr *PLE = dyn_cast<ParenListExpr>((Expr *)Init.get())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000176 // FIXME: We're faking all of the comma locations, which is suboptimal.
Douglas Gregor83ddad32009-08-26 21:14:46 +0000177 // Do we even need these comma locations?
178 llvm::SmallVector<SourceLocation, 4> FakeCommaLocs;
179 if (PLE->getNumExprs() > 0) {
180 FakeCommaLocs.reserve(PLE->getNumExprs() - 1);
181 for (unsigned I = 0, N = PLE->getNumExprs() - 1; I != N; ++I) {
182 Expr *E = PLE->getExpr(I)->Retain();
183 FakeCommaLocs.push_back(
184 SemaRef.PP.getLocForEndOfToken(E->getLocEnd()));
185 }
Douglas Gregore9f8eb62009-08-26 23:26:04 +0000186 PLE->getExpr(PLE->getNumExprs() - 1)->Retain();
Douglas Gregor83ddad32009-08-26 21:14:46 +0000187 }
Mike Stump1eb44332009-09-09 15:08:12 +0000188
Douglas Gregor83ddad32009-08-26 21:14:46 +0000189 // Add the direct initializer to the declaration.
190 SemaRef.AddCXXDirectInitializerToDecl(Sema::DeclPtrTy::make(Var),
Mike Stump1eb44332009-09-09 15:08:12 +0000191 PLE->getLParenLoc(),
Douglas Gregor83ddad32009-08-26 21:14:46 +0000192 Sema::MultiExprArg(SemaRef,
193 (void**)PLE->getExprs(),
194 PLE->getNumExprs()),
195 FakeCommaLocs.data(),
196 PLE->getRParenLoc());
Mike Stump1eb44332009-09-09 15:08:12 +0000197
Douglas Gregor83ddad32009-08-26 21:14:46 +0000198 // When Init is destroyed, it will destroy the instantiated ParenListExpr;
199 // we've explicitly retained all of its subexpressions already.
200 } else
Chris Lattnerb28317a2009-03-28 19:18:32 +0000201 SemaRef.AddInitializerToDecl(Sema::DeclPtrTy::make(Var), move(Init),
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000202 D->hasCXXDirectInitializer());
Douglas Gregor65b90052009-07-27 17:43:39 +0000203 } else if (!Var->isStaticDataMember() || Var->isOutOfLine())
204 SemaRef.ActOnUninitializedDecl(Sema::DeclPtrTy::make(Var), false);
Douglas Gregor3d7a12a2009-03-25 23:32:15 +0000205
206 return Var;
207}
208
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000209Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
210 bool Invalid = false;
John McCall07fb6be2009-10-22 23:33:21 +0000211 DeclaratorInfo *DI = D->getDeclaratorInfo();
212 if (DI->getType()->isDependentType()) {
213 DI = SemaRef.SubstType(DI, TemplateArgs,
214 D->getLocation(), D->getDeclName());
215 if (!DI) {
216 DI = D->getDeclaratorInfo();
217 Invalid = true;
218 } else if (DI->getType()->isFunctionType()) {
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000219 // C++ [temp.arg.type]p3:
220 // If a declaration acquires a function type through a type
221 // dependent on a template-parameter and this causes a
222 // declaration that does not use the syntactic form of a
223 // function declarator to have function type, the program is
224 // ill-formed.
225 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall07fb6be2009-10-22 23:33:21 +0000226 << DI->getType();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000227 Invalid = true;
228 }
229 }
230
231 Expr *BitWidth = D->getBitWidth();
232 if (Invalid)
233 BitWidth = 0;
234 else if (BitWidth) {
Douglas Gregorac7610d2009-06-22 20:57:11 +0000235 // The bit-width expression is not potentially evaluated.
236 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000237
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000238 OwningExprResult InstantiatedBitWidth
John McCallce3ff2b2009-08-25 22:02:44 +0000239 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000240 if (InstantiatedBitWidth.isInvalid()) {
241 Invalid = true;
242 BitWidth = 0;
243 } else
Anders Carlssone9146f22009-05-01 19:49:17 +0000244 BitWidth = InstantiatedBitWidth.takeAs<Expr>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000245 }
246
John McCall07fb6be2009-10-22 23:33:21 +0000247 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
248 DI->getType(), DI,
Mike Stump1eb44332009-09-09 15:08:12 +0000249 cast<RecordDecl>(Owner),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000250 D->getLocation(),
251 D->isMutable(),
252 BitWidth,
Steve Naroffea218b82009-07-14 14:58:18 +0000253 D->getTypeSpecStartLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000254 D->getAccess(),
255 0);
Douglas Gregor663b5a02009-10-14 20:14:33 +0000256 if (!Field) {
257 cast<Decl>(Owner)->setInvalidDecl();
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000258 return 0;
Douglas Gregor663b5a02009-10-14 20:14:33 +0000259 }
Mike Stump1eb44332009-09-09 15:08:12 +0000260
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000261 if (Invalid)
262 Field->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000263
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000264 if (!Field->getDeclName()) {
265 // Keep track of where this decl came from.
266 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000267 }
Mike Stump1eb44332009-09-09 15:08:12 +0000268
Anders Carlssonf4b5f5c2009-09-02 19:17:55 +0000269 Field->setImplicit(D->isImplicit());
270 Owner->addDecl(Field);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000271
272 return Field;
273}
274
John McCall02cace72009-08-28 07:59:38 +0000275Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
276 FriendDecl::FriendUnion FU;
277
278 // Handle friend type expressions by simply substituting template
279 // parameters into the pattern type.
280 if (Type *Ty = D->getFriendType()) {
281 QualType T = SemaRef.SubstType(QualType(Ty,0), TemplateArgs,
282 D->getLocation(), DeclarationName());
283 if (T.isNull()) return 0;
284
285 assert(getLangOptions().CPlusPlus0x || T->isRecordType());
286 FU = T.getTypePtr();
287
288 // Handle everything else by appropriate substitution.
289 } else {
290 NamedDecl *ND = D->getFriendDecl();
291 assert(ND && "friend decl must be a decl or a type!");
292
Douglas Gregora735b202009-10-13 14:39:41 +0000293 // FIXME: We have a problem here, because the nested call to Visit(ND)
294 // will inject the thing that the friend references into the current
295 // owner, which is wrong.
John McCall02cace72009-08-28 07:59:38 +0000296 Decl *NewND = Visit(ND);
297 if (!NewND) return 0;
298
299 FU = cast<NamedDecl>(NewND);
John McCallfd810b12009-08-14 02:03:10 +0000300 }
Mike Stump1eb44332009-09-09 15:08:12 +0000301
John McCall02cace72009-08-28 07:59:38 +0000302 FriendDecl *FD =
303 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(), FU,
304 D->getFriendLoc());
John McCall5fee1102009-08-29 03:50:18 +0000305 FD->setAccess(AS_public);
John McCall02cace72009-08-28 07:59:38 +0000306 Owner->addDecl(FD);
307 return FD;
John McCallfd810b12009-08-14 02:03:10 +0000308}
309
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000310Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
311 Expr *AssertExpr = D->getAssertExpr();
Mike Stump1eb44332009-09-09 15:08:12 +0000312
Douglas Gregorac7610d2009-06-22 20:57:11 +0000313 // The expression in a static assertion is not potentially evaluated.
314 EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000315
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000316 OwningExprResult InstantiatedAssertExpr
John McCallce3ff2b2009-08-25 22:02:44 +0000317 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000318 if (InstantiatedAssertExpr.isInvalid())
319 return 0;
320
Douglas Gregor43d9d922009-08-08 01:41:12 +0000321 OwningExprResult Message(SemaRef, D->getMessage());
322 D->getMessage()->Retain();
Mike Stump1eb44332009-09-09 15:08:12 +0000323 Decl *StaticAssert
324 = SemaRef.ActOnStaticAssertDeclaration(D->getLocation(),
Chris Lattnerb28317a2009-03-28 19:18:32 +0000325 move(InstantiatedAssertExpr),
326 move(Message)).getAs<Decl>();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000327 return StaticAssert;
328}
329
330Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000331 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner,
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000332 D->getLocation(), D->getIdentifier(),
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000333 D->getTagKeywordLoc(),
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000334 /*PrevDecl=*/0);
Douglas Gregor8dbc3c62009-05-27 17:20:35 +0000335 Enum->setInstantiationOfMemberEnum(D);
Douglas Gregor06c0fec2009-03-25 22:00:53 +0000336 Enum->setAccess(D->getAccess());
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000337 Owner->addDecl(Enum);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000338 Enum->startDefinition();
339
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000340 llvm::SmallVector<Sema::DeclPtrTy, 4> Enumerators;
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000341
342 EnumConstantDecl *LastEnumConst = 0;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000343 for (EnumDecl::enumerator_iterator EC = D->enumerator_begin(),
344 ECEnd = D->enumerator_end();
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000345 EC != ECEnd; ++EC) {
346 // The specified value for the enumerator.
347 OwningExprResult Value = SemaRef.Owned((Expr *)0);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000348 if (Expr *UninstValue = EC->getInitExpr()) {
349 // The enumerator's value expression is not potentially evaluated.
Mike Stump1eb44332009-09-09 15:08:12 +0000350 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Douglas Gregorac7610d2009-06-22 20:57:11 +0000351 Action::Unevaluated);
Mike Stump1eb44332009-09-09 15:08:12 +0000352
John McCallce3ff2b2009-08-25 22:02:44 +0000353 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregorac7610d2009-06-22 20:57:11 +0000354 }
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000355
356 // Drop the initial value and continue.
357 bool isInvalid = false;
358 if (Value.isInvalid()) {
359 Value = SemaRef.Owned((Expr *)0);
360 isInvalid = true;
361 }
362
Mike Stump1eb44332009-09-09 15:08:12 +0000363 EnumConstantDecl *EnumConst
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000364 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
365 EC->getLocation(), EC->getIdentifier(),
366 move(Value));
367
368 if (isInvalid) {
369 if (EnumConst)
370 EnumConst->setInvalidDecl();
371 Enum->setInvalidDecl();
372 }
373
374 if (EnumConst) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000375 Enum->addDecl(EnumConst);
Chris Lattnerb28317a2009-03-28 19:18:32 +0000376 Enumerators.push_back(Sema::DeclPtrTy::make(EnumConst));
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000377 LastEnumConst = EnumConst;
378 }
379 }
Mike Stump1eb44332009-09-09 15:08:12 +0000380
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000381 // FIXME: Fixup LBraceLoc and RBraceLoc
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000382 // FIXME: Empty Scope and AttributeList (required to handle attribute packed).
Mike Stumpc6e35aa2009-05-16 07:06:02 +0000383 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(), SourceLocation(),
384 Sema::DeclPtrTy::make(Enum),
Edward O'Callaghanfee13812009-08-08 14:36:57 +0000385 &Enumerators[0], Enumerators.size(),
386 0, 0);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000387
388 return Enum;
389}
390
Douglas Gregor6477b692009-03-25 15:04:13 +0000391Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
392 assert(false && "EnumConstantDecls can only occur within EnumDecls.");
393 return 0;
394}
395
Douglas Gregored9c0f92009-10-29 00:04:11 +0000396namespace {
397 class SortDeclByLocation {
398 SourceManager &SourceMgr;
399
400 public:
401 explicit SortDeclByLocation(SourceManager &SourceMgr)
402 : SourceMgr(SourceMgr) { }
403
404 bool operator()(const Decl *X, const Decl *Y) const {
405 return SourceMgr.isBeforeInTranslationUnit(X->getLocation(),
406 Y->getLocation());
407 }
408 };
409}
410
John McCalle29ba202009-08-20 01:44:21 +0000411Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
412 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCallce3ff2b2009-08-25 22:02:44 +0000413 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000414 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000415 return NULL;
John McCalle29ba202009-08-20 01:44:21 +0000416
417 CXXRecordDecl *Pattern = D->getTemplatedDecl();
418 CXXRecordDecl *RecordInst
419 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), Owner,
420 Pattern->getLocation(), Pattern->getIdentifier(),
Douglas Gregorf0510d42009-10-12 23:11:44 +0000421 Pattern->getTagKeywordLoc(), /*PrevDecl=*/ NULL,
422 /*DelayTypeCreation=*/true);
John McCalle29ba202009-08-20 01:44:21 +0000423
424 ClassTemplateDecl *Inst
425 = ClassTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
426 D->getIdentifier(), InstParams, RecordInst, 0);
427 RecordInst->setDescribedClassTemplate(Inst);
428 Inst->setAccess(D->getAccess());
429 Inst->setInstantiatedFromMemberTemplate(D);
Douglas Gregorf0510d42009-10-12 23:11:44 +0000430
431 // Trigger creation of the type for the instantiation.
432 SemaRef.Context.getTypeDeclType(RecordInst);
433
John McCalle29ba202009-08-20 01:44:21 +0000434 Owner->addDecl(Inst);
Douglas Gregored9c0f92009-10-29 00:04:11 +0000435
436 // First, we sort the partial specializations by location, so
437 // that we instantiate them in the order they were declared.
438 llvm::SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
439 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
440 P = D->getPartialSpecializations().begin(),
441 PEnd = D->getPartialSpecializations().end();
442 P != PEnd; ++P)
443 PartialSpecs.push_back(&*P);
444 std::sort(PartialSpecs.begin(), PartialSpecs.end(),
445 SortDeclByLocation(SemaRef.SourceMgr));
446
447 // Instantiate all of the partial specializations of this member class
448 // template.
449 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
450 InstantiateClassTemplatePartialSpecialization(Inst, PartialSpecs[I]);
451
John McCalle29ba202009-08-20 01:44:21 +0000452 return Inst;
453}
454
Douglas Gregord60e1052009-08-27 16:57:43 +0000455Decl *
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000456TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
457 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregored9c0f92009-10-29 00:04:11 +0000458 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
459
460 // Lookup the already-instantiated declaration in the instantiation
461 // of the class template and return that.
462 DeclContext::lookup_result Found
463 = Owner->lookup(ClassTemplate->getDeclName());
464 if (Found.first == Found.second)
465 return 0;
466
467 ClassTemplateDecl *InstClassTemplate
468 = dyn_cast<ClassTemplateDecl>(*Found.first);
469 if (!InstClassTemplate)
470 return 0;
471
472 Decl *DCanon = D->getCanonicalDecl();
473 for (llvm::FoldingSet<ClassTemplatePartialSpecializationDecl>::iterator
474 P = InstClassTemplate->getPartialSpecializations().begin(),
475 PEnd = InstClassTemplate->getPartialSpecializations().end();
476 P != PEnd; ++P) {
477 if (P->getInstantiatedFromMember()->getCanonicalDecl() == DCanon)
478 return &*P;
479 }
480
Douglas Gregor7974c3b2009-10-07 17:21:34 +0000481 return 0;
482}
483
484Decl *
Douglas Gregord60e1052009-08-27 16:57:43 +0000485TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregord0e3daf2009-09-04 22:48:11 +0000486 // FIXME: Dig out the out-of-line definition of this function template?
Mike Stump1eb44332009-09-09 15:08:12 +0000487
Douglas Gregord60e1052009-08-27 16:57:43 +0000488 TemplateParameterList *TempParams = D->getTemplateParameters();
489 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump1eb44332009-09-09 15:08:12 +0000490 if (!InstParams)
Douglas Gregord60e1052009-08-27 16:57:43 +0000491 return NULL;
Douglas Gregored9c0f92009-10-29 00:04:11 +0000492
Douglas Gregora735b202009-10-13 14:39:41 +0000493 FunctionDecl *Instantiated = 0;
494 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
495 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
496 InstParams));
497 else
498 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
499 D->getTemplatedDecl(),
500 InstParams));
501
502 if (!Instantiated)
Douglas Gregord60e1052009-08-27 16:57:43 +0000503 return 0;
504
Mike Stump1eb44332009-09-09 15:08:12 +0000505 // Link the instantiated function template declaration to the function
Douglas Gregord60e1052009-08-27 16:57:43 +0000506 // template from which it was instantiated.
Douglas Gregor37d681852009-10-12 22:27:17 +0000507 FunctionTemplateDecl *InstTemplate
Douglas Gregora735b202009-10-13 14:39:41 +0000508 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregor37d681852009-10-12 22:27:17 +0000509 InstTemplate->setAccess(D->getAccess());
Douglas Gregora735b202009-10-13 14:39:41 +0000510 assert(InstTemplate &&
511 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
512 if (!InstTemplate->getInstantiatedFromMemberTemplate())
513 InstTemplate->setInstantiatedFromMemberTemplate(D);
514
515 // Add non-friends into the owner.
516 if (!InstTemplate->getFriendObjectKind())
517 Owner->addDecl(InstTemplate);
Douglas Gregord60e1052009-08-27 16:57:43 +0000518 return InstTemplate;
519}
520
Douglas Gregord475b8d2009-03-25 21:17:03 +0000521Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
522 CXXRecordDecl *PrevDecl = 0;
523 if (D->isInjectedClassName())
524 PrevDecl = cast<CXXRecordDecl>(Owner);
525
526 CXXRecordDecl *Record
Mike Stump1eb44332009-09-09 15:08:12 +0000527 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000528 D->getLocation(), D->getIdentifier(),
529 D->getTagKeywordLoc(), PrevDecl);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000530 Record->setImplicit(D->isImplicit());
Eli Friedmaneaba1af2009-08-27 19:11:42 +0000531 // FIXME: Check against AS_none is an ugly hack to work around the issue that
532 // the tag decls introduced by friend class declarations don't have an access
533 // specifier. Remove once this area of the code gets sorted out.
534 if (D->getAccess() != AS_none)
535 Record->setAccess(D->getAccess());
Douglas Gregord475b8d2009-03-25 21:17:03 +0000536 if (!D->isInjectedClassName())
Douglas Gregorf6b11852009-10-08 15:14:33 +0000537 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000538
John McCall02cace72009-08-28 07:59:38 +0000539 // If the original function was part of a friend declaration,
540 // inherit its namespace state.
541 if (Decl::FriendObjectKind FOK = D->getFriendObjectKind())
542 Record->setObjectOfFriendDecl(FOK == Decl::FOK_Declared);
543
Anders Carlssond8b285f2009-09-01 04:26:58 +0000544 Record->setAnonymousStructOrUnion(D->isAnonymousStructOrUnion());
545
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000546 Owner->addDecl(Record);
Douglas Gregord475b8d2009-03-25 21:17:03 +0000547 return Record;
548}
549
John McCall02cace72009-08-28 07:59:38 +0000550/// Normal class members are of more specific types and therefore
551/// don't make it here. This function serves two purposes:
552/// 1) instantiating function templates
553/// 2) substituting friend declarations
554/// FIXME: preserve function definitions in case #2
Douglas Gregora735b202009-10-13 14:39:41 +0000555 Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
556 TemplateParameterList *TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000557 // Check whether there is already a function template specialization for
558 // this declaration.
559 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
560 void *InsertPos = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000561 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000562 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000563 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000564 TemplateArgs.getInnermost().getFlatArgumentList(),
565 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor828e2262009-07-29 16:09:57 +0000566 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000567
568 FunctionTemplateSpecializationInfo *Info
569 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor127102b2009-06-29 20:59:39 +0000570 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Douglas Gregor127102b2009-06-29 20:59:39 +0000572 // If we already have a function template specialization, return it.
573 if (Info)
574 return Info->Function;
575 }
Mike Stump1eb44332009-09-09 15:08:12 +0000576
Douglas Gregore53060f2009-06-25 22:08:12 +0000577 Sema::LocalInstantiationScope Scope(SemaRef);
Mike Stump1eb44332009-09-09 15:08:12 +0000578
Douglas Gregore53060f2009-06-25 22:08:12 +0000579 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000580 QualType T = SubstFunctionType(D, Params);
Douglas Gregore53060f2009-06-25 22:08:12 +0000581 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000582 return 0;
John McCallfd810b12009-08-14 02:03:10 +0000583
Douglas Gregore53060f2009-06-25 22:08:12 +0000584 // Build the instantiated method declaration.
Douglas Gregore95b4092009-09-16 18:34:49 +0000585 DeclContext *DC = SemaRef.FindInstantiatedContext(D->getDeclContext(),
586 TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +0000587 FunctionDecl *Function =
Mike Stump1eb44332009-09-09 15:08:12 +0000588 FunctionDecl::Create(SemaRef.Context, DC, D->getLocation(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000589 D->getDeclName(), T, D->getDeclaratorInfo(),
590 D->getStorageClass(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000591 D->isInlineSpecified(), D->hasWrittenPrototype());
John McCall02cace72009-08-28 07:59:38 +0000592 Function->setLexicalDeclContext(Owner);
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Douglas Gregore53060f2009-06-25 22:08:12 +0000594 // Attach the parameters
595 for (unsigned P = 0; P < Params.size(); ++P)
596 Params[P]->setOwningFunction(Function);
597 Function->setParams(SemaRef.Context, Params.data(), Params.size());
John McCall02cace72009-08-28 07:59:38 +0000598
Douglas Gregora735b202009-10-13 14:39:41 +0000599 if (TemplateParams) {
600 // Our resulting instantiation is actually a function template, since we
601 // are substituting only the outer template parameters. For example, given
602 //
603 // template<typename T>
604 // struct X {
605 // template<typename U> friend void f(T, U);
606 // };
607 //
608 // X<int> x;
609 //
610 // We are instantiating the friend function template "f" within X<int>,
611 // which means substituting int for T, but leaving "f" as a friend function
612 // template.
613 // Build the function template itself.
614 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Owner,
615 Function->getLocation(),
616 Function->getDeclName(),
617 TemplateParams, Function);
618 Function->setDescribedFunctionTemplate(FunctionTemplate);
619 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
John McCall02cace72009-08-28 07:59:38 +0000620 }
Douglas Gregora735b202009-10-13 14:39:41 +0000621
Douglas Gregore53060f2009-06-25 22:08:12 +0000622 if (InitFunctionInstantiation(Function, D))
623 Function->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000624
Douglas Gregore53060f2009-06-25 22:08:12 +0000625 bool Redeclaration = false;
626 bool OverloadableAttrRequired = false;
Douglas Gregora735b202009-10-13 14:39:41 +0000627
Douglas Gregore53060f2009-06-25 22:08:12 +0000628 NamedDecl *PrevDecl = 0;
Douglas Gregora735b202009-10-13 14:39:41 +0000629 if (TemplateParams || !FunctionTemplate) {
630 // Look only into the namespace where the friend would be declared to
631 // find a previous declaration. This is the innermost enclosing namespace,
632 // as described in ActOnFriendFunctionDecl.
633 Sema::LookupResult R;
634 SemaRef.LookupQualifiedName(R, DC, Function->getDeclName(),
635 Sema::LookupOrdinaryName, true);
636
637 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
638
639 // In C++, the previous declaration we find might be a tag type
640 // (class or enum). In this case, the new declaration will hide the
641 // tag type. Note that this does does not apply if we're declaring a
642 // typedef (C++ [dcl.typedef]p4).
643 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
644 PrevDecl = 0;
645 }
646
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000647 SemaRef.CheckFunctionDeclaration(Function, PrevDecl, false, Redeclaration,
Douglas Gregore53060f2009-06-25 22:08:12 +0000648 /*FIXME:*/OverloadableAttrRequired);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000649
Douglas Gregora735b202009-10-13 14:39:41 +0000650 // If the original function was part of a friend declaration,
651 // inherit its namespace state and add it to the owner.
652 NamedDecl *FromFriendD
653 = TemplateParams? cast<NamedDecl>(D->getDescribedFunctionTemplate()) : D;
654 if (FromFriendD->getFriendObjectKind()) {
655 NamedDecl *ToFriendD = 0;
656 if (TemplateParams) {
657 ToFriendD = cast<NamedDecl>(FunctionTemplate);
658 PrevDecl = FunctionTemplate->getPreviousDeclaration();
659 } else {
660 ToFriendD = Function;
661 PrevDecl = Function->getPreviousDeclaration();
662 }
663 ToFriendD->setObjectOfFriendDecl(PrevDecl != NULL);
664 if (!Owner->isDependentContext() && !PrevDecl)
665 DC->makeDeclVisibleInContext(ToFriendD, /* Recoverable = */ false);
666
667 if (!TemplateParams)
668 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
669 }
670
671 if (FunctionTemplate && !TemplateParams) {
Douglas Gregor127102b2009-06-29 20:59:39 +0000672 // Record this function template specialization.
673 Function->setFunctionTemplateSpecialization(SemaRef.Context,
674 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000675 &TemplateArgs.getInnermost(),
Douglas Gregor127102b2009-06-29 20:59:39 +0000676 InsertPos);
John McCallfd810b12009-08-14 02:03:10 +0000677 }
678
Douglas Gregore53060f2009-06-25 22:08:12 +0000679 return Function;
680}
681
Douglas Gregord60e1052009-08-27 16:57:43 +0000682Decl *
683TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
684 TemplateParameterList *TemplateParams) {
Douglas Gregor6b906862009-08-21 00:16:32 +0000685 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
686 void *InsertPos = 0;
Douglas Gregord60e1052009-08-27 16:57:43 +0000687 if (FunctionTemplate && !TemplateParams) {
Mike Stump1eb44332009-09-09 15:08:12 +0000688 // We are creating a function template specialization from a function
689 // template. Check whether there is already a function template
Douglas Gregord60e1052009-08-27 16:57:43 +0000690 // specialization for this particular set of template arguments.
Douglas Gregor6b906862009-08-21 00:16:32 +0000691 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000692 FunctionTemplateSpecializationInfo::Profile(ID,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000693 TemplateArgs.getInnermost().getFlatArgumentList(),
694 TemplateArgs.getInnermost().flat_size(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000695 SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000696
697 FunctionTemplateSpecializationInfo *Info
698 = FunctionTemplate->getSpecializations().FindNodeOrInsertPos(ID,
Douglas Gregor6b906862009-08-21 00:16:32 +0000699 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Douglas Gregor6b906862009-08-21 00:16:32 +0000701 // If we already have a function template specialization, return it.
702 if (Info)
703 return Info->Function;
704 }
705
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000706 Sema::LocalInstantiationScope Scope(SemaRef);
707
Douglas Gregor0ca20ac2009-05-29 18:27:38 +0000708 llvm::SmallVector<ParmVarDecl *, 4> Params;
John McCallce3ff2b2009-08-25 22:02:44 +0000709 QualType T = SubstFunctionType(D, Params);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000710 if (T.isNull())
711 return 0;
712
713 // Build the instantiated method declaration.
714 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
Douglas Gregordec06662009-08-21 18:42:58 +0000715 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000716
Douglas Gregordec06662009-08-21 18:42:58 +0000717 DeclarationName Name = D->getDeclName();
Douglas Gregor17e32f32009-08-21 22:43:28 +0000718 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Douglas Gregordec06662009-08-21 18:42:58 +0000719 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
720 Name = SemaRef.Context.DeclarationNames.getCXXConstructorName(
721 SemaRef.Context.getCanonicalType(ClassTy));
Mike Stump1eb44332009-09-09 15:08:12 +0000722 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
723 Constructor->getLocation(),
724 Name, T,
Douglas Gregor17e32f32009-08-21 22:43:28 +0000725 Constructor->getDeclaratorInfo(),
Mike Stump1eb44332009-09-09 15:08:12 +0000726 Constructor->isExplicit(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000727 Constructor->isInlineSpecified(), false);
Douglas Gregor17e32f32009-08-21 22:43:28 +0000728 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
729 QualType ClassTy = SemaRef.Context.getTypeDeclType(Record);
730 Name = SemaRef.Context.DeclarationNames.getCXXDestructorName(
731 SemaRef.Context.getCanonicalType(ClassTy));
732 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
733 Destructor->getLocation(), Name,
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000734 T, Destructor->isInlineSpecified(), false);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000735 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000736 CanQualType ConvTy
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000737 = SemaRef.Context.getCanonicalType(
John McCall183700f2009-09-21 23:43:11 +0000738 T->getAs<FunctionType>()->getResultType());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000739 Name = SemaRef.Context.DeclarationNames.getCXXConversionFunctionName(
740 ConvTy);
741 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
742 Conversion->getLocation(), Name,
743 T, Conversion->getDeclaratorInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000744 Conversion->isInlineSpecified(),
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000745 Conversion->isExplicit());
Douglas Gregordec06662009-08-21 18:42:58 +0000746 } else {
Mike Stump1eb44332009-09-09 15:08:12 +0000747 Method = CXXMethodDecl::Create(SemaRef.Context, Record, D->getLocation(),
Douglas Gregordec06662009-08-21 18:42:58 +0000748 D->getDeclName(), T, D->getDeclaratorInfo(),
Douglas Gregor0130f3c2009-10-27 21:01:01 +0000749 D->isStatic(), D->isInlineSpecified());
Douglas Gregordec06662009-08-21 18:42:58 +0000750 }
Douglas Gregor6b906862009-08-21 00:16:32 +0000751
Douglas Gregord60e1052009-08-27 16:57:43 +0000752 if (TemplateParams) {
753 // Our resulting instantiation is actually a function template, since we
754 // are substituting only the outer template parameters. For example, given
Mike Stump1eb44332009-09-09 15:08:12 +0000755 //
Douglas Gregord60e1052009-08-27 16:57:43 +0000756 // template<typename T>
757 // struct X {
758 // template<typename U> void f(T, U);
759 // };
760 //
761 // X<int> x;
762 //
763 // We are instantiating the member template "f" within X<int>, which means
764 // substituting int for T, but leaving "f" as a member function template.
765 // Build the function template itself.
766 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
767 Method->getLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +0000768 Method->getDeclName(),
Douglas Gregord60e1052009-08-27 16:57:43 +0000769 TemplateParams, Method);
770 if (D->isOutOfLine())
Mike Stump1eb44332009-09-09 15:08:12 +0000771 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregord60e1052009-08-27 16:57:43 +0000772 Method->setDescribedFunctionTemplate(FunctionTemplate);
773 } else if (!FunctionTemplate)
Douglas Gregor2db32322009-10-07 23:56:10 +0000774 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000775
Mike Stump1eb44332009-09-09 15:08:12 +0000776 // If we are instantiating a member function defined
Douglas Gregor7caa6822009-07-24 20:34:43 +0000777 // out-of-line, the instantiation will have the same lexical
778 // context (which will be a namespace scope) as the template.
779 if (D->isOutOfLine())
780 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000781
Douglas Gregor5545e162009-03-24 00:38:23 +0000782 // Attach the parameters
783 for (unsigned P = 0; P < Params.size(); ++P)
784 Params[P]->setOwningFunction(Method);
Jay Foadbeaaccd2009-05-21 09:52:38 +0000785 Method->setParams(SemaRef.Context, Params.data(), Params.size());
Douglas Gregor5545e162009-03-24 00:38:23 +0000786
787 if (InitMethodInstantiation(Method, D))
788 Method->setInvalidDecl();
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000789
Douglas Gregordec06662009-08-21 18:42:58 +0000790 NamedDecl *PrevDecl = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000791
Douglas Gregord60e1052009-08-27 16:57:43 +0000792 if (!FunctionTemplate || TemplateParams) {
John McCallf36e02d2009-10-09 21:13:30 +0000793 Sema::LookupResult R;
794 SemaRef.LookupQualifiedName(R, Owner, Name, Sema::LookupOrdinaryName, true);
795 PrevDecl = R.getAsSingleDecl(SemaRef.Context);
Mike Stump1eb44332009-09-09 15:08:12 +0000796
Douglas Gregordec06662009-08-21 18:42:58 +0000797 // In C++, the previous declaration we find might be a tag type
798 // (class or enum). In this case, the new declaration will hide the
799 // tag type. Note that this does does not apply if we're declaring a
800 // typedef (C++ [dcl.typedef]p4).
801 if (PrevDecl && PrevDecl->getIdentifierNamespace() == Decl::IDNS_Tag)
802 PrevDecl = 0;
803 }
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000804
Douglas Gregord60e1052009-08-27 16:57:43 +0000805 if (FunctionTemplate && !TemplateParams)
Douglas Gregor6b906862009-08-21 00:16:32 +0000806 // Record this function template specialization.
807 Method->setFunctionTemplateSpecialization(SemaRef.Context,
808 FunctionTemplate,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000809 &TemplateArgs.getInnermost(),
Douglas Gregor6b906862009-08-21 00:16:32 +0000810 InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +0000811
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000812 bool Redeclaration = false;
813 bool OverloadableAttrRequired = false;
Douglas Gregorfd056bc2009-10-13 16:30:37 +0000814 SemaRef.CheckFunctionDeclaration(Method, PrevDecl, false, Redeclaration,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000815 /*FIXME:*/OverloadableAttrRequired);
816
Douglas Gregora735b202009-10-13 14:39:41 +0000817 if (!FunctionTemplate && (!Method->isInvalidDecl() || !PrevDecl) &&
818 !Method->getFriendObjectKind())
Douglas Gregordec06662009-08-21 18:42:58 +0000819 Owner->addDecl(Method);
Mike Stump1eb44332009-09-09 15:08:12 +0000820
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000821 return Method;
822}
823
Douglas Gregor615c5d42009-03-24 16:43:20 +0000824Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregordec06662009-08-21 18:42:58 +0000825 return VisitCXXMethodDecl(D);
Douglas Gregor615c5d42009-03-24 16:43:20 +0000826}
827
Douglas Gregor03b2b072009-03-24 00:15:49 +0000828Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregor17e32f32009-08-21 22:43:28 +0000829 return VisitCXXMethodDecl(D);
Douglas Gregor03b2b072009-03-24 00:15:49 +0000830}
831
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000832Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +0000833 return VisitCXXMethodDecl(D);
Douglas Gregorbb969ed2009-03-25 00:34:44 +0000834}
835
Douglas Gregor6477b692009-03-25 15:04:13 +0000836ParmVarDecl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
John McCall58e46772009-10-23 21:48:59 +0000837 QualType T;
838 DeclaratorInfo *DI = D->getDeclaratorInfo();
839 if (DI) {
840 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
841 D->getDeclName());
842 if (DI) T = DI->getType();
843 } else {
844 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
845 D->getDeclName());
846 DI = 0;
847 }
848
849 if (T.isNull())
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000850 return 0;
851
John McCall58e46772009-10-23 21:48:59 +0000852 T = SemaRef.adjustParameterType(T);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000853
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000854 // Allocate the parameter
John McCall58e46772009-10-23 21:48:59 +0000855 ParmVarDecl *Param
856 = ParmVarDecl::Create(SemaRef.Context, Owner, D->getLocation(),
857 D->getIdentifier(), T, DI, D->getStorageClass(), 0);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000858
Anders Carlsson9351c172009-08-25 03:18:48 +0000859 // Mark the default argument as being uninstantiated.
Douglas Gregorf43d0b32009-09-25 06:56:31 +0000860 if (D->hasUninstantiatedDefaultArg())
861 Param->setUninstantiatedDefaultArg(D->getUninstantiatedDefaultArg());
Douglas Gregor0ed09302009-09-25 07:03:22 +0000862 else if (Expr *Arg = D->getDefaultArg())
863 Param->setUninstantiatedDefaultArg(Arg);
864
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000865 // Note: we don't try to instantiate function parameters until after
866 // we've instantiated the function's type. Therefore, we don't have
867 // to check for 'void' parameter types here.
Douglas Gregor48dd19b2009-05-14 21:44:34 +0000868 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor2dc0e642009-03-23 23:06:20 +0000869 return Param;
870}
871
John McCalle29ba202009-08-20 01:44:21 +0000872Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
873 TemplateTypeParmDecl *D) {
874 // TODO: don't always clone when decls are refcounted.
875 const Type* T = D->getTypeForDecl();
876 assert(T->isTemplateTypeParmType());
877 const TemplateTypeParmType *TTPT = T->getAs<TemplateTypeParmType>();
Mike Stump1eb44332009-09-09 15:08:12 +0000878
John McCalle29ba202009-08-20 01:44:21 +0000879 TemplateTypeParmDecl *Inst =
880 TemplateTypeParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
881 TTPT->getDepth(), TTPT->getIndex(),
882 TTPT->getName(),
883 D->wasDeclaredWithTypename(),
884 D->isParameterPack());
885
Douglas Gregor33642df2009-10-23 23:25:44 +0000886 // FIXME: Do we actually want to perform substitution here? I don't think
887 // we do.
John McCalle29ba202009-08-20 01:44:21 +0000888 if (D->hasDefaultArgument()) {
889 QualType DefaultPattern = D->getDefaultArgument();
890 QualType DefaultInst
John McCallce3ff2b2009-08-25 22:02:44 +0000891 = SemaRef.SubstType(DefaultPattern, TemplateArgs,
892 D->getDefaultArgumentLoc(),
893 D->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +0000894
John McCalle29ba202009-08-20 01:44:21 +0000895 Inst->setDefaultArgument(DefaultInst,
896 D->getDefaultArgumentLoc(),
897 D->defaultArgumentWasInherited() /* preserve? */);
898 }
899
900 return Inst;
901}
902
Douglas Gregor33642df2009-10-23 23:25:44 +0000903Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
904 NonTypeTemplateParmDecl *D) {
905 // Substitute into the type of the non-type template parameter.
906 QualType T;
907 DeclaratorInfo *DI = D->getDeclaratorInfo();
908 if (DI) {
909 DI = SemaRef.SubstType(DI, TemplateArgs, D->getLocation(),
910 D->getDeclName());
911 if (DI) T = DI->getType();
912 } else {
913 T = SemaRef.SubstType(D->getType(), TemplateArgs, D->getLocation(),
914 D->getDeclName());
915 DI = 0;
916 }
917 if (T.isNull())
918 return 0;
919
920 // Check that this type is acceptable for a non-type template parameter.
921 bool Invalid = false;
922 T = SemaRef.CheckNonTypeTemplateParameterType(T, D->getLocation());
923 if (T.isNull()) {
924 T = SemaRef.Context.IntTy;
925 Invalid = true;
926 }
927
928 NonTypeTemplateParmDecl *Param
929 = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner, D->getLocation(),
930 D->getDepth() - 1, D->getPosition(),
931 D->getIdentifier(), T, DI);
932 if (Invalid)
933 Param->setInvalidDecl();
934
935 Param->setDefaultArgument(D->getDefaultArgument());
936 return Param;
937}
938
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000939Decl *
940TemplateDeclInstantiator::VisitUnresolvedUsingDecl(UnresolvedUsingDecl *D) {
Mike Stump1eb44332009-09-09 15:08:12 +0000941 NestedNameSpecifier *NNS =
942 SemaRef.SubstNestedNameSpecifier(D->getTargetNestedNameSpecifier(),
943 D->getTargetNestedNameRange(),
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000944 TemplateArgs);
945 if (!NNS)
946 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000947
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000948 CXXScopeSpec SS;
949 SS.setRange(D->getTargetNestedNameRange());
950 SS.setScopeRep(NNS);
Mike Stump1eb44332009-09-09 15:08:12 +0000951
952 NamedDecl *UD =
953 SemaRef.BuildUsingDeclaration(D->getLocation(), SS,
954 D->getTargetNameLocation(),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000955 D->getTargetName(), 0, D->isTypeName());
956 if (UD)
Mike Stump1eb44332009-09-09 15:08:12 +0000957 SemaRef.Context.setInstantiatedFromUnresolvedUsingDecl(cast<UsingDecl>(UD),
Anders Carlsson0d8df782009-08-29 19:37:28 +0000958 D);
959 return UD;
Anders Carlsson0dde18e2009-08-28 15:18:15 +0000960}
961
John McCallce3ff2b2009-08-25 22:02:44 +0000962Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregord6350ae2009-08-28 20:31:08 +0000963 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor7e063902009-05-11 23:53:27 +0000964 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor8dbc2692009-03-17 21:15:40 +0000965 return Instantiator.Visit(D);
966}
967
John McCalle29ba202009-08-20 01:44:21 +0000968/// \brief Instantiates a nested template parameter list in the current
969/// instantiation context.
970///
971/// \param L The parameter list to instantiate
972///
973/// \returns NULL if there was an error
974TemplateParameterList *
John McCallce3ff2b2009-08-25 22:02:44 +0000975TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCalle29ba202009-08-20 01:44:21 +0000976 // Get errors for all the parameters before bailing out.
977 bool Invalid = false;
978
979 unsigned N = L->size();
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000980 typedef llvm::SmallVector<NamedDecl *, 8> ParamVector;
John McCalle29ba202009-08-20 01:44:21 +0000981 ParamVector Params;
982 Params.reserve(N);
983 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
984 PI != PE; ++PI) {
Douglas Gregorbf4ea562009-09-15 16:23:51 +0000985 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCalle29ba202009-08-20 01:44:21 +0000986 Params.push_back(D);
987 Invalid = Invalid || !D;
988 }
989
990 // Clean up if we had an error.
991 if (Invalid) {
992 for (ParamVector::iterator PI = Params.begin(), PE = Params.end();
993 PI != PE; ++PI)
994 if (*PI)
995 (*PI)->Destroy(SemaRef.Context);
996 return NULL;
997 }
998
999 TemplateParameterList *InstL
1000 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
1001 L->getLAngleLoc(), &Params.front(), N,
1002 L->getRAngleLoc());
1003 return InstL;
Mike Stump1eb44332009-09-09 15:08:12 +00001004}
John McCalle29ba202009-08-20 01:44:21 +00001005
Douglas Gregored9c0f92009-10-29 00:04:11 +00001006/// \brief Instantiate the declaration of a class template partial
1007/// specialization.
1008///
1009/// \param ClassTemplate the (instantiated) class template that is partially
1010// specialized by the instantiation of \p PartialSpec.
1011///
1012/// \param PartialSpec the (uninstantiated) class template partial
1013/// specialization that we are instantiating.
1014///
1015/// \returns true if there was an error, false otherwise.
1016bool
1017TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
1018 ClassTemplateDecl *ClassTemplate,
1019 ClassTemplatePartialSpecializationDecl *PartialSpec) {
1020 // Substitute into the template parameters of the class template partial
1021 // specialization.
1022 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
1023 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1024 if (!InstParams)
1025 return true;
1026
1027 // Substitute into the template arguments of the class template partial
1028 // specialization.
1029 const TemplateArgumentList &PartialSpecTemplateArgs
1030 = PartialSpec->getTemplateInstantiationArgs();
1031 llvm::SmallVector<TemplateArgument, 4> InstTemplateArgs;
1032 for (unsigned I = 0, N = PartialSpecTemplateArgs.size(); I != N; ++I) {
1033 TemplateArgument Inst = SemaRef.Subst(PartialSpecTemplateArgs[I],
1034 TemplateArgs);
1035 if (Inst.isNull())
1036 return true;
1037
1038 InstTemplateArgs.push_back(Inst);
1039 }
1040
1041
1042 // Check that the template argument list is well-formed for this
1043 // class template.
1044 TemplateArgumentListBuilder Converted(ClassTemplate->getTemplateParameters(),
1045 InstTemplateArgs.size());
1046 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
1047 PartialSpec->getLocation(),
1048 /*FIXME:*/PartialSpec->getLocation(),
1049 InstTemplateArgs.data(),
1050 InstTemplateArgs.size(),
1051 /*FIXME:*/PartialSpec->getLocation(),
1052 false,
1053 Converted))
1054 return true;
1055
1056 // Figure out where to insert this class template partial specialization
1057 // in the member template's set of class template partial specializations.
1058 llvm::FoldingSetNodeID ID;
1059 ClassTemplatePartialSpecializationDecl::Profile(ID,
1060 Converted.getFlatArguments(),
1061 Converted.flatSize(),
1062 SemaRef.Context);
1063 void *InsertPos = 0;
1064 ClassTemplateSpecializationDecl *PrevDecl
1065 = ClassTemplate->getPartialSpecializations().FindNodeOrInsertPos(ID,
1066 InsertPos);
1067
1068 // Build the canonical type that describes the converted template
1069 // arguments of the class template partial specialization.
1070 QualType CanonType
1071 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1072 Converted.getFlatArguments(),
1073 Converted.flatSize());
1074
1075 // Build the fully-sugared type for this class template
1076 // specialization as the user wrote in the specialization
1077 // itself. This means that we'll pretty-print the type retrieved
1078 // from the specialization's declaration the way that the user
1079 // actually wrote the specialization, rather than formatting the
1080 // name based on the "canonical" representation used to store the
1081 // template arguments in the specialization.
1082 QualType WrittenTy
1083 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
1084 InstTemplateArgs.data(),
1085 InstTemplateArgs.size(),
1086 CanonType);
1087
1088 if (PrevDecl) {
1089 // We've already seen a partial specialization with the same template
1090 // parameters and template arguments. This can happen, for example, when
1091 // substituting the outer template arguments ends up causing two
1092 // class template partial specializations of a member class template
1093 // to have identical forms, e.g.,
1094 //
1095 // template<typename T, typename U>
1096 // struct Outer {
1097 // template<typename X, typename Y> struct Inner;
1098 // template<typename Y> struct Inner<T, Y>;
1099 // template<typename Y> struct Inner<U, Y>;
1100 // };
1101 //
1102 // Outer<int, int> outer; // error: the partial specializations of Inner
1103 // // have the same signature.
1104 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
1105 << WrittenTy;
1106 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
1107 << SemaRef.Context.getTypeDeclType(PrevDecl);
1108 return true;
1109 }
1110
1111
1112 // Create the class template partial specialization declaration.
1113 ClassTemplatePartialSpecializationDecl *InstPartialSpec
1114 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context, Owner,
1115 PartialSpec->getLocation(),
1116 InstParams,
1117 ClassTemplate,
1118 Converted,
1119 0);
1120 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
1121 InstPartialSpec->setTypeAsWritten(WrittenTy);
1122
1123 // Add this partial specialization to the set of class template partial
1124 // specializations.
1125 ClassTemplate->getPartialSpecializations().InsertNode(InstPartialSpec,
1126 InsertPos);
1127 return false;
1128}
1129
John McCallce3ff2b2009-08-25 22:02:44 +00001130/// \brief Does substitution on the type of the given function, including
1131/// all of the function parameters.
Douglas Gregor5545e162009-03-24 00:38:23 +00001132///
John McCallce3ff2b2009-08-25 22:02:44 +00001133/// \param D The function whose type will be the basis of the substitution
Douglas Gregor5545e162009-03-24 00:38:23 +00001134///
1135/// \param Params the instantiated parameter declarations
1136
John McCallce3ff2b2009-08-25 22:02:44 +00001137/// \returns the instantiated function's type if successful, a NULL
Douglas Gregor5545e162009-03-24 00:38:23 +00001138/// type if there was an error.
Mike Stump1eb44332009-09-09 15:08:12 +00001139QualType
John McCallce3ff2b2009-08-25 22:02:44 +00001140TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Douglas Gregor5545e162009-03-24 00:38:23 +00001141 llvm::SmallVectorImpl<ParmVarDecl *> &Params) {
1142 bool InvalidDecl = false;
1143
John McCallce3ff2b2009-08-25 22:02:44 +00001144 // Substitute all of the function's formal parameter types.
Douglas Gregor7e063902009-05-11 23:53:27 +00001145 TemplateDeclInstantiator ParamInstantiator(SemaRef, 0, TemplateArgs);
Douglas Gregor0ca20ac2009-05-29 18:27:38 +00001146 llvm::SmallVector<QualType, 4> ParamTys;
Mike Stump1eb44332009-09-09 15:08:12 +00001147 for (FunctionDecl::param_iterator P = D->param_begin(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001148 PEnd = D->param_end();
1149 P != PEnd; ++P) {
Douglas Gregor6477b692009-03-25 15:04:13 +00001150 if (ParmVarDecl *PInst = ParamInstantiator.VisitParmVarDecl(*P)) {
Douglas Gregor5545e162009-03-24 00:38:23 +00001151 if (PInst->getType()->isVoidType()) {
1152 SemaRef.Diag(PInst->getLocation(), diag::err_param_with_void_type);
1153 PInst->setInvalidDecl();
Mike Stump1eb44332009-09-09 15:08:12 +00001154 } else if (SemaRef.RequireNonAbstractType(PInst->getLocation(),
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001155 PInst->getType(),
1156 diag::err_abstract_type_in_decl,
1157 Sema::AbstractParamType))
Douglas Gregor5545e162009-03-24 00:38:23 +00001158 PInst->setInvalidDecl();
1159
1160 Params.push_back(PInst);
1161 ParamTys.push_back(PInst->getType());
1162
1163 if (PInst->isInvalidDecl())
1164 InvalidDecl = true;
Mike Stump1eb44332009-09-09 15:08:12 +00001165 } else
Douglas Gregor5545e162009-03-24 00:38:23 +00001166 InvalidDecl = true;
1167 }
1168
1169 // FIXME: Deallocate dead declarations.
1170 if (InvalidDecl)
1171 return QualType();
1172
John McCall183700f2009-09-21 23:43:11 +00001173 const FunctionProtoType *Proto = D->getType()->getAs<FunctionProtoType>();
Douglas Gregor5545e162009-03-24 00:38:23 +00001174 assert(Proto && "Missing prototype?");
Mike Stump1eb44332009-09-09 15:08:12 +00001175 QualType ResultType
John McCallce3ff2b2009-08-25 22:02:44 +00001176 = SemaRef.SubstType(Proto->getResultType(), TemplateArgs,
1177 D->getLocation(), D->getDeclName());
Douglas Gregor5545e162009-03-24 00:38:23 +00001178 if (ResultType.isNull())
1179 return QualType();
1180
Jay Foadbeaaccd2009-05-21 09:52:38 +00001181 return SemaRef.BuildFunctionType(ResultType, ParamTys.data(), ParamTys.size(),
Douglas Gregor5545e162009-03-24 00:38:23 +00001182 Proto->isVariadic(), Proto->getTypeQuals(),
1183 D->getLocation(), D->getDeclName());
1184}
1185
Mike Stump1eb44332009-09-09 15:08:12 +00001186/// \brief Initializes the common fields of an instantiation function
Douglas Gregore53060f2009-06-25 22:08:12 +00001187/// declaration (New) from the corresponding fields of its template (Tmpl).
1188///
1189/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001190bool
1191TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregore53060f2009-06-25 22:08:12 +00001192 FunctionDecl *Tmpl) {
1193 if (Tmpl->isDeleted())
1194 New->setDeleted();
Mike Stump1eb44332009-09-09 15:08:12 +00001195
Douglas Gregorcca9e962009-07-01 22:01:06 +00001196 // If we are performing substituting explicitly-specified template arguments
1197 // or deduced template arguments into a function template and we reach this
1198 // point, we are now past the point where SFINAE applies and have committed
Mike Stump1eb44332009-09-09 15:08:12 +00001199 // to keeping the new function template specialization. We therefore
1200 // convert the active template instantiation for the function template
Douglas Gregorcca9e962009-07-01 22:01:06 +00001201 // into a template instantiation for this specific function template
1202 // specialization, which is not a SFINAE context, so that we diagnose any
1203 // further errors in the declaration itself.
1204 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
1205 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
1206 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
1207 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump1eb44332009-09-09 15:08:12 +00001208 if (FunctionTemplateDecl *FunTmpl
Douglas Gregorcca9e962009-07-01 22:01:06 +00001209 = dyn_cast<FunctionTemplateDecl>((Decl *)ActiveInst.Entity)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001210 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorcca9e962009-07-01 22:01:06 +00001211 "Deduction from the wrong function template?");
Daniel Dunbarbcbb8bd2009-07-16 22:10:11 +00001212 (void) FunTmpl;
Douglas Gregorcca9e962009-07-01 22:01:06 +00001213 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
1214 ActiveInst.Entity = reinterpret_cast<uintptr_t>(New);
1215 }
1216 }
Mike Stump1eb44332009-09-09 15:08:12 +00001217
Douglas Gregore53060f2009-06-25 22:08:12 +00001218 return false;
1219}
1220
Douglas Gregor5545e162009-03-24 00:38:23 +00001221/// \brief Initializes common fields of an instantiated method
1222/// declaration (New) from the corresponding fields of its template
1223/// (Tmpl).
1224///
1225/// \returns true if there was an error
Mike Stump1eb44332009-09-09 15:08:12 +00001226bool
1227TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor5545e162009-03-24 00:38:23 +00001228 CXXMethodDecl *Tmpl) {
Douglas Gregore53060f2009-06-25 22:08:12 +00001229 if (InitFunctionInstantiation(New, Tmpl))
1230 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001231
Douglas Gregor5545e162009-03-24 00:38:23 +00001232 CXXRecordDecl *Record = cast<CXXRecordDecl>(Owner);
1233 New->setAccess(Tmpl->getAccess());
Anders Carlsson77b7f1d2009-05-14 22:15:41 +00001234 if (Tmpl->isVirtualAsWritten()) {
1235 New->setVirtualAsWritten(true);
Douglas Gregor5545e162009-03-24 00:38:23 +00001236 Record->setAggregate(false);
1237 Record->setPOD(false);
Eli Friedman1d954f62009-08-15 21:55:26 +00001238 Record->setEmpty(false);
Douglas Gregor5545e162009-03-24 00:38:23 +00001239 Record->setPolymorphic(true);
1240 }
Douglas Gregor5545e162009-03-24 00:38:23 +00001241 if (Tmpl->isPure()) {
1242 New->setPure();
1243 Record->setAbstract(true);
1244 }
1245
1246 // FIXME: attributes
1247 // FIXME: New needs a pointer to Tmpl
1248 return false;
1249}
Douglas Gregora58861f2009-05-13 20:28:22 +00001250
1251/// \brief Instantiate the definition of the given function from its
1252/// template.
1253///
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001254/// \param PointOfInstantiation the point at which the instantiation was
1255/// required. Note that this is not precisely a "point of instantiation"
1256/// for the function, but it's close.
1257///
Douglas Gregora58861f2009-05-13 20:28:22 +00001258/// \param Function the already-instantiated declaration of a
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001259/// function template specialization or member function of a class template
1260/// specialization.
1261///
1262/// \param Recursive if true, recursively instantiates any functions that
1263/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001264///
1265/// \param DefinitionRequired if true, then we are performing an explicit
1266/// instantiation where the body of the function is required. Complain if
1267/// there is no such body.
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001268void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001269 FunctionDecl *Function,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001270 bool Recursive,
1271 bool DefinitionRequired) {
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001272 if (Function->isInvalidDecl())
1273 return;
1274
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001275 assert(!Function->getBody() && "Already instantiated!");
Mike Stump1eb44332009-09-09 15:08:12 +00001276
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001277 // Never instantiate an explicit specialization.
1278 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
1279 return;
1280
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001281 // Find the function body that we'll be substituting.
Douglas Gregor3b846b62009-10-27 20:53:28 +00001282 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001283 Stmt *Pattern = 0;
1284 if (PatternDecl)
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001285 Pattern = PatternDecl->getBody(PatternDecl);
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001286
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001287 if (!Pattern) {
1288 if (DefinitionRequired) {
1289 if (Function->getPrimaryTemplate())
1290 Diag(PointOfInstantiation,
1291 diag::err_explicit_instantiation_undefined_func_template)
1292 << Function->getPrimaryTemplate();
1293 else
1294 Diag(PointOfInstantiation,
1295 diag::err_explicit_instantiation_undefined_member)
1296 << 1 << Function->getDeclName() << Function->getDeclContext();
1297
1298 if (PatternDecl)
1299 Diag(PatternDecl->getLocation(),
1300 diag::note_explicit_instantiation_here);
1301 }
1302
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001303 return;
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001304 }
Douglas Gregor1eee0e72009-05-14 21:06:31 +00001305
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001306 // C++0x [temp.explicit]p9:
1307 // Except for inline functions, other explicit instantiation declarations
Mike Stump1eb44332009-09-09 15:08:12 +00001308 // have the effect of suppressing the implicit instantiation of the entity
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001309 // to which they refer.
Mike Stump1eb44332009-09-09 15:08:12 +00001310 if (Function->getTemplateSpecializationKind()
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001311 == TSK_ExplicitInstantiationDeclaration &&
Douglas Gregor7ced9c82009-10-27 21:11:48 +00001312 !PatternDecl->isInlined())
Douglas Gregord0e3daf2009-09-04 22:48:11 +00001313 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Douglas Gregorf3e7ce42009-05-18 17:01:57 +00001315 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
1316 if (Inst)
1317 return;
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001318
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001319 // If we're performing recursive template instantiation, create our own
1320 // queue of pending implicit instantiations that we will instantiate later,
1321 // while we're still within our own instantiation context.
1322 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1323 if (Recursive)
1324 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001325
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001326 ActOnStartOfFunctionDef(0, DeclPtrTy::make(Function));
1327
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001328 // Introduce a new scope where local variable instantiations will be
1329 // recorded.
1330 LocalInstantiationScope Scope(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001331
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001332 // Introduce the instantiated function parameters into the local
1333 // instantiation scope.
1334 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I)
1335 Scope.InstantiatedLocal(PatternDecl->getParamDecl(I),
1336 Function->getParamDecl(I));
1337
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001338 // Enter the scope of this instantiation. We don't use
1339 // PushDeclContext because we don't have a scope.
1340 DeclContext *PreviousContext = CurContext;
1341 CurContext = Function;
1342
Mike Stump1eb44332009-09-09 15:08:12 +00001343 MultiLevelTemplateArgumentList TemplateArgs =
Anders Carlsson09025312009-08-29 05:16:22 +00001344 getTemplateInstantiationArgs(Function);
1345
1346 // If this is a constructor, instantiate the member initializers.
Mike Stump1eb44332009-09-09 15:08:12 +00001347 if (const CXXConstructorDecl *Ctor =
Anders Carlsson09025312009-08-29 05:16:22 +00001348 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
1349 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
1350 TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001351 }
1352
Douglas Gregor54dabfc2009-05-14 23:26:13 +00001353 // Instantiate the function body.
Anders Carlsson09025312009-08-29 05:16:22 +00001354 OwningStmtResult Body = SubstStmt(Pattern, TemplateArgs);
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001355
Douglas Gregor52604ab2009-09-11 21:19:12 +00001356 if (Body.isInvalid())
1357 Function->setInvalidDecl();
1358
Mike Stump1eb44332009-09-09 15:08:12 +00001359 ActOnFinishFunctionBody(DeclPtrTy::make(Function), move(Body),
Douglas Gregore2c31ff2009-05-15 17:59:04 +00001360 /*IsInstantiation=*/true);
Douglas Gregorb9f1b8d2009-05-15 00:01:03 +00001361
1362 CurContext = PreviousContext;
Douglas Gregoraba43bb2009-05-26 20:50:29 +00001363
1364 DeclGroupRef DG(Function);
1365 Consumer.HandleTopLevelDecl(DG);
Mike Stump1eb44332009-09-09 15:08:12 +00001366
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001367 if (Recursive) {
1368 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001369 // instantiation of this template.
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001370 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001371
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001372 // Restore the set of pending implicit instantiations.
1373 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
1374 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001375}
1376
1377/// \brief Instantiate the definition of the given variable from its
1378/// template.
1379///
Douglas Gregor7caa6822009-07-24 20:34:43 +00001380/// \param PointOfInstantiation the point at which the instantiation was
1381/// required. Note that this is not precisely a "point of instantiation"
1382/// for the function, but it's close.
1383///
1384/// \param Var the already-instantiated declaration of a static member
1385/// variable of a class template specialization.
1386///
1387/// \param Recursive if true, recursively instantiates any functions that
1388/// are required by this instantiation.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001389///
1390/// \param DefinitionRequired if true, then we are performing an explicit
1391/// instantiation where an out-of-line definition of the member variable
1392/// is required. Complain if there is no such definition.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001393void Sema::InstantiateStaticDataMemberDefinition(
1394 SourceLocation PointOfInstantiation,
1395 VarDecl *Var,
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001396 bool Recursive,
1397 bool DefinitionRequired) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001398 if (Var->isInvalidDecl())
1399 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001400
Douglas Gregor7caa6822009-07-24 20:34:43 +00001401 // Find the out-of-line definition of this static data member.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001402 VarDecl *Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregor7caa6822009-07-24 20:34:43 +00001403 assert(Def && "This data member was not instantiated from a template?");
Douglas Gregor0d035142009-10-27 18:42:08 +00001404 assert(Def->isStaticDataMember() && "Not a static data member?");
1405 Def = Def->getOutOfLineDefinition();
Mike Stump1eb44332009-09-09 15:08:12 +00001406
Douglas Gregor0d035142009-10-27 18:42:08 +00001407 if (!Def) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00001408 // We did not find an out-of-line definition of this static data member,
1409 // so we won't perform any instantiation. Rather, we rely on the user to
Mike Stump1eb44332009-09-09 15:08:12 +00001410 // instantiate this definition (or provide a specialization for it) in
1411 // another translation unit.
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001412 if (DefinitionRequired) {
Douglas Gregor0d035142009-10-27 18:42:08 +00001413 Def = Var->getInstantiatedFromStaticDataMember();
Douglas Gregore2d3a3d2009-10-15 14:05:49 +00001414 Diag(PointOfInstantiation,
1415 diag::err_explicit_instantiation_undefined_member)
1416 << 2 << Var->getDeclName() << Var->getDeclContext();
1417 Diag(Def->getLocation(), diag::note_explicit_instantiation_here);
1418 }
1419
Douglas Gregor7caa6822009-07-24 20:34:43 +00001420 return;
1421 }
1422
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001423 // Never instantiate an explicit specialization.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001424 if (Var->getTemplateSpecializationKind() == TSK_ExplicitSpecialization)
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001425 return;
1426
1427 // C++0x [temp.explicit]p9:
1428 // Except for inline functions, other explicit instantiation declarations
1429 // have the effect of suppressing the implicit instantiation of the entity
1430 // to which they refer.
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001431 if (Var->getTemplateSpecializationKind()
Douglas Gregor251b4ff2009-10-08 07:24:58 +00001432 == TSK_ExplicitInstantiationDeclaration)
1433 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Douglas Gregor7caa6822009-07-24 20:34:43 +00001435 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
1436 if (Inst)
1437 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001438
Douglas Gregor7caa6822009-07-24 20:34:43 +00001439 // If we're performing recursive template instantiation, create our own
1440 // queue of pending implicit instantiations that we will instantiate later,
1441 // while we're still within our own instantiation context.
1442 std::deque<PendingImplicitInstantiation> SavedPendingImplicitInstantiations;
1443 if (Recursive)
1444 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001445
Douglas Gregor7caa6822009-07-24 20:34:43 +00001446 // Enter the scope of this instantiation. We don't use
1447 // PushDeclContext because we don't have a scope.
1448 DeclContext *PreviousContext = CurContext;
1449 CurContext = Var->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +00001450
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001451 VarDecl *OldVar = Var;
John McCallce3ff2b2009-08-25 22:02:44 +00001452 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Douglas Gregor7caa6822009-07-24 20:34:43 +00001453 getTemplateInstantiationArgs(Var)));
Douglas Gregor7caa6822009-07-24 20:34:43 +00001454 CurContext = PreviousContext;
1455
1456 if (Var) {
Douglas Gregor1028c9f2009-10-14 21:29:40 +00001457 Var->setPreviousDeclaration(OldVar);
Douglas Gregor583f33b2009-10-15 18:07:02 +00001458 MemberSpecializationInfo *MSInfo = OldVar->getMemberSpecializationInfo();
1459 assert(MSInfo && "Missing member specialization information?");
1460 Var->setTemplateSpecializationKind(MSInfo->getTemplateSpecializationKind(),
1461 MSInfo->getPointOfInstantiation());
Douglas Gregor7caa6822009-07-24 20:34:43 +00001462 DeclGroupRef DG(Var);
1463 Consumer.HandleTopLevelDecl(DG);
1464 }
Mike Stump1eb44332009-09-09 15:08:12 +00001465
Douglas Gregor7caa6822009-07-24 20:34:43 +00001466 if (Recursive) {
1467 // Instantiate any pending implicit instantiations found during the
Mike Stump1eb44332009-09-09 15:08:12 +00001468 // instantiation of this template.
Douglas Gregor7caa6822009-07-24 20:34:43 +00001469 PerformPendingImplicitInstantiations();
Mike Stump1eb44332009-09-09 15:08:12 +00001470
Douglas Gregor7caa6822009-07-24 20:34:43 +00001471 // Restore the set of pending implicit instantiations.
1472 PendingImplicitInstantiations.swap(SavedPendingImplicitInstantiations);
Mike Stump1eb44332009-09-09 15:08:12 +00001473 }
Douglas Gregora58861f2009-05-13 20:28:22 +00001474}
Douglas Gregor815215d2009-05-27 05:35:12 +00001475
Anders Carlsson09025312009-08-29 05:16:22 +00001476void
1477Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
1478 const CXXConstructorDecl *Tmpl,
1479 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump1eb44332009-09-09 15:08:12 +00001480
Anders Carlsson09025312009-08-29 05:16:22 +00001481 llvm::SmallVector<MemInitTy*, 4> NewInits;
1482
1483 // Instantiate all the initializers.
1484 for (CXXConstructorDecl::init_const_iterator Inits = Tmpl->init_begin(),
Douglas Gregor72f6d672009-09-01 21:04:42 +00001485 InitsEnd = Tmpl->init_end();
1486 Inits != InitsEnd; ++Inits) {
Anders Carlsson09025312009-08-29 05:16:22 +00001487 CXXBaseOrMemberInitializer *Init = *Inits;
1488
1489 ASTOwningVector<&ActionBase::DeleteExpr> NewArgs(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001490
Anders Carlsson09025312009-08-29 05:16:22 +00001491 // Instantiate all the arguments.
1492 for (ExprIterator Args = Init->arg_begin(), ArgsEnd = Init->arg_end();
1493 Args != ArgsEnd; ++Args) {
1494 OwningExprResult NewArg = SubstExpr(*Args, TemplateArgs);
1495
1496 if (NewArg.isInvalid())
1497 New->setInvalidDecl();
1498 else
1499 NewArgs.push_back(NewArg.takeAs<Expr>());
1500 }
1501
1502 MemInitResult NewInit;
1503
1504 if (Init->isBaseInitializer()) {
Eli Friedmanc5573a82009-08-29 22:22:07 +00001505 QualType BaseType(Init->getBaseClass(), 0);
1506 BaseType = SubstType(BaseType, TemplateArgs, Init->getSourceLocation(),
1507 New->getDeclName());
Anders Carlsson09025312009-08-29 05:16:22 +00001508
1509 NewInit = BuildBaseInitializer(BaseType,
Mike Stump1eb44332009-09-09 15:08:12 +00001510 (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001511 NewArgs.size(),
1512 Init->getSourceLocation(),
1513 Init->getRParenLoc(),
1514 New->getParent());
1515 } else if (Init->isMemberInitializer()) {
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001516 FieldDecl *Member;
Mike Stump1eb44332009-09-09 15:08:12 +00001517
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001518 // Is this an anonymous union?
1519 if (FieldDecl *UnionInit = Init->getAnonUnionMember())
Douglas Gregore95b4092009-09-16 18:34:49 +00001520 Member = cast<FieldDecl>(FindInstantiatedDecl(UnionInit, TemplateArgs));
Anders Carlsson9988d5d2009-09-01 04:31:02 +00001521 else
Douglas Gregore95b4092009-09-16 18:34:49 +00001522 Member = cast<FieldDecl>(FindInstantiatedDecl(Init->getMember(),
1523 TemplateArgs));
Mike Stump1eb44332009-09-09 15:08:12 +00001524
1525 NewInit = BuildMemberInitializer(Member, (Expr **)NewArgs.data(),
Anders Carlsson09025312009-08-29 05:16:22 +00001526 NewArgs.size(),
1527 Init->getSourceLocation(),
1528 Init->getRParenLoc());
1529 }
1530
1531 if (NewInit.isInvalid())
1532 New->setInvalidDecl();
1533 else {
1534 // FIXME: It would be nice if ASTOwningVector had a release function.
1535 NewArgs.take();
Mike Stump1eb44332009-09-09 15:08:12 +00001536
Anders Carlsson09025312009-08-29 05:16:22 +00001537 NewInits.push_back((MemInitTy *)NewInit.get());
1538 }
1539 }
Mike Stump1eb44332009-09-09 15:08:12 +00001540
Anders Carlsson09025312009-08-29 05:16:22 +00001541 // Assign all the initializers to the new constructor.
Mike Stump1eb44332009-09-09 15:08:12 +00001542 ActOnMemInitializers(DeclPtrTy::make(New),
Anders Carlsson09025312009-08-29 05:16:22 +00001543 /*FIXME: ColonLoc */
1544 SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001545 NewInits.data(), NewInits.size());
Anders Carlsson09025312009-08-29 05:16:22 +00001546}
1547
John McCall52a575a2009-08-29 08:11:13 +00001548// TODO: this could be templated if the various decl types used the
1549// same method name.
1550static bool isInstantiationOf(ClassTemplateDecl *Pattern,
1551 ClassTemplateDecl *Instance) {
1552 Pattern = Pattern->getCanonicalDecl();
1553
1554 do {
1555 Instance = Instance->getCanonicalDecl();
1556 if (Pattern == Instance) return true;
1557 Instance = Instance->getInstantiatedFromMemberTemplate();
1558 } while (Instance);
1559
1560 return false;
1561}
1562
Douglas Gregor0d696532009-09-28 06:34:35 +00001563static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
1564 FunctionTemplateDecl *Instance) {
1565 Pattern = Pattern->getCanonicalDecl();
1566
1567 do {
1568 Instance = Instance->getCanonicalDecl();
1569 if (Pattern == Instance) return true;
1570 Instance = Instance->getInstantiatedFromMemberTemplate();
1571 } while (Instance);
1572
1573 return false;
1574}
1575
Douglas Gregored9c0f92009-10-29 00:04:11 +00001576static bool
1577isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
1578 ClassTemplatePartialSpecializationDecl *Instance) {
1579 Pattern
1580 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
1581 do {
1582 Instance = cast<ClassTemplatePartialSpecializationDecl>(
1583 Instance->getCanonicalDecl());
1584 if (Pattern == Instance)
1585 return true;
1586 Instance = Instance->getInstantiatedFromMember();
1587 } while (Instance);
1588
1589 return false;
1590}
1591
John McCall52a575a2009-08-29 08:11:13 +00001592static bool isInstantiationOf(CXXRecordDecl *Pattern,
1593 CXXRecordDecl *Instance) {
1594 Pattern = Pattern->getCanonicalDecl();
1595
1596 do {
1597 Instance = Instance->getCanonicalDecl();
1598 if (Pattern == Instance) return true;
1599 Instance = Instance->getInstantiatedFromMemberClass();
1600 } while (Instance);
1601
1602 return false;
1603}
1604
1605static bool isInstantiationOf(FunctionDecl *Pattern,
1606 FunctionDecl *Instance) {
1607 Pattern = Pattern->getCanonicalDecl();
1608
1609 do {
1610 Instance = Instance->getCanonicalDecl();
1611 if (Pattern == Instance) return true;
1612 Instance = Instance->getInstantiatedFromMemberFunction();
1613 } while (Instance);
1614
1615 return false;
1616}
1617
1618static bool isInstantiationOf(EnumDecl *Pattern,
1619 EnumDecl *Instance) {
1620 Pattern = Pattern->getCanonicalDecl();
1621
1622 do {
1623 Instance = Instance->getCanonicalDecl();
1624 if (Pattern == Instance) return true;
1625 Instance = Instance->getInstantiatedFromMemberEnum();
1626 } while (Instance);
1627
1628 return false;
1629}
1630
Anders Carlsson0d8df782009-08-29 19:37:28 +00001631static bool isInstantiationOf(UnresolvedUsingDecl *Pattern,
1632 UsingDecl *Instance,
1633 ASTContext &C) {
1634 return C.getInstantiatedFromUnresolvedUsingDecl(Instance) == Pattern;
1635}
1636
John McCall52a575a2009-08-29 08:11:13 +00001637static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
1638 VarDecl *Instance) {
1639 assert(Instance->isStaticDataMember());
1640
1641 Pattern = Pattern->getCanonicalDecl();
1642
1643 do {
1644 Instance = Instance->getCanonicalDecl();
1645 if (Pattern == Instance) return true;
1646 Instance = Instance->getInstantiatedFromStaticDataMember();
1647 } while (Instance);
1648
1649 return false;
1650}
1651
Douglas Gregor815215d2009-05-27 05:35:12 +00001652static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson0d8df782009-08-29 19:37:28 +00001653 if (D->getKind() != Other->getKind()) {
1654 if (UnresolvedUsingDecl *UUD = dyn_cast<UnresolvedUsingDecl>(D)) {
1655 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
1656 return isInstantiationOf(UUD, UD, Ctx);
1657 }
1658 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001659
Anders Carlsson0d8df782009-08-29 19:37:28 +00001660 return false;
1661 }
Mike Stump1eb44332009-09-09 15:08:12 +00001662
John McCall52a575a2009-08-29 08:11:13 +00001663 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
1664 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001665
John McCall52a575a2009-08-29 08:11:13 +00001666 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
1667 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor815215d2009-05-27 05:35:12 +00001668
John McCall52a575a2009-08-29 08:11:13 +00001669 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
1670 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor815215d2009-05-27 05:35:12 +00001671
Douglas Gregor7caa6822009-07-24 20:34:43 +00001672 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall52a575a2009-08-29 08:11:13 +00001673 if (Var->isStaticDataMember())
1674 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
1675
1676 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
1677 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregora5bf7f12009-08-28 22:03:51 +00001678
Douglas Gregor0d696532009-09-28 06:34:35 +00001679 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
1680 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
1681
Douglas Gregored9c0f92009-10-29 00:04:11 +00001682 if (ClassTemplatePartialSpecializationDecl *PartialSpec
1683 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
1684 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
1685 PartialSpec);
1686
Anders Carlssond8b285f2009-09-01 04:26:58 +00001687 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
1688 if (!Field->getDeclName()) {
1689 // This is an unnamed field.
Mike Stump1eb44332009-09-09 15:08:12 +00001690 return Ctx.getInstantiatedFromUnnamedFieldDecl(Field) ==
Anders Carlssond8b285f2009-09-01 04:26:58 +00001691 cast<FieldDecl>(D);
1692 }
1693 }
Mike Stump1eb44332009-09-09 15:08:12 +00001694
Douglas Gregor815215d2009-05-27 05:35:12 +00001695 return D->getDeclName() && isa<NamedDecl>(Other) &&
1696 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
1697}
1698
1699template<typename ForwardIterator>
Mike Stump1eb44332009-09-09 15:08:12 +00001700static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor815215d2009-05-27 05:35:12 +00001701 NamedDecl *D,
1702 ForwardIterator first,
1703 ForwardIterator last) {
1704 for (; first != last; ++first)
1705 if (isInstantiationOf(Ctx, D, *first))
1706 return cast<NamedDecl>(*first);
1707
1708 return 0;
1709}
1710
John McCall02cace72009-08-28 07:59:38 +00001711/// \brief Finds the instantiation of the given declaration context
1712/// within the current instantiation.
1713///
1714/// \returns NULL if there was an error
Douglas Gregore95b4092009-09-16 18:34:49 +00001715DeclContext *Sema::FindInstantiatedContext(DeclContext* DC,
1716 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCall02cace72009-08-28 07:59:38 +00001717 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregore95b4092009-09-16 18:34:49 +00001718 Decl* ID = FindInstantiatedDecl(D, TemplateArgs);
John McCall02cace72009-08-28 07:59:38 +00001719 return cast_or_null<DeclContext>(ID);
1720 } else return DC;
1721}
1722
Douglas Gregored961e72009-05-27 17:54:46 +00001723/// \brief Find the instantiation of the given declaration within the
1724/// current instantiation.
Douglas Gregor815215d2009-05-27 05:35:12 +00001725///
1726/// This routine is intended to be used when \p D is a declaration
1727/// referenced from within a template, that needs to mapped into the
1728/// corresponding declaration within an instantiation. For example,
1729/// given:
1730///
1731/// \code
1732/// template<typename T>
1733/// struct X {
1734/// enum Kind {
1735/// KnownValue = sizeof(T)
1736/// };
1737///
1738/// bool getKind() const { return KnownValue; }
1739/// };
1740///
1741/// template struct X<int>;
1742/// \endcode
1743///
1744/// In the instantiation of X<int>::getKind(), we need to map the
1745/// EnumConstantDecl for KnownValue (which refers to
1746/// X<T>::<Kind>::KnownValue) to its instantiation
Douglas Gregored961e72009-05-27 17:54:46 +00001747/// (X<int>::<Kind>::KnownValue). InstantiateCurrentDeclRef() performs
1748/// this mapping from within the instantiation of X<int>.
Douglas Gregore95b4092009-09-16 18:34:49 +00001749NamedDecl *Sema::FindInstantiatedDecl(NamedDecl *D,
1750 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor44c73842009-09-01 17:53:10 +00001751 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) {
1752 // Transform all of the elements of the overloaded function set.
Mike Stump1eb44332009-09-09 15:08:12 +00001753 OverloadedFunctionDecl *Result
Douglas Gregor44c73842009-09-01 17:53:10 +00001754 = OverloadedFunctionDecl::Create(Context, CurContext, Ovl->getDeclName());
Mike Stump1eb44332009-09-09 15:08:12 +00001755
Douglas Gregor44c73842009-09-01 17:53:10 +00001756 for (OverloadedFunctionDecl::function_iterator F = Ovl->function_begin(),
1757 FEnd = Ovl->function_end();
1758 F != FEnd; ++F) {
1759 Result->addOverload(
Douglas Gregore95b4092009-09-16 18:34:49 +00001760 AnyFunctionDecl::getFromNamedDecl(FindInstantiatedDecl(*F,
1761 TemplateArgs)));
Douglas Gregor44c73842009-09-01 17:53:10 +00001762 }
Mike Stump1eb44332009-09-09 15:08:12 +00001763
Douglas Gregor44c73842009-09-01 17:53:10 +00001764 return Result;
Mike Stump1eb44332009-09-09 15:08:12 +00001765 }
1766
Douglas Gregor815215d2009-05-27 05:35:12 +00001767 DeclContext *ParentDC = D->getDeclContext();
Douglas Gregor2bba76b2009-05-27 17:07:49 +00001768 if (isa<ParmVarDecl>(D) || ParentDC->isFunctionOrMethod()) {
1769 // D is a local of some kind. Look into the map of local
1770 // declarations to their instantiations.
1771 return cast<NamedDecl>(CurrentInstantiationScope->getInstantiationOf(D));
1772 }
Douglas Gregor815215d2009-05-27 05:35:12 +00001773
Douglas Gregore95b4092009-09-16 18:34:49 +00001774 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
1775 if (!Record->isDependentContext())
1776 return D;
1777
1778 // If the RecordDecl is actually the injected-class-name or a "templated"
1779 // declaration for a class template or class template partial
1780 // specialization, substitute into the injected-class-name of the
1781 // class template or partial specialization to find the new DeclContext.
1782 QualType T;
1783 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
1784
1785 if (ClassTemplate) {
1786 T = ClassTemplate->getInjectedClassNameType(Context);
1787 } else if (ClassTemplatePartialSpecializationDecl *PartialSpec
1788 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record)) {
1789 T = Context.getTypeDeclType(Record);
1790 ClassTemplate = PartialSpec->getSpecializedTemplate();
1791 }
1792
1793 if (!T.isNull()) {
1794 // Substitute into the injected-class-name to get the type corresponding
1795 // to the instantiation we want. This substitution should never fail,
1796 // since we know we can instantiate the injected-class-name or we wouldn't
1797 // have gotten to the injected-class-name!
1798 // FIXME: Can we use the CurrentInstantiationScope to avoid this extra
1799 // instantiation in the common case?
1800 T = SubstType(T, TemplateArgs, SourceLocation(), DeclarationName());
1801 assert(!T.isNull() && "Instantiation of injected-class-name cannot fail.");
1802
1803 if (!T->isDependentType()) {
1804 assert(T->isRecordType() && "Instantiation must produce a record type");
1805 return T->getAs<RecordType>()->getDecl();
1806 }
1807
1808 // We are performing "partial" template instantiation to create the
1809 // member declarations for the members of a class template
1810 // specialization. Therefore, D is actually referring to something in
1811 // the current instantiation. Look through the current context,
1812 // which contains actual instantiations, to find the instantiation of
1813 // the "current instantiation" that D refers to.
Mike Stump1eb44332009-09-09 15:08:12 +00001814 for (DeclContext *DC = CurContext; !DC->isFileContext();
John McCall52a575a2009-08-29 08:11:13 +00001815 DC = DC->getParent()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001816 if (ClassTemplateSpecializationDecl *Spec
John McCall52a575a2009-08-29 08:11:13 +00001817 = dyn_cast<ClassTemplateSpecializationDecl>(DC))
Douglas Gregore95b4092009-09-16 18:34:49 +00001818 if (isInstantiationOf(ClassTemplate,
1819 Spec->getSpecializedTemplate()))
John McCall52a575a2009-08-29 08:11:13 +00001820 return Spec;
1821 }
1822
Mike Stump1eb44332009-09-09 15:08:12 +00001823 assert(false &&
John McCall52a575a2009-08-29 08:11:13 +00001824 "Unable to find declaration for the current instantiation");
Douglas Gregore95b4092009-09-16 18:34:49 +00001825 return Record;
John McCall52a575a2009-08-29 08:11:13 +00001826 }
Douglas Gregore95b4092009-09-16 18:34:49 +00001827
1828 // Fall through to deal with other dependent record types (e.g.,
1829 // anonymous unions in class templates).
1830 }
John McCall52a575a2009-08-29 08:11:13 +00001831
Douglas Gregore95b4092009-09-16 18:34:49 +00001832 if (!ParentDC->isDependentContext())
1833 return D;
1834
1835 ParentDC = FindInstantiatedContext(ParentDC, TemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00001836 if (!ParentDC)
Douglas Gregor44c73842009-09-01 17:53:10 +00001837 return 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001838
Douglas Gregor815215d2009-05-27 05:35:12 +00001839 if (ParentDC != D->getDeclContext()) {
1840 // We performed some kind of instantiation in the parent context,
1841 // so now we need to look into the instantiated parent context to
1842 // find the instantiation of the declaration D.
1843 NamedDecl *Result = 0;
1844 if (D->getDeclName()) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001845 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
Douglas Gregor815215d2009-05-27 05:35:12 +00001846 Result = findInstantiationOf(Context, D, Found.first, Found.second);
1847 } else {
1848 // Since we don't have a name for the entity we're looking for,
1849 // our only option is to walk through all of the declarations to
1850 // find that name. This will occur in a few cases:
1851 //
1852 // - anonymous struct/union within a template
1853 // - unnamed class/struct/union/enum within a template
1854 //
1855 // FIXME: Find a better way to find these instantiations!
Mike Stump1eb44332009-09-09 15:08:12 +00001856 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001857 ParentDC->decls_begin(),
1858 ParentDC->decls_end());
Douglas Gregor815215d2009-05-27 05:35:12 +00001859 }
Mike Stump1eb44332009-09-09 15:08:12 +00001860
Douglas Gregor815215d2009-05-27 05:35:12 +00001861 assert(Result && "Unable to find instantiation of declaration!");
1862 D = Result;
1863 }
1864
Douglas Gregor815215d2009-05-27 05:35:12 +00001865 return D;
1866}
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001867
Mike Stump1eb44332009-09-09 15:08:12 +00001868/// \brief Performs template instantiation for all implicit template
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001869/// instantiations we have seen until this point.
1870void Sema::PerformPendingImplicitInstantiations() {
1871 while (!PendingImplicitInstantiations.empty()) {
1872 PendingImplicitInstantiation Inst = PendingImplicitInstantiations.front();
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001873 PendingImplicitInstantiations.pop_front();
Mike Stump1eb44332009-09-09 15:08:12 +00001874
Douglas Gregor7caa6822009-07-24 20:34:43 +00001875 // Instantiate function definitions
1876 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001877 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Function),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001878 Function->getLocation(), *this,
1879 Context.getSourceManager(),
1880 "instantiating function definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001881
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00001882 if (!Function->getBody())
Douglas Gregorb33fe2f2009-06-30 17:20:14 +00001883 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00001884 continue;
1885 }
Mike Stump1eb44332009-09-09 15:08:12 +00001886
Douglas Gregor7caa6822009-07-24 20:34:43 +00001887 // Instantiate static data member definitions.
1888 VarDecl *Var = cast<VarDecl>(Inst.first);
1889 assert(Var->isStaticDataMember() && "Not a static data member?");
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001890
Mike Stump1eb44332009-09-09 15:08:12 +00001891 PrettyStackTraceActionsDecl CrashInfo(DeclPtrTy::make(Var),
Anders Carlssonc17fb7b2009-09-01 05:12:24 +00001892 Var->getLocation(), *this,
1893 Context.getSourceManager(),
1894 "instantiating static data member "
1895 "definition");
Mike Stump1eb44332009-09-09 15:08:12 +00001896
Douglas Gregor7caa6822009-07-24 20:34:43 +00001897 InstantiateStaticDataMemberDefinition(/*FIXME:*/Inst.second, Var, true);
Douglas Gregord7f37bf2009-06-22 23:06:13 +00001898 }
1899}