blob: a89bf2881301084fcc2315e841da75ad977b850f [file] [log] [blame]
Douglas Gregord7e7a512009-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//===----------------------------------------------------------------------===/
John McCall83024632010-08-25 22:03:47 +000012#include "clang/Sema/SemaInternal.h"
Douglas Gregor28ad4b52009-05-26 20:50:29 +000013#include "clang/AST/ASTConsumer.h"
Douglas Gregord7e7a512009-03-17 21:15:40 +000014#include "clang/AST/ASTContext.h"
Richard Smithd28ac5b2014-03-22 23:33:22 +000015#include "clang/AST/ASTMutationListener.h"
Douglas Gregord7e7a512009-03-17 21:15:40 +000016#include "clang/AST/DeclTemplate.h"
17#include "clang/AST/DeclVisitor.h"
John McCallc62bb642010-03-24 05:22:00 +000018#include "clang/AST/DependentDiagnostic.h"
Douglas Gregord7e7a512009-03-17 21:15:40 +000019#include "clang/AST/Expr.h"
Douglas Gregor6131b442009-12-12 18:16:41 +000020#include "clang/AST/ExprCXX.h"
John McCall58f10c32010-03-11 09:03:00 +000021#include "clang/AST/TypeLoc.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000022#include "clang/Sema/Lookup.h"
23#include "clang/Sema/PrettyDeclStackTrace.h"
24#include "clang/Sema/Template.h"
Douglas Gregord7e7a512009-03-17 21:15:40 +000025
26using namespace clang;
27
David Majnemer192d1792013-11-27 08:20:38 +000028static bool isDeclWithinFunction(const Decl *D) {
29 const DeclContext *DC = D->getDeclContext();
30 if (DC->isFunctionOrMethod())
31 return true;
32
33 if (DC->isRecord())
34 return cast<CXXRecordDecl>(DC)->isLocalClass();
35
36 return false;
37}
38
Richard Smithcc928662014-10-17 20:37:29 +000039template<typename DeclT>
40static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl,
41 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor14454802011-02-25 02:25:35 +000042 if (!OldDecl->getQualifierLoc())
43 return false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000044
Richard Smithcc928662014-10-17 20:37:29 +000045 assert((NewDecl->getFriendObjectKind() ||
46 !OldDecl->getLexicalDeclContext()->isDependentContext()) &&
47 "non-friend with qualified name defined in dependent context");
48 Sema::ContextRAII SavedContext(
49 SemaRef,
50 const_cast<DeclContext *>(NewDecl->getFriendObjectKind()
51 ? NewDecl->getLexicalDeclContext()
52 : OldDecl->getLexicalDeclContext()));
53
Douglas Gregor14454802011-02-25 02:25:35 +000054 NestedNameSpecifierLoc NewQualifierLoc
Richard Smithcc928662014-10-17 20:37:29 +000055 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
56 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000057
Douglas Gregor14454802011-02-25 02:25:35 +000058 if (!NewQualifierLoc)
John McCall3e11ebe2010-03-15 10:12:16 +000059 return true;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000060
Douglas Gregor14454802011-02-25 02:25:35 +000061 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +000062 return false;
63}
64
Richard Smithcc928662014-10-17 20:37:29 +000065bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
66 DeclaratorDecl *NewDecl) {
67 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
68}
69
John McCall3e11ebe2010-03-15 10:12:16 +000070bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
71 TagDecl *NewDecl) {
Richard Smithcc928662014-10-17 20:37:29 +000072 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
John McCall3e11ebe2010-03-15 10:12:16 +000073}
74
DeLesley Hutchinsceec3062012-01-20 22:37:06 +000075// Include attribute instantiation code.
76#include "clang/Sema/AttrTemplateInstantiate.inc"
77
Richard Smith44c247f2013-02-22 08:32:16 +000078static void instantiateDependentAlignedAttr(
79 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
80 const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) {
81 if (Aligned->isAlignmentExpr()) {
82 // The alignment expression is a constant expression.
83 EnterExpressionEvaluationContext Unevaluated(S, Sema::ConstantEvaluated);
84 ExprResult Result = S.SubstExpr(Aligned->getAlignmentExpr(), TemplateArgs);
85 if (!Result.isInvalid())
Nikola Smiljanic01a75982014-05-29 10:55:11 +000086 S.AddAlignedAttr(Aligned->getLocation(), New, Result.getAs<Expr>(),
Richard Smith44c247f2013-02-22 08:32:16 +000087 Aligned->getSpellingListIndex(), IsPackExpansion);
88 } else {
89 TypeSourceInfo *Result = S.SubstType(Aligned->getAlignmentType(),
90 TemplateArgs, Aligned->getLocation(),
91 DeclarationName());
92 if (Result)
93 S.AddAlignedAttr(Aligned->getLocation(), New, Result,
94 Aligned->getSpellingListIndex(), IsPackExpansion);
95 }
96}
97
98static void instantiateDependentAlignedAttr(
99 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
100 const AlignedAttr *Aligned, Decl *New) {
101 if (!Aligned->isPackExpansion()) {
102 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false);
103 return;
104 }
105
106 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
107 if (Aligned->isAlignmentExpr())
108 S.collectUnexpandedParameterPacks(Aligned->getAlignmentExpr(),
109 Unexpanded);
110 else
111 S.collectUnexpandedParameterPacks(Aligned->getAlignmentType()->getTypeLoc(),
112 Unexpanded);
113 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?");
114
115 // Determine whether we can expand this attribute pack yet.
116 bool Expand = true, RetainExpansion = false;
117 Optional<unsigned> NumExpansions;
118 // FIXME: Use the actual location of the ellipsis.
119 SourceLocation EllipsisLoc = Aligned->getLocation();
120 if (S.CheckParameterPacksForExpansion(EllipsisLoc, Aligned->getRange(),
121 Unexpanded, TemplateArgs, Expand,
122 RetainExpansion, NumExpansions))
123 return;
124
125 if (!Expand) {
126 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, -1);
127 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, true);
128 } else {
129 for (unsigned I = 0; I != *NumExpansions; ++I) {
130 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, I);
131 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false);
132 }
133 }
134}
135
Hal Finkelee90a222014-09-26 05:04:30 +0000136static void instantiateDependentAssumeAlignedAttr(
137 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
138 const AssumeAlignedAttr *Aligned, Decl *New) {
139 // The alignment expression is a constant expression.
140 EnterExpressionEvaluationContext Unevaluated(S, Sema::ConstantEvaluated);
141
142 Expr *E, *OE = nullptr;
143 ExprResult Result = S.SubstExpr(Aligned->getAlignment(), TemplateArgs);
144 if (Result.isInvalid())
145 return;
146 E = Result.getAs<Expr>();
147
148 if (Aligned->getOffset()) {
149 Result = S.SubstExpr(Aligned->getOffset(), TemplateArgs);
150 if (Result.isInvalid())
151 return;
152 OE = Result.getAs<Expr>();
153 }
154
155 S.AddAssumeAlignedAttr(Aligned->getLocation(), New, E, OE,
156 Aligned->getSpellingListIndex());
157}
158
Hal Finkel1b0d24e2014-10-02 21:21:25 +0000159static void instantiateDependentAlignValueAttr(
160 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
161 const AlignValueAttr *Aligned, Decl *New) {
162 // The alignment expression is a constant expression.
163 EnterExpressionEvaluationContext Unevaluated(S, Sema::ConstantEvaluated);
164 ExprResult Result = S.SubstExpr(Aligned->getAlignment(), TemplateArgs);
165 if (!Result.isInvalid())
166 S.AddAlignValueAttr(Aligned->getLocation(), New, Result.getAs<Expr>(),
167 Aligned->getSpellingListIndex());
168}
169
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000170static void instantiateDependentEnableIfAttr(
171 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
172 const EnableIfAttr *A, const Decl *Tmpl, Decl *New) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000173 Expr *Cond = nullptr;
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000174 {
175 EnterExpressionEvaluationContext Unevaluated(S, Sema::Unevaluated);
176 ExprResult Result = S.SubstExpr(A->getCond(), TemplateArgs);
177 if (Result.isInvalid())
178 return;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000179 Cond = Result.getAs<Expr>();
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000180 }
181 if (A->getCond()->isTypeDependent() && !Cond->isTypeDependent()) {
182 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond);
183 if (Converted.isInvalid())
184 return;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000185 Cond = Converted.get();
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000186 }
187
188 SmallVector<PartialDiagnosticAt, 8> Diags;
189 if (A->getCond()->isValueDependent() && !Cond->isValueDependent() &&
190 !Expr::isPotentialConstantExprUnevaluated(Cond, cast<FunctionDecl>(Tmpl),
191 Diags)) {
192 S.Diag(A->getLocation(), diag::err_enable_if_never_constant_expr);
193 for (int I = 0, N = Diags.size(); I != N; ++I)
194 S.Diag(Diags[I].first, Diags[I].second);
195 return;
196 }
197
Aaron Ballman36a53502014-01-16 13:03:14 +0000198 EnableIfAttr *EIA = new (S.getASTContext())
199 EnableIfAttr(A->getLocation(), S.getASTContext(), Cond,
200 A->getMessage(),
201 A->getSpellingListIndex());
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000202 New->addAttr(EIA);
203}
204
John McCall6602bb12010-08-01 02:01:53 +0000205void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000206 const Decl *Tmpl, Decl *New,
207 LateInstantiatedAttrVec *LateAttrs,
208 LocalInstantiationScope *OuterMostScope) {
Aaron Ballmanb97112e2014-03-08 22:19:01 +0000209 for (const auto *TmplAttr : Tmpl->attrs()) {
Chandler Carruthf40c42f2010-06-25 03:22:07 +0000210 // FIXME: This should be generalized to more than just the AlignedAttr.
Richard Smith44c247f2013-02-22 08:32:16 +0000211 const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr);
212 if (Aligned && Aligned->isAlignmentDependent()) {
213 instantiateDependentAlignedAttr(*this, TemplateArgs, Aligned, New);
214 continue;
Chandler Carruthf40c42f2010-06-25 03:22:07 +0000215 }
216
Hal Finkelee90a222014-09-26 05:04:30 +0000217 const AssumeAlignedAttr *AssumeAligned = dyn_cast<AssumeAlignedAttr>(TmplAttr);
218 if (AssumeAligned) {
219 instantiateDependentAssumeAlignedAttr(*this, TemplateArgs, AssumeAligned, New);
220 continue;
221 }
222
Hal Finkel1b0d24e2014-10-02 21:21:25 +0000223 const AlignValueAttr *AlignValue = dyn_cast<AlignValueAttr>(TmplAttr);
224 if (AlignValue) {
225 instantiateDependentAlignValueAttr(*this, TemplateArgs, AlignValue, New);
226 continue;
227 }
228
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000229 const EnableIfAttr *EnableIf = dyn_cast<EnableIfAttr>(TmplAttr);
230 if (EnableIf && EnableIf->getCond()->isValueDependent()) {
231 instantiateDependentEnableIfAttr(*this, TemplateArgs, EnableIf, Tmpl,
232 New);
233 continue;
234 }
235
Hans Wennborgc2b7f7a2014-08-24 00:12:36 +0000236 // Existing DLL attribute on the instantiation takes precedence.
237 if (TmplAttr->getKind() == attr::DLLExport ||
238 TmplAttr->getKind() == attr::DLLImport) {
239 if (New->hasAttr<DLLExportAttr>() || New->hasAttr<DLLImportAttr>()) {
240 continue;
241 }
242 }
243
Richard Smith44c247f2013-02-22 08:32:16 +0000244 assert(!TmplAttr->isPackExpansion());
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000245 if (TmplAttr->isLateParsed() && LateAttrs) {
246 // Late parsed attributes must be instantiated and attached after the
247 // enclosing class has been instantiated. See Sema::InstantiateClass.
Craig Topperc3ec1492014-05-26 06:22:03 +0000248 LocalInstantiationScope *Saved = nullptr;
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000249 if (CurrentInstantiationScope)
250 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
251 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
252 } else {
Richard Smithc3d2ebb2013-06-07 02:33:37 +0000253 // Allow 'this' within late-parsed attributes.
254 NamedDecl *ND = dyn_cast<NamedDecl>(New);
255 CXXRecordDecl *ThisContext =
256 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
257 CXXThisScopeRAII ThisScope(*this, ThisContext, /*TypeQuals*/0,
258 ND && ND->isCXXInstanceMember());
259
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +0000260 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
261 *this, TemplateArgs);
Rafael Espindola7f90b7d2012-05-15 14:09:55 +0000262 if (NewAttr)
263 New->addAttr(NewAttr);
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000264 }
Anders Carlsson3d709752009-11-07 06:07:58 +0000265 }
266}
267
Richard Smith41c79d92014-10-11 00:37:16 +0000268/// Get the previous declaration of a declaration for the purposes of template
269/// instantiation. If this finds a previous declaration, then the previous
270/// declaration of the instantiation of D should be an instantiation of the
271/// result of this function.
272template<typename DeclT>
273static DeclT *getPreviousDeclForInstantiation(DeclT *D) {
274 DeclT *Result = D->getPreviousDecl();
275
276 // If the declaration is within a class, and the previous declaration was
277 // merged from a different definition of that class, then we don't have a
278 // previous declaration for the purpose of template instantiation.
279 if (Result && isa<CXXRecordDecl>(D->getDeclContext()) &&
280 D->getLexicalDeclContext() != Result->getLexicalDeclContext())
281 return nullptr;
282
283 return Result;
284}
285
Douglas Gregor8a655532009-03-25 15:45:12 +0000286Decl *
287TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000288 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor8a655532009-03-25 15:45:12 +0000289}
290
291Decl *
Chris Lattnercab02a62011-02-17 20:34:02 +0000292TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
293 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
294 D->getIdentifier());
295 Owner->addDecl(Inst);
296 return Inst;
297}
298
299Decl *
Douglas Gregor8a655532009-03-25 15:45:12 +0000300TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000301 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor8a655532009-03-25 15:45:12 +0000302}
303
John McCalld8d0d432010-02-16 06:53:13 +0000304Decl *
305TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
306 NamespaceAliasDecl *Inst
307 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
308 D->getNamespaceLoc(),
309 D->getAliasLoc(),
Douglas Gregorc05ba2e2011-02-25 17:08:07 +0000310 D->getIdentifier(),
311 D->getQualifierLoc(),
John McCalld8d0d432010-02-16 06:53:13 +0000312 D->getTargetNameLoc(),
313 D->getNamespace());
314 Owner->addDecl(Inst);
315 return Inst;
316}
317
Richard Smith3f1b5d02011-05-05 21:57:07 +0000318Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
319 bool IsTypeAlias) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000320 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000321 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000322 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000323 DI->getType()->isVariablyModifiedType()) {
John McCall703a3f82009-10-24 08:00:42 +0000324 DI = SemaRef.SubstType(DI, TemplateArgs,
325 D->getLocation(), D->getDeclName());
326 if (!DI) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000327 Invalid = true;
John McCallbcd03502009-12-07 02:54:59 +0000328 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000329 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000330 } else {
331 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000332 }
Mike Stump11289f42009-09-09 15:08:12 +0000333
Richard Smith2ddcbab2012-10-23 00:32:41 +0000334 // HACK: g++ has a bug where it gets the value kind of ?: wrong.
335 // libstdc++ relies upon this bug in its implementation of common_type.
336 // If we happen to be processing that implementation, fake up the g++ ?:
337 // semantics. See LWG issue 2141 for more information on the bug.
338 const DecltypeType *DT = DI->getType()->getAs<DecltypeType>();
339 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext());
340 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) &&
341 DT->isReferenceType() &&
342 RD->getEnclosingNamespaceContext() == SemaRef.getStdNamespace() &&
343 RD->getIdentifier() && RD->getIdentifier()->isStr("common_type") &&
344 D->getIdentifier() && D->getIdentifier()->isStr("type") &&
345 SemaRef.getSourceManager().isInSystemHeader(D->getLocStart()))
346 // Fold it to the (non-reference) type which g++ would have produced.
347 DI = SemaRef.Context.getTrivialTypeSourceInfo(
348 DI->getType().getNonReferenceType());
349
Douglas Gregord7e7a512009-03-17 21:15:40 +0000350 // Create the new typedef
Richard Smithdda56e42011-04-15 14:24:37 +0000351 TypedefNameDecl *Typedef;
352 if (IsTypeAlias)
353 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
354 D->getLocation(), D->getIdentifier(), DI);
355 else
356 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
357 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000358 if (Invalid)
359 Typedef->setInvalidDecl();
360
John McCall04fcd0d2011-02-01 08:20:08 +0000361 // If the old typedef was the name for linkage purposes of an anonymous
362 // tag decl, re-establish that relationship for the new typedef.
363 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
364 TagDecl *oldTag = oldTagType->getDecl();
Douglas Gregord831d952013-03-08 22:15:15 +0000365 if (oldTag->getTypedefNameForAnonDecl() == D && !Invalid) {
John McCall04fcd0d2011-02-01 08:20:08 +0000366 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
John McCall5ea95772013-03-09 00:54:27 +0000367 assert(!newTag->hasNameForLinkage());
Richard Smithdda56e42011-04-15 14:24:37 +0000368 newTag->setTypedefNameForAnonDecl(Typedef);
John McCall04fcd0d2011-02-01 08:20:08 +0000369 }
Douglas Gregor83eb5032010-04-23 16:25:07 +0000370 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000371
Richard Smith41c79d92014-10-11 00:37:16 +0000372 if (TypedefNameDecl *Prev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +0000373 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
374 TemplateArgs);
Douglas Gregor55e6b312011-03-04 19:46:35 +0000375 if (!InstPrev)
Craig Topperc3ec1492014-05-26 06:22:03 +0000376 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000377
Rafael Espindolacde2c8f2011-12-26 22:42:47 +0000378 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
379
380 // If the typedef types are not identical, reject them.
381 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
382
Rafael Espindola8db352d2013-10-17 15:37:26 +0000383 Typedef->setPreviousDecl(InstPrevTypedef);
John McCall91f1a022009-12-30 00:31:22 +0000384 }
385
John McCall6602bb12010-08-01 02:01:53 +0000386 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregor83eb5032010-04-23 16:25:07 +0000387
John McCall401982f2010-01-20 21:53:11 +0000388 Typedef->setAccess(D->getAccess());
Mike Stump11289f42009-09-09 15:08:12 +0000389
Douglas Gregord7e7a512009-03-17 21:15:40 +0000390 return Typedef;
391}
392
Richard Smithdda56e42011-04-15 14:24:37 +0000393Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000394 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
Richard Smith41c79d92014-10-11 00:37:16 +0000395 if (Typedef)
396 Owner->addDecl(Typedef);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000397 return Typedef;
Richard Smithdda56e42011-04-15 14:24:37 +0000398}
399
400Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000401 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
Richard Smith41c79d92014-10-11 00:37:16 +0000402 if (Typedef)
403 Owner->addDecl(Typedef);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000404 return Typedef;
405}
406
407Decl *
408TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
409 // Create a local instantiation scope for this type alias template, which
410 // will contain the instantiations of the template parameters.
411 LocalInstantiationScope Scope(SemaRef);
412
413 TemplateParameterList *TempParams = D->getTemplateParameters();
414 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
415 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +0000416 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000417
418 TypeAliasDecl *Pattern = D->getTemplatedDecl();
419
Craig Topperc3ec1492014-05-26 06:22:03 +0000420 TypeAliasTemplateDecl *PrevAliasTemplate = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000421 if (getPreviousDeclForInstantiation<TypedefNameDecl>(Pattern)) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000422 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +0000423 if (!Found.empty()) {
424 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
Richard Smith3f1b5d02011-05-05 21:57:07 +0000425 }
426 }
427
428 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
429 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
430 if (!AliasInst)
Craig Topperc3ec1492014-05-26 06:22:03 +0000431 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000432
433 TypeAliasTemplateDecl *Inst
434 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
435 D->getDeclName(), InstParams, AliasInst);
Richard Smith43ccec8e2014-08-26 03:52:16 +0000436 AliasInst->setDescribedAliasTemplate(Inst);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000437 if (PrevAliasTemplate)
Rafael Espindola8db352d2013-10-17 15:37:26 +0000438 Inst->setPreviousDecl(PrevAliasTemplate);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000439
440 Inst->setAccess(D->getAccess());
441
442 if (!PrevAliasTemplate)
443 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000444
Richard Smith3f1b5d02011-05-05 21:57:07 +0000445 Owner->addDecl(Inst);
446
447 return Inst;
Richard Smithdda56e42011-04-15 14:24:37 +0000448}
449
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000450Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000451 return VisitVarDecl(D, /*InstantiatingVarTemplate=*/false);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000452}
453
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000454Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D,
455 bool InstantiatingVarTemplate) {
Larisse Voufo39a1e502013-08-06 01:03:05 +0000456
Douglas Gregor04163182010-05-21 00:31:19 +0000457 // If this is the variable for an anonymous struct or union,
458 // instantiate the anonymous struct/union type first.
459 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
460 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
461 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
Craig Topperc3ec1492014-05-26 06:22:03 +0000462 return nullptr;
Douglas Gregor04163182010-05-21 00:31:19 +0000463
John McCall76d824f2009-08-25 22:02:44 +0000464 // Do substitution on the type of the declaration
John McCallbcd03502009-12-07 02:54:59 +0000465 TypeSourceInfo *DI = SemaRef.SubstType(D->getTypeSourceInfo(),
John McCallf1abcdc2009-10-21 02:39:02 +0000466 TemplateArgs,
467 D->getTypeSpecStartLoc(),
468 D->getDeclName());
469 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +0000470 return nullptr;
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000471
Douglas Gregor61623342010-09-12 07:37:24 +0000472 if (DI->getType()->isFunctionType()) {
473 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
474 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +0000475 return nullptr;
Douglas Gregor61623342010-09-12 07:37:24 +0000476 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000477
Richard Smith541b38b2013-09-20 01:15:31 +0000478 DeclContext *DC = Owner;
479 if (D->isLocalExternDecl())
480 SemaRef.adjustContextForLocalExternDecl(DC);
481
Larisse Voufo39a1e502013-08-06 01:03:05 +0000482 // Build the instantiated declaration.
Richard Smith541b38b2013-09-20 01:15:31 +0000483 VarDecl *Var = VarDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000484 D->getLocation(), D->getIdentifier(),
Larisse Voufo39a1e502013-08-06 01:03:05 +0000485 DI->getType(), DI, D->getStorageClass());
Mike Stump11289f42009-09-09 15:08:12 +0000486
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000487 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000488 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000489 SemaRef.inferObjCARCLifetime(Var))
490 Var->setInvalidDecl();
491
Larisse Voufo39a1e502013-08-06 01:03:05 +0000492 // Substitute the nested name specifier, if any.
493 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +0000494 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000495
Richard Smith541b38b2013-09-20 01:15:31 +0000496 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, Owner,
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000497 StartingScope, InstantiatingVarTemplate);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000498
499 if (D->isNRVOVariable()) {
500 QualType ReturnType = cast<FunctionDecl>(DC)->getReturnType();
501 if (SemaRef.isCopyElisionCandidate(ReturnType, Var, false))
502 Var->setNRVOVariable(true);
503 }
504
Alexander Kornienko83a4e182014-05-27 21:29:22 +0000505 Var->setImplicit(D->isImplicit());
506
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000507 return Var;
508}
509
Abramo Bagnarad7340582010-06-05 05:09:32 +0000510Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
511 AccessSpecDecl* AD
512 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
513 D->getAccessSpecifierLoc(), D->getColonLoc());
514 Owner->addHiddenDecl(AD);
515 return AD;
516}
517
Douglas Gregord7e7a512009-03-17 21:15:40 +0000518Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
519 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000520 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000521 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000522 DI->getType()->isVariablyModifiedType()) {
John McCall90459c52009-10-22 23:33:21 +0000523 DI = SemaRef.SubstType(DI, TemplateArgs,
524 D->getLocation(), D->getDeclName());
525 if (!DI) {
John McCallbcd03502009-12-07 02:54:59 +0000526 DI = D->getTypeSourceInfo();
John McCall90459c52009-10-22 23:33:21 +0000527 Invalid = true;
528 } else if (DI->getType()->isFunctionType()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000529 // C++ [temp.arg.type]p3:
530 // If a declaration acquires a function type through a type
531 // dependent on a template-parameter and this causes a
532 // declaration that does not use the syntactic form of a
533 // function declarator to have function type, the program is
534 // ill-formed.
535 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall90459c52009-10-22 23:33:21 +0000536 << DI->getType();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000537 Invalid = true;
538 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000539 } else {
540 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000541 }
542
543 Expr *BitWidth = D->getBitWidth();
544 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +0000545 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000546 else if (BitWidth) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000547 // The bit-width expression is a constant expression.
548 EnterExpressionEvaluationContext Unevaluated(SemaRef,
549 Sema::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000550
John McCalldadc5752010-08-24 06:29:42 +0000551 ExprResult InstantiatedBitWidth
John McCall76d824f2009-08-25 22:02:44 +0000552 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000553 if (InstantiatedBitWidth.isInvalid()) {
554 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +0000555 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000556 } else
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000557 BitWidth = InstantiatedBitWidth.getAs<Expr>();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000558 }
559
John McCall90459c52009-10-22 23:33:21 +0000560 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
561 DI->getType(), DI,
Mike Stump11289f42009-09-09 15:08:12 +0000562 cast<RecordDecl>(Owner),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000563 D->getLocation(),
564 D->isMutable(),
565 BitWidth,
Richard Smith2b013182012-06-10 03:12:00 +0000566 D->getInClassInitStyle(),
Richard Smith47ad0172012-05-23 04:22:22 +0000567 D->getInnerLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000568 D->getAccess(),
Craig Topperc3ec1492014-05-26 06:22:03 +0000569 nullptr);
Douglas Gregor3c74d412009-10-14 20:14:33 +0000570 if (!Field) {
571 cast<Decl>(Owner)->setInvalidDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +0000572 return nullptr;
Douglas Gregor3c74d412009-10-14 20:14:33 +0000573 }
Mike Stump11289f42009-09-09 15:08:12 +0000574
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000575 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000576
Richard Smith848e1f12013-02-01 08:12:08 +0000577 if (Field->hasAttrs())
578 SemaRef.CheckAlignasUnderalignment(Field);
579
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000580 if (Invalid)
581 Field->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000582
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000583 if (!Field->getDeclName()) {
584 // Keep track of where this decl came from.
585 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000586 }
Douglas Gregor04163182010-05-21 00:31:19 +0000587 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
588 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl50c68252010-08-31 00:36:30 +0000589 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor04163182010-05-21 00:31:19 +0000590 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000591 }
Mike Stump11289f42009-09-09 15:08:12 +0000592
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000593 Field->setImplicit(D->isImplicit());
John McCall401982f2010-01-20 21:53:11 +0000594 Field->setAccess(D->getAccess());
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000595 Owner->addDecl(Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000596
597 return Field;
598}
599
John McCall5e77d762013-04-16 07:28:30 +0000600Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) {
601 bool Invalid = false;
602 TypeSourceInfo *DI = D->getTypeSourceInfo();
603
604 if (DI->getType()->isVariablyModifiedType()) {
605 SemaRef.Diag(D->getLocation(), diag::err_property_is_variably_modified)
Aaron Ballman1bda4592014-01-03 01:09:27 +0000606 << D;
John McCall5e77d762013-04-16 07:28:30 +0000607 Invalid = true;
608 } else if (DI->getType()->isInstantiationDependentType()) {
609 DI = SemaRef.SubstType(DI, TemplateArgs,
610 D->getLocation(), D->getDeclName());
611 if (!DI) {
612 DI = D->getTypeSourceInfo();
613 Invalid = true;
614 } else if (DI->getType()->isFunctionType()) {
615 // C++ [temp.arg.type]p3:
616 // If a declaration acquires a function type through a type
617 // dependent on a template-parameter and this causes a
618 // declaration that does not use the syntactic form of a
619 // function declarator to have function type, the program is
620 // ill-formed.
621 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
622 << DI->getType();
623 Invalid = true;
624 }
625 } else {
626 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
627 }
628
Richard Smithf7981722013-11-22 09:01:48 +0000629 MSPropertyDecl *Property = MSPropertyDecl::Create(
630 SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(),
631 DI, D->getLocStart(), D->getGetterId(), D->getSetterId());
John McCall5e77d762013-04-16 07:28:30 +0000632
633 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
634 StartingScope);
635
636 if (Invalid)
637 Property->setInvalidDecl();
638
639 Property->setAccess(D->getAccess());
640 Owner->addDecl(Property);
641
642 return Property;
643}
644
Francois Pichet783dd6e2010-11-21 06:08:52 +0000645Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
646 NamedDecl **NamedChain =
647 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
648
649 int i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +0000650 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +0000651 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), PI,
Douglas Gregor55e6b312011-03-04 19:46:35 +0000652 TemplateArgs);
653 if (!Next)
Craig Topperc3ec1492014-05-26 06:22:03 +0000654 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000655
Douglas Gregor55e6b312011-03-04 19:46:35 +0000656 NamedChain[i++] = Next;
657 }
Francois Pichet783dd6e2010-11-21 06:08:52 +0000658
Francois Pichetdbafc192010-12-09 10:07:54 +0000659 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Aaron Ballman260995b2014-10-15 16:58:18 +0000660 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
661 SemaRef.Context, Owner, D->getLocation(), D->getIdentifier(), T,
662 NamedChain, D->getChainingSize());
Francois Pichet783dd6e2010-11-21 06:08:52 +0000663
Aaron Ballman260995b2014-10-15 16:58:18 +0000664 for (const auto *Attr : D->attrs())
665 IndirectField->addAttr(Attr->clone(SemaRef.Context));
Francois Pichet783dd6e2010-11-21 06:08:52 +0000666
667 IndirectField->setImplicit(D->isImplicit());
668 IndirectField->setAccess(D->getAccess());
669 Owner->addDecl(IndirectField);
670 return IndirectField;
671}
672
John McCallaa74a0c2009-08-28 07:59:38 +0000673Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCallaa74a0c2009-08-28 07:59:38 +0000674 // Handle friend type expressions by simply substituting template
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000675 // parameters into the pattern type and checking the result.
John McCall15ad0962010-03-25 18:04:51 +0000676 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth08836322011-05-01 00:51:33 +0000677 TypeSourceInfo *InstTy;
678 // If this is an unsupported friend, don't bother substituting template
679 // arguments into it. The actual type referred to won't be used by any
680 // parts of Clang, and may not be valid for instantiating. Just use the
681 // same info for the instantiated friend.
682 if (D->isUnsupportedFriend()) {
683 InstTy = Ty;
684 } else {
685 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
686 D->getLocation(), DeclarationName());
687 }
688 if (!InstTy)
Craig Topperc3ec1492014-05-26 06:22:03 +0000689 return nullptr;
John McCallaa74a0c2009-08-28 07:59:38 +0000690
Richard Smitha31a89a2012-09-20 01:31:00 +0000691 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocStart(),
Abramo Bagnara254b6302011-10-29 20:52:52 +0000692 D->getFriendLoc(), InstTy);
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000693 if (!FD)
Craig Topperc3ec1492014-05-26 06:22:03 +0000694 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000695
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000696 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000697 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000698 Owner->addDecl(FD);
699 return FD;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000700 }
701
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000702 NamedDecl *ND = D->getFriendDecl();
703 assert(ND && "friend decl must be a decl or a type!");
704
John McCallb9c78482010-04-08 09:05:18 +0000705 // All of the Visit implementations for the various potential friend
706 // declarations have to be carefully written to work for friend
707 // objects, with the most important detail being that the target
708 // decl should almost certainly not be placed in Owner.
709 Decl *NewND = Visit(ND);
Craig Topperc3ec1492014-05-26 06:22:03 +0000710 if (!NewND) return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000711
John McCallaa74a0c2009-08-28 07:59:38 +0000712 FriendDecl *FD =
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000713 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000714 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall75c03bb2009-08-29 03:50:18 +0000715 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000716 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCallaa74a0c2009-08-28 07:59:38 +0000717 Owner->addDecl(FD);
718 return FD;
John McCall58de3582009-08-14 02:03:10 +0000719}
720
Douglas Gregord7e7a512009-03-17 21:15:40 +0000721Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
722 Expr *AssertExpr = D->getAssertExpr();
Mike Stump11289f42009-09-09 15:08:12 +0000723
Richard Smith764d2fe2011-12-20 02:08:33 +0000724 // The expression in a static assertion is a constant expression.
725 EnterExpressionEvaluationContext Unevaluated(SemaRef,
726 Sema::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000727
John McCalldadc5752010-08-24 06:29:42 +0000728 ExprResult InstantiatedAssertExpr
John McCall76d824f2009-08-25 22:02:44 +0000729 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000730 if (InstantiatedAssertExpr.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000731 return nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000732
Richard Smithded9c2e2012-07-11 22:37:56 +0000733 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCallb268a282010-08-23 23:25:46 +0000734 InstantiatedAssertExpr.get(),
Richard Smithded9c2e2012-07-11 22:37:56 +0000735 D->getMessage(),
736 D->getRParenLoc(),
737 D->isFailed());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000738}
739
740Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000741 EnumDecl *PrevDecl = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000742 if (EnumDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Richard Smith2e6610a2012-03-26 04:58:10 +0000743 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +0000744 PatternPrev,
Richard Smith2e6610a2012-03-26 04:58:10 +0000745 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +0000746 if (!Prev) return nullptr;
Richard Smith2e6610a2012-03-26 04:58:10 +0000747 PrevDecl = cast<EnumDecl>(Prev);
748 }
749
Abramo Bagnara29c2d462011-03-09 14:09:51 +0000750 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000751 D->getLocation(), D->getIdentifier(),
Richard Smith2e6610a2012-03-26 04:58:10 +0000752 PrevDecl, D->isScoped(),
Abramo Bagnara0e05e242010-12-03 18:54:17 +0000753 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor0bf31402010-10-08 23:50:27 +0000754 if (D->isFixed()) {
Richard Smith4b38ded2012-03-14 23:13:10 +0000755 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +0000756 // If we have type source information for the underlying type, it means it
757 // has been explicitly set by the user. Perform substitution on it before
758 // moving on.
759 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smith4b38ded2012-03-14 23:13:10 +0000760 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
761 DeclarationName());
762 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor0bf31402010-10-08 23:50:27 +0000763 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smith4b38ded2012-03-14 23:13:10 +0000764 else
765 Enum->setIntegerTypeSourceInfo(NewTI);
766 } else {
Douglas Gregor0bf31402010-10-08 23:50:27 +0000767 assert(!D->getIntegerType()->isDependentType()
768 && "Dependent type without type source info");
769 Enum->setIntegerType(D->getIntegerType());
770 }
771 }
772
John McCall811a0f52010-10-22 23:36:17 +0000773 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
774
Richard Smith4b38ded2012-03-14 23:13:10 +0000775 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor6c2adff2009-03-25 22:00:53 +0000776 Enum->setAccess(D->getAccess());
David Majnemerdbc0c8f2013-12-04 09:01:55 +0000777 // Forward the mangling number from the template to the instantiated decl.
778 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
Craig Topperc3ec1492014-05-26 06:22:03 +0000779 if (SubstQualifier(D, Enum)) return nullptr;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000780 Owner->addDecl(Enum);
Richard Smith4b38ded2012-03-14 23:13:10 +0000781
Richard Smith258a7442012-03-26 04:08:46 +0000782 EnumDecl *Def = D->getDefinition();
783 if (Def && Def != D) {
784 // If this is an out-of-line definition of an enum member template, check
785 // that the underlying types match in the instantiation of both
786 // declarations.
787 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
788 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
789 QualType DefnUnderlying =
790 SemaRef.SubstType(TI->getType(), TemplateArgs,
791 UnderlyingLoc, DeclarationName());
792 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
793 DefnUnderlying, Enum);
794 }
795 }
Douglas Gregord7e7a512009-03-17 21:15:40 +0000796
Richard Smith4b38ded2012-03-14 23:13:10 +0000797 // C++11 [temp.inst]p1: The implicit instantiation of a class template
798 // specialization causes the implicit instantiation of the declarations, but
799 // not the definitions of scoped member enumerations.
David Majnemer192d1792013-11-27 08:20:38 +0000800 //
801 // DR1484 clarifies that enumeration definitions inside of a template
802 // declaration aren't considered entities that can be separately instantiated
803 // from the rest of the entity they are declared inside of.
804 if (isDeclWithinFunction(D) ? D == Def : Def && !Enum->isScoped()) {
805 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
Richard Smith258a7442012-03-26 04:08:46 +0000806 InstantiateEnumDefinition(Enum, Def);
David Majnemer192d1792013-11-27 08:20:38 +0000807 }
Richard Smith4b38ded2012-03-14 23:13:10 +0000808
809 return Enum;
810}
811
812void TemplateDeclInstantiator::InstantiateEnumDefinition(
813 EnumDecl *Enum, EnumDecl *Pattern) {
814 Enum->startDefinition();
815
Richard Smith7d137e32012-03-23 03:33:32 +0000816 // Update the location to refer to the definition.
817 Enum->setLocation(Pattern->getLocation());
818
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000819 SmallVector<Decl*, 4> Enumerators;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000820
Craig Topperc3ec1492014-05-26 06:22:03 +0000821 EnumConstantDecl *LastEnumConst = nullptr;
Aaron Ballman23a6dcb2014-03-08 18:45:14 +0000822 for (auto *EC : Pattern->enumerators()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000823 // The specified value for the enumerator.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000824 ExprResult Value((Expr *)nullptr);
Douglas Gregor0b6a6242009-06-22 20:57:11 +0000825 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000826 // The enumerator's value expression is a constant expression.
Mike Stump11289f42009-09-09 15:08:12 +0000827 EnterExpressionEvaluationContext Unevaluated(SemaRef,
Richard Smith764d2fe2011-12-20 02:08:33 +0000828 Sema::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000829
John McCall76d824f2009-08-25 22:02:44 +0000830 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregor0b6a6242009-06-22 20:57:11 +0000831 }
Douglas Gregord7e7a512009-03-17 21:15:40 +0000832
833 // Drop the initial value and continue.
834 bool isInvalid = false;
835 if (Value.isInvalid()) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000836 Value = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000837 isInvalid = true;
838 }
839
Mike Stump11289f42009-09-09 15:08:12 +0000840 EnumConstantDecl *EnumConst
Douglas Gregord7e7a512009-03-17 21:15:40 +0000841 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
842 EC->getLocation(), EC->getIdentifier(),
John McCallb268a282010-08-23 23:25:46 +0000843 Value.get());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000844
845 if (isInvalid) {
846 if (EnumConst)
847 EnumConst->setInvalidDecl();
848 Enum->setInvalidDecl();
849 }
850
851 if (EnumConst) {
Aaron Ballman23a6dcb2014-03-08 18:45:14 +0000852 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst);
John McCall811a0f52010-10-22 23:36:17 +0000853
John McCallf9b528c2010-01-23 22:37:59 +0000854 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000855 Enum->addDecl(EnumConst);
John McCall48871652010-08-21 09:40:31 +0000856 Enumerators.push_back(EnumConst);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000857 LastEnumConst = EnumConst;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000858
Richard Smith4b38ded2012-03-14 23:13:10 +0000859 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
860 !Enum->isScoped()) {
Douglas Gregoraff9c1a2010-03-01 19:00:07 +0000861 // If the enumeration is within a function or method, record the enum
862 // constant as a local.
Aaron Ballman23a6dcb2014-03-08 18:45:14 +0000863 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst);
Douglas Gregoraff9c1a2010-03-01 19:00:07 +0000864 }
Douglas Gregord7e7a512009-03-17 21:15:40 +0000865 }
866 }
Mike Stump11289f42009-09-09 15:08:12 +0000867
Richard Smith4b38ded2012-03-14 23:13:10 +0000868 // FIXME: Fixup LBraceLoc
869 SemaRef.ActOnEnumBody(Enum->getLocation(), SourceLocation(),
870 Enum->getRBraceLoc(), Enum,
Dmitri Gribenkoe5fde992013-04-27 20:23:52 +0000871 Enumerators,
Craig Topperc3ec1492014-05-26 06:22:03 +0000872 nullptr, nullptr);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000873}
874
Douglas Gregor9106b822009-03-25 15:04:13 +0000875Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000876 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor9106b822009-03-25 15:04:13 +0000877}
878
John McCall87a44eb2009-08-20 01:44:21 +0000879Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall598b4402010-03-25 06:39:04 +0000880 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
881
Douglas Gregor954de172009-10-31 17:21:17 +0000882 // Create a local instantiation scope for this class template, which
883 // will contain the instantiations of the template parameters.
John McCall19c1bfd2010-08-25 05:32:35 +0000884 LocalInstantiationScope Scope(SemaRef);
John McCall87a44eb2009-08-20 01:44:21 +0000885 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCall76d824f2009-08-25 22:02:44 +0000886 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +0000887 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +0000888 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +0000889
890 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall598b4402010-03-25 06:39:04 +0000891
892 // Instantiate the qualifier. We have to do this first in case
893 // we're a friend declaration, because if we are then we need to put
894 // the new declaration in the appropriate context.
Douglas Gregor14454802011-02-25 02:25:35 +0000895 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
896 if (QualifierLoc) {
897 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
898 TemplateArgs);
899 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +0000900 return nullptr;
John McCall598b4402010-03-25 06:39:04 +0000901 }
902
Craig Topperc3ec1492014-05-26 06:22:03 +0000903 CXXRecordDecl *PrevDecl = nullptr;
904 ClassTemplateDecl *PrevClassTemplate = nullptr;
John McCall598b4402010-03-25 06:39:04 +0000905
Richard Smith41c79d92014-10-11 00:37:16 +0000906 if (!isFriend && getPreviousDeclForInstantiation(Pattern)) {
Nick Lewycky61478912010-11-08 23:29:42 +0000907 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +0000908 if (!Found.empty()) {
909 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
Nick Lewycky61478912010-11-08 23:29:42 +0000910 if (PrevClassTemplate)
911 PrevDecl = PrevClassTemplate->getTemplatedDecl();
912 }
913 }
914
John McCall598b4402010-03-25 06:39:04 +0000915 // If this isn't a friend, then it's a member template, in which
916 // case we just want to build the instantiation in the
917 // specialization. If it is a friend, we want to build it in
918 // the appropriate context.
919 DeclContext *DC = Owner;
920 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +0000921 if (QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +0000922 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +0000923 SS.Adopt(QualifierLoc);
John McCall598b4402010-03-25 06:39:04 +0000924 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +0000925 if (!DC) return nullptr;
John McCall598b4402010-03-25 06:39:04 +0000926 } else {
927 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
928 Pattern->getDeclContext(),
929 TemplateArgs);
930 }
931
932 // Look for a previous declaration of the template in the owning
933 // context.
934 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
935 Sema::LookupOrdinaryName, Sema::ForRedeclaration);
936 SemaRef.LookupQualifiedName(R, DC);
937
938 if (R.isSingleResult()) {
939 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
940 if (PrevClassTemplate)
941 PrevDecl = PrevClassTemplate->getTemplatedDecl();
942 }
943
Douglas Gregor14454802011-02-25 02:25:35 +0000944 if (!PrevClassTemplate && QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +0000945 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregorf5af3582010-03-31 23:17:41 +0000946 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregor14454802011-02-25 02:25:35 +0000947 << QualifierLoc.getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +0000948 return nullptr;
John McCall598b4402010-03-25 06:39:04 +0000949 }
950
Douglas Gregor01e09d92010-04-08 18:16:15 +0000951 bool AdoptedPreviousTemplateParams = false;
John McCall598b4402010-03-25 06:39:04 +0000952 if (PrevClassTemplate) {
Douglas Gregor01e09d92010-04-08 18:16:15 +0000953 bool Complain = true;
954
955 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
956 // template for struct std::tr1::__detail::_Map_base, where the
957 // template parameters of the friend declaration don't match the
958 // template parameters of the original declaration. In this one
959 // case, we don't complain about the ill-formed friend
960 // declaration.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000961 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregor01e09d92010-04-08 18:16:15 +0000962 Pattern->getIdentifier()->isStr("_Map_base") &&
963 DC->isNamespace() &&
964 cast<NamespaceDecl>(DC)->getIdentifier() &&
965 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
966 DeclContext *DCParent = DC->getParent();
967 if (DCParent->isNamespace() &&
968 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
969 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
Richard Trieuc771d5d2014-05-28 02:16:01 +0000970 if (cast<Decl>(DCParent)->isInStdNamespace())
Douglas Gregor01e09d92010-04-08 18:16:15 +0000971 Complain = false;
972 }
973 }
974
John McCall598b4402010-03-25 06:39:04 +0000975 TemplateParameterList *PrevParams
976 = PrevClassTemplate->getTemplateParameters();
977
978 // Make sure the parameter lists match.
979 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000980 Complain,
Douglas Gregor01e09d92010-04-08 18:16:15 +0000981 Sema::TPL_TemplateMatch)) {
982 if (Complain)
Craig Topperc3ec1492014-05-26 06:22:03 +0000983 return nullptr;
Douglas Gregor01e09d92010-04-08 18:16:15 +0000984
985 AdoptedPreviousTemplateParams = true;
986 InstParams = PrevParams;
987 }
John McCall598b4402010-03-25 06:39:04 +0000988
989 // Do some additional validation, then merge default arguments
990 // from the existing declarations.
Douglas Gregor01e09d92010-04-08 18:16:15 +0000991 if (!AdoptedPreviousTemplateParams &&
992 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall598b4402010-03-25 06:39:04 +0000993 Sema::TPC_ClassTemplate))
Craig Topperc3ec1492014-05-26 06:22:03 +0000994 return nullptr;
John McCall598b4402010-03-25 06:39:04 +0000995 }
996 }
997
John McCall87a44eb2009-08-20 01:44:21 +0000998 CXXRecordDecl *RecordInst
John McCall598b4402010-03-25 06:39:04 +0000999 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001000 Pattern->getLocStart(), Pattern->getLocation(),
1001 Pattern->getIdentifier(), PrevDecl,
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001002 /*DelayTypeCreation=*/true);
John McCall87a44eb2009-08-20 01:44:21 +00001003
Douglas Gregor14454802011-02-25 02:25:35 +00001004 if (QualifierLoc)
1005 RecordInst->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001006
John McCall87a44eb2009-08-20 01:44:21 +00001007 ClassTemplateDecl *Inst
John McCall598b4402010-03-25 06:39:04 +00001008 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
1009 D->getIdentifier(), InstParams, RecordInst,
1010 PrevClassTemplate);
John McCall87a44eb2009-08-20 01:44:21 +00001011 RecordInst->setDescribedClassTemplate(Inst);
John McCall17762b82010-04-08 20:25:50 +00001012
John McCall598b4402010-03-25 06:39:04 +00001013 if (isFriend) {
John McCall17762b82010-04-08 20:25:50 +00001014 if (PrevClassTemplate)
1015 Inst->setAccess(PrevClassTemplate->getAccess());
1016 else
1017 Inst->setAccess(D->getAccess());
1018
Richard Smith64017682013-07-17 23:53:16 +00001019 Inst->setObjectOfFriendDecl();
John McCall598b4402010-03-25 06:39:04 +00001020 // TODO: do we want to track the instantiation progeny of this
1021 // friend target decl?
1022 } else {
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001023 Inst->setAccess(D->getAccess());
Nick Lewycky61478912010-11-08 23:29:42 +00001024 if (!PrevClassTemplate)
1025 Inst->setInstantiatedFromMemberTemplate(D);
John McCall598b4402010-03-25 06:39:04 +00001026 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001027
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001028 // Trigger creation of the type for the instantiation.
John McCalle78aac42010-03-10 03:28:59 +00001029 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor9961ce92010-07-08 18:37:38 +00001030 Inst->getInjectedClassNameSpecialization());
John McCall17762b82010-04-08 20:25:50 +00001031
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001032 // Finish handling of friends.
John McCall598b4402010-03-25 06:39:04 +00001033 if (isFriend) {
Richard Smith05afe5e2012-03-13 03:12:56 +00001034 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001035 Inst->setLexicalDeclContext(Owner);
1036 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001037 return Inst;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001038 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001039
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001040 if (D->isOutOfLine()) {
1041 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1042 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
1043 }
1044
John McCall87a44eb2009-08-20 01:44:21 +00001045 Owner->addDecl(Inst);
Douglas Gregor869853e2010-11-10 19:44:59 +00001046
1047 if (!PrevClassTemplate) {
1048 // Queue up any out-of-line partial specializations of this member
1049 // class template; the client will force their instantiation once
1050 // the enclosing class has been instantiated.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001051 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregor869853e2010-11-10 19:44:59 +00001052 D->getPartialSpecializations(PartialSpecs);
1053 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001054 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Douglas Gregor869853e2010-11-10 19:44:59 +00001055 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
1056 }
1057
John McCall87a44eb2009-08-20 01:44:21 +00001058 return Inst;
1059}
1060
Douglas Gregore704c9d2009-08-27 16:57:43 +00001061Decl *
Douglas Gregore4b05162009-10-07 17:21:34 +00001062TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
1063 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregor21610382009-10-29 00:04:11 +00001064 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001065
Douglas Gregor21610382009-10-29 00:04:11 +00001066 // Lookup the already-instantiated declaration in the instantiation
1067 // of the class template and return that.
1068 DeclContext::lookup_result Found
1069 = Owner->lookup(ClassTemplate->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001070 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00001071 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001072
Douglas Gregor21610382009-10-29 00:04:11 +00001073 ClassTemplateDecl *InstClassTemplate
David Blaikieff7d47a2012-12-19 00:45:41 +00001074 = dyn_cast<ClassTemplateDecl>(Found.front());
Douglas Gregor21610382009-10-29 00:04:11 +00001075 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00001076 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001077
Douglas Gregor869853e2010-11-10 19:44:59 +00001078 if (ClassTemplatePartialSpecializationDecl *Result
1079 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
1080 return Result;
1081
1082 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregore4b05162009-10-07 17:21:34 +00001083}
1084
Larisse Voufo39a1e502013-08-06 01:03:05 +00001085Decl *TemplateDeclInstantiator::VisitVarTemplateDecl(VarTemplateDecl *D) {
1086 assert(D->getTemplatedDecl()->isStaticDataMember() &&
1087 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001088
1089 // Create a local instantiation scope for this variable template, which
1090 // will contain the instantiations of the template parameters.
1091 LocalInstantiationScope Scope(SemaRef);
1092 TemplateParameterList *TempParams = D->getTemplateParameters();
1093 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1094 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001095 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001096
1097 VarDecl *Pattern = D->getTemplatedDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00001098 VarTemplateDecl *PrevVarTemplate = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001099
Richard Smith41c79d92014-10-11 00:37:16 +00001100 if (getPreviousDeclForInstantiation(Pattern)) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00001101 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
1102 if (!Found.empty())
1103 PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1104 }
1105
Richard Smith1c34fb72013-08-13 18:18:50 +00001106 VarDecl *VarInst =
Larisse Voufo72caf2b2013-08-22 00:59:14 +00001107 cast_or_null<VarDecl>(VisitVarDecl(Pattern,
1108 /*InstantiatingVarTemplate=*/true));
Larisse Voufo39a1e502013-08-06 01:03:05 +00001109
1110 DeclContext *DC = Owner;
1111
Larisse Voufo39a1e502013-08-06 01:03:05 +00001112 VarTemplateDecl *Inst = VarTemplateDecl::Create(
1113 SemaRef.Context, DC, D->getLocation(), D->getIdentifier(), InstParams,
Richard Smithbeef3452014-01-16 23:39:20 +00001114 VarInst);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001115 VarInst->setDescribedVarTemplate(Inst);
Richard Smithbeef3452014-01-16 23:39:20 +00001116 Inst->setPreviousDecl(PrevVarTemplate);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001117
1118 Inst->setAccess(D->getAccess());
1119 if (!PrevVarTemplate)
1120 Inst->setInstantiatedFromMemberTemplate(D);
1121
1122 if (D->isOutOfLine()) {
1123 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1124 VarInst->setLexicalDeclContext(D->getLexicalDeclContext());
1125 }
1126
1127 Owner->addDecl(Inst);
1128
1129 if (!PrevVarTemplate) {
1130 // Queue up any out-of-line partial specializations of this member
1131 // variable template; the client will force their instantiation once
1132 // the enclosing class has been instantiated.
1133 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
1134 D->getPartialSpecializations(PartialSpecs);
1135 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001136 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00001137 OutOfLineVarPartialSpecs.push_back(
1138 std::make_pair(Inst, PartialSpecs[I]));
1139 }
1140
1141 return Inst;
1142}
1143
1144Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl(
1145 VarTemplatePartialSpecializationDecl *D) {
1146 assert(D->isStaticDataMember() &&
1147 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001148
1149 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
1150
1151 // Lookup the already-instantiated declaration and return that.
1152 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName());
1153 assert(!Found.empty() && "Instantiation found nothing?");
1154
1155 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1156 assert(InstVarTemplate && "Instantiation did not find a variable template?");
1157
1158 if (VarTemplatePartialSpecializationDecl *Result =
1159 InstVarTemplate->findPartialSpecInstantiatedFromMember(D))
1160 return Result;
1161
1162 return InstantiateVarTemplatePartialSpecialization(InstVarTemplate, D);
1163}
1164
Douglas Gregore4b05162009-10-07 17:21:34 +00001165Decl *
Douglas Gregore704c9d2009-08-27 16:57:43 +00001166TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor954de172009-10-31 17:21:17 +00001167 // Create a local instantiation scope for this function template, which
1168 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001169 // merged with the local instantiation scope for the function template
Douglas Gregor954de172009-10-31 17:21:17 +00001170 // itself.
John McCall19c1bfd2010-08-25 05:32:35 +00001171 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor14cf7522010-04-30 18:55:50 +00001172
Douglas Gregore704c9d2009-08-27 16:57:43 +00001173 TemplateParameterList *TempParams = D->getTemplateParameters();
1174 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001175 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001176 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001177
Craig Topperc3ec1492014-05-26 06:22:03 +00001178 FunctionDecl *Instantiated = nullptr;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001179 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001180 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001181 InstParams));
1182 else
1183 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001184 D->getTemplatedDecl(),
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001185 InstParams));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001186
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001187 if (!Instantiated)
Craig Topperc3ec1492014-05-26 06:22:03 +00001188 return nullptr;
Douglas Gregore704c9d2009-08-27 16:57:43 +00001189
Mike Stump11289f42009-09-09 15:08:12 +00001190 // Link the instantiated function template declaration to the function
Douglas Gregore704c9d2009-08-27 16:57:43 +00001191 // template from which it was instantiated.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001192 FunctionTemplateDecl *InstTemplate
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001193 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregorca027af2009-10-12 22:27:17 +00001194 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001195 assert(InstTemplate &&
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001196 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCall2079d0b2009-12-14 23:19:40 +00001197
John McCall30837102010-03-26 23:10:15 +00001198 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
1199
John McCall2079d0b2009-12-14 23:19:40 +00001200 // Link the instantiation back to the pattern *unless* this is a
1201 // non-definition friend declaration.
1202 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCall30837102010-03-26 23:10:15 +00001203 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001204 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001205
John McCall30837102010-03-26 23:10:15 +00001206 // Make declarations visible in the appropriate context.
John McCalla0a96892012-08-10 03:15:35 +00001207 if (!isFriend) {
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001208 Owner->addDecl(InstTemplate);
John McCalla0a96892012-08-10 03:15:35 +00001209 } else if (InstTemplate->getDeclContext()->isRecord() &&
Richard Smith41c79d92014-10-11 00:37:16 +00001210 !getPreviousDeclForInstantiation(D)) {
John McCalla0a96892012-08-10 03:15:35 +00001211 SemaRef.CheckFriendAccess(InstTemplate);
1212 }
John McCall30837102010-03-26 23:10:15 +00001213
Douglas Gregore704c9d2009-08-27 16:57:43 +00001214 return InstTemplate;
1215}
1216
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001217Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001218 CXXRecordDecl *PrevDecl = nullptr;
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001219 if (D->isInjectedClassName())
1220 PrevDecl = cast<CXXRecordDecl>(Owner);
Richard Smith41c79d92014-10-11 00:37:16 +00001221 else if (CXXRecordDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001222 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +00001223 PatternPrev,
John McCalle9f92a02009-12-15 22:29:06 +00001224 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001225 if (!Prev) return nullptr;
John McCalle9f92a02009-12-15 22:29:06 +00001226 PrevDecl = cast<CXXRecordDecl>(Prev);
1227 }
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001228
1229 CXXRecordDecl *Record
Mike Stump11289f42009-09-09 15:08:12 +00001230 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001231 D->getLocStart(), D->getLocation(),
1232 D->getIdentifier(), PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00001233
1234 // Substitute the nested name specifier, if any.
1235 if (SubstQualifier(D, Record))
Craig Topperc3ec1492014-05-26 06:22:03 +00001236 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00001237
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001238 Record->setImplicit(D->isImplicit());
Eli Friedmanbda4ef12009-08-27 19:11:42 +00001239 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1240 // the tag decls introduced by friend class declarations don't have an access
1241 // specifier. Remove once this area of the code gets sorted out.
1242 if (D->getAccess() != AS_none)
1243 Record->setAccess(D->getAccess());
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001244 if (!D->isInjectedClassName())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001245 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001246
John McCallaa74a0c2009-08-28 07:59:38 +00001247 // If the original function was part of a friend declaration,
1248 // inherit its namespace state.
Richard Smith64017682013-07-17 23:53:16 +00001249 if (D->getFriendObjectKind())
1250 Record->setObjectOfFriendDecl();
John McCallaa74a0c2009-08-28 07:59:38 +00001251
Douglas Gregor04163182010-05-21 00:31:19 +00001252 // Make sure that anonymous structs and unions are recorded.
David Majnemer192d1792013-11-27 08:20:38 +00001253 if (D->isAnonymousStructOrUnion())
Douglas Gregor04163182010-05-21 00:31:19 +00001254 Record->setAnonymousStructOrUnion(true);
David Majnemer192d1792013-11-27 08:20:38 +00001255
1256 if (D->isLocalClass())
1257 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
Anders Carlsson5da84842009-09-01 04:26:58 +00001258
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001259 // Forward the mangling number from the template to the instantiated decl.
1260 SemaRef.Context.setManglingNumber(Record,
1261 SemaRef.Context.getManglingNumber(D));
1262
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001263 Owner->addDecl(Record);
David Majnemer192d1792013-11-27 08:20:38 +00001264
1265 // DR1484 clarifies that the members of a local class are instantiated as part
1266 // of the instantiation of their enclosing entity.
1267 if (D->isCompleteDefinition() && D->isLocalClass()) {
David Majnemera64cb5a2014-02-22 00:17:46 +00001268 SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs,
1269 TSK_ImplicitInstantiation,
1270 /*Complain=*/true);
1271 SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs,
1272 TSK_ImplicitInstantiation);
David Majnemer192d1792013-11-27 08:20:38 +00001273 }
Nico Weber72889432014-09-06 01:25:55 +00001274
1275 SemaRef.DiagnoseUnusedNestedTypedefs(Record);
1276
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001277 return Record;
1278}
1279
Douglas Gregor89f593a2012-09-13 21:56:43 +00001280/// \brief Adjust the given function type for an instantiation of the
1281/// given declaration, to cope with modifications to the function's type that
1282/// aren't reflected in the type-source information.
1283///
1284/// \param D The declaration we're instantiating.
1285/// \param TInfo The already-instantiated type.
1286static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1287 FunctionDecl *D,
1288 TypeSourceInfo *TInfo) {
Douglas Gregor1af8ad42012-09-13 22:01:49 +00001289 const FunctionProtoType *OrigFunc
1290 = D->getType()->castAs<FunctionProtoType>();
1291 const FunctionProtoType *NewFunc
1292 = TInfo->getType()->castAs<FunctionProtoType>();
1293 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1294 return TInfo->getType();
1295
1296 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1297 NewEPI.ExtInfo = OrigFunc->getExtInfo();
Alp Toker314cc812014-01-25 16:55:45 +00001298 return Context.getFunctionType(NewFunc->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00001299 NewFunc->getParamTypes(), NewEPI);
Douglas Gregor89f593a2012-09-13 21:56:43 +00001300}
1301
John McCallaa74a0c2009-08-28 07:59:38 +00001302/// Normal class members are of more specific types and therefore
1303/// don't make it here. This function serves two purposes:
1304/// 1) instantiating function templates
1305/// 2) substituting friend declarations
Douglas Gregor33636e62009-12-24 20:56:24 +00001306Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001307 TemplateParameterList *TemplateParams) {
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001308 // Check whether there is already a function template specialization for
1309 // this declaration.
1310 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCall2f88d7d2010-03-27 05:57:59 +00001311 if (FunctionTemplate && !TemplateParams) {
Richard Smith47752e42013-05-03 23:46:09 +00001312 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001313
Craig Topperc3ec1492014-05-26 06:22:03 +00001314 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001315 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001316 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001317
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001318 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001319 if (SpecFunc)
1320 return SpecFunc;
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001321 }
Mike Stump11289f42009-09-09 15:08:12 +00001322
John McCall2f88d7d2010-03-27 05:57:59 +00001323 bool isFriend;
1324 if (FunctionTemplate)
1325 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1326 else
1327 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1328
Craig Topperc3ec1492014-05-26 06:22:03 +00001329 bool MergeWithParentScope = (TemplateParams != nullptr) ||
Douglas Gregor9f44d142010-05-21 21:25:08 +00001330 Owner->isFunctionOrMethod() ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001331 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001332 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001333 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00001334
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001335 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie4d142962011-11-10 05:42:04 +00001336 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001337 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001338 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001339 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCall58de3582009-08-14 02:03:10 +00001340
Douglas Gregor14454802011-02-25 02:25:35 +00001341 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1342 if (QualifierLoc) {
1343 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1344 TemplateArgs);
1345 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001346 return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001347 }
1348
John McCallce410662010-02-06 01:50:47 +00001349 // If we're instantiating a local function declaration, put the result
Richard Smith541b38b2013-09-20 01:15:31 +00001350 // in the enclosing namespace; otherwise we need to find the instantiated
1351 // context.
John McCallce410662010-02-06 01:50:47 +00001352 DeclContext *DC;
Richard Smith541b38b2013-09-20 01:15:31 +00001353 if (D->isLocalExternDecl()) {
John McCallce410662010-02-06 01:50:47 +00001354 DC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001355 SemaRef.adjustContextForLocalExternDecl(DC);
1356 } else if (isFriend && QualifierLoc) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001357 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001358 SS.Adopt(QualifierLoc);
John McCalle0b2ddb2010-03-26 04:53:08 +00001359 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001360 if (!DC) return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001361 } else {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001362 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001363 TemplateArgs);
John McCalle0b2ddb2010-03-26 04:53:08 +00001364 }
John McCallce410662010-02-06 01:50:47 +00001365
John McCallaa74a0c2009-08-28 07:59:38 +00001366 FunctionDecl *Function =
Abramo Bagnaradff19302011-03-08 08:55:46 +00001367 FunctionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
Abramo Bagnara0d4fce12012-10-04 21:40:42 +00001368 D->getNameInfo(), T, TInfo,
Rafael Espindola9dd86de2013-04-16 02:29:15 +00001369 D->getCanonicalDecl()->getStorageClass(),
Richard Smitha77a0a62011-08-15 21:04:07 +00001370 D->isInlineSpecified(), D->hasWrittenPrototype(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001371 D->isConstexpr());
Enea Zaffanella25723ce2013-07-19 18:02:36 +00001372 Function->setRangeEnd(D->getSourceRange().getEnd());
John McCall3e11ebe2010-03-15 10:12:16 +00001373
Richard Smithf3814ad2013-01-25 00:08:28 +00001374 if (D->isInlined())
1375 Function->setImplicitlyInline();
1376
Douglas Gregor14454802011-02-25 02:25:35 +00001377 if (QualifierLoc)
1378 Function->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001379
Richard Smith541b38b2013-09-20 01:15:31 +00001380 if (D->isLocalExternDecl())
1381 Function->setLocalExternDecl();
1382
John McCall30837102010-03-26 23:10:15 +00001383 DeclContext *LexicalDC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001384 if (!isFriend && D->isOutOfLine() && !D->isLocalExternDecl()) {
John McCall30837102010-03-26 23:10:15 +00001385 assert(D->getDeclContext()->isFileContext());
1386 LexicalDC = D->getDeclContext();
1387 }
1388
1389 Function->setLexicalDeclContext(LexicalDC);
Mike Stump11289f42009-09-09 15:08:12 +00001390
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001391 // Attach the parameters
Reid Klecknera09e44c2013-07-31 21:00:18 +00001392 for (unsigned P = 0; P < Params.size(); ++P)
1393 if (Params[P])
1394 Params[P]->setOwningFunction(Function);
David Blaikie9c70e042011-09-21 18:16:56 +00001395 Function->setParams(Params);
John McCallaa74a0c2009-08-28 07:59:38 +00001396
Douglas Gregor1cd6ea02010-05-17 16:38:00 +00001397 SourceLocation InstantiateAtPOI;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001398 if (TemplateParams) {
1399 // Our resulting instantiation is actually a function template, since we
1400 // are substituting only the outer template parameters. For example, given
1401 //
1402 // template<typename T>
1403 // struct X {
1404 // template<typename U> friend void f(T, U);
1405 // };
1406 //
1407 // X<int> x;
1408 //
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001409 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001410 // which means substituting int for T, but leaving "f" as a friend function
1411 // template.
1412 // Build the function template itself.
John McCalle0b2ddb2010-03-26 04:53:08 +00001413 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001414 Function->getLocation(),
1415 Function->getDeclName(),
1416 TemplateParams, Function);
1417 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCall30837102010-03-26 23:10:15 +00001418
1419 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalle0b2ddb2010-03-26 04:53:08 +00001420
1421 if (isFriend && D->isThisDeclarationADefinition()) {
1422 // TODO: should we remember this connection regardless of whether
1423 // the friend declaration provided a body?
1424 FunctionTemplate->setInstantiatedFromMemberTemplate(
1425 D->getDescribedFunctionTemplate());
1426 }
Douglas Gregorffe14e32009-11-14 01:20:54 +00001427 } else if (FunctionTemplate) {
1428 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001429 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001430 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001431 TemplateArgumentList::CreateCopy(SemaRef.Context,
Richard Smith47752e42013-05-03 23:46:09 +00001432 Innermost.begin(),
1433 Innermost.size()),
Craig Topperc3ec1492014-05-26 06:22:03 +00001434 /*InsertPos=*/nullptr);
Chandler Carruth48b28312011-08-18 09:09:59 +00001435 } else if (isFriend) {
1436 // Note, we need this connection even if the friend doesn't have a body.
1437 // Its body may exist but not have been attached yet due to deferred
1438 // parsing.
1439 // FIXME: It might be cleaner to set this when attaching the body to the
1440 // friend function declaration, however that would require finding all the
1441 // instantiations and modifying them.
John McCalle0b2ddb2010-03-26 04:53:08 +00001442 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCallaa74a0c2009-08-28 07:59:38 +00001443 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001444
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001445 if (InitFunctionInstantiation(Function, D))
1446 Function->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001447
John McCallb9c78482010-04-08 09:05:18 +00001448 bool isExplicitSpecialization = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001449
Richard Smith541b38b2013-09-20 01:15:31 +00001450 LookupResult Previous(
1451 SemaRef, Function->getDeclName(), SourceLocation(),
1452 D->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
1453 : Sema::LookupOrdinaryName,
1454 Sema::ForRedeclaration);
John McCall1f82f242009-11-18 22:49:29 +00001455
John McCallb9c78482010-04-08 09:05:18 +00001456 if (DependentFunctionTemplateSpecializationInfo *Info
1457 = D->getDependentSpecializationInfo()) {
1458 assert(isFriend && "non-friend has dependent specialization info?");
1459
1460 // This needs to be set now for future sanity.
Richard Smith64017682013-07-17 23:53:16 +00001461 Function->setObjectOfFriendDecl();
John McCallb9c78482010-04-08 09:05:18 +00001462
1463 // Instantiate the explicit template arguments.
1464 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1465 Info->getRAngleLoc());
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001466 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1467 ExplicitArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00001468 return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001469
1470 // Map the candidate templates to their instantiations.
1471 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1472 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1473 Info->getTemplate(I),
1474 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001475 if (!Temp) return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001476
1477 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1478 }
1479
1480 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1481 &ExplicitArgs,
1482 Previous))
1483 Function->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001484
John McCallb9c78482010-04-08 09:05:18 +00001485 isExplicitSpecialization = true;
1486
1487 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001488 // Look only into the namespace where the friend would be declared to
1489 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001490 // as described in ActOnFriendFunctionDecl.
John McCall1f82f242009-11-18 22:49:29 +00001491 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001492
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001493 // In C++, the previous declaration we find might be a tag type
1494 // (class or enum). In this case, the new declaration will hide the
1495 // tag type. Note that this does does not apply if we're declaring a
1496 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00001497 if (Previous.isSingleTagDecl())
1498 Previous.clear();
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001499 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001500
Craig Topperc3ec1492014-05-26 06:22:03 +00001501 SemaRef.CheckFunctionDeclaration(/*Scope*/ nullptr, Function, Previous,
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +00001502 isExplicitSpecialization);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001503
John McCallb9467b62010-04-24 01:30:58 +00001504 NamedDecl *PrincipalDecl = (TemplateParams
1505 ? cast<NamedDecl>(FunctionTemplate)
1506 : Function);
1507
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001508 // If the original function was part of a friend declaration,
1509 // inherit its namespace state and add it to the owner.
John McCalle0b2ddb2010-03-26 04:53:08 +00001510 if (isFriend) {
Richard Smith64017682013-07-17 23:53:16 +00001511 PrincipalDecl->setObjectOfFriendDecl();
Richard Smith05afe5e2012-03-13 03:12:56 +00001512 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greif718d5152010-08-30 21:10:05 +00001513
Richard Smith91dfaac2014-02-03 02:37:59 +00001514 bool QueuedInstantiation = false;
Gabor Greif718d5152010-08-30 21:10:05 +00001515
Richard Smith91dfaac2014-02-03 02:37:59 +00001516 // C++11 [temp.friend]p4 (DR329):
1517 // When a function is defined in a friend function declaration in a class
1518 // template, the function is instantiated when the function is odr-used.
1519 // The same restrictions on multiple declarations and definitions that
1520 // apply to non-template function declarations and definitions also apply
1521 // to these implicit definitions.
1522 if (D->isThisDeclarationADefinition()) {
Douglas Gregorb92ea592010-05-18 05:45:02 +00001523 // Check for a function body.
Craig Topperc3ec1492014-05-26 06:22:03 +00001524 const FunctionDecl *Definition = nullptr;
Alexis Hunt4a8ea102011-05-06 20:44:56 +00001525 if (Function->isDefined(Definition) &&
Douglas Gregorb92ea592010-05-18 05:45:02 +00001526 Definition->getTemplateSpecializationKind() == TSK_Undeclared) {
Richard Smith91dfaac2014-02-03 02:37:59 +00001527 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
1528 << Function->getDeclName();
Douglas Gregorb92ea592010-05-18 05:45:02 +00001529 SemaRef.Diag(Definition->getLocation(), diag::note_previous_definition);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001530 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001531 // Check for redefinitions due to other instantiations of this or
1532 // a similar friend function.
Aaron Ballman86c93902014-03-06 23:45:36 +00001533 else for (auto R : Function->redecls()) {
1534 if (R == Function)
Gabor Greif122f1eb2010-08-28 15:42:30 +00001535 continue;
Richard Smith91dfaac2014-02-03 02:37:59 +00001536
1537 // If some prior declaration of this function has been used, we need
1538 // to instantiate its definition.
1539 if (!QueuedInstantiation && R->isUsed(false)) {
1540 if (MemberSpecializationInfo *MSInfo =
1541 Function->getMemberSpecializationInfo()) {
1542 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1543 SourceLocation Loc = R->getLocation(); // FIXME
1544 MSInfo->setPointOfInstantiation(Loc);
1545 SemaRef.PendingLocalImplicitInstantiations.push_back(
1546 std::make_pair(Function, Loc));
1547 QueuedInstantiation = true;
Gabor Greif718d5152010-08-30 21:10:05 +00001548 }
1549 }
Richard Smith91dfaac2014-02-03 02:37:59 +00001550 }
1551
1552 // If some prior declaration of this function was a friend with an
1553 // uninstantiated definition, reject it.
1554 if (R->getFriendObjectKind()) {
1555 if (const FunctionDecl *RPattern =
1556 R->getTemplateInstantiationPattern()) {
Alexis Hunt4a8ea102011-05-06 20:44:56 +00001557 if (RPattern->isDefined(RPattern)) {
Richard Smith91dfaac2014-02-03 02:37:59 +00001558 SemaRef.Diag(Function->getLocation(), diag::err_redefinition)
Douglas Gregorb92ea592010-05-18 05:45:02 +00001559 << Function->getDeclName();
Gabor Greifae849e42010-08-28 15:46:56 +00001560 SemaRef.Diag(R->getLocation(), diag::note_previous_definition);
Douglas Gregorb92ea592010-05-18 05:45:02 +00001561 break;
1562 }
Richard Smith91dfaac2014-02-03 02:37:59 +00001563 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001564 }
1565 }
1566 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001567 }
1568
Richard Smith541b38b2013-09-20 01:15:31 +00001569 if (Function->isLocalExternDecl() && !Function->getPreviousDecl())
1570 DC->makeDeclVisibleInContext(PrincipalDecl);
1571
John McCallb9467b62010-04-24 01:30:58 +00001572 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1573 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1574 PrincipalDecl->setNonMemberOperator();
1575
Alexis Hunt1fb4e762011-05-23 21:07:59 +00001576 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001577 return Function;
1578}
1579
Douglas Gregore704c9d2009-08-27 16:57:43 +00001580Decl *
1581TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichet00c7e6c2011-08-14 03:52:19 +00001582 TemplateParameterList *TemplateParams,
1583 bool IsClassScopeSpecialization) {
Douglas Gregor97628d62009-08-21 00:16:32 +00001584 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregore704c9d2009-08-27 16:57:43 +00001585 if (FunctionTemplate && !TemplateParams) {
Mike Stump11289f42009-09-09 15:08:12 +00001586 // We are creating a function template specialization from a function
1587 // template. Check whether there is already a function template
Douglas Gregore704c9d2009-08-27 16:57:43 +00001588 // specialization for this particular set of template arguments.
Richard Smith47752e42013-05-03 23:46:09 +00001589 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001590
Craig Topperc3ec1492014-05-26 06:22:03 +00001591 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001592 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001593 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001594
Douglas Gregor97628d62009-08-21 00:16:32 +00001595 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001596 if (SpecFunc)
1597 return SpecFunc;
Douglas Gregor97628d62009-08-21 00:16:32 +00001598 }
1599
John McCall2f88d7d2010-03-27 05:57:59 +00001600 bool isFriend;
1601 if (FunctionTemplate)
1602 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1603 else
1604 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1605
Craig Topperc3ec1492014-05-26 06:22:03 +00001606 bool MergeWithParentScope = (TemplateParams != nullptr) ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001607 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001608 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001609 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor37256522009-05-14 21:44:34 +00001610
John McCalld0e23ec2010-10-19 02:26:41 +00001611 // Instantiate enclosing template arguments for friends.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001612 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCalld0e23ec2010-10-19 02:26:41 +00001613 unsigned NumTempParamLists = 0;
1614 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
1615 TempParamLists.set_size(NumTempParamLists);
1616 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1617 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1618 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1619 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001620 return nullptr;
John McCalld0e23ec2010-10-19 02:26:41 +00001621 TempParamLists[I] = InstParams;
1622 }
1623 }
1624
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001625 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramer1dd48bc2012-01-20 14:42:32 +00001626 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001627 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001628 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001629 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001630
Douglas Gregor14454802011-02-25 02:25:35 +00001631 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1632 if (QualifierLoc) {
1633 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCall2f88d7d2010-03-27 05:57:59 +00001634 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001635 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001636 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001637 }
1638
1639 DeclContext *DC = Owner;
1640 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001641 if (QualifierLoc) {
John McCall2f88d7d2010-03-27 05:57:59 +00001642 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001643 SS.Adopt(QualifierLoc);
John McCall2f88d7d2010-03-27 05:57:59 +00001644 DC = SemaRef.computeDeclContext(SS);
John McCall1a1b53e2010-10-19 05:01:53 +00001645
1646 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
Craig Topperc3ec1492014-05-26 06:22:03 +00001647 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001648 } else {
1649 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1650 D->getDeclContext(),
1651 TemplateArgs);
1652 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001653 if (!DC) return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001654 }
1655
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001656 // Build the instantiated method declaration.
John McCall2f88d7d2010-03-27 05:57:59 +00001657 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Craig Topperc3ec1492014-05-26 06:22:03 +00001658 CXXMethodDecl *Method = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001659
Abramo Bagnaradff19302011-03-08 08:55:46 +00001660 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001661 DeclarationNameInfo NameInfo
1662 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregore8394862009-08-21 22:43:28 +00001663 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001664 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001665 StartLoc, NameInfo, T, TInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001666 Constructor->isExplicit(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00001667 Constructor->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001668 false, Constructor->isConstexpr());
Richard Smith4c163a02013-05-17 02:19:35 +00001669
Richard Smith185be182013-04-10 05:48:59 +00001670 // Claim that the instantiation of a constructor or constructor template
1671 // inherits the same constructor that the template does.
Richard Smith4c163a02013-05-17 02:19:35 +00001672 if (CXXConstructorDecl *Inh = const_cast<CXXConstructorDecl *>(
1673 Constructor->getInheritedConstructor())) {
1674 // If we're instantiating a specialization of a function template, our
1675 // "inherited constructor" will actually itself be a function template.
1676 // Instantiate a declaration of it, too.
1677 if (FunctionTemplate) {
1678 assert(!TemplateParams && Inh->getDescribedFunctionTemplate() &&
1679 !Inh->getParent()->isDependentContext() &&
1680 "inheriting constructor template in dependent context?");
1681 Sema::InstantiatingTemplate Inst(SemaRef, Constructor->getLocation(),
1682 Inh);
Alp Tokerd4a72d52013-10-08 08:09:04 +00001683 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00001684 return nullptr;
Richard Smith4c163a02013-05-17 02:19:35 +00001685 Sema::ContextRAII SavedContext(SemaRef, Inh->getDeclContext());
1686 LocalInstantiationScope LocalScope(SemaRef);
1687
1688 // Use the same template arguments that we deduced for the inheriting
1689 // constructor. There's no way they could be deduced differently.
1690 MultiLevelTemplateArgumentList InheritedArgs;
1691 InheritedArgs.addOuterTemplateArguments(TemplateArgs.getInnermost());
1692 Inh = cast_or_null<CXXConstructorDecl>(
1693 SemaRef.SubstDecl(Inh, Inh->getDeclContext(), InheritedArgs));
1694 if (!Inh)
Craig Topperc3ec1492014-05-26 06:22:03 +00001695 return nullptr;
Richard Smith4c163a02013-05-17 02:19:35 +00001696 }
Richard Smith185be182013-04-10 05:48:59 +00001697 cast<CXXConstructorDecl>(Method)->setInheritedConstructor(Inh);
Richard Smith4c163a02013-05-17 02:19:35 +00001698 }
Douglas Gregore8394862009-08-21 22:43:28 +00001699 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregore8394862009-08-21 22:43:28 +00001700 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001701 StartLoc, NameInfo, T, TInfo,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001702 Destructor->isInlineSpecified(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00001703 false);
Douglas Gregor05155d82009-08-21 23:19:43 +00001704 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor05155d82009-08-21 23:19:43 +00001705 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001706 StartLoc, NameInfo, T, TInfo,
Douglas Gregor35b57532009-10-27 21:01:01 +00001707 Conversion->isInlineSpecified(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00001708 Conversion->isExplicit(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001709 Conversion->isConstexpr(),
Richard Smitheb3c10c2011-10-01 02:31:28 +00001710 Conversion->getLocEnd());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001711 } else {
Rafael Espindola29cda592013-04-15 12:38:20 +00001712 StorageClass SC = D->isStatic() ? SC_Static : SC_None;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001713 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001714 StartLoc, NameInfo, T, TInfo,
Rafael Espindola29cda592013-04-15 12:38:20 +00001715 SC, D->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001716 D->isConstexpr(), D->getLocEnd());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001717 }
Douglas Gregor97628d62009-08-21 00:16:32 +00001718
Richard Smithf3814ad2013-01-25 00:08:28 +00001719 if (D->isInlined())
1720 Method->setImplicitlyInline();
1721
Douglas Gregor14454802011-02-25 02:25:35 +00001722 if (QualifierLoc)
1723 Method->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001724
Douglas Gregore704c9d2009-08-27 16:57:43 +00001725 if (TemplateParams) {
1726 // Our resulting instantiation is actually a function template, since we
1727 // are substituting only the outer template parameters. For example, given
Mike Stump11289f42009-09-09 15:08:12 +00001728 //
Douglas Gregore704c9d2009-08-27 16:57:43 +00001729 // template<typename T>
1730 // struct X {
1731 // template<typename U> void f(T, U);
1732 // };
1733 //
1734 // X<int> x;
1735 //
1736 // We are instantiating the member template "f" within X<int>, which means
1737 // substituting int for T, but leaving "f" as a member function template.
1738 // Build the function template itself.
1739 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1740 Method->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001741 Method->getDeclName(),
Douglas Gregore704c9d2009-08-27 16:57:43 +00001742 TemplateParams, Method);
John McCall2f88d7d2010-03-27 05:57:59 +00001743 if (isFriend) {
1744 FunctionTemplate->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00001745 FunctionTemplate->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00001746 } else if (D->isOutOfLine())
Mike Stump11289f42009-09-09 15:08:12 +00001747 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregore704c9d2009-08-27 16:57:43 +00001748 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregorffe14e32009-11-14 01:20:54 +00001749 } else if (FunctionTemplate) {
1750 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001751 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001752 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001753 TemplateArgumentList::CreateCopy(SemaRef.Context,
Richard Smith47752e42013-05-03 23:46:09 +00001754 Innermost.begin(),
1755 Innermost.size()),
Craig Topperc3ec1492014-05-26 06:22:03 +00001756 /*InsertPos=*/nullptr);
John McCall2f88d7d2010-03-27 05:57:59 +00001757 } else if (!isFriend) {
Douglas Gregorffe14e32009-11-14 01:20:54 +00001758 // Record that this is an instantiation of a member function.
Douglas Gregord801b062009-10-07 23:56:10 +00001759 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregorffe14e32009-11-14 01:20:54 +00001760 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001761
Mike Stump11289f42009-09-09 15:08:12 +00001762 // If we are instantiating a member function defined
Douglas Gregora6ef8f02009-07-24 20:34:43 +00001763 // out-of-line, the instantiation will have the same lexical
1764 // context (which will be a namespace scope) as the template.
John McCall2f88d7d2010-03-27 05:57:59 +00001765 if (isFriend) {
John McCalld0e23ec2010-10-19 02:26:41 +00001766 if (NumTempParamLists)
1767 Method->setTemplateParameterListsInfo(SemaRef.Context,
1768 NumTempParamLists,
1769 TempParamLists.data());
1770
John McCall2f88d7d2010-03-27 05:57:59 +00001771 Method->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00001772 Method->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00001773 } else if (D->isOutOfLine())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00001774 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00001775
Douglas Gregor21342092009-03-24 00:38:23 +00001776 // Attach the parameters
1777 for (unsigned P = 0; P < Params.size(); ++P)
1778 Params[P]->setOwningFunction(Method);
David Blaikie9c70e042011-09-21 18:16:56 +00001779 Method->setParams(Params);
Douglas Gregor21342092009-03-24 00:38:23 +00001780
1781 if (InitMethodInstantiation(Method, D))
1782 Method->setInvalidDecl();
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001783
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001784 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
1785 Sema::ForRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00001786
John McCall2f88d7d2010-03-27 05:57:59 +00001787 if (!FunctionTemplate || TemplateParams || isFriend) {
1788 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump11289f42009-09-09 15:08:12 +00001789
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001790 // In C++, the previous declaration we find might be a tag type
1791 // (class or enum). In this case, the new declaration will hide the
1792 // tag type. Note that this does does not apply if we're declaring a
1793 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00001794 if (Previous.isSingleTagDecl())
1795 Previous.clear();
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001796 }
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001797
Francois Pichet00c7e6c2011-08-14 03:52:19 +00001798 if (!IsClassScopeSpecialization)
Craig Topperc3ec1492014-05-26 06:22:03 +00001799 SemaRef.CheckFunctionDeclaration(nullptr, Method, Previous, false);
Douglas Gregor05155d82009-08-21 23:19:43 +00001800
Douglas Gregor21920e372009-12-01 17:24:26 +00001801 if (D->isPure())
1802 SemaRef.CheckPureMethod(Method, SourceRange());
1803
John McCalla0a96892012-08-10 03:15:35 +00001804 // Propagate access. For a non-friend declaration, the access is
1805 // whatever we're propagating from. For a friend, it should be the
1806 // previous declaration we just found.
1807 if (isFriend && Method->getPreviousDecl())
1808 Method->setAccess(Method->getPreviousDecl()->getAccess());
1809 else
1810 Method->setAccess(D->getAccess());
1811 if (FunctionTemplate)
1812 FunctionTemplate->setAccess(Method->getAccess());
John McCall401982f2010-01-20 21:53:11 +00001813
Anders Carlsson7c812f52011-01-20 06:52:44 +00001814 SemaRef.CheckOverrideControl(Method);
1815
Eli Friedman41340732011-11-15 22:39:08 +00001816 // If a function is defined as defaulted or deleted, mark it as such now.
Richard Smith92f241f2012-12-08 02:53:02 +00001817 if (D->isExplicitlyDefaulted())
1818 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00001819 if (D->isDeletedAsWritten())
Richard Smith92f241f2012-12-08 02:53:02 +00001820 SemaRef.SetDeclDeleted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00001821
John McCalla0a96892012-08-10 03:15:35 +00001822 // If there's a function template, let our caller handle it.
John McCall2f88d7d2010-03-27 05:57:59 +00001823 if (FunctionTemplate) {
John McCalla0a96892012-08-10 03:15:35 +00001824 // do nothing
1825
1826 // Don't hide a (potentially) valid declaration with an invalid one.
John McCall2f88d7d2010-03-27 05:57:59 +00001827 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCalla0a96892012-08-10 03:15:35 +00001828 // do nothing
1829
1830 // Otherwise, check access to friends and make them visible.
1831 } else if (isFriend) {
1832 // We only need to re-check access for methods which we didn't
1833 // manage to match during parsing.
1834 if (!D->getPreviousDecl())
1835 SemaRef.CheckFriendAccess(Method);
1836
1837 Record->makeDeclVisibleInContext(Method);
1838
1839 // Otherwise, add the declaration. We don't need to do this for
1840 // class-scope specializations because we'll have matched them with
1841 // the appropriate template.
1842 } else if (!IsClassScopeSpecialization) {
1843 Owner->addDecl(Method);
John McCall2f88d7d2010-03-27 05:57:59 +00001844 }
Alexis Hunt1fb4e762011-05-23 21:07:59 +00001845
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001846 return Method;
1847}
1848
Douglas Gregor4044d992009-03-24 16:43:20 +00001849Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001850 return VisitCXXMethodDecl(D);
Douglas Gregor4044d992009-03-24 16:43:20 +00001851}
1852
Douglas Gregor654b07e2009-03-24 00:15:49 +00001853Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore8394862009-08-21 22:43:28 +00001854 return VisitCXXMethodDecl(D);
Douglas Gregor654b07e2009-03-24 00:15:49 +00001855}
1856
Douglas Gregor1880ba52009-03-25 00:34:44 +00001857Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor05155d82009-08-21 23:19:43 +00001858 return VisitCXXMethodDecl(D);
Douglas Gregor1880ba52009-03-25 00:34:44 +00001859}
1860
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00001861Decl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
David Blaikie7a30dc52013-02-21 01:47:18 +00001862 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, None,
1863 /*ExpectParameterPack=*/ false);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001864}
1865
John McCall87a44eb2009-08-20 01:44:21 +00001866Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
1867 TemplateTypeParmDecl *D) {
1868 // TODO: don't always clone when decls are refcounted.
Chandler Carruth08836322011-05-01 00:51:33 +00001869 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump11289f42009-09-09 15:08:12 +00001870
John McCall87a44eb2009-08-20 01:44:21 +00001871 TemplateTypeParmDecl *Inst =
Abramo Bagnarab3185b02011-03-06 15:48:19 +00001872 TemplateTypeParmDecl::Create(SemaRef.Context, Owner,
1873 D->getLocStart(), D->getLocation(),
Chandler Carruth08836322011-05-01 00:51:33 +00001874 D->getDepth() - TemplateArgs.getNumLevels(),
1875 D->getIndex(), D->getIdentifier(),
John McCall87a44eb2009-08-20 01:44:21 +00001876 D->wasDeclaredWithTypename(),
1877 D->isParameterPack());
Douglas Gregorfd7c2252011-03-04 17:52:15 +00001878 Inst->setAccess(AS_public);
John McCall87a44eb2009-08-20 01:44:21 +00001879
David Majnemer89189202013-08-28 23:48:32 +00001880 if (D->hasDefaultArgument()) {
1881 TypeSourceInfo *InstantiatedDefaultArg =
1882 SemaRef.SubstType(D->getDefaultArgumentInfo(), TemplateArgs,
1883 D->getDefaultArgumentLoc(), D->getDeclName());
1884 if (InstantiatedDefaultArg)
1885 Inst->setDefaultArgument(InstantiatedDefaultArg, false);
1886 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001887
1888 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00001889 // scope.
1890 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001891
John McCall87a44eb2009-08-20 01:44:21 +00001892 return Inst;
1893}
1894
Douglas Gregor6b815c82009-10-23 23:25:44 +00001895Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
1896 NonTypeTemplateParmDecl *D) {
1897 // Substitute into the type of the non-type template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001898 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001899 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
1900 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001901 bool IsExpandedParameterPack = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001902 TypeSourceInfo *DI;
Douglas Gregor6b815c82009-10-23 23:25:44 +00001903 QualType T;
Douglas Gregor6b815c82009-10-23 23:25:44 +00001904 bool Invalid = false;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001905
1906 if (D->isExpandedParameterPack()) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001907 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001908 // expansion of types. Substitute into each of the expanded types.
1909 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
1910 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
1911 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1912 TypeSourceInfo *NewDI =SemaRef.SubstType(D->getExpansionTypeSourceInfo(I),
1913 TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001914 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001915 D->getDeclName());
1916 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00001917 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001918
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001919 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1920 QualType NewT =SemaRef.CheckNonTypeTemplateParameterType(NewDI->getType(),
1921 D->getLocation());
1922 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00001923 return nullptr;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001924 ExpandedParameterPackTypes.push_back(NewT);
1925 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001926
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001927 IsExpandedParameterPack = true;
1928 DI = D->getTypeSourceInfo();
1929 T = DI->getType();
Richard Smith1fde8ec2012-09-07 02:06:42 +00001930 } else if (D->isPackExpansion()) {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001931 // The non-type template parameter pack's type is a pack expansion of types.
1932 // Determine whether we need to expand this parameter pack into separate
1933 // types.
David Blaikie6adc78e2013-02-18 22:06:02 +00001934 PackExpansionTypeLoc Expansion = TL.castAs<PackExpansionTypeLoc>();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001935 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001936 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001937 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001938
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001939 // Determine whether the set of unexpanded parameter packs can and should
1940 // be expanded.
1941 bool Expand = true;
1942 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00001943 Optional<unsigned> OrigNumExpansions
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001944 = Expansion.getTypePtr()->getNumExpansions();
David Blaikie05785d12013-02-20 22:23:23 +00001945 Optional<unsigned> NumExpansions = OrigNumExpansions;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001946 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
1947 Pattern.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00001948 Unexpanded,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001949 TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001950 Expand, RetainExpansion,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001951 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00001952 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001953
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001954 if (Expand) {
1955 for (unsigned I = 0; I != *NumExpansions; ++I) {
1956 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
1957 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001958 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001959 D->getDeclName());
1960 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00001961 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001962
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001963 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
1964 QualType NewT = SemaRef.CheckNonTypeTemplateParameterType(
1965 NewDI->getType(),
1966 D->getLocation());
1967 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00001968 return nullptr;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001969 ExpandedParameterPackTypes.push_back(NewT);
1970 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001971
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001972 // Note that we have an expanded parameter pack. The "type" of this
1973 // expanded parameter pack is the original expansion type, but callers
1974 // will end up using the expanded parameter pack types for type-checking.
1975 IsExpandedParameterPack = true;
1976 DI = D->getTypeSourceInfo();
1977 T = DI->getType();
1978 } else {
1979 // We cannot fully expand the pack expansion now, so substitute into the
1980 // pattern and create a new pack expansion type.
1981 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
1982 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001983 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001984 D->getDeclName());
1985 if (!NewPattern)
Craig Topperc3ec1492014-05-26 06:22:03 +00001986 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001987
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001988 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
1989 NumExpansions);
1990 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00001991 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001992
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001993 T = DI->getType();
1994 }
1995 } else {
1996 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001997 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00001998 D->getLocation(), D->getDeclName());
1999 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002000 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002001
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002002 // Check that this type is acceptable for a non-type template parameter.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002003 T = SemaRef.CheckNonTypeTemplateParameterType(DI->getType(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002004 D->getLocation());
2005 if (T.isNull()) {
2006 T = SemaRef.Context.IntTy;
2007 Invalid = true;
2008 }
Douglas Gregor6b815c82009-10-23 23:25:44 +00002009 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002010
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002011 NonTypeTemplateParmDecl *Param;
2012 if (IsExpandedParameterPack)
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002013 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaradff19302011-03-08 08:55:46 +00002014 D->getInnerLocStart(),
2015 D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002016 D->getDepth() - TemplateArgs.getNumLevels(),
2017 D->getPosition(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002018 D->getIdentifier(), T,
2019 DI,
2020 ExpandedParameterPackTypes.data(),
2021 ExpandedParameterPackTypes.size(),
2022 ExpandedParameterPackTypesAsWritten.data());
2023 else
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002024 Param = NonTypeTemplateParmDecl::Create(SemaRef.Context, Owner,
Abramo Bagnaradff19302011-03-08 08:55:46 +00002025 D->getInnerLocStart(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002026 D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002027 D->getDepth() - TemplateArgs.getNumLevels(),
2028 D->getPosition(),
2029 D->getIdentifier(), T,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002030 D->isParameterPack(), DI);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002031
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002032 Param->setAccess(AS_public);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002033 if (Invalid)
2034 Param->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002035
David Majnemer89189202013-08-28 23:48:32 +00002036 if (D->hasDefaultArgument()) {
2037 ExprResult Value = SemaRef.SubstExpr(D->getDefaultArgument(), TemplateArgs);
2038 if (!Value.isInvalid())
2039 Param->setDefaultArgument(Value.get(), false);
2040 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002041
2042 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002043 // scope.
2044 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002045 return Param;
2046}
2047
Richard Smith1fde8ec2012-09-07 02:06:42 +00002048static void collectUnexpandedParameterPacks(
2049 Sema &S,
2050 TemplateParameterList *Params,
2051 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
2052 for (TemplateParameterList::const_iterator I = Params->begin(),
2053 E = Params->end(); I != E; ++I) {
2054 if ((*I)->isTemplateParameterPack())
2055 continue;
2056 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(*I))
2057 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
2058 Unexpanded);
2059 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(*I))
2060 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
2061 Unexpanded);
2062 }
2063}
2064
Anders Carlsson4bd78752009-08-28 15:18:15 +00002065Decl *
Douglas Gregor38fee962009-11-11 16:58:32 +00002066TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
2067 TemplateTemplateParmDecl *D) {
2068 // Instantiate the template parameter list of the template template parameter.
2069 TemplateParameterList *TempParams = D->getTemplateParameters();
2070 TemplateParameterList *InstParams;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002071 SmallVector<TemplateParameterList*, 8> ExpandedParams;
2072
2073 bool IsExpandedParameterPack = false;
2074
2075 if (D->isExpandedParameterPack()) {
2076 // The template template parameter pack is an already-expanded pack
2077 // expansion of template parameters. Substitute into each of the expanded
2078 // parameters.
2079 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
2080 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2081 I != N; ++I) {
2082 LocalInstantiationScope Scope(SemaRef);
2083 TemplateParameterList *Expansion =
2084 SubstTemplateParams(D->getExpansionTemplateParameters(I));
2085 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002086 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002087 ExpandedParams.push_back(Expansion);
2088 }
2089
2090 IsExpandedParameterPack = true;
2091 InstParams = TempParams;
2092 } else if (D->isPackExpansion()) {
2093 // The template template parameter pack expands to a pack of template
2094 // template parameters. Determine whether we need to expand this parameter
2095 // pack into separate parameters.
2096 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2097 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
2098 Unexpanded);
2099
2100 // Determine whether the set of unexpanded parameter packs can and should
2101 // be expanded.
2102 bool Expand = true;
2103 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002104 Optional<unsigned> NumExpansions;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002105 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
2106 TempParams->getSourceRange(),
2107 Unexpanded,
2108 TemplateArgs,
2109 Expand, RetainExpansion,
2110 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002111 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002112
2113 if (Expand) {
2114 for (unsigned I = 0; I != *NumExpansions; ++I) {
2115 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2116 LocalInstantiationScope Scope(SemaRef);
2117 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
2118 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002119 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002120 ExpandedParams.push_back(Expansion);
2121 }
2122
2123 // Note that we have an expanded parameter pack. The "type" of this
2124 // expanded parameter pack is the original expansion type, but callers
2125 // will end up using the expanded parameter pack types for type-checking.
2126 IsExpandedParameterPack = true;
2127 InstParams = TempParams;
2128 } else {
2129 // We cannot fully expand the pack expansion now, so just substitute
2130 // into the pattern.
2131 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2132
2133 LocalInstantiationScope Scope(SemaRef);
2134 InstParams = SubstTemplateParams(TempParams);
2135 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002136 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002137 }
2138 } else {
Douglas Gregor38fee962009-11-11 16:58:32 +00002139 // Perform the actual substitution of template parameters within a new,
2140 // local instantiation scope.
John McCall19c1bfd2010-08-25 05:32:35 +00002141 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor38fee962009-11-11 16:58:32 +00002142 InstParams = SubstTemplateParams(TempParams);
2143 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002144 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002145 }
2146
Douglas Gregor38fee962009-11-11 16:58:32 +00002147 // Build the template template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00002148 TemplateTemplateParmDecl *Param;
2149 if (IsExpandedParameterPack)
2150 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner,
2151 D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002152 D->getDepth() - TemplateArgs.getNumLevels(),
Richard Smith1fde8ec2012-09-07 02:06:42 +00002153 D->getPosition(),
2154 D->getIdentifier(), InstParams,
2155 ExpandedParams);
2156 else
2157 Param = TemplateTemplateParmDecl::Create(SemaRef.Context, Owner,
2158 D->getLocation(),
2159 D->getDepth() - TemplateArgs.getNumLevels(),
2160 D->getPosition(),
2161 D->isParameterPack(),
2162 D->getIdentifier(), InstParams);
David Majnemer89189202013-08-28 23:48:32 +00002163 if (D->hasDefaultArgument()) {
2164 NestedNameSpecifierLoc QualifierLoc =
2165 D->getDefaultArgument().getTemplateQualifierLoc();
2166 QualifierLoc =
2167 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgs);
2168 TemplateName TName = SemaRef.SubstTemplateName(
2169 QualifierLoc, D->getDefaultArgument().getArgument().getAsTemplate(),
2170 D->getDefaultArgument().getTemplateNameLoc(), TemplateArgs);
2171 if (!TName.isNull())
2172 Param->setDefaultArgument(
2173 TemplateArgumentLoc(TemplateArgument(TName),
2174 D->getDefaultArgument().getTemplateQualifierLoc(),
2175 D->getDefaultArgument().getTemplateNameLoc()),
2176 false);
2177 }
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002178 Param->setAccess(AS_public);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002179
2180 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor38fee962009-11-11 16:58:32 +00002181 // scope.
2182 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002183
Douglas Gregor38fee962009-11-11 16:58:32 +00002184 return Param;
2185}
2186
Douglas Gregore0b28662009-11-17 06:07:40 +00002187Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregor12441b32011-02-25 16:33:46 +00002188 // Using directives are never dependent (and never contain any types or
2189 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002190
Douglas Gregore0b28662009-11-17 06:07:40 +00002191 UsingDirectiveDecl *Inst
2192 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002193 D->getNamespaceKeyLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00002194 D->getQualifierLoc(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002195 D->getIdentLocation(),
2196 D->getNominatedNamespace(),
Douglas Gregore0b28662009-11-17 06:07:40 +00002197 D->getCommonAncestor());
Abramo Bagnara8843f9f2012-09-05 09:55:10 +00002198
2199 // Add the using directive to its declaration context
2200 // only if this is not a function or method.
2201 if (!Owner->isFunctionOrMethod())
2202 Owner->addDecl(Inst);
2203
Douglas Gregore0b28662009-11-17 06:07:40 +00002204 return Inst;
2205}
2206
John McCallb96ec562009-12-04 22:46:56 +00002207Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorac2e4302010-09-29 17:58:28 +00002208
2209 // The nested name specifier may be dependent, for example
2210 // template <typename T> struct t {
2211 // struct s1 { T f1(); };
2212 // struct s2 : s1 { using s1::f1; };
2213 // };
2214 // template struct t<int>;
2215 // Here, in using s1::f1, s1 refers to t<T>::s1;
2216 // we need to substitute for t<int>::s1.
Douglas Gregor0499ab62011-02-25 15:54:31 +00002217 NestedNameSpecifierLoc QualifierLoc
2218 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
2219 TemplateArgs);
2220 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002221 return nullptr;
Douglas Gregorac2e4302010-09-29 17:58:28 +00002222
2223 // The name info is non-dependent, so no transformation
2224 // is required.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002225 DeclarationNameInfo NameInfo = D->getNameInfo();
John McCallb96ec562009-12-04 22:46:56 +00002226
John McCall84d87672009-12-10 09:41:52 +00002227 // We only need to do redeclaration lookups if we're in a class
2228 // scope (in fact, it's not really even possible in non-class
2229 // scopes).
2230 bool CheckRedeclaration = Owner->isRecord();
2231
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002232 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
2233 Sema::ForRedeclaration);
John McCall84d87672009-12-10 09:41:52 +00002234
John McCallb96ec562009-12-04 22:46:56 +00002235 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002236 D->getUsingLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002237 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002238 NameInfo,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002239 D->hasTypename());
John McCallb96ec562009-12-04 22:46:56 +00002240
Douglas Gregor0499ab62011-02-25 15:54:31 +00002241 CXXScopeSpec SS;
2242 SS.Adopt(QualifierLoc);
John McCall84d87672009-12-10 09:41:52 +00002243 if (CheckRedeclaration) {
2244 Prev.setHideTags(false);
2245 SemaRef.LookupQualifiedName(Prev, Owner);
2246
2247 // Check for invalid redeclarations.
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002248 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLoc(),
2249 D->hasTypename(), SS,
John McCall84d87672009-12-10 09:41:52 +00002250 D->getLocation(), Prev))
2251 NewUD->setInvalidDecl();
2252
2253 }
2254
2255 if (!NewUD->isInvalidDecl() &&
Richard Smith7ad0b882014-04-02 21:44:35 +00002256 SemaRef.CheckUsingDeclQualifier(D->getUsingLoc(), SS, NameInfo,
John McCallb96ec562009-12-04 22:46:56 +00002257 D->getLocation()))
2258 NewUD->setInvalidDecl();
John McCall84d87672009-12-10 09:41:52 +00002259
John McCallb96ec562009-12-04 22:46:56 +00002260 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
2261 NewUD->setAccess(D->getAccess());
2262 Owner->addDecl(NewUD);
2263
John McCall84d87672009-12-10 09:41:52 +00002264 // Don't process the shadow decls for an invalid decl.
2265 if (NewUD->isInvalidDecl())
2266 return NewUD;
2267
Richard Smith23d55872012-04-02 01:30:27 +00002268 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName) {
Richard Smith09d5b3a2014-05-01 00:35:04 +00002269 SemaRef.CheckInheritingConstructorUsingDecl(NewUD);
Richard Smith23d55872012-04-02 01:30:27 +00002270 return NewUD;
2271 }
2272
John McCalla1d85502009-12-22 22:26:37 +00002273 bool isFunctionScope = Owner->isFunctionOrMethod();
2274
John McCall84d87672009-12-10 09:41:52 +00002275 // Process the shadow decls.
Aaron Ballman91cdc282014-03-13 18:07:29 +00002276 for (auto *Shadow : D->shadows()) {
John McCall84d87672009-12-10 09:41:52 +00002277 NamedDecl *InstTarget =
Richard Smithfd8634a2013-10-23 02:17:46 +00002278 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
2279 Shadow->getLocation(), Shadow->getTargetDecl(), TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00002280 if (!InstTarget)
Craig Topperc3ec1492014-05-26 06:22:03 +00002281 return nullptr;
John McCall84d87672009-12-10 09:41:52 +00002282
Craig Topperc3ec1492014-05-26 06:22:03 +00002283 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00002284 if (CheckRedeclaration) {
2285 if (SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev, PrevDecl))
2286 continue;
Richard Smith41c79d92014-10-11 00:37:16 +00002287 } else if (UsingShadowDecl *OldPrev =
2288 getPreviousDeclForInstantiation(Shadow)) {
Richard Smithfd8634a2013-10-23 02:17:46 +00002289 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl(
2290 Shadow->getLocation(), OldPrev, TemplateArgs));
2291 }
John McCall84d87672009-12-10 09:41:52 +00002292
Richard Smithfd8634a2013-10-23 02:17:46 +00002293 UsingShadowDecl *InstShadow =
Craig Topperc3ec1492014-05-26 06:22:03 +00002294 SemaRef.BuildUsingShadowDecl(/*Scope*/nullptr, NewUD, InstTarget,
2295 PrevDecl);
John McCall84d87672009-12-10 09:41:52 +00002296 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCalla1d85502009-12-22 22:26:37 +00002297
2298 if (isFunctionScope)
2299 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall84d87672009-12-10 09:41:52 +00002300 }
John McCallb96ec562009-12-04 22:46:56 +00002301
2302 return NewUD;
2303}
2304
2305Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall84d87672009-12-10 09:41:52 +00002306 // Ignore these; we handle them in bulk when processing the UsingDecl.
Craig Topperc3ec1492014-05-26 06:22:03 +00002307 return nullptr;
John McCallb96ec562009-12-04 22:46:56 +00002308}
2309
John McCalle61f2ba2009-11-18 02:36:19 +00002310Decl * TemplateDeclInstantiator
2311 ::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
Douglas Gregor0499ab62011-02-25 15:54:31 +00002312 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002313 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002314 TemplateArgs);
2315 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002316 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002317
Anders Carlsson4bd78752009-08-28 15:18:15 +00002318 CXXScopeSpec SS;
Douglas Gregor0499ab62011-02-25 15:54:31 +00002319 SS.Adopt(QualifierLoc);
Mike Stump11289f42009-09-09 15:08:12 +00002320
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002321 // Since NameInfo refers to a typename, it cannot be a C++ special name.
Benjamin Kramerd81108f2012-11-14 15:08:31 +00002322 // Hence, no transformation is required for it.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002323 DeclarationNameInfo NameInfo(D->getDeclName(), D->getLocation());
Mike Stump11289f42009-09-09 15:08:12 +00002324 NamedDecl *UD =
Craig Topperc3ec1492014-05-26 06:22:03 +00002325 SemaRef.BuildUsingDeclaration(/*Scope*/ nullptr, D->getAccess(),
2326 D->getUsingLoc(), SS, NameInfo, nullptr,
John McCalle61f2ba2009-11-18 02:36:19 +00002327 /*instantiation*/ true,
2328 /*typename*/ true, D->getTypenameLoc());
Douglas Gregor6044d692010-05-19 17:02:24 +00002329 if (UD)
John McCallb96ec562009-12-04 22:46:56 +00002330 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2331
John McCalle61f2ba2009-11-18 02:36:19 +00002332 return UD;
2333}
2334
2335Decl * TemplateDeclInstantiator
2336 ::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Douglas Gregor0499ab62011-02-25 15:54:31 +00002337 NestedNameSpecifierLoc QualifierLoc
2338 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(), TemplateArgs);
2339 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002340 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002341
John McCalle61f2ba2009-11-18 02:36:19 +00002342 CXXScopeSpec SS;
Douglas Gregor0499ab62011-02-25 15:54:31 +00002343 SS.Adopt(QualifierLoc);
John McCalle61f2ba2009-11-18 02:36:19 +00002344
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002345 DeclarationNameInfo NameInfo
2346 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2347
John McCalle61f2ba2009-11-18 02:36:19 +00002348 NamedDecl *UD =
Craig Topperc3ec1492014-05-26 06:22:03 +00002349 SemaRef.BuildUsingDeclaration(/*Scope*/ nullptr, D->getAccess(),
2350 D->getUsingLoc(), SS, NameInfo, nullptr,
John McCalle61f2ba2009-11-18 02:36:19 +00002351 /*instantiation*/ true,
2352 /*typename*/ false, SourceLocation());
Douglas Gregor6044d692010-05-19 17:02:24 +00002353 if (UD)
John McCallb96ec562009-12-04 22:46:56 +00002354 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D);
2355
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00002356 return UD;
Anders Carlsson4bd78752009-08-28 15:18:15 +00002357}
2358
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002359
2360Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
2361 ClassScopeFunctionSpecializationDecl *Decl) {
2362 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nico Weber7b5a7162012-06-25 17:21:05 +00002363 CXXMethodDecl *NewFD = cast<CXXMethodDecl>(VisitCXXMethodDecl(OldFD,
Craig Topperc3ec1492014-05-26 06:22:03 +00002364 nullptr, true));
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002365
2366 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
2367 Sema::ForRedeclaration);
2368
Nico Weber7b5a7162012-06-25 17:21:05 +00002369 TemplateArgumentListInfo TemplateArgs;
Craig Topperc3ec1492014-05-26 06:22:03 +00002370 TemplateArgumentListInfo *TemplateArgsPtr = nullptr;
Nico Weber7b5a7162012-06-25 17:21:05 +00002371 if (Decl->hasExplicitTemplateArgs()) {
2372 TemplateArgs = Decl->templateArgs();
2373 TemplateArgsPtr = &TemplateArgs;
2374 }
2375
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002376 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber7b5a7162012-06-25 17:21:05 +00002377 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
2378 Previous)) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002379 NewFD->setInvalidDecl();
2380 return NewFD;
2381 }
2382
2383 // Associate the specialization with the pattern.
2384 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2385 assert(Specialization && "Class scope Specialization is null");
2386 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2387
2388 return NewFD;
2389}
2390
Alexey Bataeva769e072013-03-22 06:34:35 +00002391Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl(
2392 OMPThreadPrivateDecl *D) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002393 SmallVector<Expr *, 5> Vars;
Aaron Ballman2205d2a2014-03-14 15:55:35 +00002394 for (auto *I : D->varlists()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002395 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
Alexey Bataeva769e072013-03-22 06:34:35 +00002396 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr");
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002397 Vars.push_back(Var);
Alexey Bataeva769e072013-03-22 06:34:35 +00002398 }
2399
2400 OMPThreadPrivateDecl *TD =
2401 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars);
2402
Alexey Bataevd3db6ac2014-03-07 09:46:29 +00002403 TD->setAccess(AS_public);
2404 Owner->addDecl(TD);
2405
Alexey Bataeva769e072013-03-22 06:34:35 +00002406 return TD;
2407}
2408
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002409Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002410 return VisitFunctionDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002411}
2412
2413Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002414 return VisitCXXMethodDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002415}
2416
2417Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) {
2418 llvm_unreachable("There are only CXXRecordDecls in C++");
2419}
2420
2421Decl *
2422TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl(
2423 ClassTemplateSpecializationDecl *D) {
Richard Smith8a0dde72013-12-14 01:04:22 +00002424 // As a MS extension, we permit class-scope explicit specialization
2425 // of member class templates.
2426 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
2427 assert(ClassTemplate->getDeclContext()->isRecord() &&
2428 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2429 "can only instantiate an explicit specialization "
2430 "for a member class template");
2431
2432 // Lookup the already-instantiated declaration in the instantiation
2433 // of the class template. FIXME: Diagnose or assert if this fails?
2434 DeclContext::lookup_result Found
2435 = Owner->lookup(ClassTemplate->getDeclName());
2436 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00002437 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002438 ClassTemplateDecl *InstClassTemplate
2439 = dyn_cast<ClassTemplateDecl>(Found.front());
2440 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00002441 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002442
2443 // Substitute into the template arguments of the class template explicit
2444 // specialization.
2445 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc().
2446 castAs<TemplateSpecializationTypeLoc>();
2447 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(),
2448 Loc.getRAngleLoc());
2449 SmallVector<TemplateArgumentLoc, 4> ArgLocs;
2450 for (unsigned I = 0; I != Loc.getNumArgs(); ++I)
2451 ArgLocs.push_back(Loc.getArgLoc(I));
2452 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(),
2453 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002454 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002455
2456 // Check that the template argument list is well-formed for this
2457 // class template.
2458 SmallVector<TemplateArgument, 4> Converted;
2459 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate,
2460 D->getLocation(),
2461 InstTemplateArgs,
2462 false,
2463 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002464 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002465
2466 // Figure out where to insert this class template explicit specialization
2467 // in the member template's set of class template explicit specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002468 void *InsertPos = nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002469 ClassTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00002470 InstClassTemplate->findSpecialization(Converted, InsertPos);
Richard Smith8a0dde72013-12-14 01:04:22 +00002471
2472 // Check whether we've already seen a conflicting instantiation of this
2473 // declaration (for instance, if there was a prior implicit instantiation).
2474 bool Ignored;
2475 if (PrevDecl &&
2476 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(),
2477 D->getSpecializationKind(),
2478 PrevDecl,
2479 PrevDecl->getSpecializationKind(),
2480 PrevDecl->getPointOfInstantiation(),
2481 Ignored))
Craig Topperc3ec1492014-05-26 06:22:03 +00002482 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002483
2484 // If PrevDecl was a definition and D is also a definition, diagnose.
2485 // This happens in cases like:
2486 //
2487 // template<typename T, typename U>
2488 // struct Outer {
2489 // template<typename X> struct Inner;
2490 // template<> struct Inner<T> {};
2491 // template<> struct Inner<U> {};
2492 // };
2493 //
2494 // Outer<int, int> outer; // error: the explicit specializations of Inner
2495 // // have the same signature.
2496 if (PrevDecl && PrevDecl->getDefinition() &&
2497 D->isThisDeclarationADefinition()) {
2498 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl;
2499 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(),
2500 diag::note_previous_definition);
Craig Topperc3ec1492014-05-26 06:22:03 +00002501 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002502 }
2503
2504 // Create the class template partial specialization declaration.
2505 ClassTemplateSpecializationDecl *InstD
2506 = ClassTemplateSpecializationDecl::Create(SemaRef.Context,
2507 D->getTagKind(),
2508 Owner,
2509 D->getLocStart(),
2510 D->getLocation(),
2511 InstClassTemplate,
2512 Converted.data(),
2513 Converted.size(),
2514 PrevDecl);
2515
2516 // Add this partial specialization to the set of class template partial
2517 // specializations.
2518 if (!PrevDecl)
2519 InstClassTemplate->AddSpecialization(InstD, InsertPos);
2520
2521 // Substitute the nested name specifier, if any.
2522 if (SubstQualifier(D, InstD))
Craig Topperc3ec1492014-05-26 06:22:03 +00002523 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002524
2525 // Build the canonical type that describes the converted template
2526 // arguments of the class template explicit specialization.
2527 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
2528 TemplateName(InstClassTemplate), Converted.data(), Converted.size(),
2529 SemaRef.Context.getRecordType(InstD));
2530
2531 // Build the fully-sugared type for this class template
2532 // specialization as the user wrote in the specialization
2533 // itself. This means that we'll pretty-print the type retrieved
2534 // from the specialization's declaration the way that the user
2535 // actually wrote the specialization, rather than formatting the
2536 // name based on the "canonical" representation used to store the
2537 // template arguments in the specialization.
2538 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
2539 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs,
2540 CanonType);
2541
2542 InstD->setAccess(D->getAccess());
2543 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
2544 InstD->setSpecializationKind(D->getSpecializationKind());
2545 InstD->setTypeAsWritten(WrittenTy);
2546 InstD->setExternLoc(D->getExternLoc());
2547 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc());
2548
2549 Owner->addDecl(InstD);
2550
2551 // Instantiate the members of the class-scope explicit specialization eagerly.
2552 // We don't have support for lazy instantiation of an explicit specialization
2553 // yet, and MSVC eagerly instantiates in this case.
2554 if (D->isThisDeclarationADefinition() &&
2555 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs,
2556 TSK_ImplicitInstantiation,
2557 /*Complain=*/true))
Craig Topperc3ec1492014-05-26 06:22:03 +00002558 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002559
2560 return InstD;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002561}
2562
Larisse Voufo39a1e502013-08-06 01:03:05 +00002563Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
2564 VarTemplateSpecializationDecl *D) {
2565
2566 TemplateArgumentListInfo VarTemplateArgsInfo;
2567 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
2568 assert(VarTemplate &&
2569 "A template specialization without specialized template?");
2570
2571 // Substitute the current template arguments.
2572 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo();
2573 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc());
2574 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc());
2575
2576 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(),
2577 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002578 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002579
2580 // Check that the template argument list is well-formed for this template.
2581 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002582 if (SemaRef.CheckTemplateArgumentList(
2583 VarTemplate, VarTemplate->getLocStart(),
2584 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00002585 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002586 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002587
2588 // Find the variable template specialization declaration that
2589 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00002590 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002591 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00002592 Converted, InsertPos))
Larisse Voufo39a1e502013-08-06 01:03:05 +00002593 // If we already have a variable template specialization, return it.
2594 return VarSpec;
2595
2596 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos,
2597 VarTemplateArgsInfo, Converted);
2598}
2599
2600Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
2601 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos,
2602 const TemplateArgumentListInfo &TemplateArgsInfo,
Craig Topper00bbdcf2014-06-28 23:22:23 +00002603 ArrayRef<TemplateArgument> Converted) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00002604
2605 // If this is the variable for an anonymous struct or union,
2606 // instantiate the anonymous struct/union type first.
2607 if (const RecordType *RecordTy = D->getType()->getAs<RecordType>())
2608 if (RecordTy->getDecl()->isAnonymousStructOrUnion())
2609 if (!VisitCXXRecordDecl(cast<CXXRecordDecl>(RecordTy->getDecl())))
Craig Topperc3ec1492014-05-26 06:22:03 +00002610 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002611
2612 // Do substitution on the type of the declaration
2613 TypeSourceInfo *DI =
2614 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
2615 D->getTypeSpecStartLoc(), D->getDeclName());
2616 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002617 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002618
2619 if (DI->getType()->isFunctionType()) {
2620 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
2621 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00002622 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002623 }
2624
2625 // Build the instantiated declaration
2626 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create(
2627 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
2628 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted.data(),
2629 Converted.size());
2630 Var->setTemplateArgsInfo(TemplateArgsInfo);
Richard Smith8809a0c2013-09-27 20:14:12 +00002631 if (InsertPos)
2632 VarTemplate->AddSpecialization(Var, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002633
2634 // Substitute the nested name specifier, if any.
2635 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +00002636 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002637
2638 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs,
Richard Smith541b38b2013-09-20 01:15:31 +00002639 Owner, StartingScope);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002640
2641 return Var;
2642}
2643
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002644Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) {
2645 llvm_unreachable("@defs is not supported in Objective-C++");
2646}
2647
2648Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
2649 // FIXME: We need to be able to instantiate FriendTemplateDecls.
2650 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
2651 DiagnosticsEngine::Error,
2652 "cannot instantiate %0 yet");
2653 SemaRef.Diag(D->getLocation(), DiagID)
2654 << D->getDeclKindName();
2655
Craig Topperc3ec1492014-05-26 06:22:03 +00002656 return nullptr;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002657}
2658
2659Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) {
2660 llvm_unreachable("Unexpected decl");
2661}
2662
John McCall76d824f2009-08-25 22:02:44 +00002663Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregor01afeef2009-08-28 20:31:08 +00002664 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord002c7b2009-05-11 23:53:27 +00002665 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor71ad4772010-02-16 19:28:15 +00002666 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00002667 return nullptr;
Douglas Gregor71ad4772010-02-16 19:28:15 +00002668
Douglas Gregord7e7a512009-03-17 21:15:40 +00002669 return Instantiator.Visit(D);
2670}
2671
John McCall87a44eb2009-08-20 01:44:21 +00002672/// \brief Instantiates a nested template parameter list in the current
2673/// instantiation context.
2674///
2675/// \param L The parameter list to instantiate
2676///
2677/// \returns NULL if there was an error
2678TemplateParameterList *
John McCall76d824f2009-08-25 22:02:44 +00002679TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCall87a44eb2009-08-20 01:44:21 +00002680 // Get errors for all the parameters before bailing out.
2681 bool Invalid = false;
2682
2683 unsigned N = L->size();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002684 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCall87a44eb2009-08-20 01:44:21 +00002685 ParamVector Params;
2686 Params.reserve(N);
2687 for (TemplateParameterList::iterator PI = L->begin(), PE = L->end();
2688 PI != PE; ++PI) {
Douglas Gregorbe999392009-09-15 16:23:51 +00002689 NamedDecl *D = cast_or_null<NamedDecl>(Visit(*PI));
John McCall87a44eb2009-08-20 01:44:21 +00002690 Params.push_back(D);
Douglas Gregore62e6a02009-11-11 19:13:48 +00002691 Invalid = Invalid || !D || D->isInvalidDecl();
John McCall87a44eb2009-08-20 01:44:21 +00002692 }
2693
2694 // Clean up if we had an error.
Douglas Gregorb412e172010-07-25 18:17:45 +00002695 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +00002696 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00002697
2698 TemplateParameterList *InstL
2699 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
2700 L->getLAngleLoc(), &Params.front(), N,
2701 L->getRAngleLoc());
2702 return InstL;
Mike Stump11289f42009-09-09 15:08:12 +00002703}
John McCall87a44eb2009-08-20 01:44:21 +00002704
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002705/// \brief Instantiate the declaration of a class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00002706/// specialization.
2707///
2708/// \param ClassTemplate the (instantiated) class template that is partially
2709// specialized by the instantiation of \p PartialSpec.
2710///
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002711/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00002712/// specialization that we are instantiating.
2713///
Douglas Gregor869853e2010-11-10 19:44:59 +00002714/// \returns The instantiated partial specialization, if successful; otherwise,
2715/// NULL to indicate an error.
2716ClassTemplatePartialSpecializationDecl *
Douglas Gregor21610382009-10-29 00:04:11 +00002717TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
2718 ClassTemplateDecl *ClassTemplate,
2719 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor954de172009-10-31 17:21:17 +00002720 // Create a local instantiation scope for this class template partial
2721 // specialization, which will contain the instantiations of the template
2722 // parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00002723 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002724
Douglas Gregor21610382009-10-29 00:04:11 +00002725 // Substitute into the template parameters of the class template partial
2726 // specialization.
2727 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2728 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2729 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002730 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002731
Douglas Gregor21610382009-10-29 00:04:11 +00002732 // Substitute into the template arguments of the class template partial
2733 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002734 const ASTTemplateArgumentListInfo *TemplArgInfo
2735 = PartialSpec->getTemplateArgsAsWritten();
2736 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
2737 TemplArgInfo->RAngleLoc);
2738 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
2739 TemplArgInfo->NumTemplateArgs,
Douglas Gregor0f3feb42010-12-22 21:19:48 +00002740 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002741 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002742
Douglas Gregor21610382009-10-29 00:04:11 +00002743 // Check that the template argument list is well-formed for this
2744 // class template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002745 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002746 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregor21610382009-10-29 00:04:11 +00002747 PartialSpec->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002748 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00002749 false,
2750 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002751 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00002752
2753 // Figure out where to insert this class template partial specialization
2754 // in the member template's set of class template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002755 void *InsertPos = nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00002756 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00002757 = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002758
Douglas Gregor21610382009-10-29 00:04:11 +00002759 // Build the canonical type that describes the converted template
2760 // arguments of the class template partial specialization.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002761 QualType CanonType
Douglas Gregor21610382009-10-29 00:04:11 +00002762 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002763 Converted.data(),
2764 Converted.size());
Douglas Gregor21610382009-10-29 00:04:11 +00002765
2766 // Build the fully-sugared type for this class template
2767 // specialization as the user wrote in the specialization
2768 // itself. This means that we'll pretty-print the type retrieved
2769 // from the specialization's declaration the way that the user
2770 // actually wrote the specialization, rather than formatting the
2771 // name based on the "canonical" representation used to store the
2772 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00002773 TypeSourceInfo *WrittenTy
2774 = SemaRef.Context.getTemplateSpecializationTypeInfo(
2775 TemplateName(ClassTemplate),
2776 PartialSpec->getLocation(),
John McCall6b51f282009-11-23 01:53:49 +00002777 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00002778 CanonType);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002779
Douglas Gregor21610382009-10-29 00:04:11 +00002780 if (PrevDecl) {
2781 // We've already seen a partial specialization with the same template
2782 // parameters and template arguments. This can happen, for example, when
2783 // substituting the outer template arguments ends up causing two
2784 // class template partial specializations of a member class template
2785 // to have identical forms, e.g.,
2786 //
2787 // template<typename T, typename U>
2788 // struct Outer {
2789 // template<typename X, typename Y> struct Inner;
2790 // template<typename Y> struct Inner<T, Y>;
2791 // template<typename Y> struct Inner<U, Y>;
2792 // };
2793 //
2794 // Outer<int, int> outer; // error: the partial specializations of Inner
2795 // // have the same signature.
2796 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregor869853e2010-11-10 19:44:59 +00002797 << WrittenTy->getType();
Douglas Gregor21610382009-10-29 00:04:11 +00002798 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
2799 << SemaRef.Context.getTypeDeclType(PrevDecl);
Craig Topperc3ec1492014-05-26 06:22:03 +00002800 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00002801 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002802
2803
Douglas Gregor21610382009-10-29 00:04:11 +00002804 // Create the class template partial specialization declaration.
2805 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002806 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregore9029562010-05-06 00:28:52 +00002807 PartialSpec->getTagKind(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002808 Owner,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00002809 PartialSpec->getLocStart(),
2810 PartialSpec->getLocation(),
Douglas Gregor21610382009-10-29 00:04:11 +00002811 InstParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002812 ClassTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002813 Converted.data(),
2814 Converted.size(),
John McCall6b51f282009-11-23 01:53:49 +00002815 InstTemplateArgs,
John McCalle78aac42010-03-10 03:28:59 +00002816 CanonType,
Craig Topperc3ec1492014-05-26 06:22:03 +00002817 nullptr);
John McCall3e11ebe2010-03-15 10:12:16 +00002818 // Substitute the nested name specifier, if any.
2819 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00002820 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00002821
Douglas Gregor21610382009-10-29 00:04:11 +00002822 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor6044d692010-05-19 17:02:24 +00002823 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002824
Douglas Gregor21610382009-10-29 00:04:11 +00002825 // Add this partial specialization to the set of class template partial
2826 // specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002827 ClassTemplate->AddPartialSpecialization(InstPartialSpec,
2828 /*InsertPos=*/nullptr);
Douglas Gregor869853e2010-11-10 19:44:59 +00002829 return InstPartialSpec;
Douglas Gregor21610382009-10-29 00:04:11 +00002830}
2831
Larisse Voufo39a1e502013-08-06 01:03:05 +00002832/// \brief Instantiate the declaration of a variable template partial
2833/// specialization.
2834///
2835/// \param VarTemplate the (instantiated) variable template that is partially
2836/// specialized by the instantiation of \p PartialSpec.
2837///
2838/// \param PartialSpec the (uninstantiated) variable template partial
2839/// specialization that we are instantiating.
2840///
2841/// \returns The instantiated partial specialization, if successful; otherwise,
2842/// NULL to indicate an error.
2843VarTemplatePartialSpecializationDecl *
2844TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization(
2845 VarTemplateDecl *VarTemplate,
2846 VarTemplatePartialSpecializationDecl *PartialSpec) {
2847 // Create a local instantiation scope for this variable template partial
2848 // specialization, which will contain the instantiations of the template
2849 // parameters.
2850 LocalInstantiationScope Scope(SemaRef);
2851
2852 // Substitute into the template parameters of the variable template partial
2853 // specialization.
2854 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
2855 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
2856 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002857 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002858
2859 // Substitute into the template arguments of the variable template partial
2860 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00002861 const ASTTemplateArgumentListInfo *TemplArgInfo
2862 = PartialSpec->getTemplateArgsAsWritten();
2863 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
2864 TemplArgInfo->RAngleLoc);
2865 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
2866 TemplArgInfo->NumTemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00002867 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002868 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002869
2870 // Check that the template argument list is well-formed for this
2871 // class template.
2872 SmallVector<TemplateArgument, 4> Converted;
2873 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(),
2874 InstTemplateArgs, false, Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002875 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002876
2877 // Figure out where to insert this variable template partial specialization
2878 // in the member template's set of variable template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002879 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002880 VarTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00002881 VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002882
2883 // Build the canonical type that describes the converted template
2884 // arguments of the variable template partial specialization.
2885 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
2886 TemplateName(VarTemplate), Converted.data(), Converted.size());
2887
2888 // Build the fully-sugared type for this variable template
2889 // specialization as the user wrote in the specialization
2890 // itself. This means that we'll pretty-print the type retrieved
2891 // from the specialization's declaration the way that the user
2892 // actually wrote the specialization, rather than formatting the
2893 // name based on the "canonical" representation used to store the
2894 // template arguments in the specialization.
2895 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
2896 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs,
2897 CanonType);
2898
2899 if (PrevDecl) {
2900 // We've already seen a partial specialization with the same template
2901 // parameters and template arguments. This can happen, for example, when
2902 // substituting the outer template arguments ends up causing two
2903 // variable template partial specializations of a member variable template
2904 // to have identical forms, e.g.,
2905 //
2906 // template<typename T, typename U>
2907 // struct Outer {
2908 // template<typename X, typename Y> pair<X,Y> p;
2909 // template<typename Y> pair<T, Y> p;
2910 // template<typename Y> pair<U, Y> p;
2911 // };
2912 //
2913 // Outer<int, int> outer; // error: the partial specializations of Inner
2914 // // have the same signature.
2915 SemaRef.Diag(PartialSpec->getLocation(),
2916 diag::err_var_partial_spec_redeclared)
2917 << WrittenTy->getType();
2918 SemaRef.Diag(PrevDecl->getLocation(),
2919 diag::note_var_prev_partial_spec_here);
Craig Topperc3ec1492014-05-26 06:22:03 +00002920 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002921 }
2922
2923 // Do substitution on the type of the declaration
2924 TypeSourceInfo *DI = SemaRef.SubstType(
2925 PartialSpec->getTypeSourceInfo(), TemplateArgs,
2926 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName());
2927 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002928 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002929
2930 if (DI->getType()->isFunctionType()) {
2931 SemaRef.Diag(PartialSpec->getLocation(),
2932 diag::err_variable_instantiates_to_function)
2933 << PartialSpec->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00002934 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002935 }
2936
2937 // Create the variable template partial specialization declaration.
2938 VarTemplatePartialSpecializationDecl *InstPartialSpec =
2939 VarTemplatePartialSpecializationDecl::Create(
2940 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(),
2941 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(),
2942 DI, PartialSpec->getStorageClass(), Converted.data(),
Richard Smithb2f61b42013-08-22 23:27:37 +00002943 Converted.size(), InstTemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002944
2945 // Substitute the nested name specifier, if any.
2946 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00002947 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002948
2949 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
2950 InstPartialSpec->setTypeAsWritten(WrittenTy);
2951
Larisse Voufo39a1e502013-08-06 01:03:05 +00002952 // Add this partial specialization to the set of variable template partial
2953 // specializations. The instantiation of the initializer is not necessary.
Craig Topperc3ec1492014-05-26 06:22:03 +00002954 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr);
Larisse Voufo4cda4612013-08-22 00:28:27 +00002955
Larisse Voufo4cda4612013-08-22 00:28:27 +00002956 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00002957 LateAttrs, Owner, StartingScope);
Larisse Voufo4cda4612013-08-22 00:28:27 +00002958
Larisse Voufo39a1e502013-08-06 01:03:05 +00002959 return InstPartialSpec;
2960}
2961
John McCall58f10c32010-03-11 09:03:00 +00002962TypeSourceInfo*
John McCall76d824f2009-08-25 22:02:44 +00002963TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002964 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall58f10c32010-03-11 09:03:00 +00002965 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
2966 assert(OldTInfo && "substituting function without type source info");
2967 assert(Params.empty() && "parameter vector is non-empty at start");
Craig Topperc3ec1492014-05-26 06:22:03 +00002968
2969 CXXRecordDecl *ThisContext = nullptr;
Douglas Gregor3024f072012-04-16 07:05:22 +00002970 unsigned ThisTypeQuals = 0;
2971 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Richard Smithc3d2ebb2013-06-07 02:33:37 +00002972 ThisContext = cast<CXXRecordDecl>(Owner);
Douglas Gregor3024f072012-04-16 07:05:22 +00002973 ThisTypeQuals = Method->getTypeQualifiers();
2974 }
2975
John McCallb29f78f2010-04-09 17:38:44 +00002976 TypeSourceInfo *NewTInfo
2977 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
2978 D->getTypeSpecStartLoc(),
Douglas Gregor3024f072012-04-16 07:05:22 +00002979 D->getDeclName(),
2980 ThisContext, ThisTypeQuals);
John McCall58f10c32010-03-11 09:03:00 +00002981 if (!NewTInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00002982 return nullptr;
Douglas Gregor21342092009-03-24 00:38:23 +00002983
Reid Klecknera09e44c2013-07-31 21:00:18 +00002984 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
2985 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) {
2986 if (NewTInfo != OldTInfo) {
2987 // Get parameters from the new type info.
Abramo Bagnaraa44c9022010-12-13 22:27:55 +00002988 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +00002989 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>();
Richard Smith198223b2012-07-18 01:29:05 +00002990 unsigned NewIdx = 0;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002991 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams();
Douglas Gregorf3010112011-01-07 16:43:16 +00002992 OldIdx != NumOldParams; ++OldIdx) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002993 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx);
Richard Smith198223b2012-07-18 01:29:05 +00002994 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
2995
David Blaikie05785d12013-02-20 22:23:23 +00002996 Optional<unsigned> NumArgumentsInExpansion;
Richard Smith198223b2012-07-18 01:29:05 +00002997 if (OldParam->isParameterPack())
2998 NumArgumentsInExpansion =
2999 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
3000 TemplateArgs);
3001 if (!NumArgumentsInExpansion) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003002 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregorf3010112011-01-07 16:43:16 +00003003 // instantiated to a (still-dependent) parameter pack.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003004 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Douglas Gregorf3010112011-01-07 16:43:16 +00003005 Params.push_back(NewParam);
Richard Smith198223b2012-07-18 01:29:05 +00003006 Scope->InstantiatedLocal(OldParam, NewParam);
3007 } else {
3008 // Parameter pack expansion: make the instantiation an argument pack.
3009 Scope->MakeInstantiatedLocalArgPack(OldParam);
3010 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003011 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Richard Smith198223b2012-07-18 01:29:05 +00003012 Params.push_back(NewParam);
3013 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
3014 }
Douglas Gregorf3010112011-01-07 16:43:16 +00003015 }
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003016 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003017 } else {
3018 // The function type itself was not dependent and therefore no
3019 // substitution occurred. However, we still need to instantiate
3020 // the function parameters themselves.
3021 const FunctionProtoType *OldProto =
3022 cast<FunctionProtoType>(OldProtoLoc.getType());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003023 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end;
3024 ++i) {
3025 ParmVarDecl *OldParam = OldProtoLoc.getParam(i);
Reid Klecknera09e44c2013-07-31 21:00:18 +00003026 if (!OldParam) {
3027 Params.push_back(SemaRef.BuildParmVarDeclForTypedef(
Alp Toker9cacbab2014-01-20 20:26:09 +00003028 D, D->getLocation(), OldProto->getParamType(i)));
Reid Klecknera09e44c2013-07-31 21:00:18 +00003029 continue;
3030 }
3031
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003032 ParmVarDecl *Parm =
Reid Klecknera09e44c2013-07-31 21:00:18 +00003033 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam));
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003034 if (!Parm)
Craig Topperc3ec1492014-05-26 06:22:03 +00003035 return nullptr;
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003036 Params.push_back(Parm);
3037 }
Douglas Gregor940bca72010-04-12 07:48:19 +00003038 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003039 } else {
3040 // If the type of this function, after ignoring parentheses, is not
3041 // *directly* a function type, then we're instantiating a function that
3042 // was declared via a typedef or with attributes, e.g.,
3043 //
3044 // typedef int functype(int, int);
3045 // functype func;
3046 // int __cdecl meth(int, int);
3047 //
3048 // In this case, we'll just go instantiate the ParmVarDecls that we
3049 // synthesized in the method declaration.
3050 SmallVector<QualType, 4> ParamTypes;
3051 if (SemaRef.SubstParmTypes(D->getLocation(), D->param_begin(),
3052 D->getNumParams(), TemplateArgs, ParamTypes,
3053 &Params))
Craig Topperc3ec1492014-05-26 06:22:03 +00003054 return nullptr;
Douglas Gregor940bca72010-04-12 07:48:19 +00003055 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003056
John McCall58f10c32010-03-11 09:03:00 +00003057 return NewTInfo;
Douglas Gregor21342092009-03-24 00:38:23 +00003058}
3059
Richard Smithf623c962012-04-17 00:58:00 +00003060/// Introduce the instantiated function parameters into the local
3061/// instantiation scope, and set the parameter names to those used
3062/// in the template.
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003063static void addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
Richard Smithf623c962012-04-17 00:58:00 +00003064 const FunctionDecl *PatternDecl,
3065 LocalInstantiationScope &Scope,
3066 const MultiLevelTemplateArgumentList &TemplateArgs) {
3067 unsigned FParamIdx = 0;
3068 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
3069 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
3070 if (!PatternParam->isParameterPack()) {
3071 // Simple case: not a parameter pack.
3072 assert(FParamIdx < Function->getNumParams());
3073 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Richard Smithaae40582014-03-13 00:28:45 +00003074 // If the parameter's type is not dependent, update it to match the type
3075 // in the pattern. They can differ in top-level cv-qualifiers, and we want
3076 // the pattern's type here. If the type is dependent, they can't differ,
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003077 // per core issue 1668.
Richard Smithaae40582014-03-13 00:28:45 +00003078 // FIXME: Updating the type to work around this is at best fragile.
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003079 if (!PatternDecl->getType()->isDependentType())
3080 FunctionParam->setType(PatternParam->getType());
Richard Smithaae40582014-03-13 00:28:45 +00003081
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003082 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smithf623c962012-04-17 00:58:00 +00003083 Scope.InstantiatedLocal(PatternParam, FunctionParam);
3084 ++FParamIdx;
3085 continue;
3086 }
3087
3088 // Expand the parameter pack.
3089 Scope.MakeInstantiatedLocalArgPack(PatternParam);
David Blaikie05785d12013-02-20 22:23:23 +00003090 Optional<unsigned> NumArgumentsInExpansion
Richard Smithf623c962012-04-17 00:58:00 +00003091 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith198223b2012-07-18 01:29:05 +00003092 assert(NumArgumentsInExpansion &&
3093 "should only be called when all template arguments are known");
3094 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithf623c962012-04-17 00:58:00 +00003095 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003096 if (!PatternDecl->getType()->isDependentType())
3097 FunctionParam->setType(PatternParam->getType());
Richard Smith9c04bce2014-10-16 23:00:46 +00003098
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003099 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smithf623c962012-04-17 00:58:00 +00003100 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
3101 ++FParamIdx;
3102 }
3103 }
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003104}
Richard Smithf623c962012-04-17 00:58:00 +00003105
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003106static void InstantiateExceptionSpec(Sema &SemaRef, FunctionDecl *New,
3107 const FunctionProtoType *Proto,
3108 const MultiLevelTemplateArgumentList &TemplateArgs) {
3109 assert(Proto->getExceptionSpecType() != EST_Uninstantiated);
3110
3111 // C++11 [expr.prim.general]p3:
3112 // If a declaration declares a member function or member function
3113 // template of a class X, the expression this is a prvalue of type
3114 // "pointer to cv-qualifier-seq X" between the optional cv-qualifer-seq
3115 // and the end of the function-definition, member-declarator, or
3116 // declarator.
3117 CXXRecordDecl *ThisContext = nullptr;
3118 unsigned ThisTypeQuals = 0;
3119 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(New)) {
3120 ThisContext = Method->getParent();
3121 ThisTypeQuals = Method->getTypeQualifiers();
3122 }
3123 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, ThisTypeQuals,
3124 SemaRef.getLangOpts().CPlusPlus11);
3125
3126 // The function has an exception specification or a "noreturn"
3127 // attribute. Substitute into each of the exception types.
3128 SmallVector<QualType, 4> Exceptions;
3129 for (unsigned I = 0, N = Proto->getNumExceptions(); I != N; ++I) {
3130 // FIXME: Poor location information!
3131 if (const PackExpansionType *PackExpansion
3132 = Proto->getExceptionType(I)->getAs<PackExpansionType>()) {
3133 // We have a pack expansion. Instantiate it.
3134 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
3135 SemaRef.collectUnexpandedParameterPacks(PackExpansion->getPattern(),
3136 Unexpanded);
3137 assert(!Unexpanded.empty() &&
3138 "Pack expansion without parameter packs?");
3139
3140 bool Expand = false;
3141 bool RetainExpansion = false;
3142 Optional<unsigned> NumExpansions = PackExpansion->getNumExpansions();
3143 if (SemaRef.CheckParameterPacksForExpansion(New->getLocation(),
3144 SourceRange(),
3145 Unexpanded,
3146 TemplateArgs,
3147 Expand,
3148 RetainExpansion,
3149 NumExpansions))
3150 break;
3151
3152 if (!Expand) {
3153 // We can't expand this pack expansion into separate arguments yet;
3154 // just substitute into the pattern and create a new pack expansion
3155 // type.
3156 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
3157 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
3158 TemplateArgs,
3159 New->getLocation(), New->getDeclName());
3160 if (T.isNull())
3161 break;
3162
3163 T = SemaRef.Context.getPackExpansionType(T, NumExpansions);
3164 Exceptions.push_back(T);
3165 continue;
3166 }
3167
3168 // Substitute into the pack expansion pattern for each template
3169 bool Invalid = false;
3170 for (unsigned ArgIdx = 0; ArgIdx != *NumExpansions; ++ArgIdx) {
3171 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, ArgIdx);
3172
3173 QualType T = SemaRef.SubstType(PackExpansion->getPattern(),
3174 TemplateArgs,
3175 New->getLocation(), New->getDeclName());
3176 if (T.isNull()) {
3177 Invalid = true;
3178 break;
3179 }
3180
3181 Exceptions.push_back(T);
3182 }
3183
3184 if (Invalid)
3185 break;
3186
3187 continue;
3188 }
3189
3190 QualType T
3191 = SemaRef.SubstType(Proto->getExceptionType(I), TemplateArgs,
3192 New->getLocation(), New->getDeclName());
3193 if (T.isNull() ||
3194 SemaRef.CheckSpecifiedExceptionType(T, New->getLocation()))
3195 continue;
3196
3197 Exceptions.push_back(T);
3198 }
3199 Expr *NoexceptExpr = nullptr;
3200 if (Expr *OldNoexceptExpr = Proto->getNoexceptExpr()) {
3201 EnterExpressionEvaluationContext Unevaluated(SemaRef,
3202 Sema::ConstantEvaluated);
3203 ExprResult E = SemaRef.SubstExpr(OldNoexceptExpr, TemplateArgs);
3204 if (E.isUsable())
3205 E = SemaRef.CheckBooleanCondition(E.get(), E.get()->getLocStart());
3206
3207 if (E.isUsable()) {
3208 NoexceptExpr = E.get();
3209 if (!NoexceptExpr->isTypeDependent() &&
3210 !NoexceptExpr->isValueDependent())
3211 NoexceptExpr
3212 = SemaRef.VerifyIntegerConstantExpression(NoexceptExpr,
3213 nullptr, diag::err_noexcept_needs_constant_expression,
3214 /*AllowFold*/ false).get();
3215 }
3216 }
3217
3218 FunctionProtoType::ExceptionSpecInfo ESI;
3219 ESI.Type = Proto->getExceptionSpecType();
3220 ESI.Exceptions = Exceptions;
3221 ESI.NoexceptExpr = NoexceptExpr;
3222
3223 SemaRef.UpdateExceptionSpec(New, ESI);
Richard Smithf623c962012-04-17 00:58:00 +00003224}
3225
3226void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
3227 FunctionDecl *Decl) {
Richard Smithd3729422012-04-19 00:08:28 +00003228 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
3229 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithf623c962012-04-17 00:58:00 +00003230 return;
3231
3232 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
3233 InstantiatingTemplate::ExceptionSpecification());
Alp Tokerd4a72d52013-10-08 08:09:04 +00003234 if (Inst.isInvalid()) {
Richard Smithd3b5c9082012-07-27 04:22:15 +00003235 // We hit the instantiation depth limit. Clear the exception specification
3236 // so that our callers don't have to cope with EST_Uninstantiated.
Richard Smith8acb4282014-07-31 21:57:55 +00003237 UpdateExceptionSpec(Decl, EST_None);
Richard Smithf623c962012-04-17 00:58:00 +00003238 return;
Richard Smithd3b5c9082012-07-27 04:22:15 +00003239 }
Richard Smithf623c962012-04-17 00:58:00 +00003240
3241 // Enter the scope of this instantiation. We don't use
3242 // PushDeclContext because we don't have a scope.
3243 Sema::ContextRAII savedContext(*this, Decl);
3244 LocalInstantiationScope Scope(*this);
3245
3246 MultiLevelTemplateArgumentList TemplateArgs =
Craig Topperc3ec1492014-05-26 06:22:03 +00003247 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true);
Richard Smithf623c962012-04-17 00:58:00 +00003248
Richard Smithd3729422012-04-19 00:08:28 +00003249 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003250 addInstantiatedParametersToScope(*this, Decl, Template, Scope, TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003251
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003252 ::InstantiateExceptionSpec(*this, Decl,
3253 Template->getType()->castAs<FunctionProtoType>(),
3254 TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003255}
3256
Mike Stump11289f42009-09-09 15:08:12 +00003257/// \brief Initializes the common fields of an instantiation function
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003258/// declaration (New) from the corresponding fields of its template (Tmpl).
3259///
3260/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003261bool
3262TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003263 FunctionDecl *Tmpl) {
David Blaikie5a0956e2012-07-16 18:50:45 +00003264 if (Tmpl->isDeleted())
Alexis Hunt4a8ea102011-05-06 20:44:56 +00003265 New->setDeletedAsWritten();
Mike Stump11289f42009-09-09 15:08:12 +00003266
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003267 // Forward the mangling number from the template to the instantiated decl.
3268 SemaRef.Context.setManglingNumber(New,
3269 SemaRef.Context.getManglingNumber(Tmpl));
3270
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003271 // If we are performing substituting explicitly-specified template arguments
3272 // or deduced template arguments into a function template and we reach this
3273 // point, we are now past the point where SFINAE applies and have committed
Mike Stump11289f42009-09-09 15:08:12 +00003274 // to keeping the new function template specialization. We therefore
3275 // convert the active template instantiation for the function template
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003276 // into a template instantiation for this specific function template
3277 // specialization, which is not a SFINAE context, so that we diagnose any
3278 // further errors in the declaration itself.
3279 typedef Sema::ActiveTemplateInstantiation ActiveInstType;
3280 ActiveInstType &ActiveInst = SemaRef.ActiveTemplateInstantiations.back();
3281 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
3282 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump11289f42009-09-09 15:08:12 +00003283 if (FunctionTemplateDecl *FunTmpl
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003284 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) {
Mike Stump11289f42009-09-09 15:08:12 +00003285 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003286 "Deduction from the wrong function template?");
Daniel Dunbar54c59642009-07-16 22:10:11 +00003287 (void) FunTmpl;
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003288 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003289 ActiveInst.Entity = New;
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003290 }
3291 }
Mike Stump11289f42009-09-09 15:08:12 +00003292
Douglas Gregor049bdca2009-12-08 17:45:32 +00003293 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
3294 assert(Proto && "Function template without prototype?");
3295
Sebastian Redlfa453cf2011-03-12 11:50:43 +00003296 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalldb40c7f2010-12-14 08:05:40 +00003297 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalldb40c7f2010-12-14 08:05:40 +00003298
Richard Smithf623c962012-04-17 00:58:00 +00003299 // DR1330: In C++11, defer instantiation of a non-trivial
3300 // exception specification.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003301 if (SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smith8acb4282014-07-31 21:57:55 +00003302 EPI.ExceptionSpec.Type != EST_None &&
3303 EPI.ExceptionSpec.Type != EST_DynamicNone &&
3304 EPI.ExceptionSpec.Type != EST_BasicNoexcept) {
Richard Smithd3729422012-04-19 00:08:28 +00003305 FunctionDecl *ExceptionSpecTemplate = Tmpl;
Richard Smith8acb4282014-07-31 21:57:55 +00003306 if (EPI.ExceptionSpec.Type == EST_Uninstantiated)
3307 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate;
Richard Smith185be182013-04-10 05:48:59 +00003308 ExceptionSpecificationType NewEST = EST_Uninstantiated;
Richard Smith8acb4282014-07-31 21:57:55 +00003309 if (EPI.ExceptionSpec.Type == EST_Unevaluated)
Richard Smith185be182013-04-10 05:48:59 +00003310 NewEST = EST_Unevaluated;
Richard Smithd3729422012-04-19 00:08:28 +00003311
Richard Smithf623c962012-04-17 00:58:00 +00003312 // Mark the function has having an uninstantiated exception specification.
3313 const FunctionProtoType *NewProto
3314 = New->getType()->getAs<FunctionProtoType>();
3315 assert(NewProto && "Template instantiation without function prototype?");
3316 EPI = NewProto->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00003317 EPI.ExceptionSpec.Type = NewEST;
3318 EPI.ExceptionSpec.SourceDecl = New;
3319 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate;
Reid Kleckner896b32f2013-06-10 20:51:09 +00003320 New->setType(SemaRef.Context.getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00003321 NewProto->getReturnType(), NewProto->getParamTypes(), EPI));
Richard Smithf623c962012-04-17 00:58:00 +00003322 } else {
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003323 ::InstantiateExceptionSpec(SemaRef, New, Proto, TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003324 }
Douglas Gregor049bdca2009-12-08 17:45:32 +00003325 }
3326
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003327 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithf623c962012-04-17 00:58:00 +00003328 const FunctionDecl *Definition = Tmpl;
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003329 Tmpl->isDefined(Definition);
3330
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00003331 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
3332 LateAttrs, StartingScope);
Douglas Gregor08329632010-06-15 17:05:35 +00003333
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003334 return false;
3335}
3336
Douglas Gregor21342092009-03-24 00:38:23 +00003337/// \brief Initializes common fields of an instantiated method
3338/// declaration (New) from the corresponding fields of its template
3339/// (Tmpl).
3340///
3341/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003342bool
3343TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor21342092009-03-24 00:38:23 +00003344 CXXMethodDecl *Tmpl) {
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003345 if (InitFunctionInstantiation(New, Tmpl))
3346 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003347
Douglas Gregor21342092009-03-24 00:38:23 +00003348 New->setAccess(Tmpl->getAccess());
Fariborz Jahanian6dfc1972009-12-03 18:44:40 +00003349 if (Tmpl->isVirtualAsWritten())
Douglas Gregor11c024b2010-09-28 20:50:54 +00003350 New->setVirtualAsWritten(true);
Douglas Gregor21342092009-03-24 00:38:23 +00003351
Douglas Gregor21342092009-03-24 00:38:23 +00003352 // FIXME: New needs a pointer to Tmpl
3353 return false;
3354}
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003355
3356/// \brief Instantiate the definition of the given function from its
3357/// template.
3358///
Douglas Gregordda7ced2009-06-30 17:20:14 +00003359/// \param PointOfInstantiation the point at which the instantiation was
3360/// required. Note that this is not precisely a "point of instantiation"
3361/// for the function, but it's close.
3362///
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003363/// \param Function the already-instantiated declaration of a
Douglas Gregordda7ced2009-06-30 17:20:14 +00003364/// function template specialization or member function of a class template
3365/// specialization.
3366///
3367/// \param Recursive if true, recursively instantiates any functions that
3368/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00003369///
3370/// \param DefinitionRequired if true, then we are performing an explicit
3371/// instantiation where the body of the function is required. Complain if
3372/// there is no such body.
Douglas Gregor85673582009-05-18 17:01:57 +00003373void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregordda7ced2009-06-30 17:20:14 +00003374 FunctionDecl *Function,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003375 bool Recursive,
3376 bool DefinitionRequired) {
Alexis Hunt4a8ea102011-05-06 20:44:56 +00003377 if (Function->isInvalidDecl() || Function->isDefined())
Douglas Gregorb4850462009-05-14 23:26:13 +00003378 return;
3379
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003380 // Never instantiate an explicit specialization except if it is a class scope
3381 // explicit specialization.
3382 if (Function->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
3383 !Function->getClassScopeSpecializationPattern())
Douglas Gregor86d142a2009-10-08 07:24:58 +00003384 return;
Douglas Gregor69f6a362010-05-17 17:34:56 +00003385
Douglas Gregor24c332b2009-05-14 21:06:31 +00003386 // Find the function body that we'll be substituting.
Douglas Gregorafca3b42009-10-27 20:53:28 +00003387 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Alexis Hunt23f6b832011-05-27 20:00:14 +00003388 assert(PatternDecl && "instantiating a non-template");
3389
3390 Stmt *Pattern = PatternDecl->getBody(PatternDecl);
3391 assert(PatternDecl && "template definition is not a template");
3392 if (!Pattern) {
3393 // Try to find a defaulted definition
3394 PatternDecl->isDefined(PatternDecl);
Alexis Hunt92a0adf2011-05-25 22:02:25 +00003395 }
Alexis Hunt23f6b832011-05-27 20:00:14 +00003396 assert(PatternDecl && "template definition is not a template");
Douglas Gregor24c332b2009-05-14 21:06:31 +00003397
Francois Pichet1c229c02011-04-22 22:18:13 +00003398 // Postpone late parsed template instantiations.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003399 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky610128e2011-05-12 03:51:24 +00003400 !LateTemplateParser) {
Francois Pichet1c229c02011-04-22 22:18:13 +00003401 PendingInstantiations.push_back(
3402 std::make_pair(Function, PointOfInstantiation));
3403 return;
3404 }
3405
Nico Weberae4bb8c2014-08-15 23:21:41 +00003406 // If we're performing recursive template instantiation, create our own
3407 // queue of pending implicit instantiations that we will instantiate later,
3408 // while we're still within our own instantiation context.
3409 // This has to happen before LateTemplateParser below is called, so that
3410 // it marks vtables used in late parsed templates as used.
3411 SavePendingLocalImplicitInstantiationsRAII
3412 SavedPendingLocalImplicitInstantiations(*this);
3413 std::unique_ptr<SavePendingInstantiationsAndVTableUsesRAII>
3414 SavePendingInstantiationsAndVTableUses;
3415 if (Recursive) {
3416 SavePendingInstantiationsAndVTableUses.reset(
3417 new SavePendingInstantiationsAndVTableUsesRAII(*this));
3418 }
3419
David Majnemerf0a84f22013-08-16 08:29:13 +00003420 // Call the LateTemplateParser callback if there is a need to late parse
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003421 // a templated function definition.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003422 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet1c229c02011-04-22 22:18:13 +00003423 LateTemplateParser) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00003424 // FIXME: Optimize to allow individual templates to be deserialized.
3425 if (PatternDecl->isFromASTFile())
3426 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap);
3427
3428 LateParsedTemplate *LPT = LateParsedTemplateMap.lookup(PatternDecl);
3429 assert(LPT && "missing LateParsedTemplate");
3430 LateTemplateParser(OpaqueParser, *LPT);
Francois Pichet1c229c02011-04-22 22:18:13 +00003431 Pattern = PatternDecl->getBody(PatternDecl);
3432 }
3433
Alexis Hunt23f6b832011-05-27 20:00:14 +00003434 if (!Pattern && !PatternDecl->isDefaulted()) {
Douglas Gregora8b89d22009-10-15 14:05:49 +00003435 if (DefinitionRequired) {
3436 if (Function->getPrimaryTemplate())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003437 Diag(PointOfInstantiation,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003438 diag::err_explicit_instantiation_undefined_func_template)
3439 << Function->getPrimaryTemplate();
3440 else
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003441 Diag(PointOfInstantiation,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003442 diag::err_explicit_instantiation_undefined_member)
3443 << 1 << Function->getDeclName() << Function->getDeclContext();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003444
Douglas Gregora8b89d22009-10-15 14:05:49 +00003445 if (PatternDecl)
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003446 Diag(PatternDecl->getLocation(),
Douglas Gregora8b89d22009-10-15 14:05:49 +00003447 diag::note_explicit_instantiation_here);
Douglas Gregorfd7224f2010-05-17 17:57:54 +00003448 Function->setInvalidDecl();
Chandler Carruthcfe41db2010-08-25 08:27:02 +00003449 } else if (Function->getTemplateSpecializationKind()
3450 == TSK_ExplicitInstantiationDefinition) {
Nico Weberae4bb8c2014-08-15 23:21:41 +00003451 assert(!Recursive);
Chandler Carruth54080172010-08-25 08:44:16 +00003452 PendingInstantiations.push_back(
Chandler Carruthcfe41db2010-08-25 08:27:02 +00003453 std::make_pair(Function, PointOfInstantiation));
Douglas Gregora8b89d22009-10-15 14:05:49 +00003454 }
Chandler Carruthcfe41db2010-08-25 08:27:02 +00003455
Douglas Gregor24c332b2009-05-14 21:06:31 +00003456 return;
Douglas Gregora8b89d22009-10-15 14:05:49 +00003457 }
Douglas Gregor24c332b2009-05-14 21:06:31 +00003458
Richard Smith2a7d4812013-05-04 07:00:32 +00003459 // C++1y [temp.explicit]p10:
3460 // Except for inline functions, declarations with types deduced from their
3461 // initializer or return value, and class template specializations, other
3462 // explicit instantiation declarations have the effect of suppressing the
3463 // implicit instantiation of the entity to which they refer.
Alp Toker314cc812014-01-25 16:55:45 +00003464 if (Function->getTemplateSpecializationKind() ==
3465 TSK_ExplicitInstantiationDeclaration &&
Richard Smith2a7d4812013-05-04 07:00:32 +00003466 !PatternDecl->isInlined() &&
Alp Toker314cc812014-01-25 16:55:45 +00003467 !PatternDecl->getReturnType()->getContainedAutoType())
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003468 return;
Mike Stump11289f42009-09-09 15:08:12 +00003469
Richard Smith195d8ef2014-05-29 03:15:31 +00003470 if (PatternDecl->isInlined()) {
3471 // Function, and all later redeclarations of it (from imported modules,
3472 // for instance), are now implicitly inline.
3473 for (auto *D = Function->getMostRecentDecl(); /**/;
3474 D = D->getPreviousDecl()) {
3475 D->setImplicitlyInline();
3476 if (D == Function)
3477 break;
3478 }
3479 }
Richard Smithf3814ad2013-01-25 00:08:28 +00003480
Douglas Gregor85673582009-05-18 17:01:57 +00003481 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
Alp Tokerd4a72d52013-10-08 08:09:04 +00003482 if (Inst.isInvalid())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003483 return;
3484
Abramo Bagnara12dcbf32011-11-18 08:08:52 +00003485 // Copy the inner loc start from the pattern.
3486 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
3487
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003488 EnterExpressionEvaluationContext EvalContext(*this,
John McCallfaf5fb42010-08-26 23:41:50 +00003489 Sema::PotentiallyEvaluated);
Douglas Gregor67da0d92009-05-15 17:59:04 +00003490
Douglas Gregorb4850462009-05-14 23:26:13 +00003491 // Introduce a new scope where local variable instantiations will be
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003492 // recorded, unless we're actually a member function within a local
3493 // class, in which case we need to merge our results with the parent
3494 // scope (of the enclosing function).
3495 bool MergeWithParentScope = false;
3496 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
3497 MergeWithParentScope = Rec->isLocalClass();
3498
3499 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00003500
Richard Smithbd305122012-12-11 01:14:52 +00003501 if (PatternDecl->isDefaulted())
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003502 SetDeclDefaulted(Function, PatternDecl->getLocation());
Richard Smithbd305122012-12-11 01:14:52 +00003503 else {
Richard Smithcc928662014-10-17 20:37:29 +00003504 MultiLevelTemplateArgumentList TemplateArgs =
3505 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl);
3506
3507 // Substitute into the qualifier; we can get a substitution failure here
3508 // through evil use of alias templates.
3509 // FIXME: Is CurContext correct for this? Should we go to the (instantiation
3510 // of the) lexical context of the pattern?
3511 SubstQualifier(*this, PatternDecl, Function, TemplateArgs);
3512
Craig Topperc3ec1492014-05-26 06:22:03 +00003513 ActOnStartOfFunctionDef(nullptr, Function);
Richard Smithbd305122012-12-11 01:14:52 +00003514
3515 // Enter the scope of this instantiation. We don't use
3516 // PushDeclContext because we don't have a scope.
3517 Sema::ContextRAII savedContext(*this, Function);
3518
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003519 addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
3520 TemplateArgs);
Richard Smithbd305122012-12-11 01:14:52 +00003521
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003522 // If this is a constructor, instantiate the member initializers.
3523 if (const CXXConstructorDecl *Ctor =
3524 dyn_cast<CXXConstructorDecl>(PatternDecl)) {
3525 InstantiateMemInitializers(cast<CXXConstructorDecl>(Function), Ctor,
3526 TemplateArgs);
3527 }
3528
3529 // Instantiate the function body.
3530 StmtResult Body = SubstStmt(Pattern, TemplateArgs);
3531
3532 if (Body.isInvalid())
3533 Function->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003534
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003535 ActOnFinishFunctionBody(Function, Body.get(),
3536 /*IsInstantiation=*/true);
Richard Smithbd305122012-12-11 01:14:52 +00003537
3538 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
3539
Richard Smithd28ac5b2014-03-22 23:33:22 +00003540 if (auto *Listener = getASTMutationListener())
3541 Listener->FunctionDefinitionInstantiated(Function);
Richard Smith0ac1b8f2014-03-22 01:43:32 +00003542
Richard Smithbd305122012-12-11 01:14:52 +00003543 savedContext.pop();
Mike Stump11289f42009-09-09 15:08:12 +00003544 }
3545
Douglas Gregor28ad4b52009-05-26 20:50:29 +00003546 DeclGroupRef DG(Function);
3547 Consumer.HandleTopLevelDecl(DG);
Mike Stump11289f42009-09-09 15:08:12 +00003548
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003549 // This class may have local implicit instantiations that need to be
3550 // instantiation within this scope.
Chandler Carruth54080172010-08-25 08:44:16 +00003551 PerformPendingInstantiations(/*LocalOnly=*/true);
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003552 Scope.Exit();
3553
Douglas Gregordda7ced2009-06-30 17:20:14 +00003554 if (Recursive) {
Nick Lewyckyef4f4562010-11-25 00:35:20 +00003555 // Define any pending vtables.
3556 DefineUsedVTables();
3557
Douglas Gregordda7ced2009-06-30 17:20:14 +00003558 // Instantiate any pending implicit instantiations found during the
Mike Stump11289f42009-09-09 15:08:12 +00003559 // instantiation of this template.
Chandler Carruth54080172010-08-25 08:44:16 +00003560 PerformPendingInstantiations();
Mike Stump11289f42009-09-09 15:08:12 +00003561
Nico Weberccec9d82014-08-15 22:29:14 +00003562 // Restore PendingInstantiations and VTableUses.
3563 SavePendingInstantiationsAndVTableUses.reset();
Douglas Gregordda7ced2009-06-30 17:20:14 +00003564 }
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003565}
3566
Larisse Voufo39a1e502013-08-06 01:03:05 +00003567VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation(
3568 VarTemplateDecl *VarTemplate, VarDecl *FromVar,
3569 const TemplateArgumentList &TemplateArgList,
3570 const TemplateArgumentListInfo &TemplateArgsInfo,
3571 SmallVectorImpl<TemplateArgument> &Converted,
3572 SourceLocation PointOfInstantiation, void *InsertPos,
3573 LateInstantiatedAttrVec *LateAttrs,
3574 LocalInstantiationScope *StartingScope) {
3575 if (FromVar->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00003576 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003577
3578 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar);
Alp Tokerd4a72d52013-10-08 08:09:04 +00003579 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00003580 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003581
3582 MultiLevelTemplateArgumentList TemplateArgLists;
3583 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList);
3584
Richard Smith8809a0c2013-09-27 20:14:12 +00003585 // Instantiate the first declaration of the variable template: for a partial
3586 // specialization of a static data member template, the first declaration may
3587 // or may not be the declaration in the class; if it's in the class, we want
3588 // to instantiate a member in the class (a declaration), and if it's outside,
3589 // we want to instantiate a definition.
Richard Smithbeef3452014-01-16 23:39:20 +00003590 //
3591 // If we're instantiating an explicitly-specialized member template or member
3592 // partial specialization, don't do this. The member specialization completely
3593 // replaces the original declaration in this case.
3594 bool IsMemberSpec = false;
3595 if (VarTemplatePartialSpecializationDecl *PartialSpec =
3596 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar))
3597 IsMemberSpec = PartialSpec->isMemberSpecialization();
3598 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate())
3599 IsMemberSpec = FromTemplate->isMemberSpecialization();
3600 if (!IsMemberSpec)
3601 FromVar = FromVar->getFirstDecl();
Richard Smith8809a0c2013-09-27 20:14:12 +00003602
Manuel Klimek5843add2013-09-30 13:29:01 +00003603 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList);
3604 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(),
3605 MultiLevelList);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003606
3607 // TODO: Set LateAttrs and StartingScope ...
3608
3609 return cast_or_null<VarTemplateSpecializationDecl>(
3610 Instantiator.VisitVarTemplateSpecializationDecl(
3611 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted));
3612}
3613
3614/// \brief Instantiates a variable template specialization by completing it
3615/// with appropriate type information and initializer.
3616VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl(
3617 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl,
3618 const MultiLevelTemplateArgumentList &TemplateArgs) {
3619
3620 // Do substitution on the type of the declaration
3621 TypeSourceInfo *DI =
Richard Smith8809a0c2013-09-27 20:14:12 +00003622 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00003623 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName());
3624 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003625 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003626
3627 // Update the type of this variable template specialization.
3628 VarSpec->setType(DI->getType());
3629
3630 // Instantiate the initializer.
3631 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs);
3632
3633 return VarSpec;
3634}
3635
3636/// BuildVariableInstantiation - Used after a new variable has been created.
3637/// Sets basic variable data and decides whether to postpone the
3638/// variable instantiation.
3639void Sema::BuildVariableInstantiation(
3640 VarDecl *NewVar, VarDecl *OldVar,
3641 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00003642 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner,
3643 LocalInstantiationScope *StartingScope,
Larisse Voufo72caf2b2013-08-22 00:59:14 +00003644 bool InstantiatingVarTemplate) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003645
Richard Smith541b38b2013-09-20 01:15:31 +00003646 // If we are instantiating a local extern declaration, the
3647 // instantiation belongs lexically to the containing function.
Larisse Voufo39a1e502013-08-06 01:03:05 +00003648 // If we are instantiating a static data member defined
3649 // out-of-line, the instantiation will have the same lexical
3650 // context (which will be a namespace scope) as the template.
Richard Smith541b38b2013-09-20 01:15:31 +00003651 if (OldVar->isLocalExternDecl()) {
3652 NewVar->setLocalExternDecl();
3653 NewVar->setLexicalDeclContext(Owner);
3654 } else if (OldVar->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00003655 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext());
3656 NewVar->setTSCSpec(OldVar->getTSCSpec());
3657 NewVar->setInitStyle(OldVar->getInitStyle());
3658 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl());
3659 NewVar->setConstexpr(OldVar->isConstexpr());
Richard Smithbb13c9a2013-09-28 04:02:39 +00003660 NewVar->setInitCapture(OldVar->isInitCapture());
Richard Smith1c34fb72013-08-13 18:18:50 +00003661 NewVar->setPreviousDeclInSameBlockScope(
3662 OldVar->isPreviousDeclInSameBlockScope());
Larisse Voufo39a1e502013-08-06 01:03:05 +00003663 NewVar->setAccess(OldVar->getAccess());
3664
Richard Smith0b551192013-09-23 23:12:22 +00003665 if (!OldVar->isStaticDataMember()) {
Rafael Espindolae4865d22013-10-23 16:46:34 +00003666 if (OldVar->isUsed(false))
3667 NewVar->setIsUsed();
Larisse Voufo39a1e502013-08-06 01:03:05 +00003668 NewVar->setReferenced(OldVar->isReferenced());
3669 }
3670
David Majnemer50ce8352013-09-17 23:57:10 +00003671 // See if the old variable had a type-specifier that defined an anonymous tag.
3672 // If it did, mark the new variable as being the declarator for the new
3673 // anonymous tag.
3674 if (const TagType *OldTagType = OldVar->getType()->getAs<TagType>()) {
3675 TagDecl *OldTag = OldTagType->getDecl();
3676 if (OldTag->getDeclaratorForAnonDecl() == OldVar) {
3677 TagDecl *NewTag = NewVar->getType()->castAs<TagType>()->getDecl();
3678 assert(!NewTag->hasNameForLinkage() &&
3679 !NewTag->hasDeclaratorForAnonDecl());
3680 NewTag->setDeclaratorForAnonDecl(NewVar);
3681 }
3682 }
3683
Larisse Voufo39a1e502013-08-06 01:03:05 +00003684 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope);
3685
Richard Smith541b38b2013-09-20 01:15:31 +00003686 LookupResult Previous(
3687 *this, NewVar->getDeclName(), NewVar->getLocation(),
3688 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
3689 : Sema::LookupOrdinaryName,
3690 Sema::ForRedeclaration);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003691
Argyrios Kyrtzidis91486222013-11-27 08:34:14 +00003692 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() &&
3693 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() ||
3694 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) {
Richard Smith1c34fb72013-08-13 18:18:50 +00003695 // We have a previous declaration. Use that one, so we merge with the
3696 // right type.
3697 if (NamedDecl *NewPrev = FindInstantiatedDecl(
3698 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs))
3699 Previous.addDecl(NewPrev);
3700 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) &&
3701 OldVar->hasLinkage())
Larisse Voufo39a1e502013-08-06 01:03:05 +00003702 LookupQualifiedName(Previous, NewVar->getDeclContext(), false);
Larisse Voufo72caf2b2013-08-22 00:59:14 +00003703 CheckVariableDeclaration(NewVar, Previous);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003704
Richard Smith541b38b2013-09-20 01:15:31 +00003705 if (!InstantiatingVarTemplate) {
3706 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar);
3707 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl())
Larisse Voufo39a1e502013-08-06 01:03:05 +00003708 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar);
Richard Smith541b38b2013-09-20 01:15:31 +00003709 }
3710
3711 if (!OldVar->isOutOfLine()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003712 if (NewVar->getDeclContext()->isFunctionOrMethod())
3713 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar);
3714 }
3715
3716 // Link instantiations of static data members back to the template from
3717 // which they were instantiated.
Larisse Voufo72caf2b2013-08-22 00:59:14 +00003718 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate)
Larisse Voufo39a1e502013-08-06 01:03:05 +00003719 NewVar->setInstantiationOfStaticDataMember(OldVar,
3720 TSK_ImplicitInstantiation);
3721
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003722 // Forward the mangling number from the template to the instantiated decl.
3723 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar));
David Majnemer2206bf52014-03-05 08:57:59 +00003724 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar));
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003725
Richard Smith8809a0c2013-09-27 20:14:12 +00003726 // Delay instantiation of the initializer for variable templates until a
Richard Smithd292b242014-03-16 01:00:40 +00003727 // definition of the variable is needed. We need it right away if the type
3728 // contains 'auto'.
3729 if ((!isa<VarTemplateSpecializationDecl>(NewVar) &&
3730 !InstantiatingVarTemplate) ||
3731 NewVar->getType()->isUndeducedType())
Larisse Voufo39a1e502013-08-06 01:03:05 +00003732 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs);
3733
3734 // Diagnose unused local variables with dependent types, where the diagnostic
3735 // will have been deferred.
3736 if (!NewVar->isInvalidDecl() &&
Nico Weber72889432014-09-06 01:25:55 +00003737 NewVar->getDeclContext()->isFunctionOrMethod() &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00003738 OldVar->getType()->isDependentType())
3739 DiagnoseUnusedDecl(NewVar);
3740}
3741
3742/// \brief Instantiate the initializer of a variable.
3743void Sema::InstantiateVariableInitializer(
3744 VarDecl *Var, VarDecl *OldVar,
3745 const MultiLevelTemplateArgumentList &TemplateArgs) {
3746
3747 if (Var->getAnyInitializer())
3748 // We already have an initializer in the class.
3749 return;
3750
3751 if (OldVar->getInit()) {
3752 if (Var->isStaticDataMember() && !OldVar->isOutOfLine())
3753 PushExpressionEvaluationContext(Sema::ConstantEvaluated, OldVar);
3754 else
3755 PushExpressionEvaluationContext(Sema::PotentiallyEvaluated, OldVar);
3756
3757 // Instantiate the initializer.
3758 ExprResult Init =
3759 SubstInitializer(OldVar->getInit(), TemplateArgs,
3760 OldVar->getInitStyle() == VarDecl::CallInit);
3761 if (!Init.isInvalid()) {
3762 bool TypeMayContainAuto = true;
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00003763 Expr *InitExpr = Init.get();
3764
Richard Smith95b83e92014-07-10 20:53:43 +00003765 if (Var->hasAttr<DLLImportAttr>() &&
3766 (!InitExpr ||
3767 !InitExpr->isConstantInitializer(getASTContext(), false))) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00003768 // Do not dynamically initialize dllimport variables.
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00003769 } else if (InitExpr) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003770 bool DirectInit = OldVar->isDirectInit();
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00003771 AddInitializerToDecl(Var, InitExpr, DirectInit, TypeMayContainAuto);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003772 } else
3773 ActOnUninitializedDecl(Var, TypeMayContainAuto);
3774 } else {
3775 // FIXME: Not too happy about invalidating the declaration
3776 // because of a bogus initializer.
3777 Var->setInvalidDecl();
3778 }
3779
3780 PopExpressionEvaluationContext();
3781 } else if ((!Var->isStaticDataMember() || Var->isOutOfLine()) &&
3782 !Var->isCXXForRangeDecl())
3783 ActOnUninitializedDecl(Var, false);
3784}
3785
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003786/// \brief Instantiate the definition of the given variable from its
3787/// template.
3788///
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003789/// \param PointOfInstantiation the point at which the instantiation was
3790/// required. Note that this is not precisely a "point of instantiation"
3791/// for the function, but it's close.
3792///
3793/// \param Var the already-instantiated declaration of a static member
3794/// variable of a class template specialization.
3795///
3796/// \param Recursive if true, recursively instantiates any functions that
3797/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00003798///
3799/// \param DefinitionRequired if true, then we are performing an explicit
3800/// instantiation where an out-of-line definition of the member variable
3801/// is required. Complain if there is no such definition.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003802void Sema::InstantiateStaticDataMemberDefinition(
3803 SourceLocation PointOfInstantiation,
3804 VarDecl *Var,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003805 bool Recursive,
3806 bool DefinitionRequired) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003807 InstantiateVariableDefinition(PointOfInstantiation, Var, Recursive,
3808 DefinitionRequired);
3809}
3810
3811void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation,
3812 VarDecl *Var, bool Recursive,
3813 bool DefinitionRequired) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003814 if (Var->isInvalidDecl())
3815 return;
Mike Stump11289f42009-09-09 15:08:12 +00003816
Larisse Voufo39a1e502013-08-06 01:03:05 +00003817 VarTemplateSpecializationDecl *VarSpec =
3818 dyn_cast<VarTemplateSpecializationDecl>(Var);
Craig Topperc3ec1492014-05-26 06:22:03 +00003819 VarDecl *PatternDecl = nullptr, *Def = nullptr;
Richard Smith8809a0c2013-09-27 20:14:12 +00003820 MultiLevelTemplateArgumentList TemplateArgs =
3821 getTemplateInstantiationArgs(Var);
Mike Stump11289f42009-09-09 15:08:12 +00003822
Larisse Voufo39a1e502013-08-06 01:03:05 +00003823 if (VarSpec) {
Richard Smith8809a0c2013-09-27 20:14:12 +00003824 // If this is a variable template specialization, make sure that it is
3825 // non-dependent, then find its instantiation pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00003826 bool InstantiationDependent = false;
3827 assert(!TemplateSpecializationType::anyDependentTemplateArguments(
3828 VarSpec->getTemplateArgsInfo(), InstantiationDependent) &&
3829 "Only instantiate variable template specializations that are "
3830 "not type-dependent");
Larisse Voufo4154f462013-08-06 03:57:41 +00003831 (void)InstantiationDependent;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003832
Richard Smith8809a0c2013-09-27 20:14:12 +00003833 // Find the variable initialization that we'll be substituting. If the
3834 // pattern was instantiated from a member template, look back further to
3835 // find the real pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00003836 assert(VarSpec->getSpecializedTemplate() &&
3837 "Specialization without specialized template?");
3838 llvm::PointerUnion<VarTemplateDecl *,
3839 VarTemplatePartialSpecializationDecl *> PatternPtr =
3840 VarSpec->getSpecializedTemplateOrPartial();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00003841 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00003842 VarTemplatePartialSpecializationDecl *Tmpl =
3843 PatternPtr.get<VarTemplatePartialSpecializationDecl *>();
3844 while (VarTemplatePartialSpecializationDecl *From =
3845 Tmpl->getInstantiatedFromMember()) {
3846 if (Tmpl->isMemberSpecialization())
3847 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00003848
Richard Smith8809a0c2013-09-27 20:14:12 +00003849 Tmpl = From;
3850 }
3851 PatternDecl = Tmpl;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00003852 } else {
Richard Smith8809a0c2013-09-27 20:14:12 +00003853 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>();
3854 while (VarTemplateDecl *From =
3855 Tmpl->getInstantiatedFromMemberTemplate()) {
3856 if (Tmpl->isMemberSpecialization())
3857 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00003858
Richard Smith8809a0c2013-09-27 20:14:12 +00003859 Tmpl = From;
3860 }
3861 PatternDecl = Tmpl->getTemplatedDecl();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00003862 }
Richard Smith8809a0c2013-09-27 20:14:12 +00003863
3864 // If this is a static data member template, there might be an
3865 // uninstantiated initializer on the declaration. If so, instantiate
3866 // it now.
3867 if (PatternDecl->isStaticDataMember() &&
Rafael Espindola8db352d2013-10-17 15:37:26 +00003868 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() &&
Richard Smith8809a0c2013-09-27 20:14:12 +00003869 !Var->hasInit()) {
3870 // FIXME: Factor out the duplicated instantiation context setup/tear down
3871 // code here.
3872 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Alp Tokerd4a72d52013-10-08 08:09:04 +00003873 if (Inst.isInvalid())
Richard Smith8809a0c2013-09-27 20:14:12 +00003874 return;
3875
3876 // If we're performing recursive template instantiation, create our own
3877 // queue of pending implicit instantiations that we will instantiate
3878 // later, while we're still within our own instantiation context.
Nico Weberccec9d82014-08-15 22:29:14 +00003879 std::unique_ptr<SavePendingInstantiationsAndVTableUsesRAII>
3880 SavePendingInstantiationsAndVTableUses;
Richard Smith8809a0c2013-09-27 20:14:12 +00003881 if (Recursive) {
Nico Weberccec9d82014-08-15 22:29:14 +00003882 SavePendingInstantiationsAndVTableUses.reset(
3883 new SavePendingInstantiationsAndVTableUsesRAII(*this));
Richard Smith8809a0c2013-09-27 20:14:12 +00003884 }
3885
3886 LocalInstantiationScope Local(*this);
3887
3888 // Enter the scope of this instantiation. We don't use
3889 // PushDeclContext because we don't have a scope.
3890 ContextRAII PreviousContext(*this, Var->getDeclContext());
3891 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs);
3892 PreviousContext.pop();
3893
3894 // FIXME: Need to inform the ASTConsumer that we instantiated the
3895 // initializer?
3896
3897 // This variable may have local implicit instantiations that need to be
3898 // instantiated within this scope.
3899 PerformPendingInstantiations(/*LocalOnly=*/true);
3900
3901 Local.Exit();
3902
3903 if (Recursive) {
3904 // Define any newly required vtables.
3905 DefineUsedVTables();
3906
3907 // Instantiate any pending implicit instantiations found during the
3908 // instantiation of this template.
3909 PerformPendingInstantiations();
3910
Nico Weberccec9d82014-08-15 22:29:14 +00003911 // Restore PendingInstantiations and VTableUses.
3912 SavePendingInstantiationsAndVTableUses.reset();
Richard Smith8809a0c2013-09-27 20:14:12 +00003913 }
3914 }
3915
3916 // Find actual definition
3917 Def = PatternDecl->getDefinition(getASTContext());
3918 } else {
3919 // If this is a static data member, find its out-of-line definition.
3920 assert(Var->isStaticDataMember() && "not a static data member?");
3921 PatternDecl = Var->getInstantiatedFromStaticDataMember();
3922
3923 assert(PatternDecl && "data member was not instantiated from a template?");
3924 assert(PatternDecl->isStaticDataMember() && "not a static data member?");
3925 Def = PatternDecl->getOutOfLineDefinition();
Larisse Voufo39a1e502013-08-06 01:03:05 +00003926 }
3927
Richard Smith8809a0c2013-09-27 20:14:12 +00003928 // If we don't have a definition of the variable template, we won't perform
3929 // any instantiation. Rather, we rely on the user to instantiate this
3930 // definition (or provide a specialization for it) in another translation
3931 // unit.
3932 if (!Def) {
Douglas Gregora8b89d22009-10-15 14:05:49 +00003933 if (DefinitionRequired) {
Richard Smith8809a0c2013-09-27 20:14:12 +00003934 if (VarSpec)
Larisse Voufo39a1e502013-08-06 01:03:05 +00003935 Diag(PointOfInstantiation,
Richard Smith8809a0c2013-09-27 20:14:12 +00003936 diag::err_explicit_instantiation_undefined_var_template) << Var;
3937 else
Larisse Voufo39a1e502013-08-06 01:03:05 +00003938 Diag(PointOfInstantiation,
3939 diag::err_explicit_instantiation_undefined_member)
Richard Smith8809a0c2013-09-27 20:14:12 +00003940 << 2 << Var->getDeclName() << Var->getDeclContext();
3941 Diag(PatternDecl->getLocation(),
3942 diag::note_explicit_instantiation_here);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003943 if (VarSpec)
3944 Var->setInvalidDecl();
Chandler Carruthcfe41db2010-08-25 08:27:02 +00003945 } else if (Var->getTemplateSpecializationKind()
3946 == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth54080172010-08-25 08:44:16 +00003947 PendingInstantiations.push_back(
Chandler Carruthcfe41db2010-08-25 08:27:02 +00003948 std::make_pair(Var, PointOfInstantiation));
3949 }
3950
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003951 return;
3952 }
3953
Rafael Espindola189fa742012-03-05 10:54:55 +00003954 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
3955
Douglas Gregor86d142a2009-10-08 07:24:58 +00003956 // Never instantiate an explicit specialization.
Rafael Espindola189fa742012-03-05 10:54:55 +00003957 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor86d142a2009-10-08 07:24:58 +00003958 return;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003959
Larisse Voufo39a1e502013-08-06 01:03:05 +00003960 // C++11 [temp.explicit]p10:
3961 // Except for inline functions, [...] explicit instantiation declarations
3962 // have the effect of suppressing the implicit instantiation of the entity
3963 // to which they refer.
Rafael Espindola189fa742012-03-05 10:54:55 +00003964 if (TSK == TSK_ExplicitInstantiationDeclaration)
Douglas Gregor86d142a2009-10-08 07:24:58 +00003965 return;
Mike Stump11289f42009-09-09 15:08:12 +00003966
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00003967 // Make sure to pass the instantiated variable to the consumer at the end.
3968 struct PassToConsumerRAII {
3969 ASTConsumer &Consumer;
3970 VarDecl *Var;
3971
3972 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var)
3973 : Consumer(Consumer), Var(Var) { }
3974
3975 ~PassToConsumerRAII() {
Richard Smith8809a0c2013-09-27 20:14:12 +00003976 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00003977 }
3978 } PassToConsumerRAII(Consumer, Var);
Rafael Espindoladf88f6f2012-03-08 15:51:03 +00003979
Richard Smith8809a0c2013-09-27 20:14:12 +00003980 // If we already have a definition, we're done.
3981 if (VarDecl *Def = Var->getDefinition()) {
3982 // We may be explicitly instantiating something we've already implicitly
3983 // instantiated.
3984 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
3985 PointOfInstantiation);
3986 return;
Nick Lewyckya995a472012-04-04 02:38:36 +00003987 }
Douglas Gregor57d4f972011-06-03 03:35:07 +00003988
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003989 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Alp Tokerd4a72d52013-10-08 08:09:04 +00003990 if (Inst.isInvalid())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003991 return;
Mike Stump11289f42009-09-09 15:08:12 +00003992
Douglas Gregora6ef8f02009-07-24 20:34:43 +00003993 // If we're performing recursive template instantiation, create our own
3994 // queue of pending implicit instantiations that we will instantiate later,
3995 // while we're still within our own instantiation context.
David Majnemerfd6c685f2013-11-27 22:57:44 +00003996 SavePendingLocalImplicitInstantiationsRAII
3997 SavedPendingLocalImplicitInstantiations(*this);
Nico Weberccec9d82014-08-15 22:29:14 +00003998 std::unique_ptr<SavePendingInstantiationsAndVTableUsesRAII>
3999 SavePendingInstantiationsAndVTableUses;
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00004000 if (Recursive) {
Nico Weberccec9d82014-08-15 22:29:14 +00004001 SavePendingInstantiationsAndVTableUses.reset(
4002 new SavePendingInstantiationsAndVTableUsesRAII(*this));
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00004003 }
Mike Stump11289f42009-09-09 15:08:12 +00004004
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004005 // Enter the scope of this instantiation. We don't use
4006 // PushDeclContext because we don't have a scope.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004007 ContextRAII PreviousContext(*this, Var->getDeclContext());
Douglas Gregora86bc002012-02-16 21:36:18 +00004008 LocalInstantiationScope Local(*this);
John McCall2957e3e2011-02-14 20:37:25 +00004009
Larisse Voufo39a1e502013-08-06 01:03:05 +00004010 VarDecl *OldVar = Var;
4011 if (!VarSpec)
4012 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Richard Smith8809a0c2013-09-27 20:14:12 +00004013 TemplateArgs));
4014 else if (Var->isStaticDataMember() &&
4015 Var->getLexicalDeclContext()->isRecord()) {
4016 // We need to instantiate the definition of a static data member template,
4017 // and all we have is the in-class declaration of it. Instantiate a separate
4018 // declaration of the definition.
4019 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(),
4020 TemplateArgs);
4021 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl(
Craig Topperc3ec1492014-05-26 06:22:03 +00004022 VarSpec->getSpecializedTemplate(), Def, nullptr,
Richard Smith8809a0c2013-09-27 20:14:12 +00004023 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray()));
4024 if (Var) {
4025 llvm::PointerUnion<VarTemplateDecl *,
4026 VarTemplatePartialSpecializationDecl *> PatternPtr =
4027 VarSpec->getSpecializedTemplateOrPartial();
4028 if (VarTemplatePartialSpecializationDecl *Partial =
4029 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>())
4030 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf(
4031 Partial, &VarSpec->getTemplateInstantiationArgs());
4032
4033 // Merge the definition with the declaration.
4034 LookupResult R(*this, Var->getDeclName(), Var->getLocation(),
4035 LookupOrdinaryName, ForRedeclaration);
4036 R.addDecl(OldVar);
4037 MergeVarDecl(Var, R);
4038
4039 // Attach the initializer.
4040 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4041 }
4042 } else
4043 // Complete the existing variable's definition with an appropriately
4044 // substituted type and initializer.
4045 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004046
4047 PreviousContext.pop();
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004048
4049 if (Var) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004050 PassToConsumerRAII.Var = Var;
Richard Smith8809a0c2013-09-27 20:14:12 +00004051 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(),
4052 OldVar->getPointOfInstantiation());
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004053 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004054
4055 // This variable may have local implicit instantiations that need to be
4056 // instantiated within this scope.
4057 PerformPendingInstantiations(/*LocalOnly=*/true);
4058
Douglas Gregora86bc002012-02-16 21:36:18 +00004059 Local.Exit();
4060
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004061 if (Recursive) {
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00004062 // Define any newly required vtables.
4063 DefineUsedVTables();
4064
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004065 // Instantiate any pending implicit instantiations found during the
Mike Stump11289f42009-09-09 15:08:12 +00004066 // instantiation of this template.
Chandler Carruth54080172010-08-25 08:44:16 +00004067 PerformPendingInstantiations();
Mike Stump11289f42009-09-09 15:08:12 +00004068
Nico Weberccec9d82014-08-15 22:29:14 +00004069 // Restore PendingInstantiations and VTableUses.
4070 SavePendingInstantiationsAndVTableUses.reset();
Mike Stump11289f42009-09-09 15:08:12 +00004071 }
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004072}
Douglas Gregor51783312009-05-27 05:35:12 +00004073
Anders Carlsson70553942009-08-29 05:16:22 +00004074void
4075Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
4076 const CXXConstructorDecl *Tmpl,
4077 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00004078
Richard Trieu9becef62011-09-09 03:18:59 +00004079 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith60f2e1e2012-09-25 00:23:05 +00004080 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004081
Anders Carlsson70553942009-08-29 05:16:22 +00004082 // Instantiate all the initializers.
Aaron Ballman0ad78302014-03-13 17:34:31 +00004083 for (const auto *Init : Tmpl->inits()) {
Chandler Carruthf92bd8c2010-09-03 21:54:20 +00004084 // Only instantiate written initializers, let Sema re-construct implicit
4085 // ones.
4086 if (!Init->isWritten())
4087 continue;
4088
Douglas Gregor44e7df62011-01-04 00:32:56 +00004089 SourceLocation EllipsisLoc;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004090
Douglas Gregor44e7df62011-01-04 00:32:56 +00004091 if (Init->isPackExpansion()) {
4092 // This is a pack expansion. We should expand it now.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004093 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Nick Lewycky2c308502013-06-13 00:45:47 +00004094 SmallVector<UnexpandedParameterPack, 4> Unexpanded;
Douglas Gregor44e7df62011-01-04 00:32:56 +00004095 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
Nick Lewycky2c308502013-06-13 00:45:47 +00004096 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded);
Douglas Gregor44e7df62011-01-04 00:32:56 +00004097 bool ShouldExpand = false;
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004098 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00004099 Optional<unsigned> NumExpansions;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004100 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004101 BaseTL.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00004102 Unexpanded,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004103 TemplateArgs, ShouldExpand,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004104 RetainExpansion,
Douglas Gregor44e7df62011-01-04 00:32:56 +00004105 NumExpansions)) {
4106 AnyErrors = true;
4107 New->setInvalidDecl();
4108 continue;
4109 }
4110 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004111
4112 // Loop over all of the arguments in the argument pack(s),
Douglas Gregor0dca5fd2011-01-14 17:04:44 +00004113 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004114 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
4115
4116 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004117 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4118 /*CXXDirectInit=*/true);
4119 if (TempInit.isInvalid()) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004120 AnyErrors = true;
4121 break;
4122 }
4123
4124 // Instantiate the base type.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004125 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004126 TemplateArgs,
4127 Init->getSourceLocation(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004128 New->getDeclName());
4129 if (!BaseTInfo) {
4130 AnyErrors = true;
4131 break;
4132 }
4133
4134 // Build the initializer.
Sebastian Redla74948d2011-09-24 17:48:25 +00004135 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004136 BaseTInfo, TempInit.get(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004137 New->getParent(),
4138 SourceLocation());
4139 if (NewInit.isInvalid()) {
4140 AnyErrors = true;
4141 break;
4142 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004143
Douglas Gregor44e7df62011-01-04 00:32:56 +00004144 NewInits.push_back(NewInit.get());
Douglas Gregor44e7df62011-01-04 00:32:56 +00004145 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004146
Douglas Gregor44e7df62011-01-04 00:32:56 +00004147 continue;
4148 }
4149
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004150 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004151 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4152 /*CXXDirectInit=*/true);
4153 if (TempInit.isInvalid()) {
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004154 AnyErrors = true;
4155 continue;
Anders Carlsson70553942009-08-29 05:16:22 +00004156 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004157
Anders Carlsson70553942009-08-29 05:16:22 +00004158 MemInitResult NewInit;
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004159 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
4160 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
4161 TemplateArgs,
4162 Init->getSourceLocation(),
4163 New->getDeclName());
4164 if (!TInfo) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004165 AnyErrors = true;
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00004166 New->setInvalidDecl();
4167 continue;
4168 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004169
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004170 if (Init->isBaseInitializer())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004171 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004172 New->getParent(), EllipsisLoc);
4173 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004174 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004175 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson70553942009-08-29 05:16:22 +00004176 } else if (Init->isMemberInitializer()) {
Douglas Gregor55e6b312011-03-04 19:46:35 +00004177 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004178 Init->getMemberLocation(),
4179 Init->getMember(),
4180 TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00004181 if (!Member) {
4182 AnyErrors = true;
4183 New->setInvalidDecl();
4184 continue;
4185 }
Mike Stump11289f42009-09-09 15:08:12 +00004186
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004187 NewInit = BuildMemberInitializer(Member, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004188 Init->getSourceLocation());
Francois Pichetd583da02010-12-04 09:14:42 +00004189 } else if (Init->isIndirectMemberInitializer()) {
4190 IndirectFieldDecl *IndirectMember =
Douglas Gregor55e6b312011-03-04 19:46:35 +00004191 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004192 Init->getMemberLocation(),
4193 Init->getIndirectMember(), TemplateArgs));
4194
Douglas Gregor55e6b312011-03-04 19:46:35 +00004195 if (!IndirectMember) {
4196 AnyErrors = true;
4197 New->setInvalidDecl();
Sebastian Redla74948d2011-09-24 17:48:25 +00004198 continue;
Douglas Gregor55e6b312011-03-04 19:46:35 +00004199 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004200
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004201 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004202 Init->getSourceLocation());
Anders Carlsson70553942009-08-29 05:16:22 +00004203 }
4204
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004205 if (NewInit.isInvalid()) {
4206 AnyErrors = true;
Anders Carlsson70553942009-08-29 05:16:22 +00004207 New->setInvalidDecl();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004208 } else {
Richard Trieu9becef62011-09-09 03:18:59 +00004209 NewInits.push_back(NewInit.get());
Anders Carlsson70553942009-08-29 05:16:22 +00004210 }
4211 }
Mike Stump11289f42009-09-09 15:08:12 +00004212
Anders Carlsson70553942009-08-29 05:16:22 +00004213 // Assign all the initializers to the new constructor.
John McCall48871652010-08-21 09:40:31 +00004214 ActOnMemInitializers(New,
Anders Carlsson70553942009-08-29 05:16:22 +00004215 /*FIXME: ColonLoc */
4216 SourceLocation(),
David Blaikie3fc2f912013-01-17 05:26:25 +00004217 NewInits,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004218 AnyErrors);
Anders Carlsson70553942009-08-29 05:16:22 +00004219}
4220
John McCall59660882009-08-29 08:11:13 +00004221// TODO: this could be templated if the various decl types used the
4222// same method name.
4223static bool isInstantiationOf(ClassTemplateDecl *Pattern,
4224 ClassTemplateDecl *Instance) {
4225 Pattern = Pattern->getCanonicalDecl();
4226
4227 do {
4228 Instance = Instance->getCanonicalDecl();
4229 if (Pattern == Instance) return true;
4230 Instance = Instance->getInstantiatedFromMemberTemplate();
4231 } while (Instance);
4232
4233 return false;
4234}
4235
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004236static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
4237 FunctionTemplateDecl *Instance) {
4238 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004239
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004240 do {
4241 Instance = Instance->getCanonicalDecl();
4242 if (Pattern == Instance) return true;
4243 Instance = Instance->getInstantiatedFromMemberTemplate();
4244 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004245
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004246 return false;
4247}
4248
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004249static bool
Douglas Gregor21610382009-10-29 00:04:11 +00004250isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
4251 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004252 Pattern
Douglas Gregor21610382009-10-29 00:04:11 +00004253 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
4254 do {
4255 Instance = cast<ClassTemplatePartialSpecializationDecl>(
4256 Instance->getCanonicalDecl());
4257 if (Pattern == Instance)
4258 return true;
4259 Instance = Instance->getInstantiatedFromMember();
4260 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004261
Douglas Gregor21610382009-10-29 00:04:11 +00004262 return false;
4263}
4264
John McCall59660882009-08-29 08:11:13 +00004265static bool isInstantiationOf(CXXRecordDecl *Pattern,
4266 CXXRecordDecl *Instance) {
4267 Pattern = Pattern->getCanonicalDecl();
4268
4269 do {
4270 Instance = Instance->getCanonicalDecl();
4271 if (Pattern == Instance) return true;
4272 Instance = Instance->getInstantiatedFromMemberClass();
4273 } while (Instance);
4274
4275 return false;
4276}
4277
4278static bool isInstantiationOf(FunctionDecl *Pattern,
4279 FunctionDecl *Instance) {
4280 Pattern = Pattern->getCanonicalDecl();
4281
4282 do {
4283 Instance = Instance->getCanonicalDecl();
4284 if (Pattern == Instance) return true;
4285 Instance = Instance->getInstantiatedFromMemberFunction();
4286 } while (Instance);
4287
4288 return false;
4289}
4290
4291static bool isInstantiationOf(EnumDecl *Pattern,
4292 EnumDecl *Instance) {
4293 Pattern = Pattern->getCanonicalDecl();
4294
4295 do {
4296 Instance = Instance->getCanonicalDecl();
4297 if (Pattern == Instance) return true;
4298 Instance = Instance->getInstantiatedFromMemberEnum();
4299 } while (Instance);
4300
4301 return false;
4302}
4303
John McCallb96ec562009-12-04 22:46:56 +00004304static bool isInstantiationOf(UsingShadowDecl *Pattern,
4305 UsingShadowDecl *Instance,
4306 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004307 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance),
4308 Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004309}
4310
4311static bool isInstantiationOf(UsingDecl *Pattern,
4312 UsingDecl *Instance,
4313 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004314 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004315}
4316
John McCalle61f2ba2009-11-18 02:36:19 +00004317static bool isInstantiationOf(UnresolvedUsingValueDecl *Pattern,
4318 UsingDecl *Instance,
4319 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004320 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
John McCalle61f2ba2009-11-18 02:36:19 +00004321}
4322
4323static bool isInstantiationOf(UnresolvedUsingTypenameDecl *Pattern,
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004324 UsingDecl *Instance,
4325 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004326 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004327}
4328
John McCall59660882009-08-29 08:11:13 +00004329static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
4330 VarDecl *Instance) {
4331 assert(Instance->isStaticDataMember());
4332
4333 Pattern = Pattern->getCanonicalDecl();
4334
4335 do {
4336 Instance = Instance->getCanonicalDecl();
4337 if (Pattern == Instance) return true;
4338 Instance = Instance->getInstantiatedFromStaticDataMember();
4339 } while (Instance);
4340
4341 return false;
4342}
4343
John McCallb96ec562009-12-04 22:46:56 +00004344// Other is the prospective instantiation
4345// D is the prospective pattern
Douglas Gregor51783312009-05-27 05:35:12 +00004346static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004347 if (D->getKind() != Other->getKind()) {
John McCalle61f2ba2009-11-18 02:36:19 +00004348 if (UnresolvedUsingTypenameDecl *UUD
4349 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
4350 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
4351 return isInstantiationOf(UUD, UD, Ctx);
4352 }
4353 }
4354
4355 if (UnresolvedUsingValueDecl *UUD
4356 = dyn_cast<UnresolvedUsingValueDecl>(D)) {
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004357 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) {
4358 return isInstantiationOf(UUD, UD, Ctx);
4359 }
4360 }
Douglas Gregor51783312009-05-27 05:35:12 +00004361
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004362 return false;
4363 }
Mike Stump11289f42009-09-09 15:08:12 +00004364
John McCall59660882009-08-29 08:11:13 +00004365 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Other))
4366 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump11289f42009-09-09 15:08:12 +00004367
John McCall59660882009-08-29 08:11:13 +00004368 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Other))
4369 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor51783312009-05-27 05:35:12 +00004370
John McCall59660882009-08-29 08:11:13 +00004371 if (EnumDecl *Enum = dyn_cast<EnumDecl>(Other))
4372 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor51783312009-05-27 05:35:12 +00004373
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004374 if (VarDecl *Var = dyn_cast<VarDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004375 if (Var->isStaticDataMember())
4376 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
4377
4378 if (ClassTemplateDecl *Temp = dyn_cast<ClassTemplateDecl>(Other))
4379 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregorf3db0032009-08-28 22:03:51 +00004380
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004381 if (FunctionTemplateDecl *Temp = dyn_cast<FunctionTemplateDecl>(Other))
4382 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
4383
Douglas Gregor21610382009-10-29 00:04:11 +00004384 if (ClassTemplatePartialSpecializationDecl *PartialSpec
4385 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
4386 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
4387 PartialSpec);
4388
Anders Carlsson5da84842009-09-01 04:26:58 +00004389 if (FieldDecl *Field = dyn_cast<FieldDecl>(Other)) {
4390 if (!Field->getDeclName()) {
4391 // This is an unnamed field.
Richard Smith32952e12014-10-14 02:00:47 +00004392 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field),
4393 cast<FieldDecl>(D));
Anders Carlsson5da84842009-09-01 04:26:58 +00004394 }
4395 }
Mike Stump11289f42009-09-09 15:08:12 +00004396
John McCallb96ec562009-12-04 22:46:56 +00004397 if (UsingDecl *Using = dyn_cast<UsingDecl>(Other))
4398 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
4399
4400 if (UsingShadowDecl *Shadow = dyn_cast<UsingShadowDecl>(Other))
4401 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
4402
Douglas Gregor51783312009-05-27 05:35:12 +00004403 return D->getDeclName() && isa<NamedDecl>(Other) &&
4404 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
4405}
4406
4407template<typename ForwardIterator>
Mike Stump11289f42009-09-09 15:08:12 +00004408static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor51783312009-05-27 05:35:12 +00004409 NamedDecl *D,
4410 ForwardIterator first,
4411 ForwardIterator last) {
4412 for (; first != last; ++first)
4413 if (isInstantiationOf(Ctx, D, *first))
4414 return cast<NamedDecl>(*first);
4415
Craig Topperc3ec1492014-05-26 06:22:03 +00004416 return nullptr;
Douglas Gregor51783312009-05-27 05:35:12 +00004417}
4418
John McCallaa74a0c2009-08-28 07:59:38 +00004419/// \brief Finds the instantiation of the given declaration context
4420/// within the current instantiation.
4421///
4422/// \returns NULL if there was an error
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004423DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregor64621e62009-09-16 18:34:49 +00004424 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCallaa74a0c2009-08-28 07:59:38 +00004425 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004426 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs);
John McCallaa74a0c2009-08-28 07:59:38 +00004427 return cast_or_null<DeclContext>(ID);
4428 } else return DC;
4429}
4430
Douglas Gregorcd3a0972009-05-27 17:54:46 +00004431/// \brief Find the instantiation of the given declaration within the
4432/// current instantiation.
Douglas Gregor51783312009-05-27 05:35:12 +00004433///
4434/// This routine is intended to be used when \p D is a declaration
4435/// referenced from within a template, that needs to mapped into the
4436/// corresponding declaration within an instantiation. For example,
4437/// given:
4438///
4439/// \code
4440/// template<typename T>
4441/// struct X {
4442/// enum Kind {
4443/// KnownValue = sizeof(T)
4444/// };
4445///
4446/// bool getKind() const { return KnownValue; }
4447/// };
4448///
4449/// template struct X<int>;
4450/// \endcode
4451///
Serge Pavloved5fe902013-07-10 04:59:14 +00004452/// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the
4453/// \p EnumConstantDecl for \p KnownValue (which refers to
4454/// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation
4455/// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs
4456/// this mapping from within the instantiation of <tt>X<int></tt>.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004457NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Douglas Gregor64621e62009-09-16 18:34:49 +00004458 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor51783312009-05-27 05:35:12 +00004459 DeclContext *ParentDC = D->getDeclContext();
Faisal Vali2cba1332013-10-23 06:44:28 +00004460 // FIXME: Parmeters of pointer to functions (y below) that are themselves
4461 // parameters (p below) can have their ParentDC set to the translation-unit
4462 // - thus we can not consistently check if the ParentDC of such a parameter
4463 // is Dependent or/and a FunctionOrMethod.
4464 // For e.g. this code, during Template argument deduction tries to
4465 // find an instantiated decl for (T y) when the ParentDC for y is
4466 // the translation unit.
4467 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {}
Aaron Ballman36a53502014-01-16 13:03:14 +00004468 // float baz(float(*)()) { return 0.0; }
Faisal Vali2cba1332013-10-23 06:44:28 +00004469 // Foo(baz);
4470 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time
4471 // it gets here, always has a FunctionOrMethod as its ParentDC??
4472 // For now:
4473 // - as long as we have a ParmVarDecl whose parent is non-dependent and
4474 // whose type is not instantiation dependent, do nothing to the decl
4475 // - otherwise find its instantiated decl.
4476 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() &&
4477 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType())
4478 return D;
Rafael Espindola09b00e32013-10-23 04:12:23 +00004479 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregorb93971082010-02-05 19:54:12 +00004480 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregora86bc002012-02-16 21:36:18 +00004481 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
4482 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004483 // D is a local of some kind. Look into the map of local
4484 // declarations to their instantiations.
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004485 if (CurrentInstantiationScope) {
4486 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) {
4487 if (Decl *FD = Found->dyn_cast<Decl *>())
4488 return cast<NamedDecl>(FD);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004489
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004490 int PackIdx = ArgumentPackSubstitutionIndex;
4491 assert(PackIdx != -1 &&
4492 "found declaration pack but not pack expanding");
4493 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
4494 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
4495 }
Chris Lattnercab02a62011-02-17 20:34:02 +00004496 }
4497
Serge Pavlov7cd8f602013-07-15 06:14:07 +00004498 // If we're performing a partial substitution during template argument
4499 // deduction, we may not have values for template parameters yet. They
4500 // just map to themselves.
4501 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
4502 isa<TemplateTemplateParmDecl>(D))
4503 return D;
4504
Serge Pavlov074a5182013-08-10 12:00:21 +00004505 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004506 return nullptr;
Serge Pavlov074a5182013-08-10 12:00:21 +00004507
Chris Lattnercab02a62011-02-17 20:34:02 +00004508 // If we didn't find the decl, then we must have a label decl that hasn't
4509 // been found yet. Lazily instantiate it and return it now.
4510 assert(isa<LabelDecl>(D));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004511
Chris Lattnercab02a62011-02-17 20:34:02 +00004512 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4513 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004514
Chris Lattnercab02a62011-02-17 20:34:02 +00004515 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4516 return cast<LabelDecl>(Inst);
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004517 }
Douglas Gregor51783312009-05-27 05:35:12 +00004518
Larisse Voufo39a1e502013-08-06 01:03:05 +00004519 // For variable template specializations, update those that are still
4520 // type-dependent.
4521 if (VarTemplateSpecializationDecl *VarSpec =
4522 dyn_cast<VarTemplateSpecializationDecl>(D)) {
4523 bool InstantiationDependent = false;
4524 const TemplateArgumentListInfo &VarTemplateArgs =
4525 VarSpec->getTemplateArgsInfo();
4526 if (TemplateSpecializationType::anyDependentTemplateArguments(
4527 VarTemplateArgs, InstantiationDependent))
4528 D = cast<NamedDecl>(
4529 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs));
4530 return D;
4531 }
4532
Douglas Gregor64621e62009-09-16 18:34:49 +00004533 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
4534 if (!Record->isDependentContext())
4535 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004536
Douglas Gregor4109afa2011-11-07 17:43:18 +00004537 // Determine whether this record is the "templated" declaration describing
4538 // a class template or class template partial specialization.
Douglas Gregor64621e62009-09-16 18:34:49 +00004539 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor4109afa2011-11-07 17:43:18 +00004540 if (ClassTemplate)
4541 ClassTemplate = ClassTemplate->getCanonicalDecl();
4542 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4543 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
4544 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004545
Douglas Gregor4109afa2011-11-07 17:43:18 +00004546 // Walk the current context to find either the record or an instantiation of
4547 // it.
4548 DeclContext *DC = CurContext;
4549 while (!DC->isFileContext()) {
4550 // If we're performing substitution while we're inside the template
4551 // definition, we'll find our own context. We're done.
4552 if (DC->Equals(Record))
4553 return Record;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004554
Douglas Gregor4109afa2011-11-07 17:43:18 +00004555 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
4556 // Check whether we're in the process of instantiating a class template
4557 // specialization of the template we're mapping.
4558 if (ClassTemplateSpecializationDecl *InstSpec
4559 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
4560 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
4561 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
4562 return InstRecord;
4563 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004564
Douglas Gregor4109afa2011-11-07 17:43:18 +00004565 // Check whether we're in the process of instantiating a member class.
4566 if (isInstantiationOf(Record, InstRecord))
4567 return InstRecord;
Douglas Gregor64621e62009-09-16 18:34:49 +00004568 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004569
Douglas Gregor4109afa2011-11-07 17:43:18 +00004570 // Move to the outer template scope.
4571 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
4572 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
4573 DC = FD->getLexicalDeclContext();
4574 continue;
4575 }
John McCall59660882009-08-29 08:11:13 +00004576 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004577
Douglas Gregor4109afa2011-11-07 17:43:18 +00004578 DC = DC->getParent();
John McCall59660882009-08-29 08:11:13 +00004579 }
Douglas Gregord225fa02010-02-05 22:40:03 +00004580
Douglas Gregor64621e62009-09-16 18:34:49 +00004581 // Fall through to deal with other dependent record types (e.g.,
4582 // anonymous unions in class templates).
4583 }
John McCall59660882009-08-29 08:11:13 +00004584
Douglas Gregor64621e62009-09-16 18:34:49 +00004585 if (!ParentDC->isDependentContext())
4586 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004587
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004588 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00004589 if (!ParentDC)
Craig Topperc3ec1492014-05-26 06:22:03 +00004590 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00004591
Douglas Gregor51783312009-05-27 05:35:12 +00004592 if (ParentDC != D->getDeclContext()) {
4593 // We performed some kind of instantiation in the parent context,
4594 // so now we need to look into the instantiated parent context to
4595 // find the instantiation of the declaration D.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004596
John McCalle78aac42010-03-10 03:28:59 +00004597 // If our context used to be dependent, we may need to instantiate
4598 // it before performing lookup into that context.
Douglas Gregor528ad932011-03-06 20:12:45 +00004599 bool IsBeingInstantiated = false;
John McCalle78aac42010-03-10 03:28:59 +00004600 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004601 if (!Spec->isDependentContext()) {
4602 QualType T = Context.getTypeDeclType(Spec);
John McCalle78aac42010-03-10 03:28:59 +00004603 const RecordType *Tag = T->getAs<RecordType>();
4604 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregor528ad932011-03-06 20:12:45 +00004605 if (Tag->isBeingDefined())
4606 IsBeingInstantiated = true;
John McCalle78aac42010-03-10 03:28:59 +00004607 if (!Tag->isBeingDefined() &&
4608 RequireCompleteType(Loc, T, diag::err_incomplete_type))
Craig Topperc3ec1492014-05-26 06:22:03 +00004609 return nullptr;
Douglas Gregor25edf432010-11-05 23:22:45 +00004610
4611 ParentDC = Tag->getDecl();
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004612 }
4613 }
4614
Craig Topperc3ec1492014-05-26 06:22:03 +00004615 NamedDecl *Result = nullptr;
Douglas Gregor51783312009-05-27 05:35:12 +00004616 if (D->getDeclName()) {
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004617 DeclContext::lookup_result Found = ParentDC->lookup(D->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00004618 Result = findInstantiationOf(Context, D, Found.begin(), Found.end());
Douglas Gregor51783312009-05-27 05:35:12 +00004619 } else {
4620 // Since we don't have a name for the entity we're looking for,
4621 // our only option is to walk through all of the declarations to
4622 // find that name. This will occur in a few cases:
4623 //
4624 // - anonymous struct/union within a template
4625 // - unnamed class/struct/union/enum within a template
4626 //
4627 // FIXME: Find a better way to find these instantiations!
Mike Stump11289f42009-09-09 15:08:12 +00004628 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004629 ParentDC->decls_begin(),
4630 ParentDC->decls_end());
Douglas Gregor51783312009-05-27 05:35:12 +00004631 }
Mike Stump11289f42009-09-09 15:08:12 +00004632
Douglas Gregor528ad932011-03-06 20:12:45 +00004633 if (!Result) {
4634 if (isa<UsingShadowDecl>(D)) {
4635 // UsingShadowDecls can instantiate to nothing because of using hiding.
4636 } else if (Diags.hasErrorOccurred()) {
4637 // We've already complained about something, so most likely this
4638 // declaration failed to instantiate. There's no point in complaining
4639 // further, since this is normal in invalid code.
4640 } else if (IsBeingInstantiated) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004641 // The class in which this member exists is currently being
Douglas Gregor528ad932011-03-06 20:12:45 +00004642 // instantiated, and we haven't gotten around to instantiating this
4643 // member yet. This can happen when the code uses forward declarations
4644 // of member classes, and introduces ordering dependencies via
4645 // template instantiation.
4646 Diag(Loc, diag::err_member_not_yet_instantiated)
4647 << D->getDeclName()
4648 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
4649 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith169f2192012-03-26 20:28:16 +00004650 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
4651 // This enumeration constant was found when the template was defined,
4652 // but can't be found in the instantiation. This can happen if an
4653 // unscoped enumeration member is explicitly specialized.
4654 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
4655 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
4656 TemplateArgs));
4657 assert(Spec->getTemplateSpecializationKind() ==
4658 TSK_ExplicitSpecialization);
4659 Diag(Loc, diag::err_enumerator_does_not_exist)
4660 << D->getDeclName()
4661 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
4662 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
4663 << Context.getTypeDeclType(Spec);
Douglas Gregor528ad932011-03-06 20:12:45 +00004664 } else {
4665 // We should have found something, but didn't.
4666 llvm_unreachable("Unable to find instantiation of declaration!");
4667 }
4668 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004669
Douglas Gregor51783312009-05-27 05:35:12 +00004670 D = Result;
4671 }
4672
Douglas Gregor51783312009-05-27 05:35:12 +00004673 return D;
4674}
Douglas Gregor77b50e12009-06-22 23:06:13 +00004675
Mike Stump11289f42009-09-09 15:08:12 +00004676/// \brief Performs template instantiation for all implicit template
Douglas Gregor77b50e12009-06-22 23:06:13 +00004677/// instantiations we have seen until this point.
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00004678void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00004679 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth54080172010-08-25 08:44:16 +00004680 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00004681 PendingImplicitInstantiation Inst;
4682
4683 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth54080172010-08-25 08:44:16 +00004684 Inst = PendingInstantiations.front();
4685 PendingInstantiations.pop_front();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00004686 } else {
4687 Inst = PendingLocalImplicitInstantiations.front();
4688 PendingLocalImplicitInstantiations.pop_front();
4689 }
Mike Stump11289f42009-09-09 15:08:12 +00004690
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004691 // Instantiate function definitions
4692 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
John McCallfaf5fb42010-08-26 23:41:50 +00004693 PrettyDeclStackTraceEntry CrashInfo(*this, Function, SourceLocation(),
4694 "instantiating function definition");
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004695 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
4696 TSK_ExplicitInstantiationDefinition;
4697 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
4698 DefinitionRequired);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004699 continue;
4700 }
Mike Stump11289f42009-09-09 15:08:12 +00004701
Larisse Voufo39a1e502013-08-06 01:03:05 +00004702 // Instantiate variable definitions
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004703 VarDecl *Var = cast<VarDecl>(Inst.first);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004704
4705 assert((Var->isStaticDataMember() ||
4706 isa<VarTemplateSpecializationDecl>(Var)) &&
4707 "Not a static data member, nor a variable template"
4708 " specialization?");
Anders Carlsson62215c42009-09-01 05:12:24 +00004709
Chandler Carruth6b4756a2010-02-13 10:17:50 +00004710 // Don't try to instantiate declarations if the most recent redeclaration
4711 // is invalid.
Douglas Gregorec9fd132012-01-14 16:38:05 +00004712 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth6b4756a2010-02-13 10:17:50 +00004713 continue;
4714
4715 // Check if the most recent declaration has changed the specialization kind
4716 // and removed the need for implicit instantiation.
Douglas Gregorec9fd132012-01-14 16:38:05 +00004717 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth6b4756a2010-02-13 10:17:50 +00004718 case TSK_Undeclared:
David Blaikie83d382b2011-09-23 05:06:16 +00004719 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth6b4756a2010-02-13 10:17:50 +00004720 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth6b4756a2010-02-13 10:17:50 +00004721 case TSK_ExplicitSpecialization:
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004722 continue; // No longer need to instantiate this type.
4723 case TSK_ExplicitInstantiationDefinition:
4724 // We only need an instantiation if the pending instantiation *is* the
4725 // explicit instantiation.
Douglas Gregorec9fd132012-01-14 16:38:05 +00004726 if (Var != Var->getMostRecentDecl()) continue;
Chandler Carruth6b4756a2010-02-13 10:17:50 +00004727 case TSK_ImplicitInstantiation:
4728 break;
4729 }
4730
Larisse Voufo39a1e502013-08-06 01:03:05 +00004731 PrettyDeclStackTraceEntry CrashInfo(*this, Var, SourceLocation(),
4732 "instantiating variable definition");
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004733 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
4734 TSK_ExplicitInstantiationDefinition;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004735
4736 // Instantiate static data member definitions or variable template
4737 // specializations.
4738 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true,
4739 DefinitionRequired);
Douglas Gregor77b50e12009-06-22 23:06:13 +00004740 }
4741}
John McCallc62bb642010-03-24 05:22:00 +00004742
4743void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
4744 const MultiLevelTemplateArgumentList &TemplateArgs) {
Aaron Ballmanb105e492014-03-07 14:09:15 +00004745 for (auto DD : Pattern->ddiags()) {
John McCallc62bb642010-03-24 05:22:00 +00004746 switch (DD->getKind()) {
4747 case DependentDiagnostic::Access:
4748 HandleDependentAccessCheck(*DD, TemplateArgs);
4749 break;
4750 }
4751 }
4752}