blob: 31353e45baa831df13d29436f2d57c8918c5a848 [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"
Jordan Rose1e879d82018-03-23 00:07:18 +000021#include "clang/AST/PrettyDeclStackTrace.h"
John McCall58f10c32010-03-11 09:03:00 +000022#include "clang/AST/TypeLoc.h"
Richard Smith3997b1b2016-08-12 01:55:21 +000023#include "clang/Sema/Initialization.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000024#include "clang/Sema/Lookup.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000025#include "clang/Sema/Template.h"
Gabor Horvath207e7b12018-02-10 14:04:45 +000026#include "clang/Sema/TemplateInstCallback.h"
Douglas Gregord7e7a512009-03-17 21:15:40 +000027
28using namespace clang;
29
David Majnemer192d1792013-11-27 08:20:38 +000030static bool isDeclWithinFunction(const Decl *D) {
31 const DeclContext *DC = D->getDeclContext();
32 if (DC->isFunctionOrMethod())
33 return true;
34
35 if (DC->isRecord())
36 return cast<CXXRecordDecl>(DC)->isLocalClass();
37
38 return false;
39}
40
Richard Smithcc928662014-10-17 20:37:29 +000041template<typename DeclT>
42static bool SubstQualifier(Sema &SemaRef, const DeclT *OldDecl, DeclT *NewDecl,
43 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregor14454802011-02-25 02:25:35 +000044 if (!OldDecl->getQualifierLoc())
45 return false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000046
Richard Smithcc928662014-10-17 20:37:29 +000047 assert((NewDecl->getFriendObjectKind() ||
48 !OldDecl->getLexicalDeclContext()->isDependentContext()) &&
49 "non-friend with qualified name defined in dependent context");
50 Sema::ContextRAII SavedContext(
51 SemaRef,
52 const_cast<DeclContext *>(NewDecl->getFriendObjectKind()
53 ? NewDecl->getLexicalDeclContext()
54 : OldDecl->getLexicalDeclContext()));
55
Douglas Gregor14454802011-02-25 02:25:35 +000056 NestedNameSpecifierLoc NewQualifierLoc
Richard Smithcc928662014-10-17 20:37:29 +000057 = SemaRef.SubstNestedNameSpecifierLoc(OldDecl->getQualifierLoc(),
58 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000059
Douglas Gregor14454802011-02-25 02:25:35 +000060 if (!NewQualifierLoc)
John McCall3e11ebe2010-03-15 10:12:16 +000061 return true;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +000062
Douglas Gregor14454802011-02-25 02:25:35 +000063 NewDecl->setQualifierInfo(NewQualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +000064 return false;
65}
66
Richard Smithcc928662014-10-17 20:37:29 +000067bool TemplateDeclInstantiator::SubstQualifier(const DeclaratorDecl *OldDecl,
68 DeclaratorDecl *NewDecl) {
69 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
70}
71
John McCall3e11ebe2010-03-15 10:12:16 +000072bool TemplateDeclInstantiator::SubstQualifier(const TagDecl *OldDecl,
73 TagDecl *NewDecl) {
Richard Smithcc928662014-10-17 20:37:29 +000074 return ::SubstQualifier(SemaRef, OldDecl, NewDecl, TemplateArgs);
John McCall3e11ebe2010-03-15 10:12:16 +000075}
76
DeLesley Hutchinsceec3062012-01-20 22:37:06 +000077// Include attribute instantiation code.
78#include "clang/Sema/AttrTemplateInstantiate.inc"
79
Richard Smith44c247f2013-02-22 08:32:16 +000080static void instantiateDependentAlignedAttr(
81 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
82 const AlignedAttr *Aligned, Decl *New, bool IsPackExpansion) {
83 if (Aligned->isAlignmentExpr()) {
84 // The alignment expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +000085 EnterExpressionEvaluationContext Unevaluated(
86 S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Richard Smith44c247f2013-02-22 08:32:16 +000087 ExprResult Result = S.SubstExpr(Aligned->getAlignmentExpr(), TemplateArgs);
88 if (!Result.isInvalid())
Nikola Smiljanic01a75982014-05-29 10:55:11 +000089 S.AddAlignedAttr(Aligned->getLocation(), New, Result.getAs<Expr>(),
Richard Smith44c247f2013-02-22 08:32:16 +000090 Aligned->getSpellingListIndex(), IsPackExpansion);
91 } else {
92 TypeSourceInfo *Result = S.SubstType(Aligned->getAlignmentType(),
93 TemplateArgs, Aligned->getLocation(),
94 DeclarationName());
95 if (Result)
96 S.AddAlignedAttr(Aligned->getLocation(), New, Result,
97 Aligned->getSpellingListIndex(), IsPackExpansion);
98 }
99}
100
101static void instantiateDependentAlignedAttr(
102 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
103 const AlignedAttr *Aligned, Decl *New) {
104 if (!Aligned->isPackExpansion()) {
105 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false);
106 return;
107 }
108
109 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
110 if (Aligned->isAlignmentExpr())
111 S.collectUnexpandedParameterPacks(Aligned->getAlignmentExpr(),
112 Unexpanded);
113 else
114 S.collectUnexpandedParameterPacks(Aligned->getAlignmentType()->getTypeLoc(),
115 Unexpanded);
116 assert(!Unexpanded.empty() && "Pack expansion without parameter packs?");
117
118 // Determine whether we can expand this attribute pack yet.
119 bool Expand = true, RetainExpansion = false;
120 Optional<unsigned> NumExpansions;
121 // FIXME: Use the actual location of the ellipsis.
122 SourceLocation EllipsisLoc = Aligned->getLocation();
123 if (S.CheckParameterPacksForExpansion(EllipsisLoc, Aligned->getRange(),
124 Unexpanded, TemplateArgs, Expand,
125 RetainExpansion, NumExpansions))
126 return;
127
128 if (!Expand) {
129 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, -1);
130 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, true);
131 } else {
132 for (unsigned I = 0; I != *NumExpansions; ++I) {
133 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, I);
134 instantiateDependentAlignedAttr(S, TemplateArgs, Aligned, New, false);
135 }
136 }
137}
138
Hal Finkelee90a222014-09-26 05:04:30 +0000139static void instantiateDependentAssumeAlignedAttr(
140 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
141 const AssumeAlignedAttr *Aligned, Decl *New) {
142 // The alignment expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000143 EnterExpressionEvaluationContext Unevaluated(
144 S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Hal Finkelee90a222014-09-26 05:04:30 +0000145
146 Expr *E, *OE = nullptr;
147 ExprResult Result = S.SubstExpr(Aligned->getAlignment(), TemplateArgs);
148 if (Result.isInvalid())
149 return;
150 E = Result.getAs<Expr>();
151
152 if (Aligned->getOffset()) {
153 Result = S.SubstExpr(Aligned->getOffset(), TemplateArgs);
154 if (Result.isInvalid())
155 return;
156 OE = Result.getAs<Expr>();
157 }
158
159 S.AddAssumeAlignedAttr(Aligned->getLocation(), New, E, OE,
160 Aligned->getSpellingListIndex());
161}
162
Hal Finkel1b0d24e2014-10-02 21:21:25 +0000163static void instantiateDependentAlignValueAttr(
164 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
165 const AlignValueAttr *Aligned, Decl *New) {
166 // The alignment expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000167 EnterExpressionEvaluationContext Unevaluated(
168 S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Hal Finkel1b0d24e2014-10-02 21:21:25 +0000169 ExprResult Result = S.SubstExpr(Aligned->getAlignment(), TemplateArgs);
170 if (!Result.isInvalid())
171 S.AddAlignValueAttr(Aligned->getLocation(), New, Result.getAs<Expr>(),
172 Aligned->getSpellingListIndex());
173}
174
Erich Keane623efd82017-03-30 21:48:55 +0000175static void instantiateDependentAllocAlignAttr(
176 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
177 const AllocAlignAttr *Align, Decl *New) {
178 Expr *Param = IntegerLiteral::Create(
Joel E. Denny81508102018-03-13 14:51:22 +0000179 S.getASTContext(),
180 llvm::APInt(64, Align->getParamIndex().getSourceIndex()),
Erich Keane623efd82017-03-30 21:48:55 +0000181 S.getASTContext().UnsignedLongLongTy, Align->getLocation());
182 S.AddAllocAlignAttr(Align->getLocation(), New, Param,
183 Align->getSpellingListIndex());
184}
185
George Burgess IV177399e2017-01-09 04:12:14 +0000186static Expr *instantiateDependentFunctionAttrCondition(
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000187 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
George Burgess IV177399e2017-01-09 04:12:14 +0000188 const Attr *A, Expr *OldCond, const Decl *Tmpl, FunctionDecl *New) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000189 Expr *Cond = nullptr;
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000190 {
George Burgess IV177399e2017-01-09 04:12:14 +0000191 Sema::ContextRAII SwitchContext(S, New);
Faisal Valid143a0c2017-04-01 21:30:49 +0000192 EnterExpressionEvaluationContext Unevaluated(
193 S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
George Burgess IV177399e2017-01-09 04:12:14 +0000194 ExprResult Result = S.SubstExpr(OldCond, TemplateArgs);
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000195 if (Result.isInvalid())
George Burgess IV177399e2017-01-09 04:12:14 +0000196 return nullptr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000197 Cond = Result.getAs<Expr>();
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000198 }
George Burgess IV00431952016-11-17 01:33:54 +0000199 if (!Cond->isTypeDependent()) {
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000200 ExprResult Converted = S.PerformContextuallyConvertToBool(Cond);
201 if (Converted.isInvalid())
George Burgess IV177399e2017-01-09 04:12:14 +0000202 return nullptr;
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000203 Cond = Converted.get();
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000204 }
205
206 SmallVector<PartialDiagnosticAt, 8> Diags;
George Burgess IV177399e2017-01-09 04:12:14 +0000207 if (OldCond->isValueDependent() && !Cond->isValueDependent() &&
208 !Expr::isPotentialConstantExprUnevaluated(Cond, New, Diags)) {
209 S.Diag(A->getLocation(), diag::err_attr_cond_never_constant_expr) << A;
210 for (const auto &P : Diags)
211 S.Diag(P.first, P.second);
212 return nullptr;
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000213 }
George Burgess IV177399e2017-01-09 04:12:14 +0000214 return Cond;
215}
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000216
George Burgess IV177399e2017-01-09 04:12:14 +0000217static void instantiateDependentEnableIfAttr(
218 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
219 const EnableIfAttr *EIA, const Decl *Tmpl, FunctionDecl *New) {
220 Expr *Cond = instantiateDependentFunctionAttrCondition(
221 S, TemplateArgs, EIA, EIA->getCond(), Tmpl, New);
222
223 if (Cond)
224 New->addAttr(new (S.getASTContext()) EnableIfAttr(
225 EIA->getLocation(), S.getASTContext(), Cond, EIA->getMessage(),
226 EIA->getSpellingListIndex()));
227}
228
229static void instantiateDependentDiagnoseIfAttr(
230 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
231 const DiagnoseIfAttr *DIA, const Decl *Tmpl, FunctionDecl *New) {
232 Expr *Cond = instantiateDependentFunctionAttrCondition(
233 S, TemplateArgs, DIA, DIA->getCond(), Tmpl, New);
234
235 if (Cond)
236 New->addAttr(new (S.getASTContext()) DiagnoseIfAttr(
237 DIA->getLocation(), S.getASTContext(), Cond, DIA->getMessage(),
238 DIA->getDiagnosticType(), DIA->getArgDependent(), New,
239 DIA->getSpellingListIndex()));
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000240}
241
Artem Belevich7093e402015-04-21 22:55:54 +0000242// Constructs and adds to New a new instance of CUDALaunchBoundsAttr using
243// template A as the base and arguments from TemplateArgs.
244static void instantiateDependentCUDALaunchBoundsAttr(
245 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
246 const CUDALaunchBoundsAttr &Attr, Decl *New) {
247 // The alignment expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000248 EnterExpressionEvaluationContext Unevaluated(
249 S, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Artem Belevich7093e402015-04-21 22:55:54 +0000250
251 ExprResult Result = S.SubstExpr(Attr.getMaxThreads(), TemplateArgs);
252 if (Result.isInvalid())
253 return;
254 Expr *MaxThreads = Result.getAs<Expr>();
255
256 Expr *MinBlocks = nullptr;
257 if (Attr.getMinBlocks()) {
258 Result = S.SubstExpr(Attr.getMinBlocks(), TemplateArgs);
259 if (Result.isInvalid())
260 return;
261 MinBlocks = Result.getAs<Expr>();
262 }
263
264 S.AddLaunchBoundsAttr(Attr.getLocation(), New, MaxThreads, MinBlocks,
265 Attr.getSpellingListIndex());
266}
267
Denis Zobnind9e2dcd2016-02-02 13:50:39 +0000268static void
269instantiateDependentModeAttr(Sema &S,
270 const MultiLevelTemplateArgumentList &TemplateArgs,
271 const ModeAttr &Attr, Decl *New) {
272 S.AddModeAttr(Attr.getRange(), New, Attr.getMode(),
273 Attr.getSpellingListIndex(), /*InInstantiation=*/true);
274}
275
Alexey Bataev2af33e32016-04-07 12:45:37 +0000276/// Instantiation of 'declare simd' attribute and its arguments.
277static void instantiateOMPDeclareSimdDeclAttr(
278 Sema &S, const MultiLevelTemplateArgumentList &TemplateArgs,
279 const OMPDeclareSimdDeclAttr &Attr, Decl *New) {
Alexey Bataeve48a5fc2016-04-12 05:28:34 +0000280 // Allow 'this' in clauses with varlists.
281 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(New))
282 New = FTD->getTemplatedDecl();
283 auto *FD = cast<FunctionDecl>(New);
284 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(FD->getDeclContext());
Alexey Bataevecba70f2016-04-12 11:02:11 +0000285 SmallVector<Expr *, 4> Uniforms, Aligneds, Alignments, Linears, Steps;
286 SmallVector<unsigned, 4> LinModifiers;
Alexey Bataeve48a5fc2016-04-12 05:28:34 +0000287
288 auto &&Subst = [&](Expr *E) -> ExprResult {
289 if (auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts()))
290 if (auto *PVD = dyn_cast<ParmVarDecl>(DRE->getDecl())) {
291 Sema::ContextRAII SavedContext(S, FD);
292 LocalInstantiationScope Local(S);
293 if (FD->getNumParams() > PVD->getFunctionScopeIndex())
294 Local.InstantiatedLocal(
295 PVD, FD->getParamDecl(PVD->getFunctionScopeIndex()));
296 return S.SubstExpr(E, TemplateArgs);
297 }
Mikael Nilsson9d2872d2018-12-13 10:15:27 +0000298 Sema::CXXThisScopeRAII ThisScope(S, ThisContext, Qualifiers(),
Alexey Bataeve48a5fc2016-04-12 05:28:34 +0000299 FD->isCXXInstanceMember());
300 return S.SubstExpr(E, TemplateArgs);
301 };
302
Alexey Bataevecba70f2016-04-12 11:02:11 +0000303 ExprResult Simdlen;
304 if (auto *E = Attr.getSimdlen())
305 Simdlen = Subst(E);
306
Alexey Bataeve48a5fc2016-04-12 05:28:34 +0000307 if (Attr.uniforms_size() > 0) {
308 for(auto *E : Attr.uniforms()) {
309 ExprResult Inst = Subst(E);
310 if (Inst.isInvalid())
311 continue;
312 Uniforms.push_back(Inst.get());
313 }
Alexey Bataev2af33e32016-04-07 12:45:37 +0000314 }
315
Alexey Bataevd93d3762016-04-12 09:35:56 +0000316 auto AI = Attr.alignments_begin();
317 for (auto *E : Attr.aligneds()) {
318 ExprResult Inst = Subst(E);
319 if (Inst.isInvalid())
320 continue;
321 Aligneds.push_back(Inst.get());
322 Inst = ExprEmpty();
323 if (*AI)
324 Inst = S.SubstExpr(*AI, TemplateArgs);
325 Alignments.push_back(Inst.get());
326 ++AI;
327 }
Alexey Bataevecba70f2016-04-12 11:02:11 +0000328
329 auto SI = Attr.steps_begin();
330 for (auto *E : Attr.linears()) {
331 ExprResult Inst = Subst(E);
332 if (Inst.isInvalid())
333 continue;
334 Linears.push_back(Inst.get());
335 Inst = ExprEmpty();
336 if (*SI)
337 Inst = S.SubstExpr(*SI, TemplateArgs);
338 Steps.push_back(Inst.get());
339 ++SI;
340 }
341 LinModifiers.append(Attr.modifiers_begin(), Attr.modifiers_end());
Alexey Bataevd93d3762016-04-12 09:35:56 +0000342 (void)S.ActOnOpenMPDeclareSimdDirective(
343 S.ConvertDeclToDeclGroup(New), Attr.getBranchState(), Simdlen.get(),
Alexey Bataevecba70f2016-04-12 11:02:11 +0000344 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps,
345 Attr.getRange());
Alexey Bataev2af33e32016-04-07 12:45:37 +0000346}
347
Erich Keanea32910d2017-03-23 18:51:54 +0000348void Sema::InstantiateAttrsForDecl(
349 const MultiLevelTemplateArgumentList &TemplateArgs, const Decl *Tmpl,
350 Decl *New, LateInstantiatedAttrVec *LateAttrs,
351 LocalInstantiationScope *OuterMostScope) {
352 if (NamedDecl *ND = dyn_cast<NamedDecl>(New)) {
353 for (const auto *TmplAttr : Tmpl->attrs()) {
354 // FIXME: If any of the special case versions from InstantiateAttrs become
355 // applicable to template declaration, we'll need to add them here.
356 CXXThisScopeRAII ThisScope(
357 *this, dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext()),
Mikael Nilsson9d2872d2018-12-13 10:15:27 +0000358 Qualifiers(), ND->isCXXInstanceMember());
Erich Keanea32910d2017-03-23 18:51:54 +0000359
360 Attr *NewAttr = sema::instantiateTemplateAttributeForDecl(
361 TmplAttr, Context, *this, TemplateArgs);
Richard Smith33bddbd2018-01-04 23:42:29 +0000362 if (NewAttr)
Erich Keanea32910d2017-03-23 18:51:54 +0000363 New->addAttr(NewAttr);
364 }
365 }
366}
367
George Karpenkov1657f362018-11-30 02:18:37 +0000368static Sema::RetainOwnershipKind
369attrToRetainOwnershipKind(const Attr *A) {
370 switch (A->getKind()) {
371 case clang::attr::CFConsumed:
372 return Sema::RetainOwnershipKind::CF;
373 case clang::attr::OSConsumed:
374 return Sema::RetainOwnershipKind::OS;
375 case clang::attr::NSConsumed:
376 return Sema::RetainOwnershipKind::NS;
377 default:
378 llvm_unreachable("Wrong argument supplied");
379 }
380}
381
John McCall6602bb12010-08-01 02:01:53 +0000382void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000383 const Decl *Tmpl, Decl *New,
384 LateInstantiatedAttrVec *LateAttrs,
385 LocalInstantiationScope *OuterMostScope) {
Aaron Ballmanb97112e2014-03-08 22:19:01 +0000386 for (const auto *TmplAttr : Tmpl->attrs()) {
Chandler Carruthf40c42f2010-06-25 03:22:07 +0000387 // FIXME: This should be generalized to more than just the AlignedAttr.
Richard Smith44c247f2013-02-22 08:32:16 +0000388 const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr);
389 if (Aligned && Aligned->isAlignmentDependent()) {
390 instantiateDependentAlignedAttr(*this, TemplateArgs, Aligned, New);
391 continue;
Chandler Carruthf40c42f2010-06-25 03:22:07 +0000392 }
393
Hal Finkelee90a222014-09-26 05:04:30 +0000394 const AssumeAlignedAttr *AssumeAligned = dyn_cast<AssumeAlignedAttr>(TmplAttr);
395 if (AssumeAligned) {
396 instantiateDependentAssumeAlignedAttr(*this, TemplateArgs, AssumeAligned, New);
397 continue;
398 }
399
Hal Finkel1b0d24e2014-10-02 21:21:25 +0000400 const AlignValueAttr *AlignValue = dyn_cast<AlignValueAttr>(TmplAttr);
401 if (AlignValue) {
402 instantiateDependentAlignValueAttr(*this, TemplateArgs, AlignValue, New);
403 continue;
404 }
405
Erich Keane623efd82017-03-30 21:48:55 +0000406 if (const auto *AllocAlign = dyn_cast<AllocAlignAttr>(TmplAttr)) {
407 instantiateDependentAllocAlignAttr(*this, TemplateArgs, AllocAlign, New);
408 continue;
409 }
410
411
George Burgess IV00431952016-11-17 01:33:54 +0000412 if (const auto *EnableIf = dyn_cast<EnableIfAttr>(TmplAttr)) {
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000413 instantiateDependentEnableIfAttr(*this, TemplateArgs, EnableIf, Tmpl,
George Burgess IV177399e2017-01-09 04:12:14 +0000414 cast<FunctionDecl>(New));
415 continue;
416 }
417
418 if (const auto *DiagnoseIf = dyn_cast<DiagnoseIfAttr>(TmplAttr)) {
419 instantiateDependentDiagnoseIfAttr(*this, TemplateArgs, DiagnoseIf, Tmpl,
420 cast<FunctionDecl>(New));
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000421 continue;
422 }
423
Artem Belevich7093e402015-04-21 22:55:54 +0000424 if (const CUDALaunchBoundsAttr *CUDALaunchBounds =
425 dyn_cast<CUDALaunchBoundsAttr>(TmplAttr)) {
426 instantiateDependentCUDALaunchBoundsAttr(*this, TemplateArgs,
427 *CUDALaunchBounds, New);
428 continue;
429 }
430
Denis Zobnind9e2dcd2016-02-02 13:50:39 +0000431 if (const ModeAttr *Mode = dyn_cast<ModeAttr>(TmplAttr)) {
432 instantiateDependentModeAttr(*this, TemplateArgs, *Mode, New);
433 continue;
434 }
435
Alexey Bataev2af33e32016-04-07 12:45:37 +0000436 if (const auto *OMPAttr = dyn_cast<OMPDeclareSimdDeclAttr>(TmplAttr)) {
437 instantiateOMPDeclareSimdDeclAttr(*this, TemplateArgs, *OMPAttr, New);
438 continue;
439 }
440
Hans Wennborgc2b7f7a2014-08-24 00:12:36 +0000441 // Existing DLL attribute on the instantiation takes precedence.
442 if (TmplAttr->getKind() == attr::DLLExport ||
443 TmplAttr->getKind() == attr::DLLImport) {
444 if (New->hasAttr<DLLExportAttr>() || New->hasAttr<DLLImportAttr>()) {
445 continue;
446 }
447 }
448
John McCall477f2bb2016-03-03 06:39:32 +0000449 if (auto ABIAttr = dyn_cast<ParameterABIAttr>(TmplAttr)) {
450 AddParameterABIAttr(ABIAttr->getRange(), New, ABIAttr->getABI(),
451 ABIAttr->getSpellingListIndex());
452 continue;
453 }
454
George Karpenkov1657f362018-11-30 02:18:37 +0000455 if (isa<NSConsumedAttr>(TmplAttr) || isa<OSConsumedAttr>(TmplAttr) ||
456 isa<CFConsumedAttr>(TmplAttr)) {
457 AddXConsumedAttr(New, TmplAttr->getRange(),
458 TmplAttr->getSpellingListIndex(),
459 attrToRetainOwnershipKind(TmplAttr),
460 /*template instantiation=*/true);
John McCall3b5a8f52016-03-03 00:10:03 +0000461 continue;
462 }
463
Richard Smith44c247f2013-02-22 08:32:16 +0000464 assert(!TmplAttr->isPackExpansion());
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000465 if (TmplAttr->isLateParsed() && LateAttrs) {
466 // Late parsed attributes must be instantiated and attached after the
467 // enclosing class has been instantiated. See Sema::InstantiateClass.
Craig Topperc3ec1492014-05-26 06:22:03 +0000468 LocalInstantiationScope *Saved = nullptr;
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000469 if (CurrentInstantiationScope)
470 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
471 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
472 } else {
Richard Smithc3d2ebb2013-06-07 02:33:37 +0000473 // Allow 'this' within late-parsed attributes.
474 NamedDecl *ND = dyn_cast<NamedDecl>(New);
475 CXXRecordDecl *ThisContext =
476 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
Mikael Nilsson9d2872d2018-12-13 10:15:27 +0000477 CXXThisScopeRAII ThisScope(*this, ThisContext, Qualifiers(),
Richard Smithc3d2ebb2013-06-07 02:33:37 +0000478 ND && ND->isCXXInstanceMember());
479
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +0000480 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
481 *this, TemplateArgs);
Richard Smith33bddbd2018-01-04 23:42:29 +0000482 if (NewAttr)
Rafael Espindola7f90b7d2012-05-15 14:09:55 +0000483 New->addAttr(NewAttr);
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000484 }
Anders Carlsson3d709752009-11-07 06:07:58 +0000485 }
486}
487
Richard Smith41c79d92014-10-11 00:37:16 +0000488/// Get the previous declaration of a declaration for the purposes of template
489/// instantiation. If this finds a previous declaration, then the previous
490/// declaration of the instantiation of D should be an instantiation of the
491/// result of this function.
492template<typename DeclT>
493static DeclT *getPreviousDeclForInstantiation(DeclT *D) {
494 DeclT *Result = D->getPreviousDecl();
495
496 // If the declaration is within a class, and the previous declaration was
497 // merged from a different definition of that class, then we don't have a
498 // previous declaration for the purpose of template instantiation.
499 if (Result && isa<CXXRecordDecl>(D->getDeclContext()) &&
500 D->getLexicalDeclContext() != Result->getLexicalDeclContext())
501 return nullptr;
502
503 return Result;
504}
505
Douglas Gregor8a655532009-03-25 15:45:12 +0000506Decl *
507TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000508 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor8a655532009-03-25 15:45:12 +0000509}
510
511Decl *
Nico Weber66220292016-03-02 17:28:48 +0000512TemplateDeclInstantiator::VisitPragmaCommentDecl(PragmaCommentDecl *D) {
513 llvm_unreachable("pragma comment cannot be instantiated");
514}
515
Nico Webercbbaeb12016-03-02 19:28:54 +0000516Decl *TemplateDeclInstantiator::VisitPragmaDetectMismatchDecl(
517 PragmaDetectMismatchDecl *D) {
518 llvm_unreachable("pragma comment cannot be instantiated");
519}
520
Nico Weber66220292016-03-02 17:28:48 +0000521Decl *
Richard Smithf19e1272015-03-07 00:04:49 +0000522TemplateDeclInstantiator::VisitExternCContextDecl(ExternCContextDecl *D) {
523 llvm_unreachable("extern \"C\" context cannot be instantiated");
524}
525
526Decl *
Chris Lattnercab02a62011-02-17 20:34:02 +0000527TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
528 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
529 D->getIdentifier());
530 Owner->addDecl(Inst);
531 return Inst;
532}
533
534Decl *
Douglas Gregor8a655532009-03-25 15:45:12 +0000535TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000536 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor8a655532009-03-25 15:45:12 +0000537}
538
John McCalld8d0d432010-02-16 06:53:13 +0000539Decl *
540TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
541 NamespaceAliasDecl *Inst
542 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
543 D->getNamespaceLoc(),
544 D->getAliasLoc(),
Douglas Gregorc05ba2e2011-02-25 17:08:07 +0000545 D->getIdentifier(),
546 D->getQualifierLoc(),
John McCalld8d0d432010-02-16 06:53:13 +0000547 D->getTargetNameLoc(),
548 D->getNamespace());
549 Owner->addDecl(Inst);
550 return Inst;
551}
552
Richard Smith3f1b5d02011-05-05 21:57:07 +0000553Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
554 bool IsTypeAlias) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000555 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000556 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000557 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000558 DI->getType()->isVariablyModifiedType()) {
John McCall703a3f82009-10-24 08:00:42 +0000559 DI = SemaRef.SubstType(DI, TemplateArgs,
560 D->getLocation(), D->getDeclName());
561 if (!DI) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000562 Invalid = true;
John McCallbcd03502009-12-07 02:54:59 +0000563 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000564 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000565 } else {
566 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000567 }
Mike Stump11289f42009-09-09 15:08:12 +0000568
Richard Smith2ddcbab2012-10-23 00:32:41 +0000569 // HACK: g++ has a bug where it gets the value kind of ?: wrong.
570 // libstdc++ relies upon this bug in its implementation of common_type.
571 // If we happen to be processing that implementation, fake up the g++ ?:
572 // semantics. See LWG issue 2141 for more information on the bug.
573 const DecltypeType *DT = DI->getType()->getAs<DecltypeType>();
574 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext());
575 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) &&
576 DT->isReferenceType() &&
577 RD->getEnclosingNamespaceContext() == SemaRef.getStdNamespace() &&
578 RD->getIdentifier() && RD->getIdentifier()->isStr("common_type") &&
579 D->getIdentifier() && D->getIdentifier()->isStr("type") &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000580 SemaRef.getSourceManager().isInSystemHeader(D->getBeginLoc()))
Richard Smith2ddcbab2012-10-23 00:32:41 +0000581 // Fold it to the (non-reference) type which g++ would have produced.
582 DI = SemaRef.Context.getTrivialTypeSourceInfo(
583 DI->getType().getNonReferenceType());
584
Douglas Gregord7e7a512009-03-17 21:15:40 +0000585 // Create the new typedef
Richard Smithdda56e42011-04-15 14:24:37 +0000586 TypedefNameDecl *Typedef;
587 if (IsTypeAlias)
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000588 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
Richard Smithdda56e42011-04-15 14:24:37 +0000589 D->getLocation(), D->getIdentifier(), DI);
590 else
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000591 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
Richard Smithdda56e42011-04-15 14:24:37 +0000592 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000593 if (Invalid)
594 Typedef->setInvalidDecl();
595
John McCall04fcd0d2011-02-01 08:20:08 +0000596 // If the old typedef was the name for linkage purposes of an anonymous
597 // tag decl, re-establish that relationship for the new typedef.
598 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
599 TagDecl *oldTag = oldTagType->getDecl();
Douglas Gregord831d952013-03-08 22:15:15 +0000600 if (oldTag->getTypedefNameForAnonDecl() == D && !Invalid) {
John McCall04fcd0d2011-02-01 08:20:08 +0000601 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
John McCall5ea95772013-03-09 00:54:27 +0000602 assert(!newTag->hasNameForLinkage());
Richard Smithdda56e42011-04-15 14:24:37 +0000603 newTag->setTypedefNameForAnonDecl(Typedef);
John McCall04fcd0d2011-02-01 08:20:08 +0000604 }
Douglas Gregor83eb5032010-04-23 16:25:07 +0000605 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000606
Richard Smith41c79d92014-10-11 00:37:16 +0000607 if (TypedefNameDecl *Prev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +0000608 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
609 TemplateArgs);
Douglas Gregor55e6b312011-03-04 19:46:35 +0000610 if (!InstPrev)
Craig Topperc3ec1492014-05-26 06:22:03 +0000611 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000612
Rafael Espindolacde2c8f2011-12-26 22:42:47 +0000613 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
614
615 // If the typedef types are not identical, reject them.
616 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
617
Rafael Espindola8db352d2013-10-17 15:37:26 +0000618 Typedef->setPreviousDecl(InstPrevTypedef);
John McCall91f1a022009-12-30 00:31:22 +0000619 }
620
John McCall6602bb12010-08-01 02:01:53 +0000621 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregor83eb5032010-04-23 16:25:07 +0000622
John McCall401982f2010-01-20 21:53:11 +0000623 Typedef->setAccess(D->getAccess());
Mike Stump11289f42009-09-09 15:08:12 +0000624
Douglas Gregord7e7a512009-03-17 21:15:40 +0000625 return Typedef;
626}
627
Richard Smithdda56e42011-04-15 14:24:37 +0000628Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000629 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
Richard Smith41c79d92014-10-11 00:37:16 +0000630 if (Typedef)
631 Owner->addDecl(Typedef);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000632 return Typedef;
Richard Smithdda56e42011-04-15 14:24:37 +0000633}
634
635Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000636 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
Richard Smith41c79d92014-10-11 00:37:16 +0000637 if (Typedef)
638 Owner->addDecl(Typedef);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000639 return Typedef;
640}
641
642Decl *
643TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
644 // Create a local instantiation scope for this type alias template, which
645 // will contain the instantiations of the template parameters.
646 LocalInstantiationScope Scope(SemaRef);
647
648 TemplateParameterList *TempParams = D->getTemplateParameters();
649 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
650 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +0000651 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000652
653 TypeAliasDecl *Pattern = D->getTemplatedDecl();
654
Craig Topperc3ec1492014-05-26 06:22:03 +0000655 TypeAliasTemplateDecl *PrevAliasTemplate = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000656 if (getPreviousDeclForInstantiation<TypedefNameDecl>(Pattern)) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000657 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +0000658 if (!Found.empty()) {
659 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
Richard Smith3f1b5d02011-05-05 21:57:07 +0000660 }
661 }
662
663 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
664 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
665 if (!AliasInst)
Craig Topperc3ec1492014-05-26 06:22:03 +0000666 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000667
668 TypeAliasTemplateDecl *Inst
669 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
670 D->getDeclName(), InstParams, AliasInst);
Richard Smith43ccec8e2014-08-26 03:52:16 +0000671 AliasInst->setDescribedAliasTemplate(Inst);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000672 if (PrevAliasTemplate)
Rafael Espindola8db352d2013-10-17 15:37:26 +0000673 Inst->setPreviousDecl(PrevAliasTemplate);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000674
675 Inst->setAccess(D->getAccess());
676
677 if (!PrevAliasTemplate)
678 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000679
Richard Smith3f1b5d02011-05-05 21:57:07 +0000680 Owner->addDecl(Inst);
681
682 return Inst;
Richard Smithdda56e42011-04-15 14:24:37 +0000683}
684
Richard Smithbdb84f32016-07-22 23:36:59 +0000685Decl *TemplateDeclInstantiator::VisitBindingDecl(BindingDecl *D) {
Richard Smith3997b1b2016-08-12 01:55:21 +0000686 auto *NewBD = BindingDecl::Create(SemaRef.Context, Owner, D->getLocation(),
687 D->getIdentifier());
Richard Smith81df9eb2017-10-02 22:43:36 +0000688 NewBD->setReferenced(D->isReferenced());
Richard Smith3997b1b2016-08-12 01:55:21 +0000689 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewBD);
690 return NewBD;
Richard Smithbdb84f32016-07-22 23:36:59 +0000691}
692
693Decl *TemplateDeclInstantiator::VisitDecompositionDecl(DecompositionDecl *D) {
Richard Smith3997b1b2016-08-12 01:55:21 +0000694 // Transform the bindings first.
695 SmallVector<BindingDecl*, 16> NewBindings;
696 for (auto *OldBD : D->bindings())
697 NewBindings.push_back(cast<BindingDecl>(VisitBindingDecl(OldBD)));
698 ArrayRef<BindingDecl*> NewBindingArray = NewBindings;
699
700 auto *NewDD = cast_or_null<DecompositionDecl>(
701 VisitVarDecl(D, /*InstantiatingVarTemplate=*/false, &NewBindingArray));
702
703 if (!NewDD || NewDD->isInvalidDecl())
704 for (auto *NewBD : NewBindings)
705 NewBD->setInvalidDecl();
706
707 return NewDD;
Richard Smithbdb84f32016-07-22 23:36:59 +0000708}
709
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000710Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000711 return VisitVarDecl(D, /*InstantiatingVarTemplate=*/false);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000712}
713
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000714Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D,
Richard Smith3997b1b2016-08-12 01:55:21 +0000715 bool InstantiatingVarTemplate,
716 ArrayRef<BindingDecl*> *Bindings) {
Larisse Voufo39a1e502013-08-06 01:03:05 +0000717
John McCall76d824f2009-08-25 22:02:44 +0000718 // Do substitution on the type of the declaration
Richard Smithee579842017-01-30 20:39:26 +0000719 TypeSourceInfo *DI = SemaRef.SubstType(
720 D->getTypeSourceInfo(), TemplateArgs, D->getTypeSpecStartLoc(),
721 D->getDeclName(), /*AllowDeducedTST*/true);
John McCallf1abcdc2009-10-21 02:39:02 +0000722 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +0000723 return nullptr;
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000724
Douglas Gregor61623342010-09-12 07:37:24 +0000725 if (DI->getType()->isFunctionType()) {
726 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
727 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +0000728 return nullptr;
Douglas Gregor61623342010-09-12 07:37:24 +0000729 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000730
Richard Smith541b38b2013-09-20 01:15:31 +0000731 DeclContext *DC = Owner;
732 if (D->isLocalExternDecl())
733 SemaRef.adjustContextForLocalExternDecl(DC);
734
Larisse Voufo39a1e502013-08-06 01:03:05 +0000735 // Build the instantiated declaration.
Richard Smith3997b1b2016-08-12 01:55:21 +0000736 VarDecl *Var;
737 if (Bindings)
738 Var = DecompositionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
739 D->getLocation(), DI->getType(), DI,
740 D->getStorageClass(), *Bindings);
741 else
742 Var = VarDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
743 D->getLocation(), D->getIdentifier(), DI->getType(),
744 DI, D->getStorageClass());
Mike Stump11289f42009-09-09 15:08:12 +0000745
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000746 // In ARC, infer 'retaining' for variables of retainable type.
Fangrui Song6907ce22018-07-30 19:24:48 +0000747 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000748 SemaRef.inferObjCARCLifetime(Var))
749 Var->setInvalidDecl();
750
Larisse Voufo39a1e502013-08-06 01:03:05 +0000751 // Substitute the nested name specifier, if any.
752 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +0000753 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000754
Richard Smith541b38b2013-09-20 01:15:31 +0000755 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, Owner,
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000756 StartingScope, InstantiatingVarTemplate);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000757
758 if (D->isNRVOVariable()) {
759 QualType ReturnType = cast<FunctionDecl>(DC)->getReturnType();
Richard Trieu09c163b2018-03-15 03:00:55 +0000760 if (SemaRef.isCopyElisionCandidate(ReturnType, Var, Sema::CES_Strict))
Taiju Tsuiki3be68e12018-06-19 05:35:30 +0000761 Var->setNRVOVariable(true);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000762 }
Taiju Tsuiki3be68e12018-06-19 05:35:30 +0000763
Alexander Kornienko83a4e182014-05-27 21:29:22 +0000764 Var->setImplicit(D->isImplicit());
765
Hans Wennborg262baa42018-10-31 10:34:46 +0000766 if (Var->isStaticLocal())
767 SemaRef.CheckStaticLocalForDllExport(Var);
768
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000769 return Var;
770}
771
Abramo Bagnarad7340582010-06-05 05:09:32 +0000772Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
773 AccessSpecDecl* AD
774 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
775 D->getAccessSpecifierLoc(), D->getColonLoc());
776 Owner->addHiddenDecl(AD);
777 return AD;
778}
779
Douglas Gregord7e7a512009-03-17 21:15:40 +0000780Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
781 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000782 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000783 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000784 DI->getType()->isVariablyModifiedType()) {
John McCall90459c52009-10-22 23:33:21 +0000785 DI = SemaRef.SubstType(DI, TemplateArgs,
786 D->getLocation(), D->getDeclName());
787 if (!DI) {
John McCallbcd03502009-12-07 02:54:59 +0000788 DI = D->getTypeSourceInfo();
John McCall90459c52009-10-22 23:33:21 +0000789 Invalid = true;
790 } else if (DI->getType()->isFunctionType()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000791 // C++ [temp.arg.type]p3:
792 // If a declaration acquires a function type through a type
793 // dependent on a template-parameter and this causes a
794 // declaration that does not use the syntactic form of a
795 // function declarator to have function type, the program is
796 // ill-formed.
797 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall90459c52009-10-22 23:33:21 +0000798 << DI->getType();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000799 Invalid = true;
800 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000801 } else {
802 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000803 }
804
805 Expr *BitWidth = D->getBitWidth();
806 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +0000807 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000808 else if (BitWidth) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000809 // The bit-width expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000810 EnterExpressionEvaluationContext Unevaluated(
811 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000812
John McCalldadc5752010-08-24 06:29:42 +0000813 ExprResult InstantiatedBitWidth
John McCall76d824f2009-08-25 22:02:44 +0000814 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000815 if (InstantiatedBitWidth.isInvalid()) {
816 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +0000817 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000818 } else
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000819 BitWidth = InstantiatedBitWidth.getAs<Expr>();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000820 }
821
John McCall90459c52009-10-22 23:33:21 +0000822 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
823 DI->getType(), DI,
Mike Stump11289f42009-09-09 15:08:12 +0000824 cast<RecordDecl>(Owner),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000825 D->getLocation(),
826 D->isMutable(),
827 BitWidth,
Richard Smith2b013182012-06-10 03:12:00 +0000828 D->getInClassInitStyle(),
Richard Smith47ad0172012-05-23 04:22:22 +0000829 D->getInnerLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000830 D->getAccess(),
Craig Topperc3ec1492014-05-26 06:22:03 +0000831 nullptr);
Douglas Gregor3c74d412009-10-14 20:14:33 +0000832 if (!Field) {
833 cast<Decl>(Owner)->setInvalidDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +0000834 return nullptr;
Douglas Gregor3c74d412009-10-14 20:14:33 +0000835 }
Mike Stump11289f42009-09-09 15:08:12 +0000836
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000837 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000838
Richard Smith848e1f12013-02-01 08:12:08 +0000839 if (Field->hasAttrs())
840 SemaRef.CheckAlignasUnderalignment(Field);
841
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000842 if (Invalid)
843 Field->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000844
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000845 if (!Field->getDeclName()) {
846 // Keep track of where this decl came from.
847 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000848 }
Douglas Gregor04163182010-05-21 00:31:19 +0000849 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
850 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl50c68252010-08-31 00:36:30 +0000851 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor04163182010-05-21 00:31:19 +0000852 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000853 }
Mike Stump11289f42009-09-09 15:08:12 +0000854
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000855 Field->setImplicit(D->isImplicit());
John McCall401982f2010-01-20 21:53:11 +0000856 Field->setAccess(D->getAccess());
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000857 Owner->addDecl(Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000858
859 return Field;
860}
861
John McCall5e77d762013-04-16 07:28:30 +0000862Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) {
863 bool Invalid = false;
864 TypeSourceInfo *DI = D->getTypeSourceInfo();
865
866 if (DI->getType()->isVariablyModifiedType()) {
867 SemaRef.Diag(D->getLocation(), diag::err_property_is_variably_modified)
Aaron Ballman1bda4592014-01-03 01:09:27 +0000868 << D;
John McCall5e77d762013-04-16 07:28:30 +0000869 Invalid = true;
870 } else if (DI->getType()->isInstantiationDependentType()) {
871 DI = SemaRef.SubstType(DI, TemplateArgs,
872 D->getLocation(), D->getDeclName());
873 if (!DI) {
874 DI = D->getTypeSourceInfo();
875 Invalid = true;
876 } else if (DI->getType()->isFunctionType()) {
877 // C++ [temp.arg.type]p3:
878 // If a declaration acquires a function type through a type
879 // dependent on a template-parameter and this causes a
880 // declaration that does not use the syntactic form of a
881 // function declarator to have function type, the program is
882 // ill-formed.
883 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
884 << DI->getType();
885 Invalid = true;
886 }
887 } else {
888 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
889 }
890
Richard Smithf7981722013-11-22 09:01:48 +0000891 MSPropertyDecl *Property = MSPropertyDecl::Create(
892 SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000893 DI, D->getBeginLoc(), D->getGetterId(), D->getSetterId());
John McCall5e77d762013-04-16 07:28:30 +0000894
895 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
896 StartingScope);
897
898 if (Invalid)
899 Property->setInvalidDecl();
900
901 Property->setAccess(D->getAccess());
902 Owner->addDecl(Property);
903
904 return Property;
905}
906
Francois Pichet783dd6e2010-11-21 06:08:52 +0000907Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
908 NamedDecl **NamedChain =
909 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
910
911 int i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +0000912 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +0000913 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), PI,
Douglas Gregor55e6b312011-03-04 19:46:35 +0000914 TemplateArgs);
915 if (!Next)
Craig Topperc3ec1492014-05-26 06:22:03 +0000916 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000917
Douglas Gregor55e6b312011-03-04 19:46:35 +0000918 NamedChain[i++] = Next;
919 }
Francois Pichet783dd6e2010-11-21 06:08:52 +0000920
Francois Pichetdbafc192010-12-09 10:07:54 +0000921 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Aaron Ballman260995b2014-10-15 16:58:18 +0000922 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
923 SemaRef.Context, Owner, D->getLocation(), D->getIdentifier(), T,
David Majnemer59f77922016-06-24 04:05:48 +0000924 {NamedChain, D->getChainingSize()});
Francois Pichet783dd6e2010-11-21 06:08:52 +0000925
NAKAMURA Takumi729be142014-10-27 12:37:26 +0000926 for (const auto *Attr : D->attrs())
927 IndirectField->addAttr(Attr->clone(SemaRef.Context));
Francois Pichet783dd6e2010-11-21 06:08:52 +0000928
929 IndirectField->setImplicit(D->isImplicit());
930 IndirectField->setAccess(D->getAccess());
931 Owner->addDecl(IndirectField);
932 return IndirectField;
933}
934
John McCallaa74a0c2009-08-28 07:59:38 +0000935Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCallaa74a0c2009-08-28 07:59:38 +0000936 // Handle friend type expressions by simply substituting template
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000937 // parameters into the pattern type and checking the result.
John McCall15ad0962010-03-25 18:04:51 +0000938 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth08836322011-05-01 00:51:33 +0000939 TypeSourceInfo *InstTy;
940 // If this is an unsupported friend, don't bother substituting template
941 // arguments into it. The actual type referred to won't be used by any
942 // parts of Clang, and may not be valid for instantiating. Just use the
943 // same info for the instantiated friend.
944 if (D->isUnsupportedFriend()) {
945 InstTy = Ty;
946 } else {
947 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
948 D->getLocation(), DeclarationName());
949 }
950 if (!InstTy)
Craig Topperc3ec1492014-05-26 06:22:03 +0000951 return nullptr;
John McCallaa74a0c2009-08-28 07:59:38 +0000952
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000953 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getBeginLoc(),
Abramo Bagnara254b6302011-10-29 20:52:52 +0000954 D->getFriendLoc(), InstTy);
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000955 if (!FD)
Craig Topperc3ec1492014-05-26 06:22:03 +0000956 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000957
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000958 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000959 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000960 Owner->addDecl(FD);
961 return FD;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000962 }
963
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000964 NamedDecl *ND = D->getFriendDecl();
965 assert(ND && "friend decl must be a decl or a type!");
966
John McCallb9c78482010-04-08 09:05:18 +0000967 // All of the Visit implementations for the various potential friend
968 // declarations have to be carefully written to work for friend
969 // objects, with the most important detail being that the target
970 // decl should almost certainly not be placed in Owner.
971 Decl *NewND = Visit(ND);
Craig Topperc3ec1492014-05-26 06:22:03 +0000972 if (!NewND) return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000973
John McCallaa74a0c2009-08-28 07:59:38 +0000974 FriendDecl *FD =
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000975 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000976 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall75c03bb2009-08-29 03:50:18 +0000977 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000978 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCallaa74a0c2009-08-28 07:59:38 +0000979 Owner->addDecl(FD);
980 return FD;
John McCall58de3582009-08-14 02:03:10 +0000981}
982
Douglas Gregord7e7a512009-03-17 21:15:40 +0000983Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
984 Expr *AssertExpr = D->getAssertExpr();
Mike Stump11289f42009-09-09 15:08:12 +0000985
Richard Smith764d2fe2011-12-20 02:08:33 +0000986 // The expression in a static assertion is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000987 EnterExpressionEvaluationContext Unevaluated(
988 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000989
John McCalldadc5752010-08-24 06:29:42 +0000990 ExprResult InstantiatedAssertExpr
John McCall76d824f2009-08-25 22:02:44 +0000991 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000992 if (InstantiatedAssertExpr.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000993 return nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000994
Richard Smithded9c2e2012-07-11 22:37:56 +0000995 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCallb268a282010-08-23 23:25:46 +0000996 InstantiatedAssertExpr.get(),
Richard Smithded9c2e2012-07-11 22:37:56 +0000997 D->getMessage(),
998 D->getRParenLoc(),
999 D->isFailed());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001000}
1001
1002Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001003 EnumDecl *PrevDecl = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +00001004 if (EnumDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Richard Smith2e6610a2012-03-26 04:58:10 +00001005 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +00001006 PatternPrev,
Richard Smith2e6610a2012-03-26 04:58:10 +00001007 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001008 if (!Prev) return nullptr;
Richard Smith2e6610a2012-03-26 04:58:10 +00001009 PrevDecl = cast<EnumDecl>(Prev);
1010 }
1011
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001012 EnumDecl *Enum =
1013 EnumDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
1014 D->getLocation(), D->getIdentifier(), PrevDecl,
1015 D->isScoped(), D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor0bf31402010-10-08 23:50:27 +00001016 if (D->isFixed()) {
Richard Smith4b38ded2012-03-14 23:13:10 +00001017 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001018 // If we have type source information for the underlying type, it means it
1019 // has been explicitly set by the user. Perform substitution on it before
1020 // moving on.
1021 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smith4b38ded2012-03-14 23:13:10 +00001022 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
1023 DeclarationName());
1024 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor0bf31402010-10-08 23:50:27 +00001025 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smith4b38ded2012-03-14 23:13:10 +00001026 else
1027 Enum->setIntegerTypeSourceInfo(NewTI);
1028 } else {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001029 assert(!D->getIntegerType()->isDependentType()
1030 && "Dependent type without type source info");
1031 Enum->setIntegerType(D->getIntegerType());
1032 }
1033 }
1034
John McCall811a0f52010-10-22 23:36:17 +00001035 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
1036
Richard Smith4b38ded2012-03-14 23:13:10 +00001037 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor6c2adff2009-03-25 22:00:53 +00001038 Enum->setAccess(D->getAccess());
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001039 // Forward the mangling number from the template to the instantiated decl.
1040 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
David Majnemer00350522015-08-31 18:48:39 +00001041 // See if the old tag was defined along with a declarator.
1042 // If it did, mark the new tag as being associated with that declarator.
1043 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1044 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Enum, DD);
1045 // See if the old tag was defined along with a typedef.
1046 // If it did, mark the new tag as being associated with that typedef.
1047 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1048 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Enum, TND);
Craig Topperc3ec1492014-05-26 06:22:03 +00001049 if (SubstQualifier(D, Enum)) return nullptr;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001050 Owner->addDecl(Enum);
Richard Smith4b38ded2012-03-14 23:13:10 +00001051
Richard Smith258a7442012-03-26 04:08:46 +00001052 EnumDecl *Def = D->getDefinition();
1053 if (Def && Def != D) {
1054 // If this is an out-of-line definition of an enum member template, check
1055 // that the underlying types match in the instantiation of both
1056 // declarations.
1057 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
1058 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
1059 QualType DefnUnderlying =
1060 SemaRef.SubstType(TI->getType(), TemplateArgs,
1061 UnderlyingLoc, DeclarationName());
1062 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
Reid Klecknerb0a17ed2018-02-12 17:37:06 +00001063 DefnUnderlying, /*IsFixed=*/true, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001064 }
1065 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001066
Richard Smith4b38ded2012-03-14 23:13:10 +00001067 // C++11 [temp.inst]p1: The implicit instantiation of a class template
1068 // specialization causes the implicit instantiation of the declarations, but
1069 // not the definitions of scoped member enumerations.
David Majnemer192d1792013-11-27 08:20:38 +00001070 //
1071 // DR1484 clarifies that enumeration definitions inside of a template
1072 // declaration aren't considered entities that can be separately instantiated
1073 // from the rest of the entity they are declared inside of.
1074 if (isDeclWithinFunction(D) ? D == Def : Def && !Enum->isScoped()) {
1075 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001076 InstantiateEnumDefinition(Enum, Def);
David Majnemer192d1792013-11-27 08:20:38 +00001077 }
Richard Smith4b38ded2012-03-14 23:13:10 +00001078
1079 return Enum;
1080}
1081
1082void TemplateDeclInstantiator::InstantiateEnumDefinition(
1083 EnumDecl *Enum, EnumDecl *Pattern) {
1084 Enum->startDefinition();
1085
Richard Smith7d137e32012-03-23 03:33:32 +00001086 // Update the location to refer to the definition.
1087 Enum->setLocation(Pattern->getLocation());
1088
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001089 SmallVector<Decl*, 4> Enumerators;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001090
Craig Topperc3ec1492014-05-26 06:22:03 +00001091 EnumConstantDecl *LastEnumConst = nullptr;
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001092 for (auto *EC : Pattern->enumerators()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +00001093 // The specified value for the enumerator.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001094 ExprResult Value((Expr *)nullptr);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001095 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smith764d2fe2011-12-20 02:08:33 +00001096 // The enumerator's value expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +00001097 EnterExpressionEvaluationContext Unevaluated(
1098 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +00001099
John McCall76d824f2009-08-25 22:02:44 +00001100 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001101 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001102
1103 // Drop the initial value and continue.
1104 bool isInvalid = false;
1105 if (Value.isInvalid()) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001106 Value = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001107 isInvalid = true;
1108 }
1109
Mike Stump11289f42009-09-09 15:08:12 +00001110 EnumConstantDecl *EnumConst
Douglas Gregord7e7a512009-03-17 21:15:40 +00001111 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
1112 EC->getLocation(), EC->getIdentifier(),
John McCallb268a282010-08-23 23:25:46 +00001113 Value.get());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001114
1115 if (isInvalid) {
1116 if (EnumConst)
1117 EnumConst->setInvalidDecl();
1118 Enum->setInvalidDecl();
1119 }
1120
1121 if (EnumConst) {
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001122 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst);
John McCall811a0f52010-10-22 23:36:17 +00001123
John McCallf9b528c2010-01-23 22:37:59 +00001124 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001125 Enum->addDecl(EnumConst);
John McCall48871652010-08-21 09:40:31 +00001126 Enumerators.push_back(EnumConst);
Douglas Gregord7e7a512009-03-17 21:15:40 +00001127 LastEnumConst = EnumConst;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001128
Richard Smith4b38ded2012-03-14 23:13:10 +00001129 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
1130 !Enum->isScoped()) {
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001131 // If the enumeration is within a function or method, record the enum
1132 // constant as a local.
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001133 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst);
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001134 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001135 }
1136 }
Mike Stump11289f42009-09-09 15:08:12 +00001137
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00001138 SemaRef.ActOnEnumBody(Enum->getLocation(), Enum->getBraceRange(), Enum,
Erich Keanec480f302018-07-12 21:09:05 +00001139 Enumerators, nullptr, ParsedAttributesView());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001140}
1141
Douglas Gregor9106b822009-03-25 15:04:13 +00001142Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +00001143 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor9106b822009-03-25 15:04:13 +00001144}
1145
David Majnemerd9b1a4f2015-11-04 03:40:30 +00001146Decl *
1147TemplateDeclInstantiator::VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D) {
1148 llvm_unreachable("BuiltinTemplateDecls cannot be instantiated.");
1149}
1150
John McCall87a44eb2009-08-20 01:44:21 +00001151Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall598b4402010-03-25 06:39:04 +00001152 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1153
Douglas Gregor954de172009-10-31 17:21:17 +00001154 // Create a local instantiation scope for this class template, which
1155 // will contain the instantiations of the template parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00001156 LocalInstantiationScope Scope(SemaRef);
John McCall87a44eb2009-08-20 01:44:21 +00001157 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCall76d824f2009-08-25 22:02:44 +00001158 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001159 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001160 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00001161
1162 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall598b4402010-03-25 06:39:04 +00001163
1164 // Instantiate the qualifier. We have to do this first in case
1165 // we're a friend declaration, because if we are then we need to put
1166 // the new declaration in the appropriate context.
Douglas Gregor14454802011-02-25 02:25:35 +00001167 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
1168 if (QualifierLoc) {
1169 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1170 TemplateArgs);
1171 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001172 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001173 }
1174
Craig Topperc3ec1492014-05-26 06:22:03 +00001175 CXXRecordDecl *PrevDecl = nullptr;
1176 ClassTemplateDecl *PrevClassTemplate = nullptr;
John McCall598b4402010-03-25 06:39:04 +00001177
Richard Smith41c79d92014-10-11 00:37:16 +00001178 if (!isFriend && getPreviousDeclForInstantiation(Pattern)) {
Nick Lewycky61478912010-11-08 23:29:42 +00001179 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001180 if (!Found.empty()) {
1181 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
Nick Lewycky61478912010-11-08 23:29:42 +00001182 if (PrevClassTemplate)
1183 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1184 }
1185 }
1186
John McCall598b4402010-03-25 06:39:04 +00001187 // If this isn't a friend, then it's a member template, in which
1188 // case we just want to build the instantiation in the
1189 // specialization. If it is a friend, we want to build it in
1190 // the appropriate context.
1191 DeclContext *DC = Owner;
1192 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001193 if (QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001194 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001195 SS.Adopt(QualifierLoc);
John McCall598b4402010-03-25 06:39:04 +00001196 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001197 if (!DC) return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001198 } else {
1199 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
1200 Pattern->getDeclContext(),
1201 TemplateArgs);
1202 }
1203
1204 // Look for a previous declaration of the template in the owning
1205 // context.
1206 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00001207 Sema::LookupOrdinaryName,
1208 SemaRef.forRedeclarationInCurContext());
John McCall598b4402010-03-25 06:39:04 +00001209 SemaRef.LookupQualifiedName(R, DC);
1210
1211 if (R.isSingleResult()) {
1212 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
1213 if (PrevClassTemplate)
1214 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1215 }
1216
Douglas Gregor14454802011-02-25 02:25:35 +00001217 if (!PrevClassTemplate && QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001218 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregorf5af3582010-03-31 23:17:41 +00001219 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregor14454802011-02-25 02:25:35 +00001220 << QualifierLoc.getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00001221 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001222 }
1223
Douglas Gregor01e09d92010-04-08 18:16:15 +00001224 bool AdoptedPreviousTemplateParams = false;
John McCall598b4402010-03-25 06:39:04 +00001225 if (PrevClassTemplate) {
Douglas Gregor01e09d92010-04-08 18:16:15 +00001226 bool Complain = true;
1227
1228 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
1229 // template for struct std::tr1::__detail::_Map_base, where the
1230 // template parameters of the friend declaration don't match the
1231 // template parameters of the original declaration. In this one
1232 // case, we don't complain about the ill-formed friend
1233 // declaration.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001234 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregor01e09d92010-04-08 18:16:15 +00001235 Pattern->getIdentifier()->isStr("_Map_base") &&
1236 DC->isNamespace() &&
1237 cast<NamespaceDecl>(DC)->getIdentifier() &&
1238 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
1239 DeclContext *DCParent = DC->getParent();
1240 if (DCParent->isNamespace() &&
1241 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
1242 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
Richard Trieuc771d5d2014-05-28 02:16:01 +00001243 if (cast<Decl>(DCParent)->isInStdNamespace())
Douglas Gregor01e09d92010-04-08 18:16:15 +00001244 Complain = false;
1245 }
1246 }
1247
John McCall598b4402010-03-25 06:39:04 +00001248 TemplateParameterList *PrevParams
Richard Smithc4577662018-09-12 02:13:47 +00001249 = PrevClassTemplate->getMostRecentDecl()->getTemplateParameters();
John McCall598b4402010-03-25 06:39:04 +00001250
1251 // Make sure the parameter lists match.
1252 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001253 Complain,
Douglas Gregor01e09d92010-04-08 18:16:15 +00001254 Sema::TPL_TemplateMatch)) {
1255 if (Complain)
Craig Topperc3ec1492014-05-26 06:22:03 +00001256 return nullptr;
Douglas Gregor01e09d92010-04-08 18:16:15 +00001257
1258 AdoptedPreviousTemplateParams = true;
1259 InstParams = PrevParams;
1260 }
John McCall598b4402010-03-25 06:39:04 +00001261
1262 // Do some additional validation, then merge default arguments
1263 // from the existing declarations.
Douglas Gregor01e09d92010-04-08 18:16:15 +00001264 if (!AdoptedPreviousTemplateParams &&
1265 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall598b4402010-03-25 06:39:04 +00001266 Sema::TPC_ClassTemplate))
Craig Topperc3ec1492014-05-26 06:22:03 +00001267 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001268 }
1269 }
1270
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001271 CXXRecordDecl *RecordInst = CXXRecordDecl::Create(
1272 SemaRef.Context, Pattern->getTagKind(), DC, Pattern->getBeginLoc(),
1273 Pattern->getLocation(), Pattern->getIdentifier(), PrevDecl,
1274 /*DelayTypeCreation=*/true);
John McCall87a44eb2009-08-20 01:44:21 +00001275
Douglas Gregor14454802011-02-25 02:25:35 +00001276 if (QualifierLoc)
1277 RecordInst->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001278
Louis Dionne3c011e12018-09-14 14:07:16 +00001279 SemaRef.InstantiateAttrsForDecl(TemplateArgs, Pattern, RecordInst, LateAttrs,
1280 StartingScope);
1281
John McCall87a44eb2009-08-20 01:44:21 +00001282 ClassTemplateDecl *Inst
John McCall598b4402010-03-25 06:39:04 +00001283 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
Vassil Vassilev352e4412017-01-12 09:16:26 +00001284 D->getIdentifier(), InstParams, RecordInst);
1285 assert(!(isFriend && Owner->isDependentContext()));
1286 Inst->setPreviousDecl(PrevClassTemplate);
1287
John McCall87a44eb2009-08-20 01:44:21 +00001288 RecordInst->setDescribedClassTemplate(Inst);
John McCall17762b82010-04-08 20:25:50 +00001289
John McCall598b4402010-03-25 06:39:04 +00001290 if (isFriend) {
John McCall17762b82010-04-08 20:25:50 +00001291 if (PrevClassTemplate)
1292 Inst->setAccess(PrevClassTemplate->getAccess());
1293 else
1294 Inst->setAccess(D->getAccess());
1295
Richard Smith64017682013-07-17 23:53:16 +00001296 Inst->setObjectOfFriendDecl();
John McCall598b4402010-03-25 06:39:04 +00001297 // TODO: do we want to track the instantiation progeny of this
1298 // friend target decl?
1299 } else {
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001300 Inst->setAccess(D->getAccess());
Nick Lewycky61478912010-11-08 23:29:42 +00001301 if (!PrevClassTemplate)
1302 Inst->setInstantiatedFromMemberTemplate(D);
John McCall598b4402010-03-25 06:39:04 +00001303 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001304
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001305 // Trigger creation of the type for the instantiation.
John McCalle78aac42010-03-10 03:28:59 +00001306 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor9961ce92010-07-08 18:37:38 +00001307 Inst->getInjectedClassNameSpecialization());
John McCall17762b82010-04-08 20:25:50 +00001308
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001309 // Finish handling of friends.
John McCall598b4402010-03-25 06:39:04 +00001310 if (isFriend) {
Richard Smith05afe5e2012-03-13 03:12:56 +00001311 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001312 Inst->setLexicalDeclContext(Owner);
1313 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001314 return Inst;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001315 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001316
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001317 if (D->isOutOfLine()) {
1318 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1319 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
1320 }
1321
John McCall87a44eb2009-08-20 01:44:21 +00001322 Owner->addDecl(Inst);
Douglas Gregor869853e2010-11-10 19:44:59 +00001323
1324 if (!PrevClassTemplate) {
1325 // Queue up any out-of-line partial specializations of this member
1326 // class template; the client will force their instantiation once
1327 // the enclosing class has been instantiated.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001328 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregor869853e2010-11-10 19:44:59 +00001329 D->getPartialSpecializations(PartialSpecs);
1330 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001331 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Douglas Gregor869853e2010-11-10 19:44:59 +00001332 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
1333 }
1334
John McCall87a44eb2009-08-20 01:44:21 +00001335 return Inst;
1336}
1337
Douglas Gregore704c9d2009-08-27 16:57:43 +00001338Decl *
Douglas Gregore4b05162009-10-07 17:21:34 +00001339TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
1340 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregor21610382009-10-29 00:04:11 +00001341 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001342
Douglas Gregor21610382009-10-29 00:04:11 +00001343 // Lookup the already-instantiated declaration in the instantiation
1344 // of the class template and return that.
1345 DeclContext::lookup_result Found
1346 = Owner->lookup(ClassTemplate->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001347 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00001348 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001349
Douglas Gregor21610382009-10-29 00:04:11 +00001350 ClassTemplateDecl *InstClassTemplate
David Blaikieff7d47a2012-12-19 00:45:41 +00001351 = dyn_cast<ClassTemplateDecl>(Found.front());
Douglas Gregor21610382009-10-29 00:04:11 +00001352 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00001353 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001354
Douglas Gregor869853e2010-11-10 19:44:59 +00001355 if (ClassTemplatePartialSpecializationDecl *Result
1356 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
1357 return Result;
1358
1359 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregore4b05162009-10-07 17:21:34 +00001360}
1361
Larisse Voufo39a1e502013-08-06 01:03:05 +00001362Decl *TemplateDeclInstantiator::VisitVarTemplateDecl(VarTemplateDecl *D) {
1363 assert(D->getTemplatedDecl()->isStaticDataMember() &&
1364 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001365
1366 // Create a local instantiation scope for this variable template, which
1367 // will contain the instantiations of the template parameters.
1368 LocalInstantiationScope Scope(SemaRef);
1369 TemplateParameterList *TempParams = D->getTemplateParameters();
1370 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1371 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001372 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001373
1374 VarDecl *Pattern = D->getTemplatedDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00001375 VarTemplateDecl *PrevVarTemplate = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001376
Richard Smith41c79d92014-10-11 00:37:16 +00001377 if (getPreviousDeclForInstantiation(Pattern)) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00001378 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
1379 if (!Found.empty())
1380 PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1381 }
1382
Richard Smith1c34fb72013-08-13 18:18:50 +00001383 VarDecl *VarInst =
Larisse Voufo72caf2b2013-08-22 00:59:14 +00001384 cast_or_null<VarDecl>(VisitVarDecl(Pattern,
1385 /*InstantiatingVarTemplate=*/true));
Nick Lewycky6ca07ca2015-08-10 21:54:08 +00001386 if (!VarInst) return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001387
1388 DeclContext *DC = Owner;
1389
Larisse Voufo39a1e502013-08-06 01:03:05 +00001390 VarTemplateDecl *Inst = VarTemplateDecl::Create(
1391 SemaRef.Context, DC, D->getLocation(), D->getIdentifier(), InstParams,
Richard Smithbeef3452014-01-16 23:39:20 +00001392 VarInst);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001393 VarInst->setDescribedVarTemplate(Inst);
Richard Smithbeef3452014-01-16 23:39:20 +00001394 Inst->setPreviousDecl(PrevVarTemplate);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001395
1396 Inst->setAccess(D->getAccess());
1397 if (!PrevVarTemplate)
1398 Inst->setInstantiatedFromMemberTemplate(D);
1399
1400 if (D->isOutOfLine()) {
1401 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1402 VarInst->setLexicalDeclContext(D->getLexicalDeclContext());
1403 }
1404
1405 Owner->addDecl(Inst);
1406
1407 if (!PrevVarTemplate) {
1408 // Queue up any out-of-line partial specializations of this member
1409 // variable template; the client will force their instantiation once
1410 // the enclosing class has been instantiated.
1411 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
1412 D->getPartialSpecializations(PartialSpecs);
1413 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001414 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00001415 OutOfLineVarPartialSpecs.push_back(
1416 std::make_pair(Inst, PartialSpecs[I]));
1417 }
1418
1419 return Inst;
1420}
1421
1422Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl(
1423 VarTemplatePartialSpecializationDecl *D) {
1424 assert(D->isStaticDataMember() &&
1425 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001426
1427 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
1428
1429 // Lookup the already-instantiated declaration and return that.
1430 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName());
1431 assert(!Found.empty() && "Instantiation found nothing?");
1432
1433 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1434 assert(InstVarTemplate && "Instantiation did not find a variable template?");
1435
1436 if (VarTemplatePartialSpecializationDecl *Result =
1437 InstVarTemplate->findPartialSpecInstantiatedFromMember(D))
1438 return Result;
1439
1440 return InstantiateVarTemplatePartialSpecialization(InstVarTemplate, D);
1441}
1442
Douglas Gregore4b05162009-10-07 17:21:34 +00001443Decl *
Douglas Gregore704c9d2009-08-27 16:57:43 +00001444TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor954de172009-10-31 17:21:17 +00001445 // Create a local instantiation scope for this function template, which
1446 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001447 // merged with the local instantiation scope for the function template
Douglas Gregor954de172009-10-31 17:21:17 +00001448 // itself.
John McCall19c1bfd2010-08-25 05:32:35 +00001449 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor14cf7522010-04-30 18:55:50 +00001450
Douglas Gregore704c9d2009-08-27 16:57:43 +00001451 TemplateParameterList *TempParams = D->getTemplateParameters();
1452 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001453 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001454 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001455
Craig Topperc3ec1492014-05-26 06:22:03 +00001456 FunctionDecl *Instantiated = nullptr;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001457 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001458 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001459 InstParams));
1460 else
1461 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001462 D->getTemplatedDecl(),
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001463 InstParams));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001464
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001465 if (!Instantiated)
Craig Topperc3ec1492014-05-26 06:22:03 +00001466 return nullptr;
Douglas Gregore704c9d2009-08-27 16:57:43 +00001467
Mike Stump11289f42009-09-09 15:08:12 +00001468 // Link the instantiated function template declaration to the function
Douglas Gregore704c9d2009-08-27 16:57:43 +00001469 // template from which it was instantiated.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001470 FunctionTemplateDecl *InstTemplate
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001471 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregorca027af2009-10-12 22:27:17 +00001472 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001473 assert(InstTemplate &&
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001474 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCall2079d0b2009-12-14 23:19:40 +00001475
John McCall30837102010-03-26 23:10:15 +00001476 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
1477
John McCall2079d0b2009-12-14 23:19:40 +00001478 // Link the instantiation back to the pattern *unless* this is a
1479 // non-definition friend declaration.
1480 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCall30837102010-03-26 23:10:15 +00001481 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001482 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001483
John McCall30837102010-03-26 23:10:15 +00001484 // Make declarations visible in the appropriate context.
John McCalla0a96892012-08-10 03:15:35 +00001485 if (!isFriend) {
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001486 Owner->addDecl(InstTemplate);
John McCalla0a96892012-08-10 03:15:35 +00001487 } else if (InstTemplate->getDeclContext()->isRecord() &&
Richard Smith41c79d92014-10-11 00:37:16 +00001488 !getPreviousDeclForInstantiation(D)) {
John McCalla0a96892012-08-10 03:15:35 +00001489 SemaRef.CheckFriendAccess(InstTemplate);
1490 }
John McCall30837102010-03-26 23:10:15 +00001491
Douglas Gregore704c9d2009-08-27 16:57:43 +00001492 return InstTemplate;
1493}
1494
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001495Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001496 CXXRecordDecl *PrevDecl = nullptr;
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001497 if (D->isInjectedClassName())
1498 PrevDecl = cast<CXXRecordDecl>(Owner);
Richard Smith41c79d92014-10-11 00:37:16 +00001499 else if (CXXRecordDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001500 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +00001501 PatternPrev,
John McCalle9f92a02009-12-15 22:29:06 +00001502 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001503 if (!Prev) return nullptr;
John McCalle9f92a02009-12-15 22:29:06 +00001504 PrevDecl = cast<CXXRecordDecl>(Prev);
1505 }
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001506
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001507 CXXRecordDecl *Record = CXXRecordDecl::Create(
1508 SemaRef.Context, D->getTagKind(), Owner, D->getBeginLoc(),
1509 D->getLocation(), D->getIdentifier(), PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00001510
1511 // Substitute the nested name specifier, if any.
1512 if (SubstQualifier(D, Record))
Craig Topperc3ec1492014-05-26 06:22:03 +00001513 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00001514
Louis Dionne3c011e12018-09-14 14:07:16 +00001515 SemaRef.InstantiateAttrsForDecl(TemplateArgs, D, Record, LateAttrs,
1516 StartingScope);
1517
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001518 Record->setImplicit(D->isImplicit());
Eli Friedmanbda4ef12009-08-27 19:11:42 +00001519 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1520 // the tag decls introduced by friend class declarations don't have an access
1521 // specifier. Remove once this area of the code gets sorted out.
1522 if (D->getAccess() != AS_none)
1523 Record->setAccess(D->getAccess());
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001524 if (!D->isInjectedClassName())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001525 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001526
John McCallaa74a0c2009-08-28 07:59:38 +00001527 // If the original function was part of a friend declaration,
1528 // inherit its namespace state.
Richard Smith64017682013-07-17 23:53:16 +00001529 if (D->getFriendObjectKind())
1530 Record->setObjectOfFriendDecl();
John McCallaa74a0c2009-08-28 07:59:38 +00001531
Douglas Gregor04163182010-05-21 00:31:19 +00001532 // Make sure that anonymous structs and unions are recorded.
David Majnemer192d1792013-11-27 08:20:38 +00001533 if (D->isAnonymousStructOrUnion())
Douglas Gregor04163182010-05-21 00:31:19 +00001534 Record->setAnonymousStructOrUnion(true);
David Majnemer192d1792013-11-27 08:20:38 +00001535
1536 if (D->isLocalClass())
1537 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
Anders Carlsson5da84842009-09-01 04:26:58 +00001538
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001539 // Forward the mangling number from the template to the instantiated decl.
1540 SemaRef.Context.setManglingNumber(Record,
1541 SemaRef.Context.getManglingNumber(D));
1542
David Majnemer00350522015-08-31 18:48:39 +00001543 // See if the old tag was defined along with a declarator.
1544 // If it did, mark the new tag as being associated with that declarator.
1545 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1546 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Record, DD);
1547
1548 // See if the old tag was defined along with a typedef.
1549 // If it did, mark the new tag as being associated with that typedef.
1550 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1551 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Record, TND);
1552
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001553 Owner->addDecl(Record);
David Majnemer192d1792013-11-27 08:20:38 +00001554
1555 // DR1484 clarifies that the members of a local class are instantiated as part
1556 // of the instantiation of their enclosing entity.
1557 if (D->isCompleteDefinition() && D->isLocalClass()) {
Richard Smith4f3e3812017-05-20 01:36:41 +00001558 Sema::LocalEagerInstantiationScope LocalInstantiations(SemaRef);
Richard Smithb0b68012015-05-11 23:09:06 +00001559
David Majnemera64cb5a2014-02-22 00:17:46 +00001560 SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs,
1561 TSK_ImplicitInstantiation,
1562 /*Complain=*/true);
Richard Smithb0b68012015-05-11 23:09:06 +00001563
Richard Smithece47582017-01-04 23:45:01 +00001564 // For nested local classes, we will instantiate the members when we
1565 // reach the end of the outermost (non-nested) local class.
1566 if (!D->isCXXClassMember())
1567 SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs,
1568 TSK_ImplicitInstantiation);
Richard Smithb0b68012015-05-11 23:09:06 +00001569
1570 // This class may have local implicit instantiations that need to be
1571 // performed within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00001572 LocalInstantiations.perform();
David Majnemer192d1792013-11-27 08:20:38 +00001573 }
Nico Weber72889432014-09-06 01:25:55 +00001574
1575 SemaRef.DiagnoseUnusedNestedTypedefs(Record);
1576
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001577 return Record;
1578}
1579
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001580/// Adjust the given function type for an instantiation of the
Douglas Gregor89f593a2012-09-13 21:56:43 +00001581/// given declaration, to cope with modifications to the function's type that
1582/// aren't reflected in the type-source information.
1583///
1584/// \param D The declaration we're instantiating.
1585/// \param TInfo The already-instantiated type.
1586static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1587 FunctionDecl *D,
1588 TypeSourceInfo *TInfo) {
Douglas Gregor1af8ad42012-09-13 22:01:49 +00001589 const FunctionProtoType *OrigFunc
1590 = D->getType()->castAs<FunctionProtoType>();
1591 const FunctionProtoType *NewFunc
1592 = TInfo->getType()->castAs<FunctionProtoType>();
1593 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1594 return TInfo->getType();
1595
1596 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1597 NewEPI.ExtInfo = OrigFunc->getExtInfo();
Alp Toker314cc812014-01-25 16:55:45 +00001598 return Context.getFunctionType(NewFunc->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00001599 NewFunc->getParamTypes(), NewEPI);
Douglas Gregor89f593a2012-09-13 21:56:43 +00001600}
1601
John McCallaa74a0c2009-08-28 07:59:38 +00001602/// Normal class members are of more specific types and therefore
Richard Smith4fa145152017-12-21 19:43:39 +00001603/// don't make it here. This function serves three purposes:
John McCallaa74a0c2009-08-28 07:59:38 +00001604/// 1) instantiating function templates
1605/// 2) substituting friend declarations
Richard Smith4fa145152017-12-21 19:43:39 +00001606/// 3) substituting deduction guide declarations for nested class templates
Douglas Gregor33636e62009-12-24 20:56:24 +00001607Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001608 TemplateParameterList *TemplateParams) {
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001609 // Check whether there is already a function template specialization for
1610 // this declaration.
1611 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCall2f88d7d2010-03-27 05:57:59 +00001612 if (FunctionTemplate && !TemplateParams) {
Richard Smith47752e42013-05-03 23:46:09 +00001613 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001614
Craig Topperc3ec1492014-05-26 06:22:03 +00001615 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001616 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001617 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001618
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001619 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001620 if (SpecFunc)
1621 return SpecFunc;
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001622 }
Mike Stump11289f42009-09-09 15:08:12 +00001623
John McCall2f88d7d2010-03-27 05:57:59 +00001624 bool isFriend;
1625 if (FunctionTemplate)
1626 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1627 else
1628 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1629
Craig Topperc3ec1492014-05-26 06:22:03 +00001630 bool MergeWithParentScope = (TemplateParams != nullptr) ||
Douglas Gregor9f44d142010-05-21 21:25:08 +00001631 Owner->isFunctionOrMethod() ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001632 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001633 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001634 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00001635
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001636 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie4d142962011-11-10 05:42:04 +00001637 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001638 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001639 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001640 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCall58de3582009-08-14 02:03:10 +00001641
Douglas Gregor14454802011-02-25 02:25:35 +00001642 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1643 if (QualifierLoc) {
1644 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1645 TemplateArgs);
1646 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001647 return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001648 }
1649
John McCallce410662010-02-06 01:50:47 +00001650 // If we're instantiating a local function declaration, put the result
Richard Smith541b38b2013-09-20 01:15:31 +00001651 // in the enclosing namespace; otherwise we need to find the instantiated
1652 // context.
John McCallce410662010-02-06 01:50:47 +00001653 DeclContext *DC;
Richard Smith541b38b2013-09-20 01:15:31 +00001654 if (D->isLocalExternDecl()) {
John McCallce410662010-02-06 01:50:47 +00001655 DC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001656 SemaRef.adjustContextForLocalExternDecl(DC);
1657 } else if (isFriend && QualifierLoc) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001658 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001659 SS.Adopt(QualifierLoc);
John McCalle0b2ddb2010-03-26 04:53:08 +00001660 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001661 if (!DC) return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001662 } else {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001663 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001664 TemplateArgs);
John McCalle0b2ddb2010-03-26 04:53:08 +00001665 }
John McCallce410662010-02-06 01:50:47 +00001666
Richard Smith4fa145152017-12-21 19:43:39 +00001667 DeclarationNameInfo NameInfo
1668 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1669
Richard Smithbc491202017-02-17 20:05:37 +00001670 FunctionDecl *Function;
Faisal Vali81b756e2017-10-22 14:45:08 +00001671 if (auto *DGuide = dyn_cast<CXXDeductionGuideDecl>(D)) {
Richard Smithbc491202017-02-17 20:05:37 +00001672 Function = CXXDeductionGuideDecl::Create(
Faisal Vali81b756e2017-10-22 14:45:08 +00001673 SemaRef.Context, DC, D->getInnerLocStart(), DGuide->isExplicit(),
Richard Smith4fa145152017-12-21 19:43:39 +00001674 NameInfo, T, TInfo, D->getSourceRange().getEnd());
Faisal Vali81b756e2017-10-22 14:45:08 +00001675 if (DGuide->isCopyDeductionCandidate())
1676 cast<CXXDeductionGuideDecl>(Function)->setIsCopyDeductionCandidate();
Richard Smithc660c8f2018-03-16 13:36:56 +00001677 Function->setAccess(D->getAccess());
Faisal Vali81b756e2017-10-22 14:45:08 +00001678 } else {
Richard Smithbc491202017-02-17 20:05:37 +00001679 Function = FunctionDecl::Create(
Richard Smith4fa145152017-12-21 19:43:39 +00001680 SemaRef.Context, DC, D->getInnerLocStart(), NameInfo, T, TInfo,
Richard Smithbc491202017-02-17 20:05:37 +00001681 D->getCanonicalDecl()->getStorageClass(), D->isInlineSpecified(),
1682 D->hasWrittenPrototype(), D->isConstexpr());
1683 Function->setRangeEnd(D->getSourceRange().getEnd());
1684 }
John McCall3e11ebe2010-03-15 10:12:16 +00001685
Richard Smithf3814ad2013-01-25 00:08:28 +00001686 if (D->isInlined())
1687 Function->setImplicitlyInline();
1688
Douglas Gregor14454802011-02-25 02:25:35 +00001689 if (QualifierLoc)
1690 Function->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001691
Richard Smith541b38b2013-09-20 01:15:31 +00001692 if (D->isLocalExternDecl())
1693 Function->setLocalExternDecl();
1694
John McCall30837102010-03-26 23:10:15 +00001695 DeclContext *LexicalDC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001696 if (!isFriend && D->isOutOfLine() && !D->isLocalExternDecl()) {
John McCall30837102010-03-26 23:10:15 +00001697 assert(D->getDeclContext()->isFileContext());
1698 LexicalDC = D->getDeclContext();
1699 }
1700
1701 Function->setLexicalDeclContext(LexicalDC);
Mike Stump11289f42009-09-09 15:08:12 +00001702
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001703 // Attach the parameters
Reid Klecknera09e44c2013-07-31 21:00:18 +00001704 for (unsigned P = 0; P < Params.size(); ++P)
1705 if (Params[P])
1706 Params[P]->setOwningFunction(Function);
David Blaikie9c70e042011-09-21 18:16:56 +00001707 Function->setParams(Params);
John McCallaa74a0c2009-08-28 07:59:38 +00001708
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001709 if (TemplateParams) {
1710 // Our resulting instantiation is actually a function template, since we
1711 // are substituting only the outer template parameters. For example, given
1712 //
1713 // template<typename T>
1714 // struct X {
1715 // template<typename U> friend void f(T, U);
1716 // };
1717 //
1718 // X<int> x;
1719 //
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001720 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001721 // which means substituting int for T, but leaving "f" as a friend function
1722 // template.
1723 // Build the function template itself.
John McCalle0b2ddb2010-03-26 04:53:08 +00001724 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001725 Function->getLocation(),
1726 Function->getDeclName(),
1727 TemplateParams, Function);
1728 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCall30837102010-03-26 23:10:15 +00001729
1730 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalle0b2ddb2010-03-26 04:53:08 +00001731
1732 if (isFriend && D->isThisDeclarationADefinition()) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001733 FunctionTemplate->setInstantiatedFromMemberTemplate(
1734 D->getDescribedFunctionTemplate());
1735 }
Douglas Gregorffe14e32009-11-14 01:20:54 +00001736 } else if (FunctionTemplate) {
1737 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001738 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001739 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001740 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00001741 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00001742 /*InsertPos=*/nullptr);
Richard Smith152bcd22017-01-28 02:56:07 +00001743 } else if (isFriend && D->isThisDeclarationADefinition()) {
1744 // Do not connect the friend to the template unless it's actually a
1745 // definition. We don't want non-template functions to be marked as being
1746 // template instantiations.
John McCalle0b2ddb2010-03-26 04:53:08 +00001747 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCallaa74a0c2009-08-28 07:59:38 +00001748 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001749
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001750 if (InitFunctionInstantiation(Function, D))
1751 Function->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001752
John McCallb9c78482010-04-08 09:05:18 +00001753 bool isExplicitSpecialization = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001754
Richard Smith541b38b2013-09-20 01:15:31 +00001755 LookupResult Previous(
1756 SemaRef, Function->getDeclName(), SourceLocation(),
1757 D->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
1758 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00001759 D->isLocalExternDecl() ? Sema::ForExternalRedeclaration
1760 : SemaRef.forRedeclarationInCurContext());
John McCall1f82f242009-11-18 22:49:29 +00001761
John McCallb9c78482010-04-08 09:05:18 +00001762 if (DependentFunctionTemplateSpecializationInfo *Info
1763 = D->getDependentSpecializationInfo()) {
1764 assert(isFriend && "non-friend has dependent specialization info?");
1765
1766 // This needs to be set now for future sanity.
Richard Smith64017682013-07-17 23:53:16 +00001767 Function->setObjectOfFriendDecl();
John McCallb9c78482010-04-08 09:05:18 +00001768
1769 // Instantiate the explicit template arguments.
1770 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1771 Info->getRAngleLoc());
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001772 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1773 ExplicitArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00001774 return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001775
1776 // Map the candidate templates to their instantiations.
1777 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1778 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1779 Info->getTemplate(I),
1780 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001781 if (!Temp) return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001782
1783 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1784 }
1785
1786 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1787 &ExplicitArgs,
1788 Previous))
1789 Function->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001790
John McCallb9c78482010-04-08 09:05:18 +00001791 isExplicitSpecialization = true;
1792
1793 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001794 // Look only into the namespace where the friend would be declared to
1795 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001796 // as described in ActOnFriendFunctionDecl.
John McCall1f82f242009-11-18 22:49:29 +00001797 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001798
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001799 // In C++, the previous declaration we find might be a tag type
1800 // (class or enum). In this case, the new declaration will hide the
1801 // tag type. Note that this does does not apply if we're declaring a
1802 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00001803 if (Previous.isSingleTagDecl())
1804 Previous.clear();
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001805 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001806
Serge Pavlov25dbe1a2017-06-21 12:46:57 +00001807 if (isFriend)
1808 Function->setObjectOfFriendDecl();
1809
Craig Topperc3ec1492014-05-26 06:22:03 +00001810 SemaRef.CheckFunctionDeclaration(/*Scope*/ nullptr, Function, Previous,
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +00001811 isExplicitSpecialization);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001812
John McCallb9467b62010-04-24 01:30:58 +00001813 NamedDecl *PrincipalDecl = (TemplateParams
1814 ? cast<NamedDecl>(FunctionTemplate)
1815 : Function);
1816
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001817 // If the original function was part of a friend declaration,
1818 // inherit its namespace state and add it to the owner.
John McCalle0b2ddb2010-03-26 04:53:08 +00001819 if (isFriend) {
Serge Pavlovacfcd782018-12-06 09:35:04 +00001820 Function->setObjectOfFriendDecl();
1821 if (FunctionTemplateDecl *FT = Function->getDescribedFunctionTemplate())
1822 FT->setObjectOfFriendDecl();
Richard Smith05afe5e2012-03-13 03:12:56 +00001823 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greif718d5152010-08-30 21:10:05 +00001824
Richard Smith91dfaac2014-02-03 02:37:59 +00001825 bool QueuedInstantiation = false;
Gabor Greif718d5152010-08-30 21:10:05 +00001826
Richard Smith91dfaac2014-02-03 02:37:59 +00001827 // C++11 [temp.friend]p4 (DR329):
1828 // When a function is defined in a friend function declaration in a class
1829 // template, the function is instantiated when the function is odr-used.
1830 // The same restrictions on multiple declarations and definitions that
1831 // apply to non-template function declarations and definitions also apply
1832 // to these implicit definitions.
1833 if (D->isThisDeclarationADefinition()) {
Serge Pavlove6e534c2018-03-01 07:04:11 +00001834 SemaRef.CheckForFunctionRedefinition(Function);
1835 if (!Function->isInvalidDecl()) {
1836 for (auto R : Function->redecls()) {
1837 if (R == Function)
1838 continue;
Richard Smith91dfaac2014-02-03 02:37:59 +00001839
Serge Pavlove6e534c2018-03-01 07:04:11 +00001840 // If some prior declaration of this function has been used, we need
1841 // to instantiate its definition.
1842 if (!QueuedInstantiation && R->isUsed(false)) {
1843 if (MemberSpecializationInfo *MSInfo =
1844 Function->getMemberSpecializationInfo()) {
1845 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1846 SourceLocation Loc = R->getLocation(); // FIXME
1847 MSInfo->setPointOfInstantiation(Loc);
1848 SemaRef.PendingLocalImplicitInstantiations.push_back(
1849 std::make_pair(Function, Loc));
1850 QueuedInstantiation = true;
1851 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001852 }
Richard Smith91dfaac2014-02-03 02:37:59 +00001853 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001854 }
1855 }
1856 }
Richard Smithf3597652017-05-10 00:01:13 +00001857
1858 // Check the template parameter list against the previous declaration. The
1859 // goal here is to pick up default arguments added since the friend was
1860 // declared; we know the template parameter lists match, since otherwise
1861 // we would not have picked this template as the previous declaration.
1862 if (TemplateParams && FunctionTemplate->getPreviousDecl()) {
1863 SemaRef.CheckTemplateParameterList(
1864 TemplateParams,
1865 FunctionTemplate->getPreviousDecl()->getTemplateParameters(),
1866 Function->isThisDeclarationADefinition()
1867 ? Sema::TPC_FriendFunctionTemplateDefinition
1868 : Sema::TPC_FriendFunctionTemplate);
1869 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001870 }
1871
Richard Smith541b38b2013-09-20 01:15:31 +00001872 if (Function->isLocalExternDecl() && !Function->getPreviousDecl())
1873 DC->makeDeclVisibleInContext(PrincipalDecl);
1874
John McCallb9467b62010-04-24 01:30:58 +00001875 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1876 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1877 PrincipalDecl->setNonMemberOperator();
1878
Alexis Hunt1fb4e762011-05-23 21:07:59 +00001879 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001880 return Function;
1881}
1882
Douglas Gregore704c9d2009-08-27 16:57:43 +00001883Decl *
1884TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichet00c7e6c2011-08-14 03:52:19 +00001885 TemplateParameterList *TemplateParams,
1886 bool IsClassScopeSpecialization) {
Douglas Gregor97628d62009-08-21 00:16:32 +00001887 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregore704c9d2009-08-27 16:57:43 +00001888 if (FunctionTemplate && !TemplateParams) {
Mike Stump11289f42009-09-09 15:08:12 +00001889 // We are creating a function template specialization from a function
1890 // template. Check whether there is already a function template
Douglas Gregore704c9d2009-08-27 16:57:43 +00001891 // specialization for this particular set of template arguments.
Richard Smith47752e42013-05-03 23:46:09 +00001892 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001893
Craig Topperc3ec1492014-05-26 06:22:03 +00001894 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001895 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001896 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001897
Douglas Gregor97628d62009-08-21 00:16:32 +00001898 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001899 if (SpecFunc)
1900 return SpecFunc;
Douglas Gregor97628d62009-08-21 00:16:32 +00001901 }
1902
John McCall2f88d7d2010-03-27 05:57:59 +00001903 bool isFriend;
1904 if (FunctionTemplate)
1905 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1906 else
1907 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1908
Craig Topperc3ec1492014-05-26 06:22:03 +00001909 bool MergeWithParentScope = (TemplateParams != nullptr) ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001910 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001911 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001912 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor37256522009-05-14 21:44:34 +00001913
John McCalld0e23ec2010-10-19 02:26:41 +00001914 // Instantiate enclosing template arguments for friends.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001915 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCalld0e23ec2010-10-19 02:26:41 +00001916 unsigned NumTempParamLists = 0;
1917 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
Benjamin Kramer9dc549b2015-08-04 14:46:06 +00001918 TempParamLists.resize(NumTempParamLists);
John McCalld0e23ec2010-10-19 02:26:41 +00001919 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1920 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1921 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1922 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001923 return nullptr;
John McCalld0e23ec2010-10-19 02:26:41 +00001924 TempParamLists[I] = InstParams;
1925 }
1926 }
1927
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001928 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramer1dd48bc2012-01-20 14:42:32 +00001929 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001930 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001931 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001932 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001933
Douglas Gregor14454802011-02-25 02:25:35 +00001934 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1935 if (QualifierLoc) {
1936 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCall2f88d7d2010-03-27 05:57:59 +00001937 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001938 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001939 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001940 }
1941
1942 DeclContext *DC = Owner;
1943 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001944 if (QualifierLoc) {
John McCall2f88d7d2010-03-27 05:57:59 +00001945 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001946 SS.Adopt(QualifierLoc);
John McCall2f88d7d2010-03-27 05:57:59 +00001947 DC = SemaRef.computeDeclContext(SS);
John McCall1a1b53e2010-10-19 05:01:53 +00001948
1949 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
Craig Topperc3ec1492014-05-26 06:22:03 +00001950 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001951 } else {
1952 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1953 D->getDeclContext(),
1954 TemplateArgs);
1955 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001956 if (!DC) return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001957 }
1958
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001959 // Build the instantiated method declaration.
John McCall2f88d7d2010-03-27 05:57:59 +00001960 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Craig Topperc3ec1492014-05-26 06:22:03 +00001961 CXXMethodDecl *Method = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001962
Abramo Bagnaradff19302011-03-08 08:55:46 +00001963 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001964 DeclarationNameInfo NameInfo
1965 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregore8394862009-08-21 22:43:28 +00001966 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001967 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001968 StartLoc, NameInfo, T, TInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001969 Constructor->isExplicit(),
Reid Kleckner0f764e52015-04-07 20:46:51 +00001970 Constructor->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001971 false, Constructor->isConstexpr());
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001972 Method->setRangeEnd(Constructor->getEndLoc());
Douglas Gregore8394862009-08-21 22:43:28 +00001973 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregore8394862009-08-21 22:43:28 +00001974 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001975 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001976 Destructor->isInlineSpecified(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00001977 false);
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001978 Method->setRangeEnd(Destructor->getEndLoc());
Douglas Gregor05155d82009-08-21 23:19:43 +00001979 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001980 Method = CXXConversionDecl::Create(
1981 SemaRef.Context, Record, StartLoc, NameInfo, T, TInfo,
1982 Conversion->isInlineSpecified(), Conversion->isExplicit(),
1983 Conversion->isConstexpr(), Conversion->getEndLoc());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001984 } else {
Rafael Espindola29cda592013-04-15 12:38:20 +00001985 StorageClass SC = D->isStatic() ? SC_Static : SC_None;
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001986 Method = CXXMethodDecl::Create(SemaRef.Context, Record, StartLoc, NameInfo,
1987 T, TInfo, SC, D->isInlineSpecified(),
1988 D->isConstexpr(), D->getEndLoc());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001989 }
Douglas Gregor97628d62009-08-21 00:16:32 +00001990
Richard Smithf3814ad2013-01-25 00:08:28 +00001991 if (D->isInlined())
1992 Method->setImplicitlyInline();
1993
Douglas Gregor14454802011-02-25 02:25:35 +00001994 if (QualifierLoc)
1995 Method->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001996
Douglas Gregore704c9d2009-08-27 16:57:43 +00001997 if (TemplateParams) {
1998 // Our resulting instantiation is actually a function template, since we
1999 // are substituting only the outer template parameters. For example, given
Mike Stump11289f42009-09-09 15:08:12 +00002000 //
Douglas Gregore704c9d2009-08-27 16:57:43 +00002001 // template<typename T>
2002 // struct X {
2003 // template<typename U> void f(T, U);
2004 // };
2005 //
2006 // X<int> x;
2007 //
2008 // We are instantiating the member template "f" within X<int>, which means
2009 // substituting int for T, but leaving "f" as a member function template.
2010 // Build the function template itself.
2011 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
2012 Method->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00002013 Method->getDeclName(),
Douglas Gregore704c9d2009-08-27 16:57:43 +00002014 TemplateParams, Method);
John McCall2f88d7d2010-03-27 05:57:59 +00002015 if (isFriend) {
2016 FunctionTemplate->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00002017 FunctionTemplate->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00002018 } else if (D->isOutOfLine())
Mike Stump11289f42009-09-09 15:08:12 +00002019 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregore704c9d2009-08-27 16:57:43 +00002020 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002021 } else if (FunctionTemplate) {
2022 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00002023 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00002024 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002025 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00002026 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00002027 /*InsertPos=*/nullptr);
John McCall2f88d7d2010-03-27 05:57:59 +00002028 } else if (!isFriend) {
Douglas Gregorffe14e32009-11-14 01:20:54 +00002029 // Record that this is an instantiation of a member function.
Douglas Gregord801b062009-10-07 23:56:10 +00002030 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002031 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002032
Mike Stump11289f42009-09-09 15:08:12 +00002033 // If we are instantiating a member function defined
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002034 // out-of-line, the instantiation will have the same lexical
2035 // context (which will be a namespace scope) as the template.
John McCall2f88d7d2010-03-27 05:57:59 +00002036 if (isFriend) {
John McCalld0e23ec2010-10-19 02:26:41 +00002037 if (NumTempParamLists)
Benjamin Kramer9cc210652015-08-05 09:40:49 +00002038 Method->setTemplateParameterListsInfo(
2039 SemaRef.Context,
2040 llvm::makeArrayRef(TempParamLists.data(), NumTempParamLists));
John McCalld0e23ec2010-10-19 02:26:41 +00002041
John McCall2f88d7d2010-03-27 05:57:59 +00002042 Method->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00002043 Method->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00002044 } else if (D->isOutOfLine())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002045 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00002046
Douglas Gregor21342092009-03-24 00:38:23 +00002047 // Attach the parameters
2048 for (unsigned P = 0; P < Params.size(); ++P)
2049 Params[P]->setOwningFunction(Method);
David Blaikie9c70e042011-09-21 18:16:56 +00002050 Method->setParams(Params);
Douglas Gregor21342092009-03-24 00:38:23 +00002051
2052 if (InitMethodInstantiation(Method, D))
2053 Method->setInvalidDecl();
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002054
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002055 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002056 Sema::ForExternalRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00002057
John McCall2f88d7d2010-03-27 05:57:59 +00002058 if (!FunctionTemplate || TemplateParams || isFriend) {
2059 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump11289f42009-09-09 15:08:12 +00002060
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002061 // In C++, the previous declaration we find might be a tag type
2062 // (class or enum). In this case, the new declaration will hide the
2063 // tag type. Note that this does does not apply if we're declaring a
2064 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00002065 if (Previous.isSingleTagDecl())
2066 Previous.clear();
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002067 }
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002068
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002069 if (!IsClassScopeSpecialization)
Craig Topperc3ec1492014-05-26 06:22:03 +00002070 SemaRef.CheckFunctionDeclaration(nullptr, Method, Previous, false);
Douglas Gregor05155d82009-08-21 23:19:43 +00002071
Douglas Gregor21920e372009-12-01 17:24:26 +00002072 if (D->isPure())
2073 SemaRef.CheckPureMethod(Method, SourceRange());
2074
John McCalla0a96892012-08-10 03:15:35 +00002075 // Propagate access. For a non-friend declaration, the access is
2076 // whatever we're propagating from. For a friend, it should be the
2077 // previous declaration we just found.
2078 if (isFriend && Method->getPreviousDecl())
2079 Method->setAccess(Method->getPreviousDecl()->getAccess());
Fangrui Song6907ce22018-07-30 19:24:48 +00002080 else
John McCalla0a96892012-08-10 03:15:35 +00002081 Method->setAccess(D->getAccess());
2082 if (FunctionTemplate)
2083 FunctionTemplate->setAccess(Method->getAccess());
John McCall401982f2010-01-20 21:53:11 +00002084
Anders Carlsson7c812f52011-01-20 06:52:44 +00002085 SemaRef.CheckOverrideControl(Method);
2086
Eli Friedman41340732011-11-15 22:39:08 +00002087 // If a function is defined as defaulted or deleted, mark it as such now.
Richard Smith92f241f2012-12-08 02:53:02 +00002088 if (D->isExplicitlyDefaulted())
2089 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002090 if (D->isDeletedAsWritten())
Richard Smith92f241f2012-12-08 02:53:02 +00002091 SemaRef.SetDeclDeleted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002092
John McCalla0a96892012-08-10 03:15:35 +00002093 // If there's a function template, let our caller handle it.
John McCall2f88d7d2010-03-27 05:57:59 +00002094 if (FunctionTemplate) {
John McCalla0a96892012-08-10 03:15:35 +00002095 // do nothing
2096
2097 // Don't hide a (potentially) valid declaration with an invalid one.
John McCall2f88d7d2010-03-27 05:57:59 +00002098 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCalla0a96892012-08-10 03:15:35 +00002099 // do nothing
2100
2101 // Otherwise, check access to friends and make them visible.
2102 } else if (isFriend) {
2103 // We only need to re-check access for methods which we didn't
2104 // manage to match during parsing.
2105 if (!D->getPreviousDecl())
2106 SemaRef.CheckFriendAccess(Method);
2107
2108 Record->makeDeclVisibleInContext(Method);
2109
2110 // Otherwise, add the declaration. We don't need to do this for
2111 // class-scope specializations because we'll have matched them with
2112 // the appropriate template.
2113 } else if (!IsClassScopeSpecialization) {
2114 Owner->addDecl(Method);
John McCall2f88d7d2010-03-27 05:57:59 +00002115 }
Alexis Hunt1fb4e762011-05-23 21:07:59 +00002116
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002117 return Method;
2118}
2119
Douglas Gregor4044d992009-03-24 16:43:20 +00002120Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002121 return VisitCXXMethodDecl(D);
Douglas Gregor4044d992009-03-24 16:43:20 +00002122}
2123
Douglas Gregor654b07e2009-03-24 00:15:49 +00002124Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore8394862009-08-21 22:43:28 +00002125 return VisitCXXMethodDecl(D);
Douglas Gregor654b07e2009-03-24 00:15:49 +00002126}
2127
Douglas Gregor1880ba52009-03-25 00:34:44 +00002128Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor05155d82009-08-21 23:19:43 +00002129 return VisitCXXMethodDecl(D);
Douglas Gregor1880ba52009-03-25 00:34:44 +00002130}
2131
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002132Decl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
David Blaikie7a30dc52013-02-21 01:47:18 +00002133 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, None,
2134 /*ExpectParameterPack=*/ false);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002135}
2136
John McCall87a44eb2009-08-20 01:44:21 +00002137Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
2138 TemplateTypeParmDecl *D) {
2139 // TODO: don't always clone when decls are refcounted.
Chandler Carruth08836322011-05-01 00:51:33 +00002140 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump11289f42009-09-09 15:08:12 +00002141
Richard Smithb4f96252017-02-21 06:30:38 +00002142 TemplateTypeParmDecl *Inst = TemplateTypeParmDecl::Create(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002143 SemaRef.Context, Owner, D->getBeginLoc(), D->getLocation(),
Richard Smithb4f96252017-02-21 06:30:38 +00002144 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(), D->getIndex(),
2145 D->getIdentifier(), D->wasDeclaredWithTypename(), D->isParameterPack());
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002146 Inst->setAccess(AS_public);
John McCall87a44eb2009-08-20 01:44:21 +00002147
Richard Smith52933792015-06-16 21:57:05 +00002148 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002149 TypeSourceInfo *InstantiatedDefaultArg =
2150 SemaRef.SubstType(D->getDefaultArgumentInfo(), TemplateArgs,
2151 D->getDefaultArgumentLoc(), D->getDeclName());
2152 if (InstantiatedDefaultArg)
Richard Smith1469b912015-06-10 00:29:03 +00002153 Inst->setDefaultArgument(InstantiatedDefaultArg);
David Majnemer89189202013-08-28 23:48:32 +00002154 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002155
2156 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002157 // scope.
2158 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002159
John McCall87a44eb2009-08-20 01:44:21 +00002160 return Inst;
2161}
2162
Douglas Gregor6b815c82009-10-23 23:25:44 +00002163Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
2164 NonTypeTemplateParmDecl *D) {
2165 // Substitute into the type of the non-type template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002166 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002167 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
2168 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002169 bool IsExpandedParameterPack = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002170 TypeSourceInfo *DI;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002171 QualType T;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002172 bool Invalid = false;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002173
2174 if (D->isExpandedParameterPack()) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002175 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002176 // expansion of types. Substitute into each of the expanded types.
2177 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
2178 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
2179 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Richard Smith15361a22016-12-28 06:27:18 +00002180 TypeSourceInfo *NewDI =
2181 SemaRef.SubstType(D->getExpansionTypeSourceInfo(I), TemplateArgs,
2182 D->getLocation(), D->getDeclName());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002183 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002184 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002185
Richard Smith15361a22016-12-28 06:27:18 +00002186 QualType NewT =
2187 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002188 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002189 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002190
2191 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002192 ExpandedParameterPackTypes.push_back(NewT);
2193 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002194
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002195 IsExpandedParameterPack = true;
2196 DI = D->getTypeSourceInfo();
2197 T = DI->getType();
Richard Smith1fde8ec2012-09-07 02:06:42 +00002198 } else if (D->isPackExpansion()) {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002199 // The non-type template parameter pack's type is a pack expansion of types.
2200 // Determine whether we need to expand this parameter pack into separate
2201 // types.
David Blaikie6adc78e2013-02-18 22:06:02 +00002202 PackExpansionTypeLoc Expansion = TL.castAs<PackExpansionTypeLoc>();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002203 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002204 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002205 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002206
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002207 // Determine whether the set of unexpanded parameter packs can and should
2208 // be expanded.
2209 bool Expand = true;
2210 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002211 Optional<unsigned> OrigNumExpansions
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002212 = Expansion.getTypePtr()->getNumExpansions();
David Blaikie05785d12013-02-20 22:23:23 +00002213 Optional<unsigned> NumExpansions = OrigNumExpansions;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002214 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
2215 Pattern.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00002216 Unexpanded,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002217 TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002218 Expand, RetainExpansion,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002219 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002220 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002221
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002222 if (Expand) {
2223 for (unsigned I = 0; I != *NumExpansions; ++I) {
2224 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2225 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002226 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002227 D->getDeclName());
2228 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002229 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002230
Richard Smith15361a22016-12-28 06:27:18 +00002231 QualType NewT =
2232 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002233 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002234 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002235
2236 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002237 ExpandedParameterPackTypes.push_back(NewT);
2238 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002239
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002240 // Note that we have an expanded parameter pack. The "type" of this
2241 // expanded parameter pack is the original expansion type, but callers
2242 // will end up using the expanded parameter pack types for type-checking.
2243 IsExpandedParameterPack = true;
2244 DI = D->getTypeSourceInfo();
2245 T = DI->getType();
2246 } else {
2247 // We cannot fully expand the pack expansion now, so substitute into the
2248 // pattern and create a new pack expansion type.
2249 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2250 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002251 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002252 D->getDeclName());
2253 if (!NewPattern)
Craig Topperc3ec1492014-05-26 06:22:03 +00002254 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002255
Richard Smith15361a22016-12-28 06:27:18 +00002256 SemaRef.CheckNonTypeTemplateParameterType(NewPattern, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002257 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
2258 NumExpansions);
2259 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002260 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002261
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002262 T = DI->getType();
2263 }
2264 } else {
2265 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002266 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002267 D->getLocation(), D->getDeclName());
2268 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002269 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002270
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002271 // Check that this type is acceptable for a non-type template parameter.
Richard Smith15361a22016-12-28 06:27:18 +00002272 T = SemaRef.CheckNonTypeTemplateParameterType(DI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002273 if (T.isNull()) {
2274 T = SemaRef.Context.IntTy;
2275 Invalid = true;
2276 }
Douglas Gregor6b815c82009-10-23 23:25:44 +00002277 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002278
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002279 NonTypeTemplateParmDecl *Param;
2280 if (IsExpandedParameterPack)
David Majnemerdfecf1a2016-07-06 04:19:16 +00002281 Param = NonTypeTemplateParmDecl::Create(
2282 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
Richard Smithb4f96252017-02-21 06:30:38 +00002283 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2284 D->getPosition(), D->getIdentifier(), T, DI, ExpandedParameterPackTypes,
David Majnemerdfecf1a2016-07-06 04:19:16 +00002285 ExpandedParameterPackTypesAsWritten);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002286 else
Richard Smithb4f96252017-02-21 06:30:38 +00002287 Param = NonTypeTemplateParmDecl::Create(
2288 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
2289 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2290 D->getPosition(), D->getIdentifier(), T, D->isParameterPack(), DI);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002291
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002292 Param->setAccess(AS_public);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002293 if (Invalid)
2294 Param->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002295
Richard Smith52933792015-06-16 21:57:05 +00002296 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
Faisal Valid143a0c2017-04-01 21:30:49 +00002297 EnterExpressionEvaluationContext ConstantEvaluated(
2298 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
David Majnemer89189202013-08-28 23:48:32 +00002299 ExprResult Value = SemaRef.SubstExpr(D->getDefaultArgument(), TemplateArgs);
2300 if (!Value.isInvalid())
Richard Smith1469b912015-06-10 00:29:03 +00002301 Param->setDefaultArgument(Value.get());
David Majnemer89189202013-08-28 23:48:32 +00002302 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002303
2304 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002305 // scope.
2306 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002307 return Param;
2308}
2309
Richard Smith1fde8ec2012-09-07 02:06:42 +00002310static void collectUnexpandedParameterPacks(
2311 Sema &S,
2312 TemplateParameterList *Params,
2313 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Davide Italiano18960b92015-07-02 19:20:11 +00002314 for (const auto &P : *Params) {
2315 if (P->isTemplateParameterPack())
Richard Smith1fde8ec2012-09-07 02:06:42 +00002316 continue;
Davide Italiano18960b92015-07-02 19:20:11 +00002317 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002318 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
2319 Unexpanded);
Davide Italiano18960b92015-07-02 19:20:11 +00002320 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002321 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
2322 Unexpanded);
2323 }
2324}
2325
Anders Carlsson4bd78752009-08-28 15:18:15 +00002326Decl *
Douglas Gregor38fee962009-11-11 16:58:32 +00002327TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
2328 TemplateTemplateParmDecl *D) {
2329 // Instantiate the template parameter list of the template template parameter.
2330 TemplateParameterList *TempParams = D->getTemplateParameters();
2331 TemplateParameterList *InstParams;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002332 SmallVector<TemplateParameterList*, 8> ExpandedParams;
2333
2334 bool IsExpandedParameterPack = false;
2335
2336 if (D->isExpandedParameterPack()) {
2337 // The template template parameter pack is an already-expanded pack
2338 // expansion of template parameters. Substitute into each of the expanded
2339 // parameters.
2340 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
2341 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2342 I != N; ++I) {
2343 LocalInstantiationScope Scope(SemaRef);
2344 TemplateParameterList *Expansion =
2345 SubstTemplateParams(D->getExpansionTemplateParameters(I));
2346 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002347 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002348 ExpandedParams.push_back(Expansion);
2349 }
2350
2351 IsExpandedParameterPack = true;
2352 InstParams = TempParams;
2353 } else if (D->isPackExpansion()) {
2354 // The template template parameter pack expands to a pack of template
2355 // template parameters. Determine whether we need to expand this parameter
2356 // pack into separate parameters.
2357 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2358 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
2359 Unexpanded);
2360
2361 // Determine whether the set of unexpanded parameter packs can and should
2362 // be expanded.
2363 bool Expand = true;
2364 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002365 Optional<unsigned> NumExpansions;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002366 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
2367 TempParams->getSourceRange(),
2368 Unexpanded,
2369 TemplateArgs,
2370 Expand, RetainExpansion,
2371 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002372 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002373
2374 if (Expand) {
2375 for (unsigned I = 0; I != *NumExpansions; ++I) {
2376 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2377 LocalInstantiationScope Scope(SemaRef);
2378 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
2379 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002380 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002381 ExpandedParams.push_back(Expansion);
2382 }
2383
2384 // Note that we have an expanded parameter pack. The "type" of this
2385 // expanded parameter pack is the original expansion type, but callers
2386 // will end up using the expanded parameter pack types for type-checking.
2387 IsExpandedParameterPack = true;
2388 InstParams = TempParams;
2389 } else {
2390 // We cannot fully expand the pack expansion now, so just substitute
2391 // into the pattern.
2392 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2393
2394 LocalInstantiationScope Scope(SemaRef);
2395 InstParams = SubstTemplateParams(TempParams);
2396 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002397 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002398 }
2399 } else {
Douglas Gregor38fee962009-11-11 16:58:32 +00002400 // Perform the actual substitution of template parameters within a new,
2401 // local instantiation scope.
John McCall19c1bfd2010-08-25 05:32:35 +00002402 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor38fee962009-11-11 16:58:32 +00002403 InstParams = SubstTemplateParams(TempParams);
2404 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002405 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002406 }
2407
Douglas Gregor38fee962009-11-11 16:58:32 +00002408 // Build the template template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00002409 TemplateTemplateParmDecl *Param;
2410 if (IsExpandedParameterPack)
Richard Smithb4f96252017-02-21 06:30:38 +00002411 Param = TemplateTemplateParmDecl::Create(
2412 SemaRef.Context, Owner, D->getLocation(),
2413 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2414 D->getPosition(), D->getIdentifier(), InstParams, ExpandedParams);
Richard Smith1fde8ec2012-09-07 02:06:42 +00002415 else
Richard Smithb4f96252017-02-21 06:30:38 +00002416 Param = TemplateTemplateParmDecl::Create(
2417 SemaRef.Context, Owner, D->getLocation(),
2418 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2419 D->getPosition(), D->isParameterPack(), D->getIdentifier(), InstParams);
Richard Smith52933792015-06-16 21:57:05 +00002420 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002421 NestedNameSpecifierLoc QualifierLoc =
2422 D->getDefaultArgument().getTemplateQualifierLoc();
2423 QualifierLoc =
2424 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgs);
2425 TemplateName TName = SemaRef.SubstTemplateName(
2426 QualifierLoc, D->getDefaultArgument().getArgument().getAsTemplate(),
2427 D->getDefaultArgument().getTemplateNameLoc(), TemplateArgs);
2428 if (!TName.isNull())
2429 Param->setDefaultArgument(
Richard Smith1469b912015-06-10 00:29:03 +00002430 SemaRef.Context,
David Majnemer89189202013-08-28 23:48:32 +00002431 TemplateArgumentLoc(TemplateArgument(TName),
2432 D->getDefaultArgument().getTemplateQualifierLoc(),
Richard Smith1469b912015-06-10 00:29:03 +00002433 D->getDefaultArgument().getTemplateNameLoc()));
David Majnemer89189202013-08-28 23:48:32 +00002434 }
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002435 Param->setAccess(AS_public);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002436
2437 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor38fee962009-11-11 16:58:32 +00002438 // scope.
2439 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002440
Douglas Gregor38fee962009-11-11 16:58:32 +00002441 return Param;
2442}
2443
Douglas Gregore0b28662009-11-17 06:07:40 +00002444Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregor12441b32011-02-25 16:33:46 +00002445 // Using directives are never dependent (and never contain any types or
2446 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002447
Douglas Gregore0b28662009-11-17 06:07:40 +00002448 UsingDirectiveDecl *Inst
2449 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002450 D->getNamespaceKeyLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00002451 D->getQualifierLoc(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002452 D->getIdentLocation(),
2453 D->getNominatedNamespace(),
Douglas Gregore0b28662009-11-17 06:07:40 +00002454 D->getCommonAncestor());
Abramo Bagnara8843f9f2012-09-05 09:55:10 +00002455
2456 // Add the using directive to its declaration context
2457 // only if this is not a function or method.
2458 if (!Owner->isFunctionOrMethod())
2459 Owner->addDecl(Inst);
2460
Douglas Gregore0b28662009-11-17 06:07:40 +00002461 return Inst;
2462}
2463
John McCallb96ec562009-12-04 22:46:56 +00002464Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorac2e4302010-09-29 17:58:28 +00002465
2466 // The nested name specifier may be dependent, for example
2467 // template <typename T> struct t {
2468 // struct s1 { T f1(); };
2469 // struct s2 : s1 { using s1::f1; };
2470 // };
2471 // template struct t<int>;
2472 // Here, in using s1::f1, s1 refers to t<T>::s1;
2473 // we need to substitute for t<int>::s1.
Douglas Gregor0499ab62011-02-25 15:54:31 +00002474 NestedNameSpecifierLoc QualifierLoc
2475 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
2476 TemplateArgs);
2477 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002478 return nullptr;
Douglas Gregorac2e4302010-09-29 17:58:28 +00002479
Richard Smith5179eb72016-06-28 19:03:57 +00002480 // For an inheriting constructor declaration, the name of the using
2481 // declaration is the name of a constructor in this class, not in the
2482 // base class.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002483 DeclarationNameInfo NameInfo = D->getNameInfo();
Richard Smith5179eb72016-06-28 19:03:57 +00002484 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
2485 if (auto *RD = dyn_cast<CXXRecordDecl>(SemaRef.CurContext))
2486 NameInfo.setName(SemaRef.Context.DeclarationNames.getCXXConstructorName(
2487 SemaRef.Context.getCanonicalType(SemaRef.Context.getRecordType(RD))));
John McCallb96ec562009-12-04 22:46:56 +00002488
John McCall84d87672009-12-10 09:41:52 +00002489 // We only need to do redeclaration lookups if we're in a class
2490 // scope (in fact, it's not really even possible in non-class
2491 // scopes).
2492 bool CheckRedeclaration = Owner->isRecord();
2493
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002494 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002495 Sema::ForVisibleRedeclaration);
John McCall84d87672009-12-10 09:41:52 +00002496
John McCallb96ec562009-12-04 22:46:56 +00002497 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002498 D->getUsingLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002499 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002500 NameInfo,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002501 D->hasTypename());
John McCallb96ec562009-12-04 22:46:56 +00002502
Douglas Gregor0499ab62011-02-25 15:54:31 +00002503 CXXScopeSpec SS;
2504 SS.Adopt(QualifierLoc);
John McCall84d87672009-12-10 09:41:52 +00002505 if (CheckRedeclaration) {
2506 Prev.setHideTags(false);
2507 SemaRef.LookupQualifiedName(Prev, Owner);
2508
2509 // Check for invalid redeclarations.
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002510 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLoc(),
2511 D->hasTypename(), SS,
John McCall84d87672009-12-10 09:41:52 +00002512 D->getLocation(), Prev))
2513 NewUD->setInvalidDecl();
2514
2515 }
2516
2517 if (!NewUD->isInvalidDecl() &&
Richard Smithd8a9e372016-12-18 21:39:37 +00002518 SemaRef.CheckUsingDeclQualifier(D->getUsingLoc(), D->hasTypename(),
2519 SS, NameInfo, D->getLocation()))
John McCallb96ec562009-12-04 22:46:56 +00002520 NewUD->setInvalidDecl();
John McCall84d87672009-12-10 09:41:52 +00002521
John McCallb96ec562009-12-04 22:46:56 +00002522 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
2523 NewUD->setAccess(D->getAccess());
2524 Owner->addDecl(NewUD);
2525
John McCall84d87672009-12-10 09:41:52 +00002526 // Don't process the shadow decls for an invalid decl.
2527 if (NewUD->isInvalidDecl())
2528 return NewUD;
2529
Richard Smith5179eb72016-06-28 19:03:57 +00002530 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
Richard Smith09d5b3a2014-05-01 00:35:04 +00002531 SemaRef.CheckInheritingConstructorUsingDecl(NewUD);
Richard Smith23d55872012-04-02 01:30:27 +00002532
John McCalla1d85502009-12-22 22:26:37 +00002533 bool isFunctionScope = Owner->isFunctionOrMethod();
2534
John McCall84d87672009-12-10 09:41:52 +00002535 // Process the shadow decls.
Aaron Ballman91cdc282014-03-13 18:07:29 +00002536 for (auto *Shadow : D->shadows()) {
Richard Smith5179eb72016-06-28 19:03:57 +00002537 // FIXME: UsingShadowDecl doesn't preserve its immediate target, so
2538 // reconstruct it in the case where it matters.
2539 NamedDecl *OldTarget = Shadow->getTargetDecl();
2540 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow))
2541 if (auto *BaseShadow = CUSD->getNominatedBaseClassShadowDecl())
2542 OldTarget = BaseShadow;
2543
John McCall84d87672009-12-10 09:41:52 +00002544 NamedDecl *InstTarget =
Richard Smithfd8634a2013-10-23 02:17:46 +00002545 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
Richard Smith5179eb72016-06-28 19:03:57 +00002546 Shadow->getLocation(), OldTarget, TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00002547 if (!InstTarget)
Craig Topperc3ec1492014-05-26 06:22:03 +00002548 return nullptr;
John McCall84d87672009-12-10 09:41:52 +00002549
Craig Topperc3ec1492014-05-26 06:22:03 +00002550 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00002551 if (CheckRedeclaration) {
2552 if (SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev, PrevDecl))
2553 continue;
Richard Smith41c79d92014-10-11 00:37:16 +00002554 } else if (UsingShadowDecl *OldPrev =
2555 getPreviousDeclForInstantiation(Shadow)) {
Richard Smithfd8634a2013-10-23 02:17:46 +00002556 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl(
2557 Shadow->getLocation(), OldPrev, TemplateArgs));
2558 }
John McCall84d87672009-12-10 09:41:52 +00002559
Richard Smithfd8634a2013-10-23 02:17:46 +00002560 UsingShadowDecl *InstShadow =
Craig Topperc3ec1492014-05-26 06:22:03 +00002561 SemaRef.BuildUsingShadowDecl(/*Scope*/nullptr, NewUD, InstTarget,
2562 PrevDecl);
John McCall84d87672009-12-10 09:41:52 +00002563 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCalla1d85502009-12-22 22:26:37 +00002564
2565 if (isFunctionScope)
2566 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall84d87672009-12-10 09:41:52 +00002567 }
John McCallb96ec562009-12-04 22:46:56 +00002568
2569 return NewUD;
2570}
2571
2572Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall84d87672009-12-10 09:41:52 +00002573 // Ignore these; we handle them in bulk when processing the UsingDecl.
Craig Topperc3ec1492014-05-26 06:22:03 +00002574 return nullptr;
John McCallb96ec562009-12-04 22:46:56 +00002575}
2576
Richard Smith5179eb72016-06-28 19:03:57 +00002577Decl *TemplateDeclInstantiator::VisitConstructorUsingShadowDecl(
2578 ConstructorUsingShadowDecl *D) {
2579 // Ignore these; we handle them in bulk when processing the UsingDecl.
2580 return nullptr;
2581}
2582
Richard Smith151c4562016-12-20 21:35:28 +00002583template <typename T>
2584Decl *TemplateDeclInstantiator::instantiateUnresolvedUsingDecl(
2585 T *D, bool InstantiatingPackElement) {
2586 // If this is a pack expansion, expand it now.
2587 if (D->isPackExpansion() && !InstantiatingPackElement) {
2588 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2589 SemaRef.collectUnexpandedParameterPacks(D->getQualifierLoc(), Unexpanded);
2590 SemaRef.collectUnexpandedParameterPacks(D->getNameInfo(), Unexpanded);
2591
2592 // Determine whether the set of unexpanded parameter packs can and should
2593 // be expanded.
2594 bool Expand = true;
2595 bool RetainExpansion = false;
2596 Optional<unsigned> NumExpansions;
2597 if (SemaRef.CheckParameterPacksForExpansion(
2598 D->getEllipsisLoc(), D->getSourceRange(), Unexpanded, TemplateArgs,
2599 Expand, RetainExpansion, NumExpansions))
2600 return nullptr;
2601
2602 // This declaration cannot appear within a function template signature,
2603 // so we can't have a partial argument list for a parameter pack.
2604 assert(!RetainExpansion &&
2605 "should never need to retain an expansion for UsingPackDecl");
2606
2607 if (!Expand) {
2608 // We cannot fully expand the pack expansion now, so substitute into the
2609 // pattern and create a new pack expansion.
2610 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2611 return instantiateUnresolvedUsingDecl(D, true);
2612 }
2613
2614 // Within a function, we don't have any normal way to check for conflicts
2615 // between shadow declarations from different using declarations in the
2616 // same pack expansion, but this is always ill-formed because all expansions
2617 // must produce (conflicting) enumerators.
2618 //
2619 // Sadly we can't just reject this in the template definition because it
2620 // could be valid if the pack is empty or has exactly one expansion.
2621 if (D->getDeclContext()->isFunctionOrMethod() && *NumExpansions > 1) {
2622 SemaRef.Diag(D->getEllipsisLoc(),
2623 diag::err_using_decl_redeclaration_expansion);
2624 return nullptr;
2625 }
2626
2627 // Instantiate the slices of this pack and build a UsingPackDecl.
2628 SmallVector<NamedDecl*, 8> Expansions;
2629 for (unsigned I = 0; I != *NumExpansions; ++I) {
2630 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2631 Decl *Slice = instantiateUnresolvedUsingDecl(D, true);
2632 if (!Slice)
2633 return nullptr;
2634 // Note that we can still get unresolved using declarations here, if we
2635 // had arguments for all packs but the pattern also contained other
2636 // template arguments (this only happens during partial substitution, eg
2637 // into the body of a generic lambda in a function template).
2638 Expansions.push_back(cast<NamedDecl>(Slice));
2639 }
2640
2641 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2642 if (isDeclWithinFunction(D))
2643 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2644 return NewD;
2645 }
2646
2647 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D);
2648 SourceLocation TypenameLoc = TD ? TD->getTypenameLoc() : SourceLocation();
2649
Douglas Gregor0499ab62011-02-25 15:54:31 +00002650 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002651 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002652 TemplateArgs);
2653 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002654 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002655
Anders Carlsson4bd78752009-08-28 15:18:15 +00002656 CXXScopeSpec SS;
Douglas Gregor0499ab62011-02-25 15:54:31 +00002657 SS.Adopt(QualifierLoc);
Mike Stump11289f42009-09-09 15:08:12 +00002658
Daniel Jasper9949ead2016-12-19 10:09:25 +00002659 DeclarationNameInfo NameInfo
2660 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2661
Richard Smith151c4562016-12-20 21:35:28 +00002662 // Produce a pack expansion only if we're not instantiating a particular
2663 // slice of a pack expansion.
2664 bool InstantiatingSlice = D->getEllipsisLoc().isValid() &&
2665 SemaRef.ArgumentPackSubstitutionIndex != -1;
2666 SourceLocation EllipsisLoc =
2667 InstantiatingSlice ? SourceLocation() : D->getEllipsisLoc();
2668
2669 NamedDecl *UD = SemaRef.BuildUsingDeclaration(
2670 /*Scope*/ nullptr, D->getAccess(), D->getUsingLoc(),
Erich Keanec480f302018-07-12 21:09:05 +00002671 /*HasTypename*/ TD, TypenameLoc, SS, NameInfo, EllipsisLoc,
2672 ParsedAttributesView(),
Richard Smith151c4562016-12-20 21:35:28 +00002673 /*IsInstantiation*/ true);
Daniel Jasper9949ead2016-12-19 10:09:25 +00002674 if (UD)
2675 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
2676
2677 return UD;
Richard Smith22a250c2016-12-19 04:08:53 +00002678}
2679
Richard Smith151c4562016-12-20 21:35:28 +00002680Decl *TemplateDeclInstantiator::VisitUnresolvedUsingTypenameDecl(
2681 UnresolvedUsingTypenameDecl *D) {
2682 return instantiateUnresolvedUsingDecl(D);
2683}
2684
2685Decl *TemplateDeclInstantiator::VisitUnresolvedUsingValueDecl(
2686 UnresolvedUsingValueDecl *D) {
2687 return instantiateUnresolvedUsingDecl(D);
2688}
2689
2690Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) {
2691 SmallVector<NamedDecl*, 8> Expansions;
2692 for (auto *UD : D->expansions()) {
George Burgess IV00f70bd2018-03-01 05:43:23 +00002693 if (NamedDecl *NewUD =
Richard Smith151c4562016-12-20 21:35:28 +00002694 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs))
George Burgess IV00f70bd2018-03-01 05:43:23 +00002695 Expansions.push_back(NewUD);
Richard Smith151c4562016-12-20 21:35:28 +00002696 else
2697 return nullptr;
2698 }
2699
2700 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2701 if (isDeclWithinFunction(D))
2702 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2703 return NewD;
2704}
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002705
2706Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
Richard Smith6e671422018-12-04 22:26:32 +00002707 ClassScopeFunctionSpecializationDecl *Decl) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002708 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nick Lewycky0b727732015-01-02 01:33:12 +00002709 CXXMethodDecl *NewFD =
2710 cast_or_null<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, nullptr, true));
2711 if (!NewFD)
2712 return nullptr;
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002713
Richard Smith6e671422018-12-04 22:26:32 +00002714 TemplateArgumentListInfo ExplicitTemplateArgs;
2715 TemplateArgumentListInfo *ExplicitTemplateArgsPtr = nullptr;
Nico Weber7b5a7162012-06-25 17:21:05 +00002716 if (Decl->hasExplicitTemplateArgs()) {
Richard Smith6e671422018-12-04 22:26:32 +00002717 if (SemaRef.Subst(Decl->templateArgs().getArgumentArray(),
2718 Decl->templateArgs().size(), ExplicitTemplateArgs,
2719 TemplateArgs))
2720 return nullptr;
2721 ExplicitTemplateArgsPtr = &ExplicitTemplateArgs;
Nico Weber7b5a7162012-06-25 17:21:05 +00002722 }
2723
Richard Smith6e671422018-12-04 22:26:32 +00002724 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
2725 Sema::ForExternalRedeclaration);
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002726 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Richard Smith6e671422018-12-04 22:26:32 +00002727 if (SemaRef.CheckFunctionTemplateSpecialization(
2728 NewFD, ExplicitTemplateArgsPtr, Previous)) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002729 NewFD->setInvalidDecl();
2730 return NewFD;
2731 }
2732
2733 // Associate the specialization with the pattern.
2734 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2735 assert(Specialization && "Class scope Specialization is null");
2736 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2737
Richard Smithc660c8f2018-03-16 13:36:56 +00002738 // FIXME: If this is a definition, check for redefinition errors!
2739
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002740 return NewFD;
2741}
2742
Alexey Bataeva769e072013-03-22 06:34:35 +00002743Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl(
2744 OMPThreadPrivateDecl *D) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002745 SmallVector<Expr *, 5> Vars;
Aaron Ballman2205d2a2014-03-14 15:55:35 +00002746 for (auto *I : D->varlists()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002747 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
Alexey Bataeva769e072013-03-22 06:34:35 +00002748 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr");
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002749 Vars.push_back(Var);
Alexey Bataeva769e072013-03-22 06:34:35 +00002750 }
2751
2752 OMPThreadPrivateDecl *TD =
2753 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars);
2754
Alexey Bataevd3db6ac2014-03-07 09:46:29 +00002755 TD->setAccess(AS_public);
2756 Owner->addDecl(TD);
2757
Alexey Bataeva769e072013-03-22 06:34:35 +00002758 return TD;
2759}
2760
Kelvin Li1408f912018-09-26 04:28:39 +00002761Decl *TemplateDeclInstantiator::VisitOMPRequiresDecl(OMPRequiresDecl *D) {
2762 llvm_unreachable(
2763 "Requires directive cannot be instantiated within a dependent context");
2764}
2765
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002766Decl *TemplateDeclInstantiator::VisitOMPDeclareReductionDecl(
2767 OMPDeclareReductionDecl *D) {
2768 // Instantiate type and check if it is allowed.
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002769 const bool RequiresInstantiation =
2770 D->getType()->isDependentType() ||
2771 D->getType()->isInstantiationDependentType() ||
2772 D->getType()->containsUnexpandedParameterPack();
2773 QualType SubstReductionType;
2774 if (RequiresInstantiation) {
2775 SubstReductionType = SemaRef.ActOnOpenMPDeclareReductionType(
2776 D->getLocation(),
2777 ParsedType::make(SemaRef.SubstType(
2778 D->getType(), TemplateArgs, D->getLocation(), DeclarationName())));
2779 } else {
2780 SubstReductionType = D->getType();
2781 }
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002782 if (SubstReductionType.isNull())
2783 return nullptr;
2784 bool IsCorrect = !SubstReductionType.isNull();
2785 // Create instantiated copy.
2786 std::pair<QualType, SourceLocation> ReductionTypes[] = {
2787 std::make_pair(SubstReductionType, D->getLocation())};
2788 auto *PrevDeclInScope = D->getPrevDeclInScope();
2789 if (PrevDeclInScope && !PrevDeclInScope->isInvalidDecl()) {
2790 PrevDeclInScope = cast<OMPDeclareReductionDecl>(
2791 SemaRef.CurrentInstantiationScope->findInstantiationOf(PrevDeclInScope)
2792 ->get<Decl *>());
2793 }
2794 auto DRD = SemaRef.ActOnOpenMPDeclareReductionDirectiveStart(
2795 /*S=*/nullptr, Owner, D->getDeclName(), ReductionTypes, D->getAccess(),
2796 PrevDeclInScope);
2797 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl());
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002798 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewDRD);
2799 if (!RequiresInstantiation) {
2800 if (Expr *Combiner = D->getCombiner()) {
2801 NewDRD->setCombinerData(D->getCombinerIn(), D->getCombinerOut());
2802 NewDRD->setCombiner(Combiner);
2803 if (Expr *Init = D->getInitializer()) {
2804 NewDRD->setInitializerData(D->getInitOrig(), D->getInitPriv());
2805 NewDRD->setInitializer(Init, D->getInitializerKind());
2806 }
2807 }
2808 (void)SemaRef.ActOnOpenMPDeclareReductionDirectiveEnd(
2809 /*S=*/nullptr, DRD, IsCorrect && !D->isInvalidDecl());
2810 return NewDRD;
2811 }
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002812 Expr *SubstCombiner = nullptr;
2813 Expr *SubstInitializer = nullptr;
2814 // Combiners instantiation sequence.
2815 if (D->getCombiner()) {
2816 SemaRef.ActOnOpenMPDeclareReductionCombinerStart(
2817 /*S=*/nullptr, NewDRD);
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002818 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
2819 cast<DeclRefExpr>(D->getCombinerIn())->getDecl(),
2820 cast<DeclRefExpr>(NewDRD->getCombinerIn())->getDecl());
2821 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
2822 cast<DeclRefExpr>(D->getCombinerOut())->getDecl(),
2823 cast<DeclRefExpr>(NewDRD->getCombinerOut())->getDecl());
2824 auto *ThisContext = dyn_cast_or_null<CXXRecordDecl>(Owner);
Mikael Nilsson9d2872d2018-12-13 10:15:27 +00002825 Sema::CXXThisScopeRAII ThisScope(SemaRef, ThisContext, Qualifiers(),
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002826 ThisContext);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002827 SubstCombiner = SemaRef.SubstExpr(D->getCombiner(), TemplateArgs).get();
2828 SemaRef.ActOnOpenMPDeclareReductionCombinerEnd(NewDRD, SubstCombiner);
2829 // Initializers instantiation sequence.
2830 if (D->getInitializer()) {
Alexey Bataev070f43a2017-09-06 14:49:58 +00002831 VarDecl *OmpPrivParm =
2832 SemaRef.ActOnOpenMPDeclareReductionInitializerStart(
2833 /*S=*/nullptr, NewDRD);
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002834 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
2835 cast<DeclRefExpr>(D->getInitOrig())->getDecl(),
2836 cast<DeclRefExpr>(NewDRD->getInitOrig())->getDecl());
2837 SemaRef.CurrentInstantiationScope->InstantiatedLocal(
2838 cast<DeclRefExpr>(D->getInitPriv())->getDecl(),
2839 cast<DeclRefExpr>(NewDRD->getInitPriv())->getDecl());
Alexey Bataev070f43a2017-09-06 14:49:58 +00002840 if (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit) {
2841 SubstInitializer =
2842 SemaRef.SubstExpr(D->getInitializer(), TemplateArgs).get();
2843 } else {
2844 IsCorrect = IsCorrect && OmpPrivParm->hasInit();
2845 }
2846 SemaRef.ActOnOpenMPDeclareReductionInitializerEnd(
2847 NewDRD, SubstInitializer, OmpPrivParm);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002848 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002849 IsCorrect =
2850 IsCorrect && SubstCombiner &&
2851 (!D->getInitializer() ||
2852 (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit &&
2853 SubstInitializer) ||
2854 (D->getInitializerKind() != OMPDeclareReductionDecl::CallInit &&
2855 !SubstInitializer && !SubstInitializer));
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002856 } else {
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002857 IsCorrect = false;
Alexey Bataeve6aa4692018-09-13 16:54:05 +00002858 }
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002859
2860 (void)SemaRef.ActOnOpenMPDeclareReductionDirectiveEnd(/*S=*/nullptr, DRD,
2861 IsCorrect);
2862
2863 return NewDRD;
2864}
2865
Alexey Bataev4244be22016-02-11 05:35:55 +00002866Decl *TemplateDeclInstantiator::VisitOMPCapturedExprDecl(
2867 OMPCapturedExprDecl * /*D*/) {
Alexey Bataev90c228f2016-02-08 09:29:13 +00002868 llvm_unreachable("Should not be met in templates");
2869}
2870
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002871Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002872 return VisitFunctionDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002873}
2874
Richard Smithbc491202017-02-17 20:05:37 +00002875Decl *
2876TemplateDeclInstantiator::VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *D) {
Richard Smith2600c632018-05-30 20:24:10 +00002877 Decl *Inst = VisitFunctionDecl(D, nullptr);
2878 if (Inst && !D->getDescribedFunctionTemplate())
2879 Owner->addDecl(Inst);
2880 return Inst;
Richard Smithbc491202017-02-17 20:05:37 +00002881}
2882
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002883Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002884 return VisitCXXMethodDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002885}
2886
2887Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) {
2888 llvm_unreachable("There are only CXXRecordDecls in C++");
2889}
2890
2891Decl *
2892TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl(
2893 ClassTemplateSpecializationDecl *D) {
Richard Smith8a0dde72013-12-14 01:04:22 +00002894 // As a MS extension, we permit class-scope explicit specialization
2895 // of member class templates.
2896 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
2897 assert(ClassTemplate->getDeclContext()->isRecord() &&
2898 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2899 "can only instantiate an explicit specialization "
2900 "for a member class template");
2901
2902 // Lookup the already-instantiated declaration in the instantiation
2903 // of the class template. FIXME: Diagnose or assert if this fails?
2904 DeclContext::lookup_result Found
2905 = Owner->lookup(ClassTemplate->getDeclName());
2906 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00002907 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002908 ClassTemplateDecl *InstClassTemplate
2909 = dyn_cast<ClassTemplateDecl>(Found.front());
2910 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00002911 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002912
2913 // Substitute into the template arguments of the class template explicit
2914 // specialization.
2915 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc().
2916 castAs<TemplateSpecializationTypeLoc>();
2917 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(),
2918 Loc.getRAngleLoc());
2919 SmallVector<TemplateArgumentLoc, 4> ArgLocs;
2920 for (unsigned I = 0; I != Loc.getNumArgs(); ++I)
2921 ArgLocs.push_back(Loc.getArgLoc(I));
2922 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(),
2923 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002924 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002925
2926 // Check that the template argument list is well-formed for this
2927 // class template.
2928 SmallVector<TemplateArgument, 4> Converted;
2929 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate,
2930 D->getLocation(),
2931 InstTemplateArgs,
2932 false,
2933 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002934 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002935
2936 // Figure out where to insert this class template explicit specialization
2937 // in the member template's set of class template explicit specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002938 void *InsertPos = nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002939 ClassTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00002940 InstClassTemplate->findSpecialization(Converted, InsertPos);
Richard Smith8a0dde72013-12-14 01:04:22 +00002941
2942 // Check whether we've already seen a conflicting instantiation of this
2943 // declaration (for instance, if there was a prior implicit instantiation).
2944 bool Ignored;
2945 if (PrevDecl &&
2946 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(),
2947 D->getSpecializationKind(),
2948 PrevDecl,
2949 PrevDecl->getSpecializationKind(),
2950 PrevDecl->getPointOfInstantiation(),
2951 Ignored))
Craig Topperc3ec1492014-05-26 06:22:03 +00002952 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002953
2954 // If PrevDecl was a definition and D is also a definition, diagnose.
2955 // This happens in cases like:
2956 //
2957 // template<typename T, typename U>
2958 // struct Outer {
2959 // template<typename X> struct Inner;
2960 // template<> struct Inner<T> {};
2961 // template<> struct Inner<U> {};
2962 // };
2963 //
2964 // Outer<int, int> outer; // error: the explicit specializations of Inner
2965 // // have the same signature.
2966 if (PrevDecl && PrevDecl->getDefinition() &&
2967 D->isThisDeclarationADefinition()) {
2968 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl;
2969 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(),
2970 diag::note_previous_definition);
Craig Topperc3ec1492014-05-26 06:22:03 +00002971 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002972 }
2973
2974 // Create the class template partial specialization declaration.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002975 ClassTemplateSpecializationDecl *InstD =
2976 ClassTemplateSpecializationDecl::Create(
2977 SemaRef.Context, D->getTagKind(), Owner, D->getBeginLoc(),
2978 D->getLocation(), InstClassTemplate, Converted, PrevDecl);
Richard Smith8a0dde72013-12-14 01:04:22 +00002979
2980 // Add this partial specialization to the set of class template partial
2981 // specializations.
2982 if (!PrevDecl)
2983 InstClassTemplate->AddSpecialization(InstD, InsertPos);
2984
2985 // Substitute the nested name specifier, if any.
2986 if (SubstQualifier(D, InstD))
Craig Topperc3ec1492014-05-26 06:22:03 +00002987 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002988
2989 // Build the canonical type that describes the converted template
2990 // arguments of the class template explicit specialization.
2991 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00002992 TemplateName(InstClassTemplate), Converted,
Richard Smith8a0dde72013-12-14 01:04:22 +00002993 SemaRef.Context.getRecordType(InstD));
2994
2995 // Build the fully-sugared type for this class template
2996 // specialization as the user wrote in the specialization
2997 // itself. This means that we'll pretty-print the type retrieved
2998 // from the specialization's declaration the way that the user
2999 // actually wrote the specialization, rather than formatting the
3000 // name based on the "canonical" representation used to store the
3001 // template arguments in the specialization.
3002 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
3003 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs,
3004 CanonType);
3005
3006 InstD->setAccess(D->getAccess());
3007 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
3008 InstD->setSpecializationKind(D->getSpecializationKind());
3009 InstD->setTypeAsWritten(WrittenTy);
3010 InstD->setExternLoc(D->getExternLoc());
3011 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc());
3012
3013 Owner->addDecl(InstD);
3014
3015 // Instantiate the members of the class-scope explicit specialization eagerly.
3016 // We don't have support for lazy instantiation of an explicit specialization
3017 // yet, and MSVC eagerly instantiates in this case.
3018 if (D->isThisDeclarationADefinition() &&
3019 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs,
3020 TSK_ImplicitInstantiation,
3021 /*Complain=*/true))
Craig Topperc3ec1492014-05-26 06:22:03 +00003022 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00003023
3024 return InstD;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003025}
3026
Larisse Voufo39a1e502013-08-06 01:03:05 +00003027Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
3028 VarTemplateSpecializationDecl *D) {
3029
3030 TemplateArgumentListInfo VarTemplateArgsInfo;
3031 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
3032 assert(VarTemplate &&
3033 "A template specialization without specialized template?");
3034
3035 // Substitute the current template arguments.
3036 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo();
3037 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc());
3038 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc());
3039
3040 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(),
3041 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003042 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003043
3044 // Check that the template argument list is well-formed for this template.
3045 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003046 if (SemaRef.CheckTemplateArgumentList(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003047 VarTemplate, VarTemplate->getBeginLoc(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00003048 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00003049 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003050 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003051
3052 // Find the variable template specialization declaration that
3053 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00003054 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003055 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00003056 Converted, InsertPos))
Larisse Voufo39a1e502013-08-06 01:03:05 +00003057 // If we already have a variable template specialization, return it.
3058 return VarSpec;
3059
3060 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos,
3061 VarTemplateArgsInfo, Converted);
3062}
3063
3064Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
3065 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos,
3066 const TemplateArgumentListInfo &TemplateArgsInfo,
Craig Topper00bbdcf2014-06-28 23:22:23 +00003067 ArrayRef<TemplateArgument> Converted) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003068
Larisse Voufo39a1e502013-08-06 01:03:05 +00003069 // Do substitution on the type of the declaration
3070 TypeSourceInfo *DI =
3071 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
3072 D->getTypeSpecStartLoc(), D->getDeclName());
3073 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003074 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003075
3076 if (DI->getType()->isFunctionType()) {
3077 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
3078 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003079 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003080 }
3081
3082 // Build the instantiated declaration
3083 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create(
3084 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
David Majnemer8b622692016-07-03 21:17:51 +00003085 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003086 Var->setTemplateArgsInfo(TemplateArgsInfo);
Richard Smith8809a0c2013-09-27 20:14:12 +00003087 if (InsertPos)
3088 VarTemplate->AddSpecialization(Var, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003089
3090 // Substitute the nested name specifier, if any.
3091 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +00003092 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003093
3094 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs,
Richard Smith541b38b2013-09-20 01:15:31 +00003095 Owner, StartingScope);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003096
3097 return Var;
3098}
3099
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003100Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) {
3101 llvm_unreachable("@defs is not supported in Objective-C++");
3102}
3103
3104Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
3105 // FIXME: We need to be able to instantiate FriendTemplateDecls.
3106 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
3107 DiagnosticsEngine::Error,
3108 "cannot instantiate %0 yet");
3109 SemaRef.Diag(D->getLocation(), DiagID)
3110 << D->getDeclKindName();
3111
Craig Topperc3ec1492014-05-26 06:22:03 +00003112 return nullptr;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003113}
3114
3115Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) {
3116 llvm_unreachable("Unexpected decl");
3117}
3118
John McCall76d824f2009-08-25 22:02:44 +00003119Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregor01afeef2009-08-28 20:31:08 +00003120 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord002c7b2009-05-11 23:53:27 +00003121 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor71ad4772010-02-16 19:28:15 +00003122 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00003123 return nullptr;
Douglas Gregor71ad4772010-02-16 19:28:15 +00003124
Douglas Gregord7e7a512009-03-17 21:15:40 +00003125 return Instantiator.Visit(D);
3126}
3127
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003128/// Instantiates a nested template parameter list in the current
John McCall87a44eb2009-08-20 01:44:21 +00003129/// instantiation context.
3130///
3131/// \param L The parameter list to instantiate
3132///
3133/// \returns NULL if there was an error
3134TemplateParameterList *
John McCall76d824f2009-08-25 22:02:44 +00003135TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCall87a44eb2009-08-20 01:44:21 +00003136 // Get errors for all the parameters before bailing out.
3137 bool Invalid = false;
3138
3139 unsigned N = L->size();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003140 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCall87a44eb2009-08-20 01:44:21 +00003141 ParamVector Params;
3142 Params.reserve(N);
Davide Italiano18960b92015-07-02 19:20:11 +00003143 for (auto &P : *L) {
3144 NamedDecl *D = cast_or_null<NamedDecl>(Visit(P));
John McCall87a44eb2009-08-20 01:44:21 +00003145 Params.push_back(D);
Douglas Gregore62e6a02009-11-11 19:13:48 +00003146 Invalid = Invalid || !D || D->isInvalidDecl();
John McCall87a44eb2009-08-20 01:44:21 +00003147 }
3148
3149 // Clean up if we had an error.
Douglas Gregorb412e172010-07-25 18:17:45 +00003150 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +00003151 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00003152
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003153 // Note: we substitute into associated constraints later
3154 Expr *const UninstantiatedRequiresClause = L->getRequiresClause();
3155
John McCall87a44eb2009-08-20 01:44:21 +00003156 TemplateParameterList *InstL
3157 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
David Majnemer902f8c62015-12-27 07:16:27 +00003158 L->getLAngleLoc(), Params,
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003159 L->getRAngleLoc(),
3160 UninstantiatedRequiresClause);
John McCall87a44eb2009-08-20 01:44:21 +00003161 return InstL;
Mike Stump11289f42009-09-09 15:08:12 +00003162}
John McCall87a44eb2009-08-20 01:44:21 +00003163
Richard Smith5d331022018-03-08 01:07:33 +00003164TemplateParameterList *
3165Sema::SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner,
3166 const MultiLevelTemplateArgumentList &TemplateArgs) {
3167 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
3168 return Instantiator.SubstTemplateParams(Params);
3169}
3170
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003171/// Instantiate the declaration of a class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003172/// specialization.
3173///
3174/// \param ClassTemplate the (instantiated) class template that is partially
3175// specialized by the instantiation of \p PartialSpec.
3176///
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003177/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003178/// specialization that we are instantiating.
3179///
Douglas Gregor869853e2010-11-10 19:44:59 +00003180/// \returns The instantiated partial specialization, if successful; otherwise,
3181/// NULL to indicate an error.
3182ClassTemplatePartialSpecializationDecl *
Douglas Gregor21610382009-10-29 00:04:11 +00003183TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
3184 ClassTemplateDecl *ClassTemplate,
3185 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor954de172009-10-31 17:21:17 +00003186 // Create a local instantiation scope for this class template partial
3187 // specialization, which will contain the instantiations of the template
3188 // parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00003189 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003190
Douglas Gregor21610382009-10-29 00:04:11 +00003191 // Substitute into the template parameters of the class template partial
3192 // specialization.
3193 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3194 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3195 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003196 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003197
Douglas Gregor21610382009-10-29 00:04:11 +00003198 // Substitute into the template arguments of the class template partial
3199 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003200 const ASTTemplateArgumentListInfo *TemplArgInfo
3201 = PartialSpec->getTemplateArgsAsWritten();
3202 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3203 TemplArgInfo->RAngleLoc);
3204 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3205 TemplArgInfo->NumTemplateArgs,
Douglas Gregor0f3feb42010-12-22 21:19:48 +00003206 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003207 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003208
Douglas Gregor21610382009-10-29 00:04:11 +00003209 // Check that the template argument list is well-formed for this
3210 // class template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003211 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003212 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregor21610382009-10-29 00:04:11 +00003213 PartialSpec->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003214 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003215 false,
3216 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003217 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003218
Richard Smith57aae072016-12-28 02:37:25 +00003219 // Check these arguments are valid for a template partial specialization.
3220 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3221 PartialSpec->getLocation(), ClassTemplate, InstTemplateArgs.size(),
3222 Converted))
3223 return nullptr;
3224
Douglas Gregor21610382009-10-29 00:04:11 +00003225 // Figure out where to insert this class template partial specialization
3226 // in the member template's set of class template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003227 void *InsertPos = nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003228 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00003229 = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003230
Douglas Gregor21610382009-10-29 00:04:11 +00003231 // Build the canonical type that describes the converted template
3232 // arguments of the class template partial specialization.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003233 QualType CanonType
Douglas Gregor21610382009-10-29 00:04:11 +00003234 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
David Majnemer6fbeee32016-07-07 04:43:07 +00003235 Converted);
Douglas Gregor21610382009-10-29 00:04:11 +00003236
3237 // Build the fully-sugared type for this class template
3238 // specialization as the user wrote in the specialization
3239 // itself. This means that we'll pretty-print the type retrieved
3240 // from the specialization's declaration the way that the user
3241 // actually wrote the specialization, rather than formatting the
3242 // name based on the "canonical" representation used to store the
3243 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00003244 TypeSourceInfo *WrittenTy
3245 = SemaRef.Context.getTemplateSpecializationTypeInfo(
3246 TemplateName(ClassTemplate),
3247 PartialSpec->getLocation(),
John McCall6b51f282009-11-23 01:53:49 +00003248 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003249 CanonType);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003250
Douglas Gregor21610382009-10-29 00:04:11 +00003251 if (PrevDecl) {
3252 // We've already seen a partial specialization with the same template
3253 // parameters and template arguments. This can happen, for example, when
3254 // substituting the outer template arguments ends up causing two
3255 // class template partial specializations of a member class template
3256 // to have identical forms, e.g.,
3257 //
3258 // template<typename T, typename U>
3259 // struct Outer {
3260 // template<typename X, typename Y> struct Inner;
3261 // template<typename Y> struct Inner<T, Y>;
3262 // template<typename Y> struct Inner<U, Y>;
3263 // };
3264 //
3265 // Outer<int, int> outer; // error: the partial specializations of Inner
3266 // // have the same signature.
3267 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregor869853e2010-11-10 19:44:59 +00003268 << WrittenTy->getType();
Douglas Gregor21610382009-10-29 00:04:11 +00003269 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
3270 << SemaRef.Context.getTypeDeclType(PrevDecl);
Craig Topperc3ec1492014-05-26 06:22:03 +00003271 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003272 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003273
3274
Douglas Gregor21610382009-10-29 00:04:11 +00003275 // Create the class template partial specialization declaration.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003276 ClassTemplatePartialSpecializationDecl *InstPartialSpec =
3277 ClassTemplatePartialSpecializationDecl::Create(
3278 SemaRef.Context, PartialSpec->getTagKind(), Owner,
3279 PartialSpec->getBeginLoc(), PartialSpec->getLocation(), InstParams,
3280 ClassTemplate, Converted, InstTemplateArgs, CanonType, nullptr);
John McCall3e11ebe2010-03-15 10:12:16 +00003281 // Substitute the nested name specifier, if any.
3282 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003283 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00003284
Douglas Gregor21610382009-10-29 00:04:11 +00003285 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor6044d692010-05-19 17:02:24 +00003286 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003287
Richard Smith57aae072016-12-28 02:37:25 +00003288 // Check the completed partial specialization.
3289 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3290
Douglas Gregor21610382009-10-29 00:04:11 +00003291 // Add this partial specialization to the set of class template partial
3292 // specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003293 ClassTemplate->AddPartialSpecialization(InstPartialSpec,
3294 /*InsertPos=*/nullptr);
Douglas Gregor869853e2010-11-10 19:44:59 +00003295 return InstPartialSpec;
Douglas Gregor21610382009-10-29 00:04:11 +00003296}
3297
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003298/// Instantiate the declaration of a variable template partial
Larisse Voufo39a1e502013-08-06 01:03:05 +00003299/// specialization.
3300///
3301/// \param VarTemplate the (instantiated) variable template that is partially
3302/// specialized by the instantiation of \p PartialSpec.
3303///
3304/// \param PartialSpec the (uninstantiated) variable template partial
3305/// specialization that we are instantiating.
3306///
3307/// \returns The instantiated partial specialization, if successful; otherwise,
3308/// NULL to indicate an error.
3309VarTemplatePartialSpecializationDecl *
3310TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization(
3311 VarTemplateDecl *VarTemplate,
3312 VarTemplatePartialSpecializationDecl *PartialSpec) {
3313 // Create a local instantiation scope for this variable template partial
3314 // specialization, which will contain the instantiations of the template
3315 // parameters.
3316 LocalInstantiationScope Scope(SemaRef);
3317
3318 // Substitute into the template parameters of the variable template partial
3319 // specialization.
3320 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3321 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3322 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003323 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003324
3325 // Substitute into the template arguments of the variable template partial
3326 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003327 const ASTTemplateArgumentListInfo *TemplArgInfo
3328 = PartialSpec->getTemplateArgsAsWritten();
3329 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3330 TemplArgInfo->RAngleLoc);
3331 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3332 TemplArgInfo->NumTemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00003333 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003334 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003335
3336 // Check that the template argument list is well-formed for this
3337 // class template.
3338 SmallVector<TemplateArgument, 4> Converted;
3339 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(),
3340 InstTemplateArgs, false, Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003341 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003342
Richard Smith57aae072016-12-28 02:37:25 +00003343 // Check these arguments are valid for a template partial specialization.
3344 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3345 PartialSpec->getLocation(), VarTemplate, InstTemplateArgs.size(),
3346 Converted))
3347 return nullptr;
3348
Larisse Voufo39a1e502013-08-06 01:03:05 +00003349 // Figure out where to insert this variable template partial specialization
3350 // in the member template's set of variable template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003351 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003352 VarTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00003353 VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003354
3355 // Build the canonical type that describes the converted template
3356 // arguments of the variable template partial specialization.
3357 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00003358 TemplateName(VarTemplate), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003359
3360 // Build the fully-sugared type for this variable template
3361 // specialization as the user wrote in the specialization
3362 // itself. This means that we'll pretty-print the type retrieved
3363 // from the specialization's declaration the way that the user
3364 // actually wrote the specialization, rather than formatting the
3365 // name based on the "canonical" representation used to store the
3366 // template arguments in the specialization.
3367 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
3368 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs,
3369 CanonType);
3370
3371 if (PrevDecl) {
3372 // We've already seen a partial specialization with the same template
3373 // parameters and template arguments. This can happen, for example, when
3374 // substituting the outer template arguments ends up causing two
3375 // variable template partial specializations of a member variable template
3376 // to have identical forms, e.g.,
3377 //
3378 // template<typename T, typename U>
3379 // struct Outer {
3380 // template<typename X, typename Y> pair<X,Y> p;
3381 // template<typename Y> pair<T, Y> p;
3382 // template<typename Y> pair<U, Y> p;
3383 // };
3384 //
3385 // Outer<int, int> outer; // error: the partial specializations of Inner
3386 // // have the same signature.
3387 SemaRef.Diag(PartialSpec->getLocation(),
3388 diag::err_var_partial_spec_redeclared)
3389 << WrittenTy->getType();
3390 SemaRef.Diag(PrevDecl->getLocation(),
3391 diag::note_var_prev_partial_spec_here);
Craig Topperc3ec1492014-05-26 06:22:03 +00003392 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003393 }
3394
3395 // Do substitution on the type of the declaration
3396 TypeSourceInfo *DI = SemaRef.SubstType(
3397 PartialSpec->getTypeSourceInfo(), TemplateArgs,
3398 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName());
3399 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003400 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003401
3402 if (DI->getType()->isFunctionType()) {
3403 SemaRef.Diag(PartialSpec->getLocation(),
3404 diag::err_variable_instantiates_to_function)
3405 << PartialSpec->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003406 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003407 }
3408
3409 // Create the variable template partial specialization declaration.
3410 VarTemplatePartialSpecializationDecl *InstPartialSpec =
3411 VarTemplatePartialSpecializationDecl::Create(
3412 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(),
3413 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(),
David Majnemer8b622692016-07-03 21:17:51 +00003414 DI, PartialSpec->getStorageClass(), Converted, InstTemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003415
3416 // Substitute the nested name specifier, if any.
3417 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003418 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003419
3420 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
3421 InstPartialSpec->setTypeAsWritten(WrittenTy);
3422
Richard Smith57aae072016-12-28 02:37:25 +00003423 // Check the completed partial specialization.
3424 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3425
Larisse Voufo39a1e502013-08-06 01:03:05 +00003426 // Add this partial specialization to the set of variable template partial
3427 // specializations. The instantiation of the initializer is not necessary.
Craig Topperc3ec1492014-05-26 06:22:03 +00003428 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003429
Larisse Voufo4cda4612013-08-22 00:28:27 +00003430 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00003431 LateAttrs, Owner, StartingScope);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003432
Larisse Voufo39a1e502013-08-06 01:03:05 +00003433 return InstPartialSpec;
3434}
3435
John McCall58f10c32010-03-11 09:03:00 +00003436TypeSourceInfo*
John McCall76d824f2009-08-25 22:02:44 +00003437TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003438 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall58f10c32010-03-11 09:03:00 +00003439 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
3440 assert(OldTInfo && "substituting function without type source info");
3441 assert(Params.empty() && "parameter vector is non-empty at start");
Craig Topperc3ec1492014-05-26 06:22:03 +00003442
3443 CXXRecordDecl *ThisContext = nullptr;
Mikael Nilsson9d2872d2018-12-13 10:15:27 +00003444 Qualifiers ThisTypeQuals;
Douglas Gregor3024f072012-04-16 07:05:22 +00003445 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Richard Smithc3d2ebb2013-06-07 02:33:37 +00003446 ThisContext = cast<CXXRecordDecl>(Owner);
Douglas Gregor3024f072012-04-16 07:05:22 +00003447 ThisTypeQuals = Method->getTypeQualifiers();
3448 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003449
John McCallb29f78f2010-04-09 17:38:44 +00003450 TypeSourceInfo *NewTInfo
3451 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
3452 D->getTypeSpecStartLoc(),
Douglas Gregor3024f072012-04-16 07:05:22 +00003453 D->getDeclName(),
3454 ThisContext, ThisTypeQuals);
John McCall58f10c32010-03-11 09:03:00 +00003455 if (!NewTInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00003456 return nullptr;
Douglas Gregor21342092009-03-24 00:38:23 +00003457
Reid Klecknera09e44c2013-07-31 21:00:18 +00003458 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
3459 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) {
3460 if (NewTInfo != OldTInfo) {
3461 // Get parameters from the new type info.
Abramo Bagnaraa44c9022010-12-13 22:27:55 +00003462 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +00003463 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>();
Richard Smith198223b2012-07-18 01:29:05 +00003464 unsigned NewIdx = 0;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003465 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams();
Douglas Gregorf3010112011-01-07 16:43:16 +00003466 OldIdx != NumOldParams; ++OldIdx) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003467 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx);
Richard Smith198223b2012-07-18 01:29:05 +00003468 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
3469
David Blaikie05785d12013-02-20 22:23:23 +00003470 Optional<unsigned> NumArgumentsInExpansion;
Richard Smith198223b2012-07-18 01:29:05 +00003471 if (OldParam->isParameterPack())
3472 NumArgumentsInExpansion =
3473 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
3474 TemplateArgs);
3475 if (!NumArgumentsInExpansion) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003476 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregorf3010112011-01-07 16:43:16 +00003477 // instantiated to a (still-dependent) parameter pack.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003478 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Douglas Gregorf3010112011-01-07 16:43:16 +00003479 Params.push_back(NewParam);
Richard Smith198223b2012-07-18 01:29:05 +00003480 Scope->InstantiatedLocal(OldParam, NewParam);
3481 } else {
3482 // Parameter pack expansion: make the instantiation an argument pack.
3483 Scope->MakeInstantiatedLocalArgPack(OldParam);
3484 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003485 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Richard Smith198223b2012-07-18 01:29:05 +00003486 Params.push_back(NewParam);
3487 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
3488 }
Douglas Gregorf3010112011-01-07 16:43:16 +00003489 }
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003490 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003491 } else {
3492 // The function type itself was not dependent and therefore no
3493 // substitution occurred. However, we still need to instantiate
3494 // the function parameters themselves.
3495 const FunctionProtoType *OldProto =
3496 cast<FunctionProtoType>(OldProtoLoc.getType());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003497 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end;
3498 ++i) {
3499 ParmVarDecl *OldParam = OldProtoLoc.getParam(i);
Reid Klecknera09e44c2013-07-31 21:00:18 +00003500 if (!OldParam) {
3501 Params.push_back(SemaRef.BuildParmVarDeclForTypedef(
Alp Toker9cacbab2014-01-20 20:26:09 +00003502 D, D->getLocation(), OldProto->getParamType(i)));
Reid Klecknera09e44c2013-07-31 21:00:18 +00003503 continue;
3504 }
3505
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003506 ParmVarDecl *Parm =
Reid Klecknera09e44c2013-07-31 21:00:18 +00003507 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam));
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003508 if (!Parm)
Craig Topperc3ec1492014-05-26 06:22:03 +00003509 return nullptr;
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003510 Params.push_back(Parm);
3511 }
Douglas Gregor940bca72010-04-12 07:48:19 +00003512 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003513 } else {
3514 // If the type of this function, after ignoring parentheses, is not
3515 // *directly* a function type, then we're instantiating a function that
3516 // was declared via a typedef or with attributes, e.g.,
3517 //
3518 // typedef int functype(int, int);
3519 // functype func;
3520 // int __cdecl meth(int, int);
3521 //
3522 // In this case, we'll just go instantiate the ParmVarDecls that we
3523 // synthesized in the method declaration.
3524 SmallVector<QualType, 4> ParamTypes;
John McCallc8e321d2016-03-01 02:09:25 +00003525 Sema::ExtParameterInfoBuilder ExtParamInfos;
David Majnemer59f77922016-06-24 04:05:48 +00003526 if (SemaRef.SubstParmTypes(D->getLocation(), D->parameters(), nullptr,
3527 TemplateArgs, ParamTypes, &Params,
3528 ExtParamInfos))
Craig Topperc3ec1492014-05-26 06:22:03 +00003529 return nullptr;
Douglas Gregor940bca72010-04-12 07:48:19 +00003530 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003531
John McCall58f10c32010-03-11 09:03:00 +00003532 return NewTInfo;
Douglas Gregor21342092009-03-24 00:38:23 +00003533}
3534
Richard Smithf623c962012-04-17 00:58:00 +00003535/// Introduce the instantiated function parameters into the local
3536/// instantiation scope, and set the parameter names to those used
3537/// in the template.
Richard Smith2e321552014-11-12 02:00:47 +00003538static bool addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
Richard Smithf623c962012-04-17 00:58:00 +00003539 const FunctionDecl *PatternDecl,
3540 LocalInstantiationScope &Scope,
3541 const MultiLevelTemplateArgumentList &TemplateArgs) {
3542 unsigned FParamIdx = 0;
3543 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
3544 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
3545 if (!PatternParam->isParameterPack()) {
3546 // Simple case: not a parameter pack.
3547 assert(FParamIdx < Function->getNumParams());
3548 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Richard Smith2e321552014-11-12 02:00:47 +00003549 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smithaae40582014-03-13 00:28:45 +00003550 // If the parameter's type is not dependent, update it to match the type
3551 // in the pattern. They can differ in top-level cv-qualifiers, and we want
3552 // the pattern's type here. If the type is dependent, they can't differ,
Richard Smith2e321552014-11-12 02:00:47 +00003553 // per core issue 1668. Substitute into the type from the pattern, in case
3554 // it's instantiation-dependent.
Richard Smithaae40582014-03-13 00:28:45 +00003555 // FIXME: Updating the type to work around this is at best fragile.
Richard Smith2e321552014-11-12 02:00:47 +00003556 if (!PatternDecl->getType()->isDependentType()) {
3557 QualType T = S.SubstType(PatternParam->getType(), TemplateArgs,
3558 FunctionParam->getLocation(),
3559 FunctionParam->getDeclName());
3560 if (T.isNull())
3561 return true;
3562 FunctionParam->setType(T);
3563 }
Richard Smithaae40582014-03-13 00:28:45 +00003564
Richard Smithf623c962012-04-17 00:58:00 +00003565 Scope.InstantiatedLocal(PatternParam, FunctionParam);
3566 ++FParamIdx;
3567 continue;
3568 }
3569
3570 // Expand the parameter pack.
3571 Scope.MakeInstantiatedLocalArgPack(PatternParam);
David Blaikie05785d12013-02-20 22:23:23 +00003572 Optional<unsigned> NumArgumentsInExpansion
Richard Smithf623c962012-04-17 00:58:00 +00003573 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith198223b2012-07-18 01:29:05 +00003574 assert(NumArgumentsInExpansion &&
3575 "should only be called when all template arguments are known");
Richard Smith2e321552014-11-12 02:00:47 +00003576 QualType PatternType =
3577 PatternParam->getType()->castAs<PackExpansionType>()->getPattern();
Richard Smith198223b2012-07-18 01:29:05 +00003578 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithf623c962012-04-17 00:58:00 +00003579 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003580 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smith2e321552014-11-12 02:00:47 +00003581 if (!PatternDecl->getType()->isDependentType()) {
3582 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, Arg);
3583 QualType T = S.SubstType(PatternType, TemplateArgs,
3584 FunctionParam->getLocation(),
3585 FunctionParam->getDeclName());
3586 if (T.isNull())
3587 return true;
3588 FunctionParam->setType(T);
3589 }
3590
Richard Smithf623c962012-04-17 00:58:00 +00003591 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
3592 ++FParamIdx;
3593 }
3594 }
Richard Smithf623c962012-04-17 00:58:00 +00003595
Richard Smith2e321552014-11-12 02:00:47 +00003596 return false;
Richard Smithf623c962012-04-17 00:58:00 +00003597}
3598
3599void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
3600 FunctionDecl *Decl) {
Richard Smithd3729422012-04-19 00:08:28 +00003601 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
3602 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithf623c962012-04-17 00:58:00 +00003603 return;
3604
3605 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
3606 InstantiatingTemplate::ExceptionSpecification());
Alp Tokerd4a72d52013-10-08 08:09:04 +00003607 if (Inst.isInvalid()) {
Richard Smithd3b5c9082012-07-27 04:22:15 +00003608 // We hit the instantiation depth limit. Clear the exception specification
3609 // so that our callers don't have to cope with EST_Uninstantiated.
Richard Smith8acb4282014-07-31 21:57:55 +00003610 UpdateExceptionSpec(Decl, EST_None);
Richard Smithf623c962012-04-17 00:58:00 +00003611 return;
Richard Smithd3b5c9082012-07-27 04:22:15 +00003612 }
Richard Smith54f18e82016-08-31 02:15:21 +00003613 if (Inst.isAlreadyInstantiating()) {
3614 // This exception specification indirectly depends on itself. Reject.
3615 // FIXME: Corresponding rule in the standard?
3616 Diag(PointOfInstantiation, diag::err_exception_spec_cycle) << Decl;
3617 UpdateExceptionSpec(Decl, EST_None);
3618 return;
3619 }
Richard Smithf623c962012-04-17 00:58:00 +00003620
3621 // Enter the scope of this instantiation. We don't use
3622 // PushDeclContext because we don't have a scope.
3623 Sema::ContextRAII savedContext(*this, Decl);
3624 LocalInstantiationScope Scope(*this);
3625
3626 MultiLevelTemplateArgumentList TemplateArgs =
Craig Topperc3ec1492014-05-26 06:22:03 +00003627 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true);
Richard Smithf623c962012-04-17 00:58:00 +00003628
Richard Smithd3729422012-04-19 00:08:28 +00003629 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
Richard Smith2e321552014-11-12 02:00:47 +00003630 if (addInstantiatedParametersToScope(*this, Decl, Template, Scope,
3631 TemplateArgs)) {
3632 UpdateExceptionSpec(Decl, EST_None);
3633 return;
3634 }
Richard Smithf623c962012-04-17 00:58:00 +00003635
Richard Smith2e321552014-11-12 02:00:47 +00003636 SubstExceptionSpec(Decl, Template->getType()->castAs<FunctionProtoType>(),
3637 TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003638}
3639
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003640/// Initializes the common fields of an instantiation function
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003641/// declaration (New) from the corresponding fields of its template (Tmpl).
3642///
3643/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003644bool
3645TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003646 FunctionDecl *Tmpl) {
David Blaikie5a0956e2012-07-16 18:50:45 +00003647 if (Tmpl->isDeleted())
Alexis Hunt4a8ea102011-05-06 20:44:56 +00003648 New->setDeletedAsWritten();
Mike Stump11289f42009-09-09 15:08:12 +00003649
Richard Smith32918772017-02-14 00:25:28 +00003650 New->setImplicit(Tmpl->isImplicit());
3651
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003652 // Forward the mangling number from the template to the instantiated decl.
3653 SemaRef.Context.setManglingNumber(New,
3654 SemaRef.Context.getManglingNumber(Tmpl));
3655
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003656 // If we are performing substituting explicitly-specified template arguments
3657 // or deduced template arguments into a function template and we reach this
3658 // point, we are now past the point where SFINAE applies and have committed
Mike Stump11289f42009-09-09 15:08:12 +00003659 // to keeping the new function template specialization. We therefore
3660 // convert the active template instantiation for the function template
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003661 // into a template instantiation for this specific function template
3662 // specialization, which is not a SFINAE context, so that we diagnose any
3663 // further errors in the declaration itself.
Richard Smith696e3122017-02-23 01:43:54 +00003664 typedef Sema::CodeSynthesisContext ActiveInstType;
3665 ActiveInstType &ActiveInst = SemaRef.CodeSynthesisContexts.back();
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003666 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
3667 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump11289f42009-09-09 15:08:12 +00003668 if (FunctionTemplateDecl *FunTmpl
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003669 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) {
Mike Stump11289f42009-09-09 15:08:12 +00003670 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003671 "Deduction from the wrong function template?");
Daniel Dunbar54c59642009-07-16 22:10:11 +00003672 (void) FunTmpl;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003673 atTemplateEnd(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003674 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003675 ActiveInst.Entity = New;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003676 atTemplateBegin(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003677 }
3678 }
Mike Stump11289f42009-09-09 15:08:12 +00003679
Douglas Gregor049bdca2009-12-08 17:45:32 +00003680 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
3681 assert(Proto && "Function template without prototype?");
3682
Sebastian Redlfa453cf2011-03-12 11:50:43 +00003683 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalldb40c7f2010-12-14 08:05:40 +00003684 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalldb40c7f2010-12-14 08:05:40 +00003685
Richard Smithf623c962012-04-17 00:58:00 +00003686 // DR1330: In C++11, defer instantiation of a non-trivial
3687 // exception specification.
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003688 // DR1484: Local classes and their members are instantiated along with the
3689 // containing function.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003690 if (SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smith8acb4282014-07-31 21:57:55 +00003691 EPI.ExceptionSpec.Type != EST_None &&
3692 EPI.ExceptionSpec.Type != EST_DynamicNone &&
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003693 EPI.ExceptionSpec.Type != EST_BasicNoexcept &&
Serge Pavlov73c6a242015-08-23 10:22:28 +00003694 !Tmpl->isLexicallyWithinFunctionOrMethod()) {
Richard Smithd3729422012-04-19 00:08:28 +00003695 FunctionDecl *ExceptionSpecTemplate = Tmpl;
Richard Smith8acb4282014-07-31 21:57:55 +00003696 if (EPI.ExceptionSpec.Type == EST_Uninstantiated)
3697 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate;
Richard Smith185be182013-04-10 05:48:59 +00003698 ExceptionSpecificationType NewEST = EST_Uninstantiated;
Richard Smith8acb4282014-07-31 21:57:55 +00003699 if (EPI.ExceptionSpec.Type == EST_Unevaluated)
Richard Smith185be182013-04-10 05:48:59 +00003700 NewEST = EST_Unevaluated;
Richard Smithd3729422012-04-19 00:08:28 +00003701
Richard Smithf623c962012-04-17 00:58:00 +00003702 // Mark the function has having an uninstantiated exception specification.
3703 const FunctionProtoType *NewProto
3704 = New->getType()->getAs<FunctionProtoType>();
3705 assert(NewProto && "Template instantiation without function prototype?");
3706 EPI = NewProto->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00003707 EPI.ExceptionSpec.Type = NewEST;
3708 EPI.ExceptionSpec.SourceDecl = New;
3709 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate;
Reid Kleckner896b32f2013-06-10 20:51:09 +00003710 New->setType(SemaRef.Context.getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00003711 NewProto->getReturnType(), NewProto->getParamTypes(), EPI));
Richard Smithf623c962012-04-17 00:58:00 +00003712 } else {
Faisal Vali40fd4ce2017-05-09 04:17:15 +00003713 Sema::ContextRAII SwitchContext(SemaRef, New);
Richard Smith2e321552014-11-12 02:00:47 +00003714 SemaRef.SubstExceptionSpec(New, Proto, TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003715 }
Douglas Gregor049bdca2009-12-08 17:45:32 +00003716 }
3717
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003718 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithf623c962012-04-17 00:58:00 +00003719 const FunctionDecl *Definition = Tmpl;
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003720 Tmpl->isDefined(Definition);
3721
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00003722 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
3723 LateAttrs, StartingScope);
Douglas Gregor08329632010-06-15 17:05:35 +00003724
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003725 return false;
3726}
3727
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003728/// Initializes common fields of an instantiated method
Douglas Gregor21342092009-03-24 00:38:23 +00003729/// declaration (New) from the corresponding fields of its template
3730/// (Tmpl).
3731///
3732/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003733bool
3734TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor21342092009-03-24 00:38:23 +00003735 CXXMethodDecl *Tmpl) {
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003736 if (InitFunctionInstantiation(New, Tmpl))
3737 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003738
Richard Smith5159bbad2018-09-05 22:30:37 +00003739 if (isa<CXXDestructorDecl>(New) && SemaRef.getLangOpts().CPlusPlus11)
3740 SemaRef.AdjustDestructorExceptionSpec(cast<CXXDestructorDecl>(New));
3741
Douglas Gregor21342092009-03-24 00:38:23 +00003742 New->setAccess(Tmpl->getAccess());
Fariborz Jahanian6dfc1972009-12-03 18:44:40 +00003743 if (Tmpl->isVirtualAsWritten())
Douglas Gregor11c024b2010-09-28 20:50:54 +00003744 New->setVirtualAsWritten(true);
Douglas Gregor21342092009-03-24 00:38:23 +00003745
Douglas Gregor21342092009-03-24 00:38:23 +00003746 // FIXME: New needs a pointer to Tmpl
3747 return false;
3748}
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003749
Richard Smith50e291e2018-01-02 23:52:42 +00003750/// Instantiate (or find existing instantiation of) a function template with a
3751/// given set of template arguments.
3752///
3753/// Usually this should not be used, and template argument deduction should be
3754/// used in its place.
3755FunctionDecl *
3756Sema::InstantiateFunctionDeclaration(FunctionTemplateDecl *FTD,
3757 const TemplateArgumentList *Args,
3758 SourceLocation Loc) {
3759 FunctionDecl *FD = FTD->getTemplatedDecl();
3760
3761 sema::TemplateDeductionInfo Info(Loc);
3762 InstantiatingTemplate Inst(
3763 *this, Loc, FTD, Args->asArray(),
3764 CodeSynthesisContext::ExplicitTemplateArgumentSubstitution, Info);
3765 if (Inst.isInvalid())
3766 return nullptr;
3767
3768 ContextRAII SavedContext(*this, FD);
3769 MultiLevelTemplateArgumentList MArgs(*Args);
3770
3771 return cast_or_null<FunctionDecl>(SubstDecl(FD, FD->getParent(), MArgs));
3772}
3773
Reid Kleckner61195e12017-01-05 01:08:22 +00003774/// In the MS ABI, we need to instantiate default arguments of dllexported
3775/// default constructors along with the constructor definition. This allows IR
3776/// gen to emit a constructor closure which calls the default constructor with
3777/// its default arguments.
3778static void InstantiateDefaultCtorDefaultArgs(Sema &S,
3779 CXXConstructorDecl *Ctor) {
3780 assert(S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3781 Ctor->isDefaultConstructor());
3782 unsigned NumParams = Ctor->getNumParams();
3783 if (NumParams == 0)
3784 return;
3785 DLLExportAttr *Attr = Ctor->getAttr<DLLExportAttr>();
3786 if (!Attr)
3787 return;
3788 for (unsigned I = 0; I != NumParams; ++I) {
3789 (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), Ctor,
3790 Ctor->getParamDecl(I));
3791 S.DiscardCleanupsInEvaluationContext();
3792 }
3793}
3794
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003795/// Instantiate the definition of the given function from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003796/// template.
3797///
Douglas Gregordda7ced2009-06-30 17:20:14 +00003798/// \param PointOfInstantiation the point at which the instantiation was
3799/// required. Note that this is not precisely a "point of instantiation"
3800/// for the function, but it's close.
3801///
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003802/// \param Function the already-instantiated declaration of a
Douglas Gregordda7ced2009-06-30 17:20:14 +00003803/// function template specialization or member function of a class template
3804/// specialization.
3805///
3806/// \param Recursive if true, recursively instantiates any functions that
3807/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00003808///
3809/// \param DefinitionRequired if true, then we are performing an explicit
3810/// instantiation where the body of the function is required. Complain if
3811/// there is no such body.
Douglas Gregor85673582009-05-18 17:01:57 +00003812void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregordda7ced2009-06-30 17:20:14 +00003813 FunctionDecl *Function,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003814 bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00003815 bool DefinitionRequired,
3816 bool AtEndOfTU) {
Richard Smithcb189572017-10-28 01:15:00 +00003817 if (Function->isInvalidDecl() || Function->isDefined() ||
3818 isa<CXXDeductionGuideDecl>(Function))
Douglas Gregorb4850462009-05-14 23:26:13 +00003819 return;
3820
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003821 // Never instantiate an explicit specialization except if it is a class scope
3822 // explicit specialization.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003823 TemplateSpecializationKind TSK = Function->getTemplateSpecializationKind();
3824 if (TSK == TSK_ExplicitSpecialization &&
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003825 !Function->getClassScopeSpecializationPattern())
Douglas Gregor86d142a2009-10-08 07:24:58 +00003826 return;
Douglas Gregor69f6a362010-05-17 17:34:56 +00003827
Douglas Gregor24c332b2009-05-14 21:06:31 +00003828 // Find the function body that we'll be substituting.
Douglas Gregorafca3b42009-10-27 20:53:28 +00003829 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Alexis Hunt23f6b832011-05-27 20:00:14 +00003830 assert(PatternDecl && "instantiating a non-template");
3831
Richard Smith6f4e2e02016-08-23 19:41:39 +00003832 const FunctionDecl *PatternDef = PatternDecl->getDefinition();
Richard Smith3f6865a82016-08-23 21:12:54 +00003833 Stmt *Pattern = nullptr;
3834 if (PatternDef) {
3835 Pattern = PatternDef->getBody(PatternDef);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003836 PatternDecl = PatternDef;
Richard Smith6c7161162017-08-12 01:46:03 +00003837 if (PatternDef->willHaveBody())
3838 PatternDef = nullptr;
Richard Smith3f6865a82016-08-23 21:12:54 +00003839 }
Douglas Gregor24c332b2009-05-14 21:06:31 +00003840
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003841 // FIXME: We need to track the instantiation stack in order to know which
3842 // definitions should be visible within this instantiation.
3843 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Function,
3844 Function->getInstantiatedFromMemberFunction(),
Richard Smith6f4e2e02016-08-23 19:41:39 +00003845 PatternDecl, PatternDef, TSK,
3846 /*Complain*/DefinitionRequired)) {
3847 if (DefinitionRequired)
3848 Function->setInvalidDecl();
3849 else if (TSK == TSK_ExplicitInstantiationDefinition) {
3850 // Try again at the end of the translation unit (at which point a
3851 // definition will be required).
3852 assert(!Recursive);
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003853 Function->setInstantiationIsPending(true);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003854 PendingInstantiations.push_back(
3855 std::make_pair(Function, PointOfInstantiation));
3856 } else if (TSK == TSK_ImplicitInstantiation) {
Nick Lewycky2adab1b2018-01-02 19:10:12 +00003857 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003858 !getSourceManager().isInSystemHeader(PatternDecl->getBeginLoc())) {
Richard Smith6f4e2e02016-08-23 19:41:39 +00003859 Diag(PointOfInstantiation, diag::warn_func_template_missing)
3860 << Function;
3861 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
3862 if (getLangOpts().CPlusPlus11)
3863 Diag(PointOfInstantiation, diag::note_inst_declaration_hint)
3864 << Function;
3865 }
3866 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003867
Richard Smith6f4e2e02016-08-23 19:41:39 +00003868 return;
3869 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003870
Francois Pichet1c229c02011-04-22 22:18:13 +00003871 // Postpone late parsed template instantiations.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003872 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky610128e2011-05-12 03:51:24 +00003873 !LateTemplateParser) {
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003874 Function->setInstantiationIsPending(true);
Reid Kleckner24bd88c2018-03-26 18:22:47 +00003875 LateParsedInstantiations.push_back(
3876 std::make_pair(Function, PointOfInstantiation));
Francois Pichet1c229c02011-04-22 22:18:13 +00003877 return;
3878 }
3879
Nico Weberae4bb8c2014-08-15 23:21:41 +00003880 // If we're performing recursive template instantiation, create our own
3881 // queue of pending implicit instantiations that we will instantiate later,
3882 // while we're still within our own instantiation context.
3883 // This has to happen before LateTemplateParser below is called, so that
3884 // it marks vtables used in late parsed templates as used.
Richard Smith4f3e3812017-05-20 01:36:41 +00003885 GlobalEagerInstantiationScope GlobalInstantiations(*this,
3886 /*Enabled=*/Recursive);
3887 LocalEagerInstantiationScope LocalInstantiations(*this);
Nico Weberae4bb8c2014-08-15 23:21:41 +00003888
David Majnemerf0a84f22013-08-16 08:29:13 +00003889 // Call the LateTemplateParser callback if there is a need to late parse
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003890 // a templated function definition.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003891 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet1c229c02011-04-22 22:18:13 +00003892 LateTemplateParser) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00003893 // FIXME: Optimize to allow individual templates to be deserialized.
3894 if (PatternDecl->isFromASTFile())
3895 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap);
3896
Justin Lebar28f09c52016-10-10 16:26:08 +00003897 auto LPTIter = LateParsedTemplateMap.find(PatternDecl);
3898 assert(LPTIter != LateParsedTemplateMap.end() &&
3899 "missing LateParsedTemplate");
3900 LateTemplateParser(OpaqueParser, *LPTIter->second);
Francois Pichet1c229c02011-04-22 22:18:13 +00003901 Pattern = PatternDecl->getBody(PatternDecl);
3902 }
3903
Richard Smith6f4e2e02016-08-23 19:41:39 +00003904 // Note, we should never try to instantiate a deleted function template.
Ilya Biryukova27eca22017-12-20 14:32:38 +00003905 assert((Pattern || PatternDecl->isDefaulted() ||
3906 PatternDecl->hasSkippedBody()) &&
Richard Smith6f4e2e02016-08-23 19:41:39 +00003907 "unexpected kind of function template definition");
Douglas Gregor24c332b2009-05-14 21:06:31 +00003908
Richard Smith2a7d4812013-05-04 07:00:32 +00003909 // C++1y [temp.explicit]p10:
3910 // Except for inline functions, declarations with types deduced from their
3911 // initializer or return value, and class template specializations, other
3912 // explicit instantiation declarations have the effect of suppressing the
3913 // implicit instantiation of the entity to which they refer.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003914 if (TSK == TSK_ExplicitInstantiationDeclaration &&
Richard Smith2a7d4812013-05-04 07:00:32 +00003915 !PatternDecl->isInlined() &&
Alp Toker314cc812014-01-25 16:55:45 +00003916 !PatternDecl->getReturnType()->getContainedAutoType())
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003917 return;
Mike Stump11289f42009-09-09 15:08:12 +00003918
Richard Smith195d8ef2014-05-29 03:15:31 +00003919 if (PatternDecl->isInlined()) {
3920 // Function, and all later redeclarations of it (from imported modules,
3921 // for instance), are now implicitly inline.
3922 for (auto *D = Function->getMostRecentDecl(); /**/;
3923 D = D->getPreviousDecl()) {
3924 D->setImplicitlyInline();
3925 if (D == Function)
3926 break;
3927 }
3928 }
Richard Smithf3814ad2013-01-25 00:08:28 +00003929
Douglas Gregor85673582009-05-18 17:01:57 +00003930 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
Richard Smith54f18e82016-08-31 02:15:21 +00003931 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003932 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00003933 PrettyDeclStackTraceEntry CrashInfo(Context, Function, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00003934 "instantiating function definition");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003935
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003936 // The instantiation is visible here, even if it was first declared in an
3937 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00003938 Function->setVisibleDespiteOwningModule();
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003939
Abramo Bagnara12dcbf32011-11-18 08:08:52 +00003940 // Copy the inner loc start from the pattern.
3941 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
3942
Faisal Valid143a0c2017-04-01 21:30:49 +00003943 EnterExpressionEvaluationContext EvalContext(
3944 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated);
Douglas Gregor67da0d92009-05-15 17:59:04 +00003945
Douglas Gregorb4850462009-05-14 23:26:13 +00003946 // Introduce a new scope where local variable instantiations will be
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003947 // recorded, unless we're actually a member function within a local
3948 // class, in which case we need to merge our results with the parent
3949 // scope (of the enclosing function).
3950 bool MergeWithParentScope = false;
3951 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
3952 MergeWithParentScope = Rec->isLocalClass();
3953
3954 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00003955
Richard Smithbd305122012-12-11 01:14:52 +00003956 if (PatternDecl->isDefaulted())
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003957 SetDeclDefaulted(Function, PatternDecl->getLocation());
Richard Smithbd305122012-12-11 01:14:52 +00003958 else {
Richard Smithcc928662014-10-17 20:37:29 +00003959 MultiLevelTemplateArgumentList TemplateArgs =
3960 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl);
3961
3962 // Substitute into the qualifier; we can get a substitution failure here
3963 // through evil use of alias templates.
3964 // FIXME: Is CurContext correct for this? Should we go to the (instantiation
3965 // of the) lexical context of the pattern?
3966 SubstQualifier(*this, PatternDecl, Function, TemplateArgs);
3967
Craig Topperc3ec1492014-05-26 06:22:03 +00003968 ActOnStartOfFunctionDef(nullptr, Function);
Richard Smithbd305122012-12-11 01:14:52 +00003969
3970 // Enter the scope of this instantiation. We don't use
3971 // PushDeclContext because we don't have a scope.
3972 Sema::ContextRAII savedContext(*this, Function);
3973
Richard Smith2e321552014-11-12 02:00:47 +00003974 if (addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
3975 TemplateArgs))
3976 return;
Richard Smithbd305122012-12-11 01:14:52 +00003977
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003978 StmtResult Body;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003979 if (PatternDecl->hasSkippedBody()) {
3980 ActOnSkippedFunctionBody(Function);
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003981 Body = nullptr;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003982 } else {
Ilya Biryukov95f0d322017-12-28 13:05:46 +00003983 if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Function)) {
3984 // If this is a constructor, instantiate the member initializers.
3985 InstantiateMemInitializers(Ctor, cast<CXXConstructorDecl>(PatternDecl),
3986 TemplateArgs);
3987
3988 // If this is an MS ABI dllexport default constructor, instantiate any
3989 // default arguments.
3990 if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3991 Ctor->isDefaultConstructor()) {
3992 InstantiateDefaultCtorDefaultArgs(*this, Ctor);
3993 }
3994 }
3995
Ilya Biryukova27eca22017-12-20 14:32:38 +00003996 // Instantiate the function body.
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003997 Body = SubstStmt(Pattern, TemplateArgs);
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003998
Ilya Biryukova27eca22017-12-20 14:32:38 +00003999 if (Body.isInvalid())
4000 Function->setInvalidDecl();
Ilya Biryukova27eca22017-12-20 14:32:38 +00004001 }
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00004002 // FIXME: finishing the function body while in an expression evaluation
4003 // context seems wrong. Investigate more.
4004 ActOnFinishFunctionBody(Function, Body.get(), /*IsInstantiation=*/true);
Richard Smithbd305122012-12-11 01:14:52 +00004005
4006 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
4007
Richard Smithd28ac5b2014-03-22 23:33:22 +00004008 if (auto *Listener = getASTMutationListener())
4009 Listener->FunctionDefinitionInstantiated(Function);
Richard Smith0ac1b8f2014-03-22 01:43:32 +00004010
Richard Smithbd305122012-12-11 01:14:52 +00004011 savedContext.pop();
Mike Stump11289f42009-09-09 15:08:12 +00004012 }
4013
Douglas Gregor28ad4b52009-05-26 20:50:29 +00004014 DeclGroupRef DG(Function);
4015 Consumer.HandleTopLevelDecl(DG);
Mike Stump11289f42009-09-09 15:08:12 +00004016
Douglas Gregor7f792cf2010-01-16 22:29:39 +00004017 // This class may have local implicit instantiations that need to be
4018 // instantiation within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004019 LocalInstantiations.perform();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00004020 Scope.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004021 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004022}
4023
Larisse Voufo39a1e502013-08-06 01:03:05 +00004024VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation(
4025 VarTemplateDecl *VarTemplate, VarDecl *FromVar,
4026 const TemplateArgumentList &TemplateArgList,
4027 const TemplateArgumentListInfo &TemplateArgsInfo,
4028 SmallVectorImpl<TemplateArgument> &Converted,
4029 SourceLocation PointOfInstantiation, void *InsertPos,
4030 LateInstantiatedAttrVec *LateAttrs,
4031 LocalInstantiationScope *StartingScope) {
4032 if (FromVar->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004033 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004034
4035 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar);
Alp Tokerd4a72d52013-10-08 08:09:04 +00004036 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00004037 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004038
4039 MultiLevelTemplateArgumentList TemplateArgLists;
4040 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList);
4041
Richard Smith8809a0c2013-09-27 20:14:12 +00004042 // Instantiate the first declaration of the variable template: for a partial
4043 // specialization of a static data member template, the first declaration may
4044 // or may not be the declaration in the class; if it's in the class, we want
4045 // to instantiate a member in the class (a declaration), and if it's outside,
4046 // we want to instantiate a definition.
Richard Smithbeef3452014-01-16 23:39:20 +00004047 //
4048 // If we're instantiating an explicitly-specialized member template or member
4049 // partial specialization, don't do this. The member specialization completely
4050 // replaces the original declaration in this case.
4051 bool IsMemberSpec = false;
4052 if (VarTemplatePartialSpecializationDecl *PartialSpec =
4053 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar))
4054 IsMemberSpec = PartialSpec->isMemberSpecialization();
4055 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate())
4056 IsMemberSpec = FromTemplate->isMemberSpecialization();
4057 if (!IsMemberSpec)
4058 FromVar = FromVar->getFirstDecl();
Richard Smith8809a0c2013-09-27 20:14:12 +00004059
Manuel Klimek5843add2013-09-30 13:29:01 +00004060 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList);
4061 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(),
4062 MultiLevelList);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004063
4064 // TODO: Set LateAttrs and StartingScope ...
4065
4066 return cast_or_null<VarTemplateSpecializationDecl>(
4067 Instantiator.VisitVarTemplateSpecializationDecl(
4068 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted));
4069}
4070
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004071/// Instantiates a variable template specialization by completing it
Larisse Voufo39a1e502013-08-06 01:03:05 +00004072/// with appropriate type information and initializer.
4073VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl(
4074 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl,
4075 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith435e6472017-12-02 02:48:42 +00004076 assert(PatternDecl->isThisDeclarationADefinition() &&
4077 "don't have a definition to instantiate from");
Larisse Voufo39a1e502013-08-06 01:03:05 +00004078
4079 // Do substitution on the type of the declaration
4080 TypeSourceInfo *DI =
Richard Smith8809a0c2013-09-27 20:14:12 +00004081 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00004082 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName());
4083 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00004084 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004085
4086 // Update the type of this variable template specialization.
4087 VarSpec->setType(DI->getType());
4088
Richard Smith435e6472017-12-02 02:48:42 +00004089 // Convert the declaration into a definition now.
4090 VarSpec->setCompleteDefinition();
4091
Larisse Voufo39a1e502013-08-06 01:03:05 +00004092 // Instantiate the initializer.
4093 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs);
4094
4095 return VarSpec;
4096}
4097
4098/// BuildVariableInstantiation - Used after a new variable has been created.
4099/// Sets basic variable data and decides whether to postpone the
4100/// variable instantiation.
4101void Sema::BuildVariableInstantiation(
4102 VarDecl *NewVar, VarDecl *OldVar,
4103 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00004104 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner,
4105 LocalInstantiationScope *StartingScope,
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004106 bool InstantiatingVarTemplate) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004107
Richard Smith541b38b2013-09-20 01:15:31 +00004108 // If we are instantiating a local extern declaration, the
4109 // instantiation belongs lexically to the containing function.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004110 // If we are instantiating a static data member defined
4111 // out-of-line, the instantiation will have the same lexical
4112 // context (which will be a namespace scope) as the template.
Richard Smith541b38b2013-09-20 01:15:31 +00004113 if (OldVar->isLocalExternDecl()) {
4114 NewVar->setLocalExternDecl();
4115 NewVar->setLexicalDeclContext(Owner);
4116 } else if (OldVar->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004117 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext());
4118 NewVar->setTSCSpec(OldVar->getTSCSpec());
4119 NewVar->setInitStyle(OldVar->getInitStyle());
4120 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl());
George Karpenkovec38cf72018-03-29 00:56:24 +00004121 NewVar->setObjCForDecl(OldVar->isObjCForDecl());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004122 NewVar->setConstexpr(OldVar->isConstexpr());
Richard Smithbb13c9a2013-09-28 04:02:39 +00004123 NewVar->setInitCapture(OldVar->isInitCapture());
Richard Smith1c34fb72013-08-13 18:18:50 +00004124 NewVar->setPreviousDeclInSameBlockScope(
4125 OldVar->isPreviousDeclInSameBlockScope());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004126 NewVar->setAccess(OldVar->getAccess());
4127
Richard Smith0b551192013-09-23 23:12:22 +00004128 if (!OldVar->isStaticDataMember()) {
Rafael Espindolae4865d22013-10-23 16:46:34 +00004129 if (OldVar->isUsed(false))
4130 NewVar->setIsUsed();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004131 NewVar->setReferenced(OldVar->isReferenced());
4132 }
4133
4134 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope);
4135
Richard Smith541b38b2013-09-20 01:15:31 +00004136 LookupResult Previous(
4137 *this, NewVar->getDeclName(), NewVar->getLocation(),
4138 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
4139 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00004140 NewVar->isLocalExternDecl() ? Sema::ForExternalRedeclaration
4141 : forRedeclarationInCurContext());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004142
Argyrios Kyrtzidis91486222013-11-27 08:34:14 +00004143 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() &&
4144 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() ||
4145 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) {
Richard Smith1c34fb72013-08-13 18:18:50 +00004146 // We have a previous declaration. Use that one, so we merge with the
4147 // right type.
4148 if (NamedDecl *NewPrev = FindInstantiatedDecl(
4149 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs))
4150 Previous.addDecl(NewPrev);
4151 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) &&
4152 OldVar->hasLinkage())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004153 LookupQualifiedName(Previous, NewVar->getDeclContext(), false);
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004154 CheckVariableDeclaration(NewVar, Previous);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004155
Richard Smith541b38b2013-09-20 01:15:31 +00004156 if (!InstantiatingVarTemplate) {
4157 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar);
4158 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004159 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar);
Richard Smith541b38b2013-09-20 01:15:31 +00004160 }
4161
4162 if (!OldVar->isOutOfLine()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004163 if (NewVar->getDeclContext()->isFunctionOrMethod())
4164 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar);
4165 }
4166
4167 // Link instantiations of static data members back to the template from
4168 // which they were instantiated.
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004169 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate)
Larisse Voufo39a1e502013-08-06 01:03:05 +00004170 NewVar->setInstantiationOfStaticDataMember(OldVar,
4171 TSK_ImplicitInstantiation);
4172
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004173 // Forward the mangling number from the template to the instantiated decl.
4174 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar));
David Majnemer2206bf52014-03-05 08:57:59 +00004175 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar));
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004176
Richard Smith62f19e72016-06-25 00:15:56 +00004177 // Delay instantiation of the initializer for variable templates or inline
4178 // static data members until a definition of the variable is needed. We need
4179 // it right away if the type contains 'auto'.
Richard Smithd292b242014-03-16 01:00:40 +00004180 if ((!isa<VarTemplateSpecializationDecl>(NewVar) &&
Richard Smith62f19e72016-06-25 00:15:56 +00004181 !InstantiatingVarTemplate &&
Richard Smith93ee9ca2018-01-10 23:08:26 +00004182 !(OldVar->isInline() && OldVar->isThisDeclarationADefinition() &&
4183 !NewVar->isThisDeclarationADefinition())) ||
Richard Smithd292b242014-03-16 01:00:40 +00004184 NewVar->getType()->isUndeducedType())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004185 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs);
4186
4187 // Diagnose unused local variables with dependent types, where the diagnostic
4188 // will have been deferred.
4189 if (!NewVar->isInvalidDecl() &&
Nico Weber72889432014-09-06 01:25:55 +00004190 NewVar->getDeclContext()->isFunctionOrMethod() &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00004191 OldVar->getType()->isDependentType())
4192 DiagnoseUnusedDecl(NewVar);
4193}
4194
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004195/// Instantiate the initializer of a variable.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004196void Sema::InstantiateVariableInitializer(
4197 VarDecl *Var, VarDecl *OldVar,
4198 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith891fc7f2017-12-05 01:31:47 +00004199 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
4200 L->VariableDefinitionInstantiated(Var);
4201
Richard Smith62f19e72016-06-25 00:15:56 +00004202 // We propagate the 'inline' flag with the initializer, because it
4203 // would otherwise imply that the variable is a definition for a
4204 // non-static data member.
4205 if (OldVar->isInlineSpecified())
4206 Var->setInlineSpecified();
4207 else if (OldVar->isInline())
4208 Var->setImplicitlyInline();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004209
Larisse Voufo39a1e502013-08-06 01:03:05 +00004210 if (OldVar->getInit()) {
Richard Smithc95d2c52017-09-22 04:25:05 +00004211 EnterExpressionEvaluationContext Evaluated(
4212 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated, Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004213
4214 // Instantiate the initializer.
Akira Hatanakab87faff2016-04-28 23:50:12 +00004215 ExprResult Init;
4216
4217 {
4218 ContextRAII SwitchContext(*this, Var->getDeclContext());
4219 Init = SubstInitializer(OldVar->getInit(), TemplateArgs,
4220 OldVar->getInitStyle() == VarDecl::CallInit);
4221 }
4222
Larisse Voufo39a1e502013-08-06 01:03:05 +00004223 if (!Init.isInvalid()) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004224 Expr *InitExpr = Init.get();
4225
Richard Smith95b83e92014-07-10 20:53:43 +00004226 if (Var->hasAttr<DLLImportAttr>() &&
4227 (!InitExpr ||
4228 !InitExpr->isConstantInitializer(getASTContext(), false))) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004229 // Do not dynamically initialize dllimport variables.
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004230 } else if (InitExpr) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004231 bool DirectInit = OldVar->isDirectInit();
Richard Smith3beb7c62017-01-12 02:27:38 +00004232 AddInitializerToDecl(Var, InitExpr, DirectInit);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004233 } else
Richard Smith3beb7c62017-01-12 02:27:38 +00004234 ActOnUninitializedDecl(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004235 } else {
4236 // FIXME: Not too happy about invalidating the declaration
4237 // because of a bogus initializer.
4238 Var->setInvalidDecl();
4239 }
Richard Smith54f18e82016-08-31 02:15:21 +00004240 } else {
George Burgess IV18b28a82018-03-20 03:27:44 +00004241 // `inline` variables are a definition and declaration all in one; we won't
4242 // pick up an initializer from anywhere else.
4243 if (Var->isStaticDataMember() && !Var->isInline()) {
Richard Smith54f18e82016-08-31 02:15:21 +00004244 if (!Var->isOutOfLine())
4245 return;
4246
4247 // If the declaration inside the class had an initializer, don't add
4248 // another one to the out-of-line definition.
4249 if (OldVar->getFirstDecl()->hasInit())
4250 return;
4251 }
4252
4253 // We'll add an initializer to a for-range declaration later.
George Karpenkovec38cf72018-03-29 00:56:24 +00004254 if (Var->isCXXForRangeDecl() || Var->isObjCForDecl())
Richard Smith54f18e82016-08-31 02:15:21 +00004255 return;
4256
Richard Smith3beb7c62017-01-12 02:27:38 +00004257 ActOnUninitializedDecl(Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004258 }
Artem Beleviche9fa53a2018-06-06 22:37:25 +00004259
4260 if (getLangOpts().CUDA)
4261 checkAllowedCUDAInitializer(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004262}
4263
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004264/// Instantiate the definition of the given variable from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004265/// template.
4266///
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004267/// \param PointOfInstantiation the point at which the instantiation was
4268/// required. Note that this is not precisely a "point of instantiation"
Richard Smith891fc7f2017-12-05 01:31:47 +00004269/// for the variable, but it's close.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004270///
Richard Smith891fc7f2017-12-05 01:31:47 +00004271/// \param Var the already-instantiated declaration of a templated variable.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004272///
4273/// \param Recursive if true, recursively instantiates any functions that
4274/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00004275///
4276/// \param DefinitionRequired if true, then we are performing an explicit
Richard Smith891fc7f2017-12-05 01:31:47 +00004277/// instantiation where a definition of the variable is required. Complain
4278/// if there is no such definition.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004279void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation,
4280 VarDecl *Var, bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004281 bool DefinitionRequired, bool AtEndOfTU) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004282 if (Var->isInvalidDecl())
4283 return;
Mike Stump11289f42009-09-09 15:08:12 +00004284
Larisse Voufo39a1e502013-08-06 01:03:05 +00004285 VarTemplateSpecializationDecl *VarSpec =
4286 dyn_cast<VarTemplateSpecializationDecl>(Var);
Craig Topperc3ec1492014-05-26 06:22:03 +00004287 VarDecl *PatternDecl = nullptr, *Def = nullptr;
Richard Smith8809a0c2013-09-27 20:14:12 +00004288 MultiLevelTemplateArgumentList TemplateArgs =
4289 getTemplateInstantiationArgs(Var);
Mike Stump11289f42009-09-09 15:08:12 +00004290
Larisse Voufo39a1e502013-08-06 01:03:05 +00004291 if (VarSpec) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004292 // If this is a variable template specialization, make sure that it is
4293 // non-dependent, then find its instantiation pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004294 bool InstantiationDependent = false;
4295 assert(!TemplateSpecializationType::anyDependentTemplateArguments(
4296 VarSpec->getTemplateArgsInfo(), InstantiationDependent) &&
4297 "Only instantiate variable template specializations that are "
4298 "not type-dependent");
Larisse Voufo4154f462013-08-06 03:57:41 +00004299 (void)InstantiationDependent;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004300
Richard Smith8809a0c2013-09-27 20:14:12 +00004301 // Find the variable initialization that we'll be substituting. If the
4302 // pattern was instantiated from a member template, look back further to
4303 // find the real pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004304 assert(VarSpec->getSpecializedTemplate() &&
4305 "Specialization without specialized template?");
4306 llvm::PointerUnion<VarTemplateDecl *,
4307 VarTemplatePartialSpecializationDecl *> PatternPtr =
4308 VarSpec->getSpecializedTemplateOrPartial();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004309 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004310 VarTemplatePartialSpecializationDecl *Tmpl =
4311 PatternPtr.get<VarTemplatePartialSpecializationDecl *>();
4312 while (VarTemplatePartialSpecializationDecl *From =
4313 Tmpl->getInstantiatedFromMember()) {
4314 if (Tmpl->isMemberSpecialization())
4315 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004316
Richard Smith8809a0c2013-09-27 20:14:12 +00004317 Tmpl = From;
4318 }
4319 PatternDecl = Tmpl;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004320 } else {
Richard Smith8809a0c2013-09-27 20:14:12 +00004321 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>();
4322 while (VarTemplateDecl *From =
4323 Tmpl->getInstantiatedFromMemberTemplate()) {
4324 if (Tmpl->isMemberSpecialization())
4325 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004326
Richard Smith8809a0c2013-09-27 20:14:12 +00004327 Tmpl = From;
4328 }
4329 PatternDecl = Tmpl->getTemplatedDecl();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004330 }
Richard Smith8809a0c2013-09-27 20:14:12 +00004331
4332 // If this is a static data member template, there might be an
4333 // uninstantiated initializer on the declaration. If so, instantiate
4334 // it now.
Richard Smith891fc7f2017-12-05 01:31:47 +00004335 //
4336 // FIXME: This largely duplicates what we would do below. The difference
4337 // is that along this path we may instantiate an initializer from an
4338 // in-class declaration of the template and instantiate the definition
4339 // from a separate out-of-class definition.
Richard Smith8809a0c2013-09-27 20:14:12 +00004340 if (PatternDecl->isStaticDataMember() &&
Rafael Espindola8db352d2013-10-17 15:37:26 +00004341 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() &&
Richard Smith8809a0c2013-09-27 20:14:12 +00004342 !Var->hasInit()) {
4343 // FIXME: Factor out the duplicated instantiation context setup/tear down
4344 // code here.
4345 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004346 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Richard Smith8809a0c2013-09-27 20:14:12 +00004347 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004348 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004349 "instantiating variable initializer");
Richard Smith8809a0c2013-09-27 20:14:12 +00004350
Richard Smithedbc6e92016-10-14 21:41:24 +00004351 // The instantiation is visible here, even if it was first declared in an
4352 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00004353 Var->setVisibleDespiteOwningModule();
Richard Smithedbc6e92016-10-14 21:41:24 +00004354
Richard Smith8809a0c2013-09-27 20:14:12 +00004355 // If we're performing recursive template instantiation, create our own
4356 // queue of pending implicit instantiations that we will instantiate
4357 // later, while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004358 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4359 /*Enabled=*/Recursive);
Richard Smith8809a0c2013-09-27 20:14:12 +00004360 LocalInstantiationScope Local(*this);
Richard Smith4f3e3812017-05-20 01:36:41 +00004361 LocalEagerInstantiationScope LocalInstantiations(*this);
Richard Smith8809a0c2013-09-27 20:14:12 +00004362
4363 // Enter the scope of this instantiation. We don't use
4364 // PushDeclContext because we don't have a scope.
4365 ContextRAII PreviousContext(*this, Var->getDeclContext());
4366 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs);
4367 PreviousContext.pop();
4368
Richard Smith8809a0c2013-09-27 20:14:12 +00004369 // This variable may have local implicit instantiations that need to be
4370 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004371 LocalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004372 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004373 GlobalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004374 }
4375
4376 // Find actual definition
4377 Def = PatternDecl->getDefinition(getASTContext());
4378 } else {
4379 // If this is a static data member, find its out-of-line definition.
4380 assert(Var->isStaticDataMember() && "not a static data member?");
4381 PatternDecl = Var->getInstantiatedFromStaticDataMember();
4382
4383 assert(PatternDecl && "data member was not instantiated from a template?");
4384 assert(PatternDecl->isStaticDataMember() && "not a static data member?");
Richard Smith62f19e72016-06-25 00:15:56 +00004385 Def = PatternDecl->getDefinition();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004386 }
4387
Richard Smithedbc6e92016-10-14 21:41:24 +00004388 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
Richard Smith6739a102016-05-05 00:56:12 +00004389
Richard Smith8809a0c2013-09-27 20:14:12 +00004390 // If we don't have a definition of the variable template, we won't perform
4391 // any instantiation. Rather, we rely on the user to instantiate this
4392 // definition (or provide a specialization for it) in another translation
4393 // unit.
Richard Smithedbc6e92016-10-14 21:41:24 +00004394 if (!Def && !DefinitionRequired) {
4395 if (TSK == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth54080172010-08-25 08:44:16 +00004396 PendingInstantiations.push_back(
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004397 std::make_pair(Var, PointOfInstantiation));
Richard Smithedbc6e92016-10-14 21:41:24 +00004398 } else if (TSK == TSK_ImplicitInstantiation) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004399 // Warn about missing definition at the end of translation unit.
Nick Lewycky2adab1b2018-01-02 19:10:12 +00004400 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004401 !getSourceManager().isInSystemHeader(PatternDecl->getBeginLoc())) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004402 Diag(PointOfInstantiation, diag::warn_var_template_missing)
4403 << Var;
4404 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
4405 if (getLangOpts().CPlusPlus11)
4406 Diag(PointOfInstantiation, diag::note_inst_declaration_hint) << Var;
4407 }
Richard Smithedbc6e92016-10-14 21:41:24 +00004408 return;
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004409 }
4410
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004411 }
4412
Richard Smithedbc6e92016-10-14 21:41:24 +00004413 // FIXME: We need to track the instantiation stack in order to know which
4414 // definitions should be visible within this instantiation.
4415 // FIXME: Produce diagnostics when Var->getInstantiatedFromStaticDataMember().
4416 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Var,
4417 /*InstantiatedFromMember*/false,
4418 PatternDecl, Def, TSK,
4419 /*Complain*/DefinitionRequired))
4420 return;
4421
Rafael Espindola189fa742012-03-05 10:54:55 +00004422
Douglas Gregor86d142a2009-10-08 07:24:58 +00004423 // Never instantiate an explicit specialization.
Rafael Espindola189fa742012-03-05 10:54:55 +00004424 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor86d142a2009-10-08 07:24:58 +00004425 return;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004426
Larisse Voufo39a1e502013-08-06 01:03:05 +00004427 // C++11 [temp.explicit]p10:
Richard Smith4309b662017-10-18 22:45:01 +00004428 // Except for inline functions, const variables of literal types, variables
4429 // of reference types, [...] explicit instantiation declarations
Larisse Voufo39a1e502013-08-06 01:03:05 +00004430 // have the effect of suppressing the implicit instantiation of the entity
4431 // to which they refer.
Richard Smith4309b662017-10-18 22:45:01 +00004432 if (TSK == TSK_ExplicitInstantiationDeclaration &&
4433 !Var->isUsableInConstantExpressions(getASTContext()))
Douglas Gregor86d142a2009-10-08 07:24:58 +00004434 return;
Mike Stump11289f42009-09-09 15:08:12 +00004435
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004436 // Make sure to pass the instantiated variable to the consumer at the end.
4437 struct PassToConsumerRAII {
4438 ASTConsumer &Consumer;
4439 VarDecl *Var;
4440
4441 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var)
4442 : Consumer(Consumer), Var(Var) { }
4443
4444 ~PassToConsumerRAII() {
Richard Smith8809a0c2013-09-27 20:14:12 +00004445 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004446 }
4447 } PassToConsumerRAII(Consumer, Var);
Rafael Espindoladf88f6f2012-03-08 15:51:03 +00004448
Reid Klecknere07140e2015-04-15 01:08:06 +00004449 // If we already have a definition, we're done.
4450 if (VarDecl *Def = Var->getDefinition()) {
4451 // We may be explicitly instantiating something we've already implicitly
4452 // instantiated.
4453 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
4454 PointOfInstantiation);
Richard Smith8809a0c2013-09-27 20:14:12 +00004455 return;
Reid Klecknere07140e2015-04-15 01:08:06 +00004456 }
Douglas Gregor57d4f972011-06-03 03:35:07 +00004457
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004458 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004459 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004460 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004461 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004462 "instantiating variable definition");
Mike Stump11289f42009-09-09 15:08:12 +00004463
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004464 // If we're performing recursive template instantiation, create our own
4465 // queue of pending implicit instantiations that we will instantiate later,
4466 // while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004467 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4468 /*Enabled=*/Recursive);
Mike Stump11289f42009-09-09 15:08:12 +00004469
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004470 // Enter the scope of this instantiation. We don't use
4471 // PushDeclContext because we don't have a scope.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004472 ContextRAII PreviousContext(*this, Var->getDeclContext());
Douglas Gregora86bc002012-02-16 21:36:18 +00004473 LocalInstantiationScope Local(*this);
John McCall2957e3e2011-02-14 20:37:25 +00004474
Richard Smith4f3e3812017-05-20 01:36:41 +00004475 LocalEagerInstantiationScope LocalInstantiations(*this);
4476
Larisse Voufo39a1e502013-08-06 01:03:05 +00004477 VarDecl *OldVar = Var;
Richard Smith62f19e72016-06-25 00:15:56 +00004478 if (Def->isStaticDataMember() && !Def->isOutOfLine()) {
4479 // We're instantiating an inline static data member whose definition was
4480 // provided inside the class.
Richard Smith62f19e72016-06-25 00:15:56 +00004481 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4482 } else if (!VarSpec) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004483 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Richard Smith8809a0c2013-09-27 20:14:12 +00004484 TemplateArgs));
Richard Smith62f19e72016-06-25 00:15:56 +00004485 } else if (Var->isStaticDataMember() &&
4486 Var->getLexicalDeclContext()->isRecord()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004487 // We need to instantiate the definition of a static data member template,
4488 // and all we have is the in-class declaration of it. Instantiate a separate
4489 // declaration of the definition.
4490 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(),
4491 TemplateArgs);
4492 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl(
Craig Topperc3ec1492014-05-26 06:22:03 +00004493 VarSpec->getSpecializedTemplate(), Def, nullptr,
Richard Smith8809a0c2013-09-27 20:14:12 +00004494 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray()));
4495 if (Var) {
4496 llvm::PointerUnion<VarTemplateDecl *,
4497 VarTemplatePartialSpecializationDecl *> PatternPtr =
4498 VarSpec->getSpecializedTemplateOrPartial();
4499 if (VarTemplatePartialSpecializationDecl *Partial =
4500 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>())
4501 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf(
4502 Partial, &VarSpec->getTemplateInstantiationArgs());
4503
4504 // Merge the definition with the declaration.
4505 LookupResult R(*this, Var->getDeclName(), Var->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00004506 LookupOrdinaryName, forRedeclarationInCurContext());
Richard Smith8809a0c2013-09-27 20:14:12 +00004507 R.addDecl(OldVar);
4508 MergeVarDecl(Var, R);
4509
4510 // Attach the initializer.
4511 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4512 }
4513 } else
4514 // Complete the existing variable's definition with an appropriately
4515 // substituted type and initializer.
4516 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004517
4518 PreviousContext.pop();
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004519
4520 if (Var) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004521 PassToConsumerRAII.Var = Var;
Richard Smith8809a0c2013-09-27 20:14:12 +00004522 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(),
4523 OldVar->getPointOfInstantiation());
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004524 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004525
4526 // This variable may have local implicit instantiations that need to be
4527 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004528 LocalInstantiations.perform();
Douglas Gregora86bc002012-02-16 21:36:18 +00004529 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004530 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004531}
Douglas Gregor51783312009-05-27 05:35:12 +00004532
Anders Carlsson70553942009-08-29 05:16:22 +00004533void
4534Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
4535 const CXXConstructorDecl *Tmpl,
4536 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00004537
Richard Trieu9becef62011-09-09 03:18:59 +00004538 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith60f2e1e2012-09-25 00:23:05 +00004539 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004540
Anders Carlsson70553942009-08-29 05:16:22 +00004541 // Instantiate all the initializers.
Aaron Ballman0ad78302014-03-13 17:34:31 +00004542 for (const auto *Init : Tmpl->inits()) {
Chandler Carruthf92bd8c2010-09-03 21:54:20 +00004543 // Only instantiate written initializers, let Sema re-construct implicit
4544 // ones.
4545 if (!Init->isWritten())
4546 continue;
4547
Douglas Gregor44e7df62011-01-04 00:32:56 +00004548 SourceLocation EllipsisLoc;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004549
Douglas Gregor44e7df62011-01-04 00:32:56 +00004550 if (Init->isPackExpansion()) {
4551 // This is a pack expansion. We should expand it now.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004552 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Nick Lewycky2c308502013-06-13 00:45:47 +00004553 SmallVector<UnexpandedParameterPack, 4> Unexpanded;
Douglas Gregor44e7df62011-01-04 00:32:56 +00004554 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
Nick Lewycky2c308502013-06-13 00:45:47 +00004555 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded);
Douglas Gregor44e7df62011-01-04 00:32:56 +00004556 bool ShouldExpand = false;
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004557 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00004558 Optional<unsigned> NumExpansions;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004559 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004560 BaseTL.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00004561 Unexpanded,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004562 TemplateArgs, ShouldExpand,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004563 RetainExpansion,
Douglas Gregor44e7df62011-01-04 00:32:56 +00004564 NumExpansions)) {
4565 AnyErrors = true;
4566 New->setInvalidDecl();
4567 continue;
4568 }
4569 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004570
4571 // Loop over all of the arguments in the argument pack(s),
Douglas Gregor0dca5fd2011-01-14 17:04:44 +00004572 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004573 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
4574
4575 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004576 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4577 /*CXXDirectInit=*/true);
4578 if (TempInit.isInvalid()) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004579 AnyErrors = true;
4580 break;
4581 }
4582
4583 // Instantiate the base type.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004584 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004585 TemplateArgs,
4586 Init->getSourceLocation(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004587 New->getDeclName());
4588 if (!BaseTInfo) {
4589 AnyErrors = true;
4590 break;
4591 }
4592
4593 // Build the initializer.
Sebastian Redla74948d2011-09-24 17:48:25 +00004594 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004595 BaseTInfo, TempInit.get(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004596 New->getParent(),
4597 SourceLocation());
4598 if (NewInit.isInvalid()) {
4599 AnyErrors = true;
4600 break;
4601 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004602
Douglas Gregor44e7df62011-01-04 00:32:56 +00004603 NewInits.push_back(NewInit.get());
Douglas Gregor44e7df62011-01-04 00:32:56 +00004604 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004605
Douglas Gregor44e7df62011-01-04 00:32:56 +00004606 continue;
4607 }
4608
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004609 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004610 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4611 /*CXXDirectInit=*/true);
4612 if (TempInit.isInvalid()) {
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004613 AnyErrors = true;
4614 continue;
Anders Carlsson70553942009-08-29 05:16:22 +00004615 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004616
Anders Carlsson70553942009-08-29 05:16:22 +00004617 MemInitResult NewInit;
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004618 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
4619 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
4620 TemplateArgs,
4621 Init->getSourceLocation(),
4622 New->getDeclName());
4623 if (!TInfo) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004624 AnyErrors = true;
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00004625 New->setInvalidDecl();
4626 continue;
4627 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004628
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004629 if (Init->isBaseInitializer())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004630 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004631 New->getParent(), EllipsisLoc);
4632 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004633 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004634 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson70553942009-08-29 05:16:22 +00004635 } else if (Init->isMemberInitializer()) {
Douglas Gregor55e6b312011-03-04 19:46:35 +00004636 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004637 Init->getMemberLocation(),
4638 Init->getMember(),
4639 TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00004640 if (!Member) {
4641 AnyErrors = true;
4642 New->setInvalidDecl();
4643 continue;
4644 }
Mike Stump11289f42009-09-09 15:08:12 +00004645
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004646 NewInit = BuildMemberInitializer(Member, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004647 Init->getSourceLocation());
Francois Pichetd583da02010-12-04 09:14:42 +00004648 } else if (Init->isIndirectMemberInitializer()) {
4649 IndirectFieldDecl *IndirectMember =
Douglas Gregor55e6b312011-03-04 19:46:35 +00004650 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004651 Init->getMemberLocation(),
4652 Init->getIndirectMember(), TemplateArgs));
4653
Douglas Gregor55e6b312011-03-04 19:46:35 +00004654 if (!IndirectMember) {
4655 AnyErrors = true;
4656 New->setInvalidDecl();
Sebastian Redla74948d2011-09-24 17:48:25 +00004657 continue;
Douglas Gregor55e6b312011-03-04 19:46:35 +00004658 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004659
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004660 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004661 Init->getSourceLocation());
Anders Carlsson70553942009-08-29 05:16:22 +00004662 }
4663
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004664 if (NewInit.isInvalid()) {
4665 AnyErrors = true;
Anders Carlsson70553942009-08-29 05:16:22 +00004666 New->setInvalidDecl();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004667 } else {
Richard Trieu9becef62011-09-09 03:18:59 +00004668 NewInits.push_back(NewInit.get());
Anders Carlsson70553942009-08-29 05:16:22 +00004669 }
4670 }
Mike Stump11289f42009-09-09 15:08:12 +00004671
Anders Carlsson70553942009-08-29 05:16:22 +00004672 // Assign all the initializers to the new constructor.
John McCall48871652010-08-21 09:40:31 +00004673 ActOnMemInitializers(New,
Anders Carlsson70553942009-08-29 05:16:22 +00004674 /*FIXME: ColonLoc */
4675 SourceLocation(),
David Blaikie3fc2f912013-01-17 05:26:25 +00004676 NewInits,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004677 AnyErrors);
Anders Carlsson70553942009-08-29 05:16:22 +00004678}
4679
John McCall59660882009-08-29 08:11:13 +00004680// TODO: this could be templated if the various decl types used the
4681// same method name.
4682static bool isInstantiationOf(ClassTemplateDecl *Pattern,
4683 ClassTemplateDecl *Instance) {
4684 Pattern = Pattern->getCanonicalDecl();
4685
4686 do {
4687 Instance = Instance->getCanonicalDecl();
4688 if (Pattern == Instance) return true;
4689 Instance = Instance->getInstantiatedFromMemberTemplate();
4690 } while (Instance);
4691
4692 return false;
4693}
4694
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004695static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
4696 FunctionTemplateDecl *Instance) {
4697 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004698
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004699 do {
4700 Instance = Instance->getCanonicalDecl();
4701 if (Pattern == Instance) return true;
4702 Instance = Instance->getInstantiatedFromMemberTemplate();
4703 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004704
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004705 return false;
4706}
4707
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004708static bool
Douglas Gregor21610382009-10-29 00:04:11 +00004709isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
4710 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004711 Pattern
Douglas Gregor21610382009-10-29 00:04:11 +00004712 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
4713 do {
4714 Instance = cast<ClassTemplatePartialSpecializationDecl>(
4715 Instance->getCanonicalDecl());
4716 if (Pattern == Instance)
4717 return true;
4718 Instance = Instance->getInstantiatedFromMember();
4719 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004720
Douglas Gregor21610382009-10-29 00:04:11 +00004721 return false;
4722}
4723
John McCall59660882009-08-29 08:11:13 +00004724static bool isInstantiationOf(CXXRecordDecl *Pattern,
4725 CXXRecordDecl *Instance) {
4726 Pattern = Pattern->getCanonicalDecl();
4727
4728 do {
4729 Instance = Instance->getCanonicalDecl();
4730 if (Pattern == Instance) return true;
4731 Instance = Instance->getInstantiatedFromMemberClass();
4732 } while (Instance);
4733
4734 return false;
4735}
4736
4737static bool isInstantiationOf(FunctionDecl *Pattern,
4738 FunctionDecl *Instance) {
4739 Pattern = Pattern->getCanonicalDecl();
4740
4741 do {
4742 Instance = Instance->getCanonicalDecl();
4743 if (Pattern == Instance) return true;
4744 Instance = Instance->getInstantiatedFromMemberFunction();
4745 } while (Instance);
4746
4747 return false;
4748}
4749
4750static bool isInstantiationOf(EnumDecl *Pattern,
4751 EnumDecl *Instance) {
4752 Pattern = Pattern->getCanonicalDecl();
4753
4754 do {
4755 Instance = Instance->getCanonicalDecl();
4756 if (Pattern == Instance) return true;
4757 Instance = Instance->getInstantiatedFromMemberEnum();
4758 } while (Instance);
4759
4760 return false;
4761}
4762
John McCallb96ec562009-12-04 22:46:56 +00004763static bool isInstantiationOf(UsingShadowDecl *Pattern,
4764 UsingShadowDecl *Instance,
4765 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004766 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance),
4767 Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004768}
4769
Richard Smith151c4562016-12-20 21:35:28 +00004770static bool isInstantiationOf(UsingDecl *Pattern, UsingDecl *Instance,
John McCallb96ec562009-12-04 22:46:56 +00004771 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004772 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004773}
4774
Richard Smith151c4562016-12-20 21:35:28 +00004775template<typename T>
4776static bool isInstantiationOfUnresolvedUsingDecl(T *Pattern, Decl *Other,
4777 ASTContext &Ctx) {
4778 // An unresolved using declaration can instantiate to an unresolved using
4779 // declaration, or to a using declaration or a using declaration pack.
4780 //
4781 // Multiple declarations can claim to be instantiated from an unresolved
4782 // using declaration if it's a pack expansion. We want the UsingPackDecl
4783 // in that case, not the individual UsingDecls within the pack.
4784 bool OtherIsPackExpansion;
4785 NamedDecl *OtherFrom;
4786 if (auto *OtherUUD = dyn_cast<T>(Other)) {
4787 OtherIsPackExpansion = OtherUUD->isPackExpansion();
4788 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUUD);
4789 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) {
4790 OtherIsPackExpansion = true;
4791 OtherFrom = OtherUPD->getInstantiatedFromUsingDecl();
4792 } else if (auto *OtherUD = dyn_cast<UsingDecl>(Other)) {
4793 OtherIsPackExpansion = false;
4794 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUD);
4795 } else {
4796 return false;
4797 }
4798 return Pattern->isPackExpansion() == OtherIsPackExpansion &&
4799 declaresSameEntity(OtherFrom, Pattern);
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004800}
4801
John McCall59660882009-08-29 08:11:13 +00004802static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
4803 VarDecl *Instance) {
4804 assert(Instance->isStaticDataMember());
4805
4806 Pattern = Pattern->getCanonicalDecl();
4807
4808 do {
4809 Instance = Instance->getCanonicalDecl();
4810 if (Pattern == Instance) return true;
4811 Instance = Instance->getInstantiatedFromStaticDataMember();
4812 } while (Instance);
4813
4814 return false;
4815}
4816
John McCallb96ec562009-12-04 22:46:56 +00004817// Other is the prospective instantiation
4818// D is the prospective pattern
Douglas Gregor51783312009-05-27 05:35:12 +00004819static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Richard Smith151c4562016-12-20 21:35:28 +00004820 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
4821 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
John McCalle61f2ba2009-11-18 02:36:19 +00004822
Richard Smith151c4562016-12-20 21:35:28 +00004823 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D))
4824 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
Douglas Gregor51783312009-05-27 05:35:12 +00004825
Richard Smith151c4562016-12-20 21:35:28 +00004826 if (D->getKind() != Other->getKind())
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004827 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004828
Richard Smithd8a9e372016-12-18 21:39:37 +00004829 if (auto *Record = dyn_cast<CXXRecordDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004830 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump11289f42009-09-09 15:08:12 +00004831
Richard Smithd8a9e372016-12-18 21:39:37 +00004832 if (auto *Function = dyn_cast<FunctionDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004833 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor51783312009-05-27 05:35:12 +00004834
Richard Smithd8a9e372016-12-18 21:39:37 +00004835 if (auto *Enum = dyn_cast<EnumDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004836 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor51783312009-05-27 05:35:12 +00004837
Richard Smithd8a9e372016-12-18 21:39:37 +00004838 if (auto *Var = dyn_cast<VarDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004839 if (Var->isStaticDataMember())
4840 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
4841
Richard Smithd8a9e372016-12-18 21:39:37 +00004842 if (auto *Temp = dyn_cast<ClassTemplateDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004843 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregorf3db0032009-08-28 22:03:51 +00004844
Richard Smithd8a9e372016-12-18 21:39:37 +00004845 if (auto *Temp = dyn_cast<FunctionTemplateDecl>(Other))
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004846 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
4847
Richard Smithd8a9e372016-12-18 21:39:37 +00004848 if (auto *PartialSpec =
4849 dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
Douglas Gregor21610382009-10-29 00:04:11 +00004850 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
4851 PartialSpec);
4852
Richard Smithd8a9e372016-12-18 21:39:37 +00004853 if (auto *Field = dyn_cast<FieldDecl>(Other)) {
Anders Carlsson5da84842009-09-01 04:26:58 +00004854 if (!Field->getDeclName()) {
4855 // This is an unnamed field.
Richard Smith32952e12014-10-14 02:00:47 +00004856 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field),
4857 cast<FieldDecl>(D));
Anders Carlsson5da84842009-09-01 04:26:58 +00004858 }
4859 }
Mike Stump11289f42009-09-09 15:08:12 +00004860
Richard Smithd8a9e372016-12-18 21:39:37 +00004861 if (auto *Using = dyn_cast<UsingDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004862 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
4863
Richard Smithd8a9e372016-12-18 21:39:37 +00004864 if (auto *Shadow = dyn_cast<UsingShadowDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004865 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
4866
Richard Smithd8a9e372016-12-18 21:39:37 +00004867 return D->getDeclName() &&
4868 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
Douglas Gregor51783312009-05-27 05:35:12 +00004869}
4870
4871template<typename ForwardIterator>
Mike Stump11289f42009-09-09 15:08:12 +00004872static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor51783312009-05-27 05:35:12 +00004873 NamedDecl *D,
4874 ForwardIterator first,
4875 ForwardIterator last) {
4876 for (; first != last; ++first)
4877 if (isInstantiationOf(Ctx, D, *first))
4878 return cast<NamedDecl>(*first);
4879
Craig Topperc3ec1492014-05-26 06:22:03 +00004880 return nullptr;
Douglas Gregor51783312009-05-27 05:35:12 +00004881}
4882
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004883/// Finds the instantiation of the given declaration context
John McCallaa74a0c2009-08-28 07:59:38 +00004884/// within the current instantiation.
4885///
4886/// \returns NULL if there was an error
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004887DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregor64621e62009-09-16 18:34:49 +00004888 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCallaa74a0c2009-08-28 07:59:38 +00004889 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Richard Smith4f440e32017-06-08 01:08:50 +00004890 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs, true);
John McCallaa74a0c2009-08-28 07:59:38 +00004891 return cast_or_null<DeclContext>(ID);
4892 } else return DC;
4893}
4894
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004895/// Find the instantiation of the given declaration within the
Douglas Gregorcd3a0972009-05-27 17:54:46 +00004896/// current instantiation.
Douglas Gregor51783312009-05-27 05:35:12 +00004897///
4898/// This routine is intended to be used when \p D is a declaration
4899/// referenced from within a template, that needs to mapped into the
4900/// corresponding declaration within an instantiation. For example,
4901/// given:
4902///
4903/// \code
4904/// template<typename T>
4905/// struct X {
4906/// enum Kind {
4907/// KnownValue = sizeof(T)
4908/// };
4909///
4910/// bool getKind() const { return KnownValue; }
4911/// };
4912///
4913/// template struct X<int>;
4914/// \endcode
4915///
Serge Pavloved5fe902013-07-10 04:59:14 +00004916/// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the
4917/// \p EnumConstantDecl for \p KnownValue (which refers to
4918/// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation
4919/// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs
4920/// this mapping from within the instantiation of <tt>X<int></tt>.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004921NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Richard Smith4f440e32017-06-08 01:08:50 +00004922 const MultiLevelTemplateArgumentList &TemplateArgs,
4923 bool FindingInstantiatedContext) {
Douglas Gregor51783312009-05-27 05:35:12 +00004924 DeclContext *ParentDC = D->getDeclContext();
Fangrui Song6907ce22018-07-30 19:24:48 +00004925 // FIXME: Parmeters of pointer to functions (y below) that are themselves
Faisal Vali2cba1332013-10-23 06:44:28 +00004926 // parameters (p below) can have their ParentDC set to the translation-unit
Fangrui Song6907ce22018-07-30 19:24:48 +00004927 // - thus we can not consistently check if the ParentDC of such a parameter
Faisal Vali2cba1332013-10-23 06:44:28 +00004928 // is Dependent or/and a FunctionOrMethod.
Fangrui Song6907ce22018-07-30 19:24:48 +00004929 // For e.g. this code, during Template argument deduction tries to
Faisal Vali2cba1332013-10-23 06:44:28 +00004930 // find an instantiated decl for (T y) when the ParentDC for y is
Fangrui Song6907ce22018-07-30 19:24:48 +00004931 // the translation unit.
4932 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {}
Aaron Ballman36a53502014-01-16 13:03:14 +00004933 // float baz(float(*)()) { return 0.0; }
Faisal Vali2cba1332013-10-23 06:44:28 +00004934 // Foo(baz);
4935 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time
4936 // it gets here, always has a FunctionOrMethod as its ParentDC??
4937 // For now:
4938 // - as long as we have a ParmVarDecl whose parent is non-dependent and
4939 // whose type is not instantiation dependent, do nothing to the decl
4940 // - otherwise find its instantiated decl.
4941 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() &&
4942 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType())
4943 return D;
Rafael Espindola09b00e32013-10-23 04:12:23 +00004944 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregorb93971082010-02-05 19:54:12 +00004945 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Alexey Bataeve6aa4692018-09-13 16:54:05 +00004946 ((ParentDC->isFunctionOrMethod() ||
4947 isa<OMPDeclareReductionDecl>(ParentDC)) &&
4948 ParentDC->isDependentContext()) ||
Douglas Gregora86bc002012-02-16 21:36:18 +00004949 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004950 // D is a local of some kind. Look into the map of local
4951 // declarations to their instantiations.
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004952 if (CurrentInstantiationScope) {
4953 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) {
4954 if (Decl *FD = Found->dyn_cast<Decl *>())
4955 return cast<NamedDecl>(FD);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004956
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004957 int PackIdx = ArgumentPackSubstitutionIndex;
4958 assert(PackIdx != -1 &&
4959 "found declaration pack but not pack expanding");
4960 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
4961 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
4962 }
Chris Lattnercab02a62011-02-17 20:34:02 +00004963 }
4964
Serge Pavlov7cd8f602013-07-15 06:14:07 +00004965 // If we're performing a partial substitution during template argument
4966 // deduction, we may not have values for template parameters yet. They
4967 // just map to themselves.
4968 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
4969 isa<TemplateTemplateParmDecl>(D))
4970 return D;
4971
Serge Pavlov074a5182013-08-10 12:00:21 +00004972 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004973 return nullptr;
Serge Pavlov074a5182013-08-10 12:00:21 +00004974
Serge Pavlove7ad8312015-05-15 10:10:28 +00004975 // Normally this function only searches for already instantiated declaration
4976 // however we have to make an exclusion for local types used before
4977 // definition as in the code:
4978 //
4979 // template<typename T> void f1() {
4980 // void g1(struct x1);
4981 // struct x1 {};
4982 // }
4983 //
4984 // In this case instantiation of the type of 'g1' requires definition of
4985 // 'x1', which is defined later. Error recovery may produce an enum used
4986 // before definition. In these cases we need to instantiate relevant
4987 // declarations here.
4988 bool NeedInstantiate = false;
4989 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
4990 NeedInstantiate = RD->isLocalClass();
4991 else
4992 NeedInstantiate = isa<EnumDecl>(D);
4993 if (NeedInstantiate) {
Serge Pavlov4c511742015-05-04 16:44:39 +00004994 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4995 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4996 return cast<TypeDecl>(Inst);
4997 }
4998
Chris Lattnercab02a62011-02-17 20:34:02 +00004999 // If we didn't find the decl, then we must have a label decl that hasn't
5000 // been found yet. Lazily instantiate it and return it now.
5001 assert(isa<LabelDecl>(D));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005002
Chris Lattnercab02a62011-02-17 20:34:02 +00005003 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
5004 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005005
Chris Lattnercab02a62011-02-17 20:34:02 +00005006 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
5007 return cast<LabelDecl>(Inst);
Douglas Gregorf98d9b62009-05-27 17:07:49 +00005008 }
Douglas Gregor51783312009-05-27 05:35:12 +00005009
Larisse Voufo39a1e502013-08-06 01:03:05 +00005010 // For variable template specializations, update those that are still
5011 // type-dependent.
5012 if (VarTemplateSpecializationDecl *VarSpec =
5013 dyn_cast<VarTemplateSpecializationDecl>(D)) {
5014 bool InstantiationDependent = false;
5015 const TemplateArgumentListInfo &VarTemplateArgs =
5016 VarSpec->getTemplateArgsInfo();
5017 if (TemplateSpecializationType::anyDependentTemplateArguments(
5018 VarTemplateArgs, InstantiationDependent))
5019 D = cast<NamedDecl>(
5020 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs));
5021 return D;
5022 }
5023
Douglas Gregor64621e62009-09-16 18:34:49 +00005024 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
5025 if (!Record->isDependentContext())
5026 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005027
Douglas Gregor4109afa2011-11-07 17:43:18 +00005028 // Determine whether this record is the "templated" declaration describing
5029 // a class template or class template partial specialization.
Douglas Gregor64621e62009-09-16 18:34:49 +00005030 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor4109afa2011-11-07 17:43:18 +00005031 if (ClassTemplate)
5032 ClassTemplate = ClassTemplate->getCanonicalDecl();
5033 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5034 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
5035 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
Larisse Voufo39a1e502013-08-06 01:03:05 +00005036
Douglas Gregor4109afa2011-11-07 17:43:18 +00005037 // Walk the current context to find either the record or an instantiation of
5038 // it.
5039 DeclContext *DC = CurContext;
5040 while (!DC->isFileContext()) {
5041 // If we're performing substitution while we're inside the template
5042 // definition, we'll find our own context. We're done.
5043 if (DC->Equals(Record))
5044 return Record;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005045
Douglas Gregor4109afa2011-11-07 17:43:18 +00005046 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
5047 // Check whether we're in the process of instantiating a class template
5048 // specialization of the template we're mapping.
5049 if (ClassTemplateSpecializationDecl *InstSpec
5050 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
5051 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
5052 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
5053 return InstRecord;
5054 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005055
Douglas Gregor4109afa2011-11-07 17:43:18 +00005056 // Check whether we're in the process of instantiating a member class.
5057 if (isInstantiationOf(Record, InstRecord))
5058 return InstRecord;
Douglas Gregor64621e62009-09-16 18:34:49 +00005059 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005060
Douglas Gregor4109afa2011-11-07 17:43:18 +00005061 // Move to the outer template scope.
5062 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
5063 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
5064 DC = FD->getLexicalDeclContext();
5065 continue;
5066 }
Richard Smith32918772017-02-14 00:25:28 +00005067 // An implicit deduction guide acts as if it's within the class template
5068 // specialization described by its name and first N template params.
Richard Smithbc491202017-02-17 20:05:37 +00005069 auto *Guide = dyn_cast<CXXDeductionGuideDecl>(FD);
5070 if (Guide && Guide->isImplicit()) {
5071 TemplateDecl *TD = Guide->getDeducedTemplate();
Richard Smith0cd9c042017-02-21 08:42:39 +00005072 // Convert the arguments to an "as-written" list.
Richard Smith32918772017-02-14 00:25:28 +00005073 TemplateArgumentListInfo Args(Loc, Loc);
Richard Smith0cd9c042017-02-21 08:42:39 +00005074 for (TemplateArgument Arg : TemplateArgs.getInnermost().take_front(
5075 TD->getTemplateParameters()->size())) {
5076 ArrayRef<TemplateArgument> Unpacked(Arg);
5077 if (Arg.getKind() == TemplateArgument::Pack)
5078 Unpacked = Arg.pack_elements();
5079 for (TemplateArgument UnpackedArg : Unpacked)
5080 Args.addArgument(
5081 getTrivialTemplateArgumentLoc(UnpackedArg, QualType(), Loc));
5082 }
Richard Smith32918772017-02-14 00:25:28 +00005083 QualType T = CheckTemplateIdType(TemplateName(TD), Loc, Args);
5084 if (T.isNull())
5085 return nullptr;
Richard Smithe6d4b772017-06-07 02:42:27 +00005086 auto *SubstRecord = T->getAsCXXRecordDecl();
5087 assert(SubstRecord && "class template id not a class type?");
5088 // Check that this template-id names the primary template and not a
5089 // partial or explicit specialization. (In the latter cases, it's
5090 // meaningless to attempt to find an instantiation of D within the
5091 // specialization.)
5092 // FIXME: The standard doesn't say what should happen here.
Richard Smith4f440e32017-06-08 01:08:50 +00005093 if (FindingInstantiatedContext &&
5094 usesPartialOrExplicitSpecialization(
5095 Loc, cast<ClassTemplateSpecializationDecl>(SubstRecord))) {
Richard Smithe6d4b772017-06-07 02:42:27 +00005096 Diag(Loc, diag::err_specialization_not_primary_template)
5097 << T << (SubstRecord->getTemplateSpecializationKind() ==
5098 TSK_ExplicitSpecialization);
5099 return nullptr;
5100 }
5101 DC = SubstRecord;
Richard Smith32918772017-02-14 00:25:28 +00005102 continue;
5103 }
John McCall59660882009-08-29 08:11:13 +00005104 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005105
Douglas Gregor4109afa2011-11-07 17:43:18 +00005106 DC = DC->getParent();
John McCall59660882009-08-29 08:11:13 +00005107 }
Douglas Gregord225fa02010-02-05 22:40:03 +00005108
Douglas Gregor64621e62009-09-16 18:34:49 +00005109 // Fall through to deal with other dependent record types (e.g.,
5110 // anonymous unions in class templates).
5111 }
John McCall59660882009-08-29 08:11:13 +00005112
Douglas Gregor64621e62009-09-16 18:34:49 +00005113 if (!ParentDC->isDependentContext())
5114 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005115
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005116 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00005117 if (!ParentDC)
Craig Topperc3ec1492014-05-26 06:22:03 +00005118 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00005119
Douglas Gregor51783312009-05-27 05:35:12 +00005120 if (ParentDC != D->getDeclContext()) {
5121 // We performed some kind of instantiation in the parent context,
5122 // so now we need to look into the instantiated parent context to
5123 // find the instantiation of the declaration D.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005124
John McCalle78aac42010-03-10 03:28:59 +00005125 // If our context used to be dependent, we may need to instantiate
5126 // it before performing lookup into that context.
Douglas Gregor528ad932011-03-06 20:12:45 +00005127 bool IsBeingInstantiated = false;
John McCalle78aac42010-03-10 03:28:59 +00005128 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005129 if (!Spec->isDependentContext()) {
5130 QualType T = Context.getTypeDeclType(Spec);
John McCalle78aac42010-03-10 03:28:59 +00005131 const RecordType *Tag = T->getAs<RecordType>();
5132 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregor528ad932011-03-06 20:12:45 +00005133 if (Tag->isBeingDefined())
5134 IsBeingInstantiated = true;
John McCalle78aac42010-03-10 03:28:59 +00005135 if (!Tag->isBeingDefined() &&
5136 RequireCompleteType(Loc, T, diag::err_incomplete_type))
Craig Topperc3ec1492014-05-26 06:22:03 +00005137 return nullptr;
Douglas Gregor25edf432010-11-05 23:22:45 +00005138
5139 ParentDC = Tag->getDecl();
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005140 }
5141 }
5142
Craig Topperc3ec1492014-05-26 06:22:03 +00005143 NamedDecl *Result = nullptr;
Richard Smith151c4562016-12-20 21:35:28 +00005144 // FIXME: If the name is a dependent name, this lookup won't necessarily
5145 // find it. Does that ever matter?
Akira Hatanaka59e3b432017-01-31 19:53:32 +00005146 if (auto Name = D->getDeclName()) {
5147 DeclarationNameInfo NameInfo(Name, D->getLocation());
5148 Name = SubstDeclarationNameInfo(NameInfo, TemplateArgs).getName();
5149 if (!Name)
5150 return nullptr;
5151 DeclContext::lookup_result Found = ParentDC->lookup(Name);
David Blaikieff7d47a2012-12-19 00:45:41 +00005152 Result = findInstantiationOf(Context, D, Found.begin(), Found.end());
Douglas Gregor51783312009-05-27 05:35:12 +00005153 } else {
5154 // Since we don't have a name for the entity we're looking for,
5155 // our only option is to walk through all of the declarations to
5156 // find that name. This will occur in a few cases:
5157 //
5158 // - anonymous struct/union within a template
5159 // - unnamed class/struct/union/enum within a template
5160 //
5161 // FIXME: Find a better way to find these instantiations!
Mike Stump11289f42009-09-09 15:08:12 +00005162 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005163 ParentDC->decls_begin(),
5164 ParentDC->decls_end());
Douglas Gregor51783312009-05-27 05:35:12 +00005165 }
Mike Stump11289f42009-09-09 15:08:12 +00005166
Douglas Gregor528ad932011-03-06 20:12:45 +00005167 if (!Result) {
5168 if (isa<UsingShadowDecl>(D)) {
5169 // UsingShadowDecls can instantiate to nothing because of using hiding.
5170 } else if (Diags.hasErrorOccurred()) {
5171 // We've already complained about something, so most likely this
5172 // declaration failed to instantiate. There's no point in complaining
5173 // further, since this is normal in invalid code.
5174 } else if (IsBeingInstantiated) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005175 // The class in which this member exists is currently being
Douglas Gregor528ad932011-03-06 20:12:45 +00005176 // instantiated, and we haven't gotten around to instantiating this
5177 // member yet. This can happen when the code uses forward declarations
5178 // of member classes, and introduces ordering dependencies via
5179 // template instantiation.
5180 Diag(Loc, diag::err_member_not_yet_instantiated)
5181 << D->getDeclName()
5182 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
5183 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith169f2192012-03-26 20:28:16 +00005184 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
5185 // This enumeration constant was found when the template was defined,
5186 // but can't be found in the instantiation. This can happen if an
5187 // unscoped enumeration member is explicitly specialized.
5188 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
5189 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
5190 TemplateArgs));
5191 assert(Spec->getTemplateSpecializationKind() ==
5192 TSK_ExplicitSpecialization);
5193 Diag(Loc, diag::err_enumerator_does_not_exist)
5194 << D->getDeclName()
5195 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
5196 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
5197 << Context.getTypeDeclType(Spec);
Douglas Gregor528ad932011-03-06 20:12:45 +00005198 } else {
5199 // We should have found something, but didn't.
5200 llvm_unreachable("Unable to find instantiation of declaration!");
5201 }
5202 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005203
Douglas Gregor51783312009-05-27 05:35:12 +00005204 D = Result;
5205 }
5206
Douglas Gregor51783312009-05-27 05:35:12 +00005207 return D;
5208}
Douglas Gregor77b50e12009-06-22 23:06:13 +00005209
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005210/// Performs template instantiation for all implicit template
Douglas Gregor77b50e12009-06-22 23:06:13 +00005211/// instantiations we have seen until this point.
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00005212void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005213 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth54080172010-08-25 08:44:16 +00005214 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005215 PendingImplicitInstantiation Inst;
5216
5217 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth54080172010-08-25 08:44:16 +00005218 Inst = PendingInstantiations.front();
5219 PendingInstantiations.pop_front();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005220 } else {
5221 Inst = PendingLocalImplicitInstantiations.front();
5222 PendingLocalImplicitInstantiations.pop_front();
5223 }
Mike Stump11289f42009-09-09 15:08:12 +00005224
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005225 // Instantiate function definitions
5226 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005227 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
5228 TSK_ExplicitInstantiationDefinition;
Erich Keane0fb16482018-08-13 18:33:20 +00005229 if (Function->isMultiVersion()) {
5230 getASTContext().forEachMultiversionedFunctionVersion(
5231 Function, [this, Inst, DefinitionRequired](FunctionDecl *CurFD) {
5232 InstantiateFunctionDefinition(/*FIXME:*/ Inst.second, CurFD, true,
5233 DefinitionRequired, true);
5234 if (CurFD->isDefined())
5235 CurFD->setInstantiationIsPending(false);
5236 });
5237 } else {
5238 InstantiateFunctionDefinition(/*FIXME:*/ Inst.second, Function, true,
5239 DefinitionRequired, true);
5240 if (Function->isDefined())
5241 Function->setInstantiationIsPending(false);
5242 }
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005243 continue;
5244 }
Mike Stump11289f42009-09-09 15:08:12 +00005245
Larisse Voufo39a1e502013-08-06 01:03:05 +00005246 // Instantiate variable definitions
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005247 VarDecl *Var = cast<VarDecl>(Inst.first);
Larisse Voufo39a1e502013-08-06 01:03:05 +00005248
5249 assert((Var->isStaticDataMember() ||
5250 isa<VarTemplateSpecializationDecl>(Var)) &&
5251 "Not a static data member, nor a variable template"
5252 " specialization?");
Anders Carlsson62215c42009-09-01 05:12:24 +00005253
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005254 // Don't try to instantiate declarations if the most recent redeclaration
5255 // is invalid.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005256 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005257 continue;
5258
5259 // Check if the most recent declaration has changed the specialization kind
5260 // and removed the need for implicit instantiation.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005261 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005262 case TSK_Undeclared:
David Blaikie83d382b2011-09-23 05:06:16 +00005263 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005264 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005265 case TSK_ExplicitSpecialization:
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005266 continue; // No longer need to instantiate this type.
5267 case TSK_ExplicitInstantiationDefinition:
5268 // We only need an instantiation if the pending instantiation *is* the
5269 // explicit instantiation.
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00005270 if (Var != Var->getMostRecentDecl())
5271 continue;
5272 break;
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005273 case TSK_ImplicitInstantiation:
5274 break;
5275 }
5276
Jordan Rose1e879d82018-03-23 00:07:18 +00005277 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00005278 "instantiating variable definition");
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005279 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
5280 TSK_ExplicitInstantiationDefinition;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005281
5282 // Instantiate static data member definitions or variable template
5283 // specializations.
5284 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00005285 DefinitionRequired, true);
Douglas Gregor77b50e12009-06-22 23:06:13 +00005286 }
5287}
John McCallc62bb642010-03-24 05:22:00 +00005288
5289void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
5290 const MultiLevelTemplateArgumentList &TemplateArgs) {
Aaron Ballmanb105e492014-03-07 14:09:15 +00005291 for (auto DD : Pattern->ddiags()) {
John McCallc62bb642010-03-24 05:22:00 +00005292 switch (DD->getKind()) {
5293 case DependentDiagnostic::Access:
5294 HandleDependentAccessCheck(*DD, TemplateArgs);
5295 break;
5296 }
5297 }
5298}