blob: 68857d972b59ffc565c72c70511247d1254712ac [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 }
298 Sema::CXXThisScopeRAII ThisScope(S, ThisContext, /*TypeQuals=*/0,
299 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()),
358 /*TypeQuals*/ 0, ND->isCXXInstanceMember());
359
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
John McCall6602bb12010-08-01 02:01:53 +0000368void Sema::InstantiateAttrs(const MultiLevelTemplateArgumentList &TemplateArgs,
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000369 const Decl *Tmpl, Decl *New,
370 LateInstantiatedAttrVec *LateAttrs,
371 LocalInstantiationScope *OuterMostScope) {
Aaron Ballmanb97112e2014-03-08 22:19:01 +0000372 for (const auto *TmplAttr : Tmpl->attrs()) {
Chandler Carruthf40c42f2010-06-25 03:22:07 +0000373 // FIXME: This should be generalized to more than just the AlignedAttr.
Richard Smith44c247f2013-02-22 08:32:16 +0000374 const AlignedAttr *Aligned = dyn_cast<AlignedAttr>(TmplAttr);
375 if (Aligned && Aligned->isAlignmentDependent()) {
376 instantiateDependentAlignedAttr(*this, TemplateArgs, Aligned, New);
377 continue;
Chandler Carruthf40c42f2010-06-25 03:22:07 +0000378 }
379
Hal Finkelee90a222014-09-26 05:04:30 +0000380 const AssumeAlignedAttr *AssumeAligned = dyn_cast<AssumeAlignedAttr>(TmplAttr);
381 if (AssumeAligned) {
382 instantiateDependentAssumeAlignedAttr(*this, TemplateArgs, AssumeAligned, New);
383 continue;
384 }
385
Hal Finkel1b0d24e2014-10-02 21:21:25 +0000386 const AlignValueAttr *AlignValue = dyn_cast<AlignValueAttr>(TmplAttr);
387 if (AlignValue) {
388 instantiateDependentAlignValueAttr(*this, TemplateArgs, AlignValue, New);
389 continue;
390 }
391
Erich Keane623efd82017-03-30 21:48:55 +0000392 if (const auto *AllocAlign = dyn_cast<AllocAlignAttr>(TmplAttr)) {
393 instantiateDependentAllocAlignAttr(*this, TemplateArgs, AllocAlign, New);
394 continue;
395 }
396
397
George Burgess IV00431952016-11-17 01:33:54 +0000398 if (const auto *EnableIf = dyn_cast<EnableIfAttr>(TmplAttr)) {
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000399 instantiateDependentEnableIfAttr(*this, TemplateArgs, EnableIf, Tmpl,
George Burgess IV177399e2017-01-09 04:12:14 +0000400 cast<FunctionDecl>(New));
401 continue;
402 }
403
404 if (const auto *DiagnoseIf = dyn_cast<DiagnoseIfAttr>(TmplAttr)) {
405 instantiateDependentDiagnoseIfAttr(*this, TemplateArgs, DiagnoseIf, Tmpl,
406 cast<FunctionDecl>(New));
Nick Lewycky35a6ef42014-01-11 02:50:57 +0000407 continue;
408 }
409
Artem Belevich7093e402015-04-21 22:55:54 +0000410 if (const CUDALaunchBoundsAttr *CUDALaunchBounds =
411 dyn_cast<CUDALaunchBoundsAttr>(TmplAttr)) {
412 instantiateDependentCUDALaunchBoundsAttr(*this, TemplateArgs,
413 *CUDALaunchBounds, New);
414 continue;
415 }
416
Denis Zobnind9e2dcd2016-02-02 13:50:39 +0000417 if (const ModeAttr *Mode = dyn_cast<ModeAttr>(TmplAttr)) {
418 instantiateDependentModeAttr(*this, TemplateArgs, *Mode, New);
419 continue;
420 }
421
Alexey Bataev2af33e32016-04-07 12:45:37 +0000422 if (const auto *OMPAttr = dyn_cast<OMPDeclareSimdDeclAttr>(TmplAttr)) {
423 instantiateOMPDeclareSimdDeclAttr(*this, TemplateArgs, *OMPAttr, New);
424 continue;
425 }
426
Hans Wennborgc2b7f7a2014-08-24 00:12:36 +0000427 // Existing DLL attribute on the instantiation takes precedence.
428 if (TmplAttr->getKind() == attr::DLLExport ||
429 TmplAttr->getKind() == attr::DLLImport) {
430 if (New->hasAttr<DLLExportAttr>() || New->hasAttr<DLLImportAttr>()) {
431 continue;
432 }
433 }
434
John McCall477f2bb2016-03-03 06:39:32 +0000435 if (auto ABIAttr = dyn_cast<ParameterABIAttr>(TmplAttr)) {
436 AddParameterABIAttr(ABIAttr->getRange(), New, ABIAttr->getABI(),
437 ABIAttr->getSpellingListIndex());
438 continue;
439 }
440
John McCall3b5a8f52016-03-03 00:10:03 +0000441 if (isa<NSConsumedAttr>(TmplAttr) || isa<CFConsumedAttr>(TmplAttr)) {
442 AddNSConsumedAttr(TmplAttr->getRange(), New,
443 TmplAttr->getSpellingListIndex(),
444 isa<NSConsumedAttr>(TmplAttr),
445 /*template instantiation*/ true);
446 continue;
447 }
448
Richard Smith44c247f2013-02-22 08:32:16 +0000449 assert(!TmplAttr->isPackExpansion());
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000450 if (TmplAttr->isLateParsed() && LateAttrs) {
451 // Late parsed attributes must be instantiated and attached after the
452 // enclosing class has been instantiated. See Sema::InstantiateClass.
Craig Topperc3ec1492014-05-26 06:22:03 +0000453 LocalInstantiationScope *Saved = nullptr;
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000454 if (CurrentInstantiationScope)
455 Saved = CurrentInstantiationScope->cloneScopes(OuterMostScope);
456 LateAttrs->push_back(LateInstantiatedAttribute(TmplAttr, Saved, New));
457 } else {
Richard Smithc3d2ebb2013-06-07 02:33:37 +0000458 // Allow 'this' within late-parsed attributes.
459 NamedDecl *ND = dyn_cast<NamedDecl>(New);
460 CXXRecordDecl *ThisContext =
461 dyn_cast_or_null<CXXRecordDecl>(ND->getDeclContext());
462 CXXThisScopeRAII ThisScope(*this, ThisContext, /*TypeQuals*/0,
463 ND && ND->isCXXInstanceMember());
464
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +0000465 Attr *NewAttr = sema::instantiateTemplateAttribute(TmplAttr, Context,
466 *this, TemplateArgs);
Richard Smith33bddbd2018-01-04 23:42:29 +0000467 if (NewAttr)
Rafael Espindola7f90b7d2012-05-15 14:09:55 +0000468 New->addAttr(NewAttr);
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000469 }
Anders Carlsson3d709752009-11-07 06:07:58 +0000470 }
471}
472
Richard Smith41c79d92014-10-11 00:37:16 +0000473/// Get the previous declaration of a declaration for the purposes of template
474/// instantiation. If this finds a previous declaration, then the previous
475/// declaration of the instantiation of D should be an instantiation of the
476/// result of this function.
477template<typename DeclT>
478static DeclT *getPreviousDeclForInstantiation(DeclT *D) {
479 DeclT *Result = D->getPreviousDecl();
480
481 // If the declaration is within a class, and the previous declaration was
482 // merged from a different definition of that class, then we don't have a
483 // previous declaration for the purpose of template instantiation.
484 if (Result && isa<CXXRecordDecl>(D->getDeclContext()) &&
485 D->getLexicalDeclContext() != Result->getLexicalDeclContext())
486 return nullptr;
487
488 return Result;
489}
490
Douglas Gregor8a655532009-03-25 15:45:12 +0000491Decl *
492TemplateDeclInstantiator::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000493 llvm_unreachable("Translation units cannot be instantiated");
Douglas Gregor8a655532009-03-25 15:45:12 +0000494}
495
496Decl *
Nico Weber66220292016-03-02 17:28:48 +0000497TemplateDeclInstantiator::VisitPragmaCommentDecl(PragmaCommentDecl *D) {
498 llvm_unreachable("pragma comment cannot be instantiated");
499}
500
Nico Webercbbaeb12016-03-02 19:28:54 +0000501Decl *TemplateDeclInstantiator::VisitPragmaDetectMismatchDecl(
502 PragmaDetectMismatchDecl *D) {
503 llvm_unreachable("pragma comment cannot be instantiated");
504}
505
Nico Weber66220292016-03-02 17:28:48 +0000506Decl *
Richard Smithf19e1272015-03-07 00:04:49 +0000507TemplateDeclInstantiator::VisitExternCContextDecl(ExternCContextDecl *D) {
508 llvm_unreachable("extern \"C\" context cannot be instantiated");
509}
510
511Decl *
Chris Lattnercab02a62011-02-17 20:34:02 +0000512TemplateDeclInstantiator::VisitLabelDecl(LabelDecl *D) {
513 LabelDecl *Inst = LabelDecl::Create(SemaRef.Context, Owner, D->getLocation(),
514 D->getIdentifier());
515 Owner->addDecl(Inst);
516 return Inst;
517}
518
519Decl *
Douglas Gregor8a655532009-03-25 15:45:12 +0000520TemplateDeclInstantiator::VisitNamespaceDecl(NamespaceDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +0000521 llvm_unreachable("Namespaces cannot be instantiated");
Douglas Gregor8a655532009-03-25 15:45:12 +0000522}
523
John McCalld8d0d432010-02-16 06:53:13 +0000524Decl *
525TemplateDeclInstantiator::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
526 NamespaceAliasDecl *Inst
527 = NamespaceAliasDecl::Create(SemaRef.Context, Owner,
528 D->getNamespaceLoc(),
529 D->getAliasLoc(),
Douglas Gregorc05ba2e2011-02-25 17:08:07 +0000530 D->getIdentifier(),
531 D->getQualifierLoc(),
John McCalld8d0d432010-02-16 06:53:13 +0000532 D->getTargetNameLoc(),
533 D->getNamespace());
534 Owner->addDecl(Inst);
535 return Inst;
536}
537
Richard Smith3f1b5d02011-05-05 21:57:07 +0000538Decl *TemplateDeclInstantiator::InstantiateTypedefNameDecl(TypedefNameDecl *D,
539 bool IsTypeAlias) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000540 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000541 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000542 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000543 DI->getType()->isVariablyModifiedType()) {
John McCall703a3f82009-10-24 08:00:42 +0000544 DI = SemaRef.SubstType(DI, TemplateArgs,
545 D->getLocation(), D->getDeclName());
546 if (!DI) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000547 Invalid = true;
John McCallbcd03502009-12-07 02:54:59 +0000548 DI = SemaRef.Context.getTrivialTypeSourceInfo(SemaRef.Context.IntTy);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000549 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000550 } else {
551 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000552 }
Mike Stump11289f42009-09-09 15:08:12 +0000553
Richard Smith2ddcbab2012-10-23 00:32:41 +0000554 // HACK: g++ has a bug where it gets the value kind of ?: wrong.
555 // libstdc++ relies upon this bug in its implementation of common_type.
556 // If we happen to be processing that implementation, fake up the g++ ?:
557 // semantics. See LWG issue 2141 for more information on the bug.
558 const DecltypeType *DT = DI->getType()->getAs<DecltypeType>();
559 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D->getDeclContext());
560 if (DT && RD && isa<ConditionalOperator>(DT->getUnderlyingExpr()) &&
561 DT->isReferenceType() &&
562 RD->getEnclosingNamespaceContext() == SemaRef.getStdNamespace() &&
563 RD->getIdentifier() && RD->getIdentifier()->isStr("common_type") &&
564 D->getIdentifier() && D->getIdentifier()->isStr("type") &&
565 SemaRef.getSourceManager().isInSystemHeader(D->getLocStart()))
566 // Fold it to the (non-reference) type which g++ would have produced.
567 DI = SemaRef.Context.getTrivialTypeSourceInfo(
568 DI->getType().getNonReferenceType());
569
Douglas Gregord7e7a512009-03-17 21:15:40 +0000570 // Create the new typedef
Richard Smithdda56e42011-04-15 14:24:37 +0000571 TypedefNameDecl *Typedef;
572 if (IsTypeAlias)
573 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
574 D->getLocation(), D->getIdentifier(), DI);
575 else
576 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
577 D->getLocation(), D->getIdentifier(), DI);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000578 if (Invalid)
579 Typedef->setInvalidDecl();
580
John McCall04fcd0d2011-02-01 08:20:08 +0000581 // If the old typedef was the name for linkage purposes of an anonymous
582 // tag decl, re-establish that relationship for the new typedef.
583 if (const TagType *oldTagType = D->getUnderlyingType()->getAs<TagType>()) {
584 TagDecl *oldTag = oldTagType->getDecl();
Douglas Gregord831d952013-03-08 22:15:15 +0000585 if (oldTag->getTypedefNameForAnonDecl() == D && !Invalid) {
John McCall04fcd0d2011-02-01 08:20:08 +0000586 TagDecl *newTag = DI->getType()->castAs<TagType>()->getDecl();
John McCall5ea95772013-03-09 00:54:27 +0000587 assert(!newTag->hasNameForLinkage());
Richard Smithdda56e42011-04-15 14:24:37 +0000588 newTag->setTypedefNameForAnonDecl(Typedef);
John McCall04fcd0d2011-02-01 08:20:08 +0000589 }
Douglas Gregor83eb5032010-04-23 16:25:07 +0000590 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000591
Richard Smith41c79d92014-10-11 00:37:16 +0000592 if (TypedefNameDecl *Prev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +0000593 NamedDecl *InstPrev = SemaRef.FindInstantiatedDecl(D->getLocation(), Prev,
594 TemplateArgs);
Douglas Gregor55e6b312011-03-04 19:46:35 +0000595 if (!InstPrev)
Craig Topperc3ec1492014-05-26 06:22:03 +0000596 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000597
Rafael Espindolacde2c8f2011-12-26 22:42:47 +0000598 TypedefNameDecl *InstPrevTypedef = cast<TypedefNameDecl>(InstPrev);
599
600 // If the typedef types are not identical, reject them.
601 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
602
Rafael Espindola8db352d2013-10-17 15:37:26 +0000603 Typedef->setPreviousDecl(InstPrevTypedef);
John McCall91f1a022009-12-30 00:31:22 +0000604 }
605
John McCall6602bb12010-08-01 02:01:53 +0000606 SemaRef.InstantiateAttrs(TemplateArgs, D, Typedef);
Douglas Gregor83eb5032010-04-23 16:25:07 +0000607
John McCall401982f2010-01-20 21:53:11 +0000608 Typedef->setAccess(D->getAccess());
Mike Stump11289f42009-09-09 15:08:12 +0000609
Douglas Gregord7e7a512009-03-17 21:15:40 +0000610 return Typedef;
611}
612
Richard Smithdda56e42011-04-15 14:24:37 +0000613Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000614 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/false);
Richard Smith41c79d92014-10-11 00:37:16 +0000615 if (Typedef)
616 Owner->addDecl(Typedef);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000617 return Typedef;
Richard Smithdda56e42011-04-15 14:24:37 +0000618}
619
620Decl *TemplateDeclInstantiator::VisitTypeAliasDecl(TypeAliasDecl *D) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000621 Decl *Typedef = InstantiateTypedefNameDecl(D, /*IsTypeAlias=*/true);
Richard Smith41c79d92014-10-11 00:37:16 +0000622 if (Typedef)
623 Owner->addDecl(Typedef);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000624 return Typedef;
625}
626
627Decl *
628TemplateDeclInstantiator::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
629 // Create a local instantiation scope for this type alias template, which
630 // will contain the instantiations of the template parameters.
631 LocalInstantiationScope Scope(SemaRef);
632
633 TemplateParameterList *TempParams = D->getTemplateParameters();
634 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
635 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +0000636 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000637
638 TypeAliasDecl *Pattern = D->getTemplatedDecl();
639
Craig Topperc3ec1492014-05-26 06:22:03 +0000640 TypeAliasTemplateDecl *PrevAliasTemplate = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000641 if (getPreviousDeclForInstantiation<TypedefNameDecl>(Pattern)) {
Richard Smith3f1b5d02011-05-05 21:57:07 +0000642 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +0000643 if (!Found.empty()) {
644 PrevAliasTemplate = dyn_cast<TypeAliasTemplateDecl>(Found.front());
Richard Smith3f1b5d02011-05-05 21:57:07 +0000645 }
646 }
647
648 TypeAliasDecl *AliasInst = cast_or_null<TypeAliasDecl>(
649 InstantiateTypedefNameDecl(Pattern, /*IsTypeAlias=*/true));
650 if (!AliasInst)
Craig Topperc3ec1492014-05-26 06:22:03 +0000651 return nullptr;
Richard Smith3f1b5d02011-05-05 21:57:07 +0000652
653 TypeAliasTemplateDecl *Inst
654 = TypeAliasTemplateDecl::Create(SemaRef.Context, Owner, D->getLocation(),
655 D->getDeclName(), InstParams, AliasInst);
Richard Smith43ccec8e2014-08-26 03:52:16 +0000656 AliasInst->setDescribedAliasTemplate(Inst);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000657 if (PrevAliasTemplate)
Rafael Espindola8db352d2013-10-17 15:37:26 +0000658 Inst->setPreviousDecl(PrevAliasTemplate);
Richard Smith3f1b5d02011-05-05 21:57:07 +0000659
660 Inst->setAccess(D->getAccess());
661
662 if (!PrevAliasTemplate)
663 Inst->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000664
Richard Smith3f1b5d02011-05-05 21:57:07 +0000665 Owner->addDecl(Inst);
666
667 return Inst;
Richard Smithdda56e42011-04-15 14:24:37 +0000668}
669
Richard Smithbdb84f32016-07-22 23:36:59 +0000670Decl *TemplateDeclInstantiator::VisitBindingDecl(BindingDecl *D) {
Richard Smith3997b1b2016-08-12 01:55:21 +0000671 auto *NewBD = BindingDecl::Create(SemaRef.Context, Owner, D->getLocation(),
672 D->getIdentifier());
Richard Smith81df9eb2017-10-02 22:43:36 +0000673 NewBD->setReferenced(D->isReferenced());
Richard Smith3997b1b2016-08-12 01:55:21 +0000674 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewBD);
675 return NewBD;
Richard Smithbdb84f32016-07-22 23:36:59 +0000676}
677
678Decl *TemplateDeclInstantiator::VisitDecompositionDecl(DecompositionDecl *D) {
Richard Smith3997b1b2016-08-12 01:55:21 +0000679 // Transform the bindings first.
680 SmallVector<BindingDecl*, 16> NewBindings;
681 for (auto *OldBD : D->bindings())
682 NewBindings.push_back(cast<BindingDecl>(VisitBindingDecl(OldBD)));
683 ArrayRef<BindingDecl*> NewBindingArray = NewBindings;
684
685 auto *NewDD = cast_or_null<DecompositionDecl>(
686 VisitVarDecl(D, /*InstantiatingVarTemplate=*/false, &NewBindingArray));
687
688 if (!NewDD || NewDD->isInvalidDecl())
689 for (auto *NewBD : NewBindings)
690 NewBD->setInvalidDecl();
691
692 return NewDD;
Richard Smithbdb84f32016-07-22 23:36:59 +0000693}
694
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000695Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D) {
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000696 return VisitVarDecl(D, /*InstantiatingVarTemplate=*/false);
Larisse Voufo39a1e502013-08-06 01:03:05 +0000697}
698
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000699Decl *TemplateDeclInstantiator::VisitVarDecl(VarDecl *D,
Richard Smith3997b1b2016-08-12 01:55:21 +0000700 bool InstantiatingVarTemplate,
701 ArrayRef<BindingDecl*> *Bindings) {
Larisse Voufo39a1e502013-08-06 01:03:05 +0000702
John McCall76d824f2009-08-25 22:02:44 +0000703 // Do substitution on the type of the declaration
Richard Smithee579842017-01-30 20:39:26 +0000704 TypeSourceInfo *DI = SemaRef.SubstType(
705 D->getTypeSourceInfo(), TemplateArgs, D->getTypeSpecStartLoc(),
706 D->getDeclName(), /*AllowDeducedTST*/true);
John McCallf1abcdc2009-10-21 02:39:02 +0000707 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +0000708 return nullptr;
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000709
Douglas Gregor61623342010-09-12 07:37:24 +0000710 if (DI->getType()->isFunctionType()) {
711 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
712 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +0000713 return nullptr;
Douglas Gregor61623342010-09-12 07:37:24 +0000714 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000715
Richard Smith541b38b2013-09-20 01:15:31 +0000716 DeclContext *DC = Owner;
717 if (D->isLocalExternDecl())
718 SemaRef.adjustContextForLocalExternDecl(DC);
719
Larisse Voufo39a1e502013-08-06 01:03:05 +0000720 // Build the instantiated declaration.
Richard Smith3997b1b2016-08-12 01:55:21 +0000721 VarDecl *Var;
722 if (Bindings)
723 Var = DecompositionDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
724 D->getLocation(), DI->getType(), DI,
725 D->getStorageClass(), *Bindings);
726 else
727 Var = VarDecl::Create(SemaRef.Context, DC, D->getInnerLocStart(),
728 D->getLocation(), D->getIdentifier(), DI->getType(),
729 DI, D->getStorageClass());
Mike Stump11289f42009-09-09 15:08:12 +0000730
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000731 // In ARC, infer 'retaining' for variables of retainable type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000732 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000733 SemaRef.inferObjCARCLifetime(Var))
734 Var->setInvalidDecl();
735
Larisse Voufo39a1e502013-08-06 01:03:05 +0000736 // Substitute the nested name specifier, if any.
737 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +0000738 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000739
Richard Smith541b38b2013-09-20 01:15:31 +0000740 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, Owner,
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000741 StartingScope, InstantiatingVarTemplate);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000742
743 if (D->isNRVOVariable()) {
744 QualType ReturnType = cast<FunctionDecl>(DC)->getReturnType();
Richard Trieu09c163b2018-03-15 03:00:55 +0000745 if (SemaRef.isCopyElisionCandidate(ReturnType, Var, Sema::CES_Strict))
Taiju Tsuiki3be68e12018-06-19 05:35:30 +0000746 Var->setNRVOVariable(true);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000747 }
Taiju Tsuiki3be68e12018-06-19 05:35:30 +0000748
Alexander Kornienko83a4e182014-05-27 21:29:22 +0000749 Var->setImplicit(D->isImplicit());
750
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000751 return Var;
752}
753
Abramo Bagnarad7340582010-06-05 05:09:32 +0000754Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
755 AccessSpecDecl* AD
756 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
757 D->getAccessSpecifierLoc(), D->getColonLoc());
758 Owner->addHiddenDecl(AD);
759 return AD;
760}
761
Douglas Gregord7e7a512009-03-17 21:15:40 +0000762Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
763 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000764 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000765 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000766 DI->getType()->isVariablyModifiedType()) {
John McCall90459c52009-10-22 23:33:21 +0000767 DI = SemaRef.SubstType(DI, TemplateArgs,
768 D->getLocation(), D->getDeclName());
769 if (!DI) {
John McCallbcd03502009-12-07 02:54:59 +0000770 DI = D->getTypeSourceInfo();
John McCall90459c52009-10-22 23:33:21 +0000771 Invalid = true;
772 } else if (DI->getType()->isFunctionType()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000773 // C++ [temp.arg.type]p3:
774 // If a declaration acquires a function type through a type
775 // dependent on a template-parameter and this causes a
776 // declaration that does not use the syntactic form of a
777 // function declarator to have function type, the program is
778 // ill-formed.
779 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall90459c52009-10-22 23:33:21 +0000780 << DI->getType();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000781 Invalid = true;
782 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000783 } else {
784 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000785 }
786
787 Expr *BitWidth = D->getBitWidth();
788 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +0000789 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000790 else if (BitWidth) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000791 // The bit-width expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000792 EnterExpressionEvaluationContext Unevaluated(
793 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000794
John McCalldadc5752010-08-24 06:29:42 +0000795 ExprResult InstantiatedBitWidth
John McCall76d824f2009-08-25 22:02:44 +0000796 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000797 if (InstantiatedBitWidth.isInvalid()) {
798 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +0000799 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000800 } else
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000801 BitWidth = InstantiatedBitWidth.getAs<Expr>();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000802 }
803
John McCall90459c52009-10-22 23:33:21 +0000804 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
805 DI->getType(), DI,
Mike Stump11289f42009-09-09 15:08:12 +0000806 cast<RecordDecl>(Owner),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000807 D->getLocation(),
808 D->isMutable(),
809 BitWidth,
Richard Smith2b013182012-06-10 03:12:00 +0000810 D->getInClassInitStyle(),
Richard Smith47ad0172012-05-23 04:22:22 +0000811 D->getInnerLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000812 D->getAccess(),
Craig Topperc3ec1492014-05-26 06:22:03 +0000813 nullptr);
Douglas Gregor3c74d412009-10-14 20:14:33 +0000814 if (!Field) {
815 cast<Decl>(Owner)->setInvalidDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +0000816 return nullptr;
Douglas Gregor3c74d412009-10-14 20:14:33 +0000817 }
Mike Stump11289f42009-09-09 15:08:12 +0000818
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000819 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000820
Richard Smith848e1f12013-02-01 08:12:08 +0000821 if (Field->hasAttrs())
822 SemaRef.CheckAlignasUnderalignment(Field);
823
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000824 if (Invalid)
825 Field->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000826
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000827 if (!Field->getDeclName()) {
828 // Keep track of where this decl came from.
829 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000830 }
Douglas Gregor04163182010-05-21 00:31:19 +0000831 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
832 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl50c68252010-08-31 00:36:30 +0000833 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor04163182010-05-21 00:31:19 +0000834 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000835 }
Mike Stump11289f42009-09-09 15:08:12 +0000836
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000837 Field->setImplicit(D->isImplicit());
John McCall401982f2010-01-20 21:53:11 +0000838 Field->setAccess(D->getAccess());
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000839 Owner->addDecl(Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000840
841 return Field;
842}
843
John McCall5e77d762013-04-16 07:28:30 +0000844Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) {
845 bool Invalid = false;
846 TypeSourceInfo *DI = D->getTypeSourceInfo();
847
848 if (DI->getType()->isVariablyModifiedType()) {
849 SemaRef.Diag(D->getLocation(), diag::err_property_is_variably_modified)
Aaron Ballman1bda4592014-01-03 01:09:27 +0000850 << D;
John McCall5e77d762013-04-16 07:28:30 +0000851 Invalid = true;
852 } else if (DI->getType()->isInstantiationDependentType()) {
853 DI = SemaRef.SubstType(DI, TemplateArgs,
854 D->getLocation(), D->getDeclName());
855 if (!DI) {
856 DI = D->getTypeSourceInfo();
857 Invalid = true;
858 } else if (DI->getType()->isFunctionType()) {
859 // C++ [temp.arg.type]p3:
860 // If a declaration acquires a function type through a type
861 // dependent on a template-parameter and this causes a
862 // declaration that does not use the syntactic form of a
863 // function declarator to have function type, the program is
864 // ill-formed.
865 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
866 << DI->getType();
867 Invalid = true;
868 }
869 } else {
870 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
871 }
872
Richard Smithf7981722013-11-22 09:01:48 +0000873 MSPropertyDecl *Property = MSPropertyDecl::Create(
874 SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(),
875 DI, D->getLocStart(), D->getGetterId(), D->getSetterId());
John McCall5e77d762013-04-16 07:28:30 +0000876
877 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
878 StartingScope);
879
880 if (Invalid)
881 Property->setInvalidDecl();
882
883 Property->setAccess(D->getAccess());
884 Owner->addDecl(Property);
885
886 return Property;
887}
888
Francois Pichet783dd6e2010-11-21 06:08:52 +0000889Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
890 NamedDecl **NamedChain =
891 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
892
893 int i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +0000894 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +0000895 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), PI,
Douglas Gregor55e6b312011-03-04 19:46:35 +0000896 TemplateArgs);
897 if (!Next)
Craig Topperc3ec1492014-05-26 06:22:03 +0000898 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000899
Douglas Gregor55e6b312011-03-04 19:46:35 +0000900 NamedChain[i++] = Next;
901 }
Francois Pichet783dd6e2010-11-21 06:08:52 +0000902
Francois Pichetdbafc192010-12-09 10:07:54 +0000903 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Aaron Ballman260995b2014-10-15 16:58:18 +0000904 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
905 SemaRef.Context, Owner, D->getLocation(), D->getIdentifier(), T,
David Majnemer59f77922016-06-24 04:05:48 +0000906 {NamedChain, D->getChainingSize()});
Francois Pichet783dd6e2010-11-21 06:08:52 +0000907
NAKAMURA Takumi729be142014-10-27 12:37:26 +0000908 for (const auto *Attr : D->attrs())
909 IndirectField->addAttr(Attr->clone(SemaRef.Context));
Francois Pichet783dd6e2010-11-21 06:08:52 +0000910
911 IndirectField->setImplicit(D->isImplicit());
912 IndirectField->setAccess(D->getAccess());
913 Owner->addDecl(IndirectField);
914 return IndirectField;
915}
916
John McCallaa74a0c2009-08-28 07:59:38 +0000917Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCallaa74a0c2009-08-28 07:59:38 +0000918 // Handle friend type expressions by simply substituting template
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000919 // parameters into the pattern type and checking the result.
John McCall15ad0962010-03-25 18:04:51 +0000920 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth08836322011-05-01 00:51:33 +0000921 TypeSourceInfo *InstTy;
922 // If this is an unsupported friend, don't bother substituting template
923 // arguments into it. The actual type referred to won't be used by any
924 // parts of Clang, and may not be valid for instantiating. Just use the
925 // same info for the instantiated friend.
926 if (D->isUnsupportedFriend()) {
927 InstTy = Ty;
928 } else {
929 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
930 D->getLocation(), DeclarationName());
931 }
932 if (!InstTy)
Craig Topperc3ec1492014-05-26 06:22:03 +0000933 return nullptr;
John McCallaa74a0c2009-08-28 07:59:38 +0000934
Richard Smitha31a89a2012-09-20 01:31:00 +0000935 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocStart(),
Abramo Bagnara254b6302011-10-29 20:52:52 +0000936 D->getFriendLoc(), InstTy);
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000937 if (!FD)
Craig Topperc3ec1492014-05-26 06:22:03 +0000938 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000939
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000940 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000941 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000942 Owner->addDecl(FD);
943 return FD;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000944 }
945
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000946 NamedDecl *ND = D->getFriendDecl();
947 assert(ND && "friend decl must be a decl or a type!");
948
John McCallb9c78482010-04-08 09:05:18 +0000949 // All of the Visit implementations for the various potential friend
950 // declarations have to be carefully written to work for friend
951 // objects, with the most important detail being that the target
952 // decl should almost certainly not be placed in Owner.
953 Decl *NewND = Visit(ND);
Craig Topperc3ec1492014-05-26 06:22:03 +0000954 if (!NewND) return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000955
John McCallaa74a0c2009-08-28 07:59:38 +0000956 FriendDecl *FD =
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000957 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000958 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall75c03bb2009-08-29 03:50:18 +0000959 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000960 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCallaa74a0c2009-08-28 07:59:38 +0000961 Owner->addDecl(FD);
962 return FD;
John McCall58de3582009-08-14 02:03:10 +0000963}
964
Douglas Gregord7e7a512009-03-17 21:15:40 +0000965Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
966 Expr *AssertExpr = D->getAssertExpr();
Mike Stump11289f42009-09-09 15:08:12 +0000967
Richard Smith764d2fe2011-12-20 02:08:33 +0000968 // The expression in a static assertion is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000969 EnterExpressionEvaluationContext Unevaluated(
970 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000971
John McCalldadc5752010-08-24 06:29:42 +0000972 ExprResult InstantiatedAssertExpr
John McCall76d824f2009-08-25 22:02:44 +0000973 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000974 if (InstantiatedAssertExpr.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000975 return nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000976
Richard Smithded9c2e2012-07-11 22:37:56 +0000977 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCallb268a282010-08-23 23:25:46 +0000978 InstantiatedAssertExpr.get(),
Richard Smithded9c2e2012-07-11 22:37:56 +0000979 D->getMessage(),
980 D->getRParenLoc(),
981 D->isFailed());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000982}
983
984Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000985 EnumDecl *PrevDecl = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000986 if (EnumDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Richard Smith2e6610a2012-03-26 04:58:10 +0000987 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +0000988 PatternPrev,
Richard Smith2e6610a2012-03-26 04:58:10 +0000989 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +0000990 if (!Prev) return nullptr;
Richard Smith2e6610a2012-03-26 04:58:10 +0000991 PrevDecl = cast<EnumDecl>(Prev);
992 }
993
Abramo Bagnara29c2d462011-03-09 14:09:51 +0000994 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000995 D->getLocation(), D->getIdentifier(),
Richard Smith2e6610a2012-03-26 04:58:10 +0000996 PrevDecl, D->isScoped(),
Abramo Bagnara0e05e242010-12-03 18:54:17 +0000997 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor0bf31402010-10-08 23:50:27 +0000998 if (D->isFixed()) {
Richard Smith4b38ded2012-03-14 23:13:10 +0000999 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001000 // If we have type source information for the underlying type, it means it
1001 // has been explicitly set by the user. Perform substitution on it before
1002 // moving on.
1003 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smith4b38ded2012-03-14 23:13:10 +00001004 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
1005 DeclarationName());
1006 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor0bf31402010-10-08 23:50:27 +00001007 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smith4b38ded2012-03-14 23:13:10 +00001008 else
1009 Enum->setIntegerTypeSourceInfo(NewTI);
1010 } else {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001011 assert(!D->getIntegerType()->isDependentType()
1012 && "Dependent type without type source info");
1013 Enum->setIntegerType(D->getIntegerType());
1014 }
1015 }
1016
John McCall811a0f52010-10-22 23:36:17 +00001017 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
1018
Richard Smith4b38ded2012-03-14 23:13:10 +00001019 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor6c2adff2009-03-25 22:00:53 +00001020 Enum->setAccess(D->getAccess());
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001021 // Forward the mangling number from the template to the instantiated decl.
1022 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
David Majnemer00350522015-08-31 18:48:39 +00001023 // See if the old tag was defined along with a declarator.
1024 // If it did, mark the new tag as being associated with that declarator.
1025 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1026 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Enum, DD);
1027 // See if the old tag was defined along with a typedef.
1028 // If it did, mark the new tag as being associated with that typedef.
1029 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1030 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Enum, TND);
Craig Topperc3ec1492014-05-26 06:22:03 +00001031 if (SubstQualifier(D, Enum)) return nullptr;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001032 Owner->addDecl(Enum);
Richard Smith4b38ded2012-03-14 23:13:10 +00001033
Richard Smith258a7442012-03-26 04:08:46 +00001034 EnumDecl *Def = D->getDefinition();
1035 if (Def && Def != D) {
1036 // If this is an out-of-line definition of an enum member template, check
1037 // that the underlying types match in the instantiation of both
1038 // declarations.
1039 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
1040 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
1041 QualType DefnUnderlying =
1042 SemaRef.SubstType(TI->getType(), TemplateArgs,
1043 UnderlyingLoc, DeclarationName());
1044 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
Reid Klecknerb0a17ed2018-02-12 17:37:06 +00001045 DefnUnderlying, /*IsFixed=*/true, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001046 }
1047 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001048
Richard Smith4b38ded2012-03-14 23:13:10 +00001049 // C++11 [temp.inst]p1: The implicit instantiation of a class template
1050 // specialization causes the implicit instantiation of the declarations, but
1051 // not the definitions of scoped member enumerations.
David Majnemer192d1792013-11-27 08:20:38 +00001052 //
1053 // DR1484 clarifies that enumeration definitions inside of a template
1054 // declaration aren't considered entities that can be separately instantiated
1055 // from the rest of the entity they are declared inside of.
1056 if (isDeclWithinFunction(D) ? D == Def : Def && !Enum->isScoped()) {
1057 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001058 InstantiateEnumDefinition(Enum, Def);
David Majnemer192d1792013-11-27 08:20:38 +00001059 }
Richard Smith4b38ded2012-03-14 23:13:10 +00001060
1061 return Enum;
1062}
1063
1064void TemplateDeclInstantiator::InstantiateEnumDefinition(
1065 EnumDecl *Enum, EnumDecl *Pattern) {
1066 Enum->startDefinition();
1067
Richard Smith7d137e32012-03-23 03:33:32 +00001068 // Update the location to refer to the definition.
1069 Enum->setLocation(Pattern->getLocation());
1070
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001071 SmallVector<Decl*, 4> Enumerators;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001072
Craig Topperc3ec1492014-05-26 06:22:03 +00001073 EnumConstantDecl *LastEnumConst = nullptr;
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001074 for (auto *EC : Pattern->enumerators()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +00001075 // The specified value for the enumerator.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001076 ExprResult Value((Expr *)nullptr);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001077 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smith764d2fe2011-12-20 02:08:33 +00001078 // The enumerator's value expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +00001079 EnterExpressionEvaluationContext Unevaluated(
1080 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +00001081
John McCall76d824f2009-08-25 22:02:44 +00001082 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001083 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001084
1085 // Drop the initial value and continue.
1086 bool isInvalid = false;
1087 if (Value.isInvalid()) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001088 Value = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001089 isInvalid = true;
1090 }
1091
Mike Stump11289f42009-09-09 15:08:12 +00001092 EnumConstantDecl *EnumConst
Douglas Gregord7e7a512009-03-17 21:15:40 +00001093 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
1094 EC->getLocation(), EC->getIdentifier(),
John McCallb268a282010-08-23 23:25:46 +00001095 Value.get());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001096
1097 if (isInvalid) {
1098 if (EnumConst)
1099 EnumConst->setInvalidDecl();
1100 Enum->setInvalidDecl();
1101 }
1102
1103 if (EnumConst) {
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001104 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst);
John McCall811a0f52010-10-22 23:36:17 +00001105
John McCallf9b528c2010-01-23 22:37:59 +00001106 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001107 Enum->addDecl(EnumConst);
John McCall48871652010-08-21 09:40:31 +00001108 Enumerators.push_back(EnumConst);
Douglas Gregord7e7a512009-03-17 21:15:40 +00001109 LastEnumConst = EnumConst;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001110
Richard Smith4b38ded2012-03-14 23:13:10 +00001111 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
1112 !Enum->isScoped()) {
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001113 // If the enumeration is within a function or method, record the enum
1114 // constant as a local.
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001115 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst);
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001116 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001117 }
1118 }
Mike Stump11289f42009-09-09 15:08:12 +00001119
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00001120 SemaRef.ActOnEnumBody(Enum->getLocation(), Enum->getBraceRange(), Enum,
Dmitri Gribenkoe5fde992013-04-27 20:23:52 +00001121 Enumerators,
Craig Topperc3ec1492014-05-26 06:22:03 +00001122 nullptr, nullptr);
Douglas Gregord7e7a512009-03-17 21:15:40 +00001123}
1124
Douglas Gregor9106b822009-03-25 15:04:13 +00001125Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +00001126 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor9106b822009-03-25 15:04:13 +00001127}
1128
David Majnemerd9b1a4f2015-11-04 03:40:30 +00001129Decl *
1130TemplateDeclInstantiator::VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D) {
1131 llvm_unreachable("BuiltinTemplateDecls cannot be instantiated.");
1132}
1133
John McCall87a44eb2009-08-20 01:44:21 +00001134Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall598b4402010-03-25 06:39:04 +00001135 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1136
Douglas Gregor954de172009-10-31 17:21:17 +00001137 // Create a local instantiation scope for this class template, which
1138 // will contain the instantiations of the template parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00001139 LocalInstantiationScope Scope(SemaRef);
John McCall87a44eb2009-08-20 01:44:21 +00001140 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCall76d824f2009-08-25 22:02:44 +00001141 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001142 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001143 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00001144
1145 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall598b4402010-03-25 06:39:04 +00001146
1147 // Instantiate the qualifier. We have to do this first in case
1148 // we're a friend declaration, because if we are then we need to put
1149 // the new declaration in the appropriate context.
Douglas Gregor14454802011-02-25 02:25:35 +00001150 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
1151 if (QualifierLoc) {
1152 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1153 TemplateArgs);
1154 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001155 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001156 }
1157
Craig Topperc3ec1492014-05-26 06:22:03 +00001158 CXXRecordDecl *PrevDecl = nullptr;
1159 ClassTemplateDecl *PrevClassTemplate = nullptr;
John McCall598b4402010-03-25 06:39:04 +00001160
Richard Smith41c79d92014-10-11 00:37:16 +00001161 if (!isFriend && getPreviousDeclForInstantiation(Pattern)) {
Nick Lewycky61478912010-11-08 23:29:42 +00001162 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001163 if (!Found.empty()) {
1164 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
Nick Lewycky61478912010-11-08 23:29:42 +00001165 if (PrevClassTemplate)
1166 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1167 }
1168 }
1169
John McCall598b4402010-03-25 06:39:04 +00001170 // If this isn't a friend, then it's a member template, in which
1171 // case we just want to build the instantiation in the
1172 // specialization. If it is a friend, we want to build it in
1173 // the appropriate context.
1174 DeclContext *DC = Owner;
1175 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001176 if (QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001177 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001178 SS.Adopt(QualifierLoc);
John McCall598b4402010-03-25 06:39:04 +00001179 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001180 if (!DC) return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001181 } else {
1182 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
1183 Pattern->getDeclContext(),
1184 TemplateArgs);
1185 }
1186
1187 // Look for a previous declaration of the template in the owning
1188 // context.
1189 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00001190 Sema::LookupOrdinaryName,
1191 SemaRef.forRedeclarationInCurContext());
John McCall598b4402010-03-25 06:39:04 +00001192 SemaRef.LookupQualifiedName(R, DC);
1193
1194 if (R.isSingleResult()) {
1195 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
1196 if (PrevClassTemplate)
1197 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1198 }
1199
Douglas Gregor14454802011-02-25 02:25:35 +00001200 if (!PrevClassTemplate && QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001201 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregorf5af3582010-03-31 23:17:41 +00001202 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregor14454802011-02-25 02:25:35 +00001203 << QualifierLoc.getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00001204 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001205 }
1206
Douglas Gregor01e09d92010-04-08 18:16:15 +00001207 bool AdoptedPreviousTemplateParams = false;
John McCall598b4402010-03-25 06:39:04 +00001208 if (PrevClassTemplate) {
Douglas Gregor01e09d92010-04-08 18:16:15 +00001209 bool Complain = true;
1210
1211 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
1212 // template for struct std::tr1::__detail::_Map_base, where the
1213 // template parameters of the friend declaration don't match the
1214 // template parameters of the original declaration. In this one
1215 // case, we don't complain about the ill-formed friend
1216 // declaration.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001217 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregor01e09d92010-04-08 18:16:15 +00001218 Pattern->getIdentifier()->isStr("_Map_base") &&
1219 DC->isNamespace() &&
1220 cast<NamespaceDecl>(DC)->getIdentifier() &&
1221 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
1222 DeclContext *DCParent = DC->getParent();
1223 if (DCParent->isNamespace() &&
1224 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
1225 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
Richard Trieuc771d5d2014-05-28 02:16:01 +00001226 if (cast<Decl>(DCParent)->isInStdNamespace())
Douglas Gregor01e09d92010-04-08 18:16:15 +00001227 Complain = false;
1228 }
1229 }
1230
John McCall598b4402010-03-25 06:39:04 +00001231 TemplateParameterList *PrevParams
1232 = PrevClassTemplate->getTemplateParameters();
1233
1234 // Make sure the parameter lists match.
1235 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001236 Complain,
Douglas Gregor01e09d92010-04-08 18:16:15 +00001237 Sema::TPL_TemplateMatch)) {
1238 if (Complain)
Craig Topperc3ec1492014-05-26 06:22:03 +00001239 return nullptr;
Douglas Gregor01e09d92010-04-08 18:16:15 +00001240
1241 AdoptedPreviousTemplateParams = true;
1242 InstParams = PrevParams;
1243 }
John McCall598b4402010-03-25 06:39:04 +00001244
1245 // Do some additional validation, then merge default arguments
1246 // from the existing declarations.
Douglas Gregor01e09d92010-04-08 18:16:15 +00001247 if (!AdoptedPreviousTemplateParams &&
1248 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall598b4402010-03-25 06:39:04 +00001249 Sema::TPC_ClassTemplate))
Craig Topperc3ec1492014-05-26 06:22:03 +00001250 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001251 }
1252 }
1253
John McCall87a44eb2009-08-20 01:44:21 +00001254 CXXRecordDecl *RecordInst
John McCall598b4402010-03-25 06:39:04 +00001255 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001256 Pattern->getLocStart(), Pattern->getLocation(),
1257 Pattern->getIdentifier(), PrevDecl,
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001258 /*DelayTypeCreation=*/true);
John McCall87a44eb2009-08-20 01:44:21 +00001259
Douglas Gregor14454802011-02-25 02:25:35 +00001260 if (QualifierLoc)
1261 RecordInst->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001262
John McCall87a44eb2009-08-20 01:44:21 +00001263 ClassTemplateDecl *Inst
John McCall598b4402010-03-25 06:39:04 +00001264 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
Vassil Vassilev352e4412017-01-12 09:16:26 +00001265 D->getIdentifier(), InstParams, RecordInst);
1266 assert(!(isFriend && Owner->isDependentContext()));
1267 Inst->setPreviousDecl(PrevClassTemplate);
1268
John McCall87a44eb2009-08-20 01:44:21 +00001269 RecordInst->setDescribedClassTemplate(Inst);
John McCall17762b82010-04-08 20:25:50 +00001270
John McCall598b4402010-03-25 06:39:04 +00001271 if (isFriend) {
John McCall17762b82010-04-08 20:25:50 +00001272 if (PrevClassTemplate)
1273 Inst->setAccess(PrevClassTemplate->getAccess());
1274 else
1275 Inst->setAccess(D->getAccess());
1276
Richard Smith64017682013-07-17 23:53:16 +00001277 Inst->setObjectOfFriendDecl();
John McCall598b4402010-03-25 06:39:04 +00001278 // TODO: do we want to track the instantiation progeny of this
1279 // friend target decl?
1280 } else {
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001281 Inst->setAccess(D->getAccess());
Nick Lewycky61478912010-11-08 23:29:42 +00001282 if (!PrevClassTemplate)
1283 Inst->setInstantiatedFromMemberTemplate(D);
John McCall598b4402010-03-25 06:39:04 +00001284 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001285
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001286 // Trigger creation of the type for the instantiation.
John McCalle78aac42010-03-10 03:28:59 +00001287 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor9961ce92010-07-08 18:37:38 +00001288 Inst->getInjectedClassNameSpecialization());
John McCall17762b82010-04-08 20:25:50 +00001289
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001290 // Finish handling of friends.
John McCall598b4402010-03-25 06:39:04 +00001291 if (isFriend) {
Richard Smith05afe5e2012-03-13 03:12:56 +00001292 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001293 Inst->setLexicalDeclContext(Owner);
1294 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001295 return Inst;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001296 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001297
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001298 if (D->isOutOfLine()) {
1299 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1300 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
1301 }
1302
John McCall87a44eb2009-08-20 01:44:21 +00001303 Owner->addDecl(Inst);
Douglas Gregor869853e2010-11-10 19:44:59 +00001304
1305 if (!PrevClassTemplate) {
1306 // Queue up any out-of-line partial specializations of this member
1307 // class template; the client will force their instantiation once
1308 // the enclosing class has been instantiated.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001309 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregor869853e2010-11-10 19:44:59 +00001310 D->getPartialSpecializations(PartialSpecs);
1311 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001312 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Douglas Gregor869853e2010-11-10 19:44:59 +00001313 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
1314 }
1315
John McCall87a44eb2009-08-20 01:44:21 +00001316 return Inst;
1317}
1318
Douglas Gregore704c9d2009-08-27 16:57:43 +00001319Decl *
Douglas Gregore4b05162009-10-07 17:21:34 +00001320TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
1321 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregor21610382009-10-29 00:04:11 +00001322 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001323
Douglas Gregor21610382009-10-29 00:04:11 +00001324 // Lookup the already-instantiated declaration in the instantiation
1325 // of the class template and return that.
1326 DeclContext::lookup_result Found
1327 = Owner->lookup(ClassTemplate->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001328 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00001329 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001330
Douglas Gregor21610382009-10-29 00:04:11 +00001331 ClassTemplateDecl *InstClassTemplate
David Blaikieff7d47a2012-12-19 00:45:41 +00001332 = dyn_cast<ClassTemplateDecl>(Found.front());
Douglas Gregor21610382009-10-29 00:04:11 +00001333 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00001334 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001335
Douglas Gregor869853e2010-11-10 19:44:59 +00001336 if (ClassTemplatePartialSpecializationDecl *Result
1337 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
1338 return Result;
1339
1340 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregore4b05162009-10-07 17:21:34 +00001341}
1342
Larisse Voufo39a1e502013-08-06 01:03:05 +00001343Decl *TemplateDeclInstantiator::VisitVarTemplateDecl(VarTemplateDecl *D) {
1344 assert(D->getTemplatedDecl()->isStaticDataMember() &&
1345 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001346
1347 // Create a local instantiation scope for this variable template, which
1348 // will contain the instantiations of the template parameters.
1349 LocalInstantiationScope Scope(SemaRef);
1350 TemplateParameterList *TempParams = D->getTemplateParameters();
1351 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1352 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001353 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001354
1355 VarDecl *Pattern = D->getTemplatedDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00001356 VarTemplateDecl *PrevVarTemplate = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001357
Richard Smith41c79d92014-10-11 00:37:16 +00001358 if (getPreviousDeclForInstantiation(Pattern)) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00001359 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
1360 if (!Found.empty())
1361 PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1362 }
1363
Richard Smith1c34fb72013-08-13 18:18:50 +00001364 VarDecl *VarInst =
Larisse Voufo72caf2b2013-08-22 00:59:14 +00001365 cast_or_null<VarDecl>(VisitVarDecl(Pattern,
1366 /*InstantiatingVarTemplate=*/true));
Nick Lewycky6ca07ca2015-08-10 21:54:08 +00001367 if (!VarInst) return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001368
1369 DeclContext *DC = Owner;
1370
Larisse Voufo39a1e502013-08-06 01:03:05 +00001371 VarTemplateDecl *Inst = VarTemplateDecl::Create(
1372 SemaRef.Context, DC, D->getLocation(), D->getIdentifier(), InstParams,
Richard Smithbeef3452014-01-16 23:39:20 +00001373 VarInst);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001374 VarInst->setDescribedVarTemplate(Inst);
Richard Smithbeef3452014-01-16 23:39:20 +00001375 Inst->setPreviousDecl(PrevVarTemplate);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001376
1377 Inst->setAccess(D->getAccess());
1378 if (!PrevVarTemplate)
1379 Inst->setInstantiatedFromMemberTemplate(D);
1380
1381 if (D->isOutOfLine()) {
1382 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1383 VarInst->setLexicalDeclContext(D->getLexicalDeclContext());
1384 }
1385
1386 Owner->addDecl(Inst);
1387
1388 if (!PrevVarTemplate) {
1389 // Queue up any out-of-line partial specializations of this member
1390 // variable template; the client will force their instantiation once
1391 // the enclosing class has been instantiated.
1392 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
1393 D->getPartialSpecializations(PartialSpecs);
1394 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001395 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00001396 OutOfLineVarPartialSpecs.push_back(
1397 std::make_pair(Inst, PartialSpecs[I]));
1398 }
1399
1400 return Inst;
1401}
1402
1403Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl(
1404 VarTemplatePartialSpecializationDecl *D) {
1405 assert(D->isStaticDataMember() &&
1406 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001407
1408 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
1409
1410 // Lookup the already-instantiated declaration and return that.
1411 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName());
1412 assert(!Found.empty() && "Instantiation found nothing?");
1413
1414 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1415 assert(InstVarTemplate && "Instantiation did not find a variable template?");
1416
1417 if (VarTemplatePartialSpecializationDecl *Result =
1418 InstVarTemplate->findPartialSpecInstantiatedFromMember(D))
1419 return Result;
1420
1421 return InstantiateVarTemplatePartialSpecialization(InstVarTemplate, D);
1422}
1423
Douglas Gregore4b05162009-10-07 17:21:34 +00001424Decl *
Douglas Gregore704c9d2009-08-27 16:57:43 +00001425TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor954de172009-10-31 17:21:17 +00001426 // Create a local instantiation scope for this function template, which
1427 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001428 // merged with the local instantiation scope for the function template
Douglas Gregor954de172009-10-31 17:21:17 +00001429 // itself.
John McCall19c1bfd2010-08-25 05:32:35 +00001430 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor14cf7522010-04-30 18:55:50 +00001431
Douglas Gregore704c9d2009-08-27 16:57:43 +00001432 TemplateParameterList *TempParams = D->getTemplateParameters();
1433 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001434 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001435 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001436
Craig Topperc3ec1492014-05-26 06:22:03 +00001437 FunctionDecl *Instantiated = nullptr;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001438 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001439 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001440 InstParams));
1441 else
1442 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001443 D->getTemplatedDecl(),
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001444 InstParams));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001445
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001446 if (!Instantiated)
Craig Topperc3ec1492014-05-26 06:22:03 +00001447 return nullptr;
Douglas Gregore704c9d2009-08-27 16:57:43 +00001448
Mike Stump11289f42009-09-09 15:08:12 +00001449 // Link the instantiated function template declaration to the function
Douglas Gregore704c9d2009-08-27 16:57:43 +00001450 // template from which it was instantiated.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001451 FunctionTemplateDecl *InstTemplate
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001452 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregorca027af2009-10-12 22:27:17 +00001453 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001454 assert(InstTemplate &&
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001455 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCall2079d0b2009-12-14 23:19:40 +00001456
John McCall30837102010-03-26 23:10:15 +00001457 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
1458
John McCall2079d0b2009-12-14 23:19:40 +00001459 // Link the instantiation back to the pattern *unless* this is a
1460 // non-definition friend declaration.
1461 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCall30837102010-03-26 23:10:15 +00001462 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001463 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001464
John McCall30837102010-03-26 23:10:15 +00001465 // Make declarations visible in the appropriate context.
John McCalla0a96892012-08-10 03:15:35 +00001466 if (!isFriend) {
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001467 Owner->addDecl(InstTemplate);
John McCalla0a96892012-08-10 03:15:35 +00001468 } else if (InstTemplate->getDeclContext()->isRecord() &&
Richard Smith41c79d92014-10-11 00:37:16 +00001469 !getPreviousDeclForInstantiation(D)) {
John McCalla0a96892012-08-10 03:15:35 +00001470 SemaRef.CheckFriendAccess(InstTemplate);
1471 }
John McCall30837102010-03-26 23:10:15 +00001472
Douglas Gregore704c9d2009-08-27 16:57:43 +00001473 return InstTemplate;
1474}
1475
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001476Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001477 CXXRecordDecl *PrevDecl = nullptr;
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001478 if (D->isInjectedClassName())
1479 PrevDecl = cast<CXXRecordDecl>(Owner);
Richard Smith41c79d92014-10-11 00:37:16 +00001480 else if (CXXRecordDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001481 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +00001482 PatternPrev,
John McCalle9f92a02009-12-15 22:29:06 +00001483 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001484 if (!Prev) return nullptr;
John McCalle9f92a02009-12-15 22:29:06 +00001485 PrevDecl = cast<CXXRecordDecl>(Prev);
1486 }
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001487
1488 CXXRecordDecl *Record
Mike Stump11289f42009-09-09 15:08:12 +00001489 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001490 D->getLocStart(), D->getLocation(),
1491 D->getIdentifier(), PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00001492
1493 // Substitute the nested name specifier, if any.
1494 if (SubstQualifier(D, Record))
Craig Topperc3ec1492014-05-26 06:22:03 +00001495 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00001496
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001497 Record->setImplicit(D->isImplicit());
Eli Friedmanbda4ef12009-08-27 19:11:42 +00001498 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1499 // the tag decls introduced by friend class declarations don't have an access
1500 // specifier. Remove once this area of the code gets sorted out.
1501 if (D->getAccess() != AS_none)
1502 Record->setAccess(D->getAccess());
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001503 if (!D->isInjectedClassName())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001504 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001505
John McCallaa74a0c2009-08-28 07:59:38 +00001506 // If the original function was part of a friend declaration,
1507 // inherit its namespace state.
Richard Smith64017682013-07-17 23:53:16 +00001508 if (D->getFriendObjectKind())
1509 Record->setObjectOfFriendDecl();
John McCallaa74a0c2009-08-28 07:59:38 +00001510
Douglas Gregor04163182010-05-21 00:31:19 +00001511 // Make sure that anonymous structs and unions are recorded.
David Majnemer192d1792013-11-27 08:20:38 +00001512 if (D->isAnonymousStructOrUnion())
Douglas Gregor04163182010-05-21 00:31:19 +00001513 Record->setAnonymousStructOrUnion(true);
David Majnemer192d1792013-11-27 08:20:38 +00001514
1515 if (D->isLocalClass())
1516 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
Anders Carlsson5da84842009-09-01 04:26:58 +00001517
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001518 // Forward the mangling number from the template to the instantiated decl.
1519 SemaRef.Context.setManglingNumber(Record,
1520 SemaRef.Context.getManglingNumber(D));
1521
David Majnemer00350522015-08-31 18:48:39 +00001522 // See if the old tag was defined along with a declarator.
1523 // If it did, mark the new tag as being associated with that declarator.
1524 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1525 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Record, DD);
1526
1527 // See if the old tag was defined along with a typedef.
1528 // If it did, mark the new tag as being associated with that typedef.
1529 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1530 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Record, TND);
1531
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001532 Owner->addDecl(Record);
David Majnemer192d1792013-11-27 08:20:38 +00001533
1534 // DR1484 clarifies that the members of a local class are instantiated as part
1535 // of the instantiation of their enclosing entity.
1536 if (D->isCompleteDefinition() && D->isLocalClass()) {
Richard Smith4f3e3812017-05-20 01:36:41 +00001537 Sema::LocalEagerInstantiationScope LocalInstantiations(SemaRef);
Richard Smithb0b68012015-05-11 23:09:06 +00001538
David Majnemera64cb5a2014-02-22 00:17:46 +00001539 SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs,
1540 TSK_ImplicitInstantiation,
1541 /*Complain=*/true);
Richard Smithb0b68012015-05-11 23:09:06 +00001542
Richard Smithece47582017-01-04 23:45:01 +00001543 // For nested local classes, we will instantiate the members when we
1544 // reach the end of the outermost (non-nested) local class.
1545 if (!D->isCXXClassMember())
1546 SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs,
1547 TSK_ImplicitInstantiation);
Richard Smithb0b68012015-05-11 23:09:06 +00001548
1549 // This class may have local implicit instantiations that need to be
1550 // performed within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00001551 LocalInstantiations.perform();
David Majnemer192d1792013-11-27 08:20:38 +00001552 }
Nico Weber72889432014-09-06 01:25:55 +00001553
1554 SemaRef.DiagnoseUnusedNestedTypedefs(Record);
1555
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001556 return Record;
1557}
1558
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001559/// Adjust the given function type for an instantiation of the
Douglas Gregor89f593a2012-09-13 21:56:43 +00001560/// given declaration, to cope with modifications to the function's type that
1561/// aren't reflected in the type-source information.
1562///
1563/// \param D The declaration we're instantiating.
1564/// \param TInfo The already-instantiated type.
1565static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1566 FunctionDecl *D,
1567 TypeSourceInfo *TInfo) {
Douglas Gregor1af8ad42012-09-13 22:01:49 +00001568 const FunctionProtoType *OrigFunc
1569 = D->getType()->castAs<FunctionProtoType>();
1570 const FunctionProtoType *NewFunc
1571 = TInfo->getType()->castAs<FunctionProtoType>();
1572 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1573 return TInfo->getType();
1574
1575 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1576 NewEPI.ExtInfo = OrigFunc->getExtInfo();
Alp Toker314cc812014-01-25 16:55:45 +00001577 return Context.getFunctionType(NewFunc->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00001578 NewFunc->getParamTypes(), NewEPI);
Douglas Gregor89f593a2012-09-13 21:56:43 +00001579}
1580
John McCallaa74a0c2009-08-28 07:59:38 +00001581/// Normal class members are of more specific types and therefore
Richard Smith4fa145152017-12-21 19:43:39 +00001582/// don't make it here. This function serves three purposes:
John McCallaa74a0c2009-08-28 07:59:38 +00001583/// 1) instantiating function templates
1584/// 2) substituting friend declarations
Richard Smith4fa145152017-12-21 19:43:39 +00001585/// 3) substituting deduction guide declarations for nested class templates
Douglas Gregor33636e62009-12-24 20:56:24 +00001586Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001587 TemplateParameterList *TemplateParams) {
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001588 // Check whether there is already a function template specialization for
1589 // this declaration.
1590 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCall2f88d7d2010-03-27 05:57:59 +00001591 if (FunctionTemplate && !TemplateParams) {
Richard Smith47752e42013-05-03 23:46:09 +00001592 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001593
Craig Topperc3ec1492014-05-26 06:22:03 +00001594 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001595 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001596 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001597
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001598 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001599 if (SpecFunc)
1600 return SpecFunc;
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001601 }
Mike Stump11289f42009-09-09 15:08:12 +00001602
John McCall2f88d7d2010-03-27 05:57:59 +00001603 bool isFriend;
1604 if (FunctionTemplate)
1605 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1606 else
1607 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1608
Craig Topperc3ec1492014-05-26 06:22:03 +00001609 bool MergeWithParentScope = (TemplateParams != nullptr) ||
Douglas Gregor9f44d142010-05-21 21:25:08 +00001610 Owner->isFunctionOrMethod() ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001611 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001612 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001613 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00001614
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001615 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie4d142962011-11-10 05:42:04 +00001616 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001617 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001618 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001619 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCall58de3582009-08-14 02:03:10 +00001620
Douglas Gregor14454802011-02-25 02:25:35 +00001621 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1622 if (QualifierLoc) {
1623 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1624 TemplateArgs);
1625 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001626 return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001627 }
1628
John McCallce410662010-02-06 01:50:47 +00001629 // If we're instantiating a local function declaration, put the result
Richard Smith541b38b2013-09-20 01:15:31 +00001630 // in the enclosing namespace; otherwise we need to find the instantiated
1631 // context.
John McCallce410662010-02-06 01:50:47 +00001632 DeclContext *DC;
Richard Smith541b38b2013-09-20 01:15:31 +00001633 if (D->isLocalExternDecl()) {
John McCallce410662010-02-06 01:50:47 +00001634 DC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001635 SemaRef.adjustContextForLocalExternDecl(DC);
1636 } else if (isFriend && QualifierLoc) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001637 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001638 SS.Adopt(QualifierLoc);
John McCalle0b2ddb2010-03-26 04:53:08 +00001639 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001640 if (!DC) return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001641 } else {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001642 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001643 TemplateArgs);
John McCalle0b2ddb2010-03-26 04:53:08 +00001644 }
John McCallce410662010-02-06 01:50:47 +00001645
Richard Smith4fa145152017-12-21 19:43:39 +00001646 DeclarationNameInfo NameInfo
1647 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1648
Richard Smithbc491202017-02-17 20:05:37 +00001649 FunctionDecl *Function;
Faisal Vali81b756e2017-10-22 14:45:08 +00001650 if (auto *DGuide = dyn_cast<CXXDeductionGuideDecl>(D)) {
Richard Smithbc491202017-02-17 20:05:37 +00001651 Function = CXXDeductionGuideDecl::Create(
Faisal Vali81b756e2017-10-22 14:45:08 +00001652 SemaRef.Context, DC, D->getInnerLocStart(), DGuide->isExplicit(),
Richard Smith4fa145152017-12-21 19:43:39 +00001653 NameInfo, T, TInfo, D->getSourceRange().getEnd());
Faisal Vali81b756e2017-10-22 14:45:08 +00001654 if (DGuide->isCopyDeductionCandidate())
1655 cast<CXXDeductionGuideDecl>(Function)->setIsCopyDeductionCandidate();
Richard Smithc660c8f2018-03-16 13:36:56 +00001656 Function->setAccess(D->getAccess());
Faisal Vali81b756e2017-10-22 14:45:08 +00001657 } else {
Richard Smithbc491202017-02-17 20:05:37 +00001658 Function = FunctionDecl::Create(
Richard Smith4fa145152017-12-21 19:43:39 +00001659 SemaRef.Context, DC, D->getInnerLocStart(), NameInfo, T, TInfo,
Richard Smithbc491202017-02-17 20:05:37 +00001660 D->getCanonicalDecl()->getStorageClass(), D->isInlineSpecified(),
1661 D->hasWrittenPrototype(), D->isConstexpr());
1662 Function->setRangeEnd(D->getSourceRange().getEnd());
1663 }
John McCall3e11ebe2010-03-15 10:12:16 +00001664
Richard Smithf3814ad2013-01-25 00:08:28 +00001665 if (D->isInlined())
1666 Function->setImplicitlyInline();
1667
Douglas Gregor14454802011-02-25 02:25:35 +00001668 if (QualifierLoc)
1669 Function->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001670
Richard Smith541b38b2013-09-20 01:15:31 +00001671 if (D->isLocalExternDecl())
1672 Function->setLocalExternDecl();
1673
John McCall30837102010-03-26 23:10:15 +00001674 DeclContext *LexicalDC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001675 if (!isFriend && D->isOutOfLine() && !D->isLocalExternDecl()) {
John McCall30837102010-03-26 23:10:15 +00001676 assert(D->getDeclContext()->isFileContext());
1677 LexicalDC = D->getDeclContext();
1678 }
1679
1680 Function->setLexicalDeclContext(LexicalDC);
Mike Stump11289f42009-09-09 15:08:12 +00001681
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001682 // Attach the parameters
Reid Klecknera09e44c2013-07-31 21:00:18 +00001683 for (unsigned P = 0; P < Params.size(); ++P)
1684 if (Params[P])
1685 Params[P]->setOwningFunction(Function);
David Blaikie9c70e042011-09-21 18:16:56 +00001686 Function->setParams(Params);
John McCallaa74a0c2009-08-28 07:59:38 +00001687
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001688 if (TemplateParams) {
1689 // Our resulting instantiation is actually a function template, since we
1690 // are substituting only the outer template parameters. For example, given
1691 //
1692 // template<typename T>
1693 // struct X {
1694 // template<typename U> friend void f(T, U);
1695 // };
1696 //
1697 // X<int> x;
1698 //
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001699 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001700 // which means substituting int for T, but leaving "f" as a friend function
1701 // template.
1702 // Build the function template itself.
John McCalle0b2ddb2010-03-26 04:53:08 +00001703 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001704 Function->getLocation(),
1705 Function->getDeclName(),
1706 TemplateParams, Function);
1707 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCall30837102010-03-26 23:10:15 +00001708
1709 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalle0b2ddb2010-03-26 04:53:08 +00001710
1711 if (isFriend && D->isThisDeclarationADefinition()) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001712 FunctionTemplate->setInstantiatedFromMemberTemplate(
1713 D->getDescribedFunctionTemplate());
1714 }
Douglas Gregorffe14e32009-11-14 01:20:54 +00001715 } else if (FunctionTemplate) {
1716 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001717 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001718 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001719 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00001720 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00001721 /*InsertPos=*/nullptr);
Richard Smith152bcd22017-01-28 02:56:07 +00001722 } else if (isFriend && D->isThisDeclarationADefinition()) {
1723 // Do not connect the friend to the template unless it's actually a
1724 // definition. We don't want non-template functions to be marked as being
1725 // template instantiations.
John McCalle0b2ddb2010-03-26 04:53:08 +00001726 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCallaa74a0c2009-08-28 07:59:38 +00001727 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001728
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001729 if (InitFunctionInstantiation(Function, D))
1730 Function->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001731
John McCallb9c78482010-04-08 09:05:18 +00001732 bool isExplicitSpecialization = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001733
Richard Smith541b38b2013-09-20 01:15:31 +00001734 LookupResult Previous(
1735 SemaRef, Function->getDeclName(), SourceLocation(),
1736 D->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
1737 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00001738 D->isLocalExternDecl() ? Sema::ForExternalRedeclaration
1739 : SemaRef.forRedeclarationInCurContext());
John McCall1f82f242009-11-18 22:49:29 +00001740
John McCallb9c78482010-04-08 09:05:18 +00001741 if (DependentFunctionTemplateSpecializationInfo *Info
1742 = D->getDependentSpecializationInfo()) {
1743 assert(isFriend && "non-friend has dependent specialization info?");
1744
1745 // This needs to be set now for future sanity.
Richard Smith64017682013-07-17 23:53:16 +00001746 Function->setObjectOfFriendDecl();
John McCallb9c78482010-04-08 09:05:18 +00001747
1748 // Instantiate the explicit template arguments.
1749 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1750 Info->getRAngleLoc());
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001751 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1752 ExplicitArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00001753 return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001754
1755 // Map the candidate templates to their instantiations.
1756 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1757 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1758 Info->getTemplate(I),
1759 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001760 if (!Temp) return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001761
1762 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1763 }
1764
1765 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1766 &ExplicitArgs,
1767 Previous))
1768 Function->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001769
John McCallb9c78482010-04-08 09:05:18 +00001770 isExplicitSpecialization = true;
1771
1772 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001773 // Look only into the namespace where the friend would be declared to
1774 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001775 // as described in ActOnFriendFunctionDecl.
John McCall1f82f242009-11-18 22:49:29 +00001776 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001777
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001778 // In C++, the previous declaration we find might be a tag type
1779 // (class or enum). In this case, the new declaration will hide the
1780 // tag type. Note that this does does not apply if we're declaring a
1781 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00001782 if (Previous.isSingleTagDecl())
1783 Previous.clear();
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001784 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001785
Serge Pavlov25dbe1a2017-06-21 12:46:57 +00001786 if (isFriend)
1787 Function->setObjectOfFriendDecl();
1788
Craig Topperc3ec1492014-05-26 06:22:03 +00001789 SemaRef.CheckFunctionDeclaration(/*Scope*/ nullptr, Function, Previous,
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +00001790 isExplicitSpecialization);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001791
John McCallb9467b62010-04-24 01:30:58 +00001792 NamedDecl *PrincipalDecl = (TemplateParams
1793 ? cast<NamedDecl>(FunctionTemplate)
1794 : Function);
1795
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001796 // If the original function was part of a friend declaration,
1797 // inherit its namespace state and add it to the owner.
John McCalle0b2ddb2010-03-26 04:53:08 +00001798 if (isFriend) {
Serge Pavlova4ab1b12017-06-14 10:57:56 +00001799 PrincipalDecl->setObjectOfFriendDecl();
Richard Smith05afe5e2012-03-13 03:12:56 +00001800 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greif718d5152010-08-30 21:10:05 +00001801
Richard Smith91dfaac2014-02-03 02:37:59 +00001802 bool QueuedInstantiation = false;
Gabor Greif718d5152010-08-30 21:10:05 +00001803
Richard Smith91dfaac2014-02-03 02:37:59 +00001804 // C++11 [temp.friend]p4 (DR329):
1805 // When a function is defined in a friend function declaration in a class
1806 // template, the function is instantiated when the function is odr-used.
1807 // The same restrictions on multiple declarations and definitions that
1808 // apply to non-template function declarations and definitions also apply
1809 // to these implicit definitions.
1810 if (D->isThisDeclarationADefinition()) {
Serge Pavlove6e534c2018-03-01 07:04:11 +00001811 SemaRef.CheckForFunctionRedefinition(Function);
1812 if (!Function->isInvalidDecl()) {
1813 for (auto R : Function->redecls()) {
1814 if (R == Function)
1815 continue;
Richard Smith91dfaac2014-02-03 02:37:59 +00001816
Serge Pavlove6e534c2018-03-01 07:04:11 +00001817 // If some prior declaration of this function has been used, we need
1818 // to instantiate its definition.
1819 if (!QueuedInstantiation && R->isUsed(false)) {
1820 if (MemberSpecializationInfo *MSInfo =
1821 Function->getMemberSpecializationInfo()) {
1822 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1823 SourceLocation Loc = R->getLocation(); // FIXME
1824 MSInfo->setPointOfInstantiation(Loc);
1825 SemaRef.PendingLocalImplicitInstantiations.push_back(
1826 std::make_pair(Function, Loc));
1827 QueuedInstantiation = true;
1828 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001829 }
Richard Smith91dfaac2014-02-03 02:37:59 +00001830 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001831 }
1832 }
1833 }
Richard Smithf3597652017-05-10 00:01:13 +00001834
1835 // Check the template parameter list against the previous declaration. The
1836 // goal here is to pick up default arguments added since the friend was
1837 // declared; we know the template parameter lists match, since otherwise
1838 // we would not have picked this template as the previous declaration.
1839 if (TemplateParams && FunctionTemplate->getPreviousDecl()) {
1840 SemaRef.CheckTemplateParameterList(
1841 TemplateParams,
1842 FunctionTemplate->getPreviousDecl()->getTemplateParameters(),
1843 Function->isThisDeclarationADefinition()
1844 ? Sema::TPC_FriendFunctionTemplateDefinition
1845 : Sema::TPC_FriendFunctionTemplate);
1846 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001847 }
1848
Richard Smith541b38b2013-09-20 01:15:31 +00001849 if (Function->isLocalExternDecl() && !Function->getPreviousDecl())
1850 DC->makeDeclVisibleInContext(PrincipalDecl);
1851
John McCallb9467b62010-04-24 01:30:58 +00001852 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1853 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1854 PrincipalDecl->setNonMemberOperator();
1855
Alexis Hunt1fb4e762011-05-23 21:07:59 +00001856 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001857 return Function;
1858}
1859
Douglas Gregore704c9d2009-08-27 16:57:43 +00001860Decl *
1861TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichet00c7e6c2011-08-14 03:52:19 +00001862 TemplateParameterList *TemplateParams,
1863 bool IsClassScopeSpecialization) {
Douglas Gregor97628d62009-08-21 00:16:32 +00001864 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregore704c9d2009-08-27 16:57:43 +00001865 if (FunctionTemplate && !TemplateParams) {
Mike Stump11289f42009-09-09 15:08:12 +00001866 // We are creating a function template specialization from a function
1867 // template. Check whether there is already a function template
Douglas Gregore704c9d2009-08-27 16:57:43 +00001868 // specialization for this particular set of template arguments.
Richard Smith47752e42013-05-03 23:46:09 +00001869 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001870
Craig Topperc3ec1492014-05-26 06:22:03 +00001871 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001872 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001873 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001874
Douglas Gregor97628d62009-08-21 00:16:32 +00001875 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001876 if (SpecFunc)
1877 return SpecFunc;
Douglas Gregor97628d62009-08-21 00:16:32 +00001878 }
1879
John McCall2f88d7d2010-03-27 05:57:59 +00001880 bool isFriend;
1881 if (FunctionTemplate)
1882 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1883 else
1884 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1885
Craig Topperc3ec1492014-05-26 06:22:03 +00001886 bool MergeWithParentScope = (TemplateParams != nullptr) ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001887 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001888 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001889 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor37256522009-05-14 21:44:34 +00001890
John McCalld0e23ec2010-10-19 02:26:41 +00001891 // Instantiate enclosing template arguments for friends.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001892 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCalld0e23ec2010-10-19 02:26:41 +00001893 unsigned NumTempParamLists = 0;
1894 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
Benjamin Kramer9dc549b2015-08-04 14:46:06 +00001895 TempParamLists.resize(NumTempParamLists);
John McCalld0e23ec2010-10-19 02:26:41 +00001896 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1897 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1898 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1899 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001900 return nullptr;
John McCalld0e23ec2010-10-19 02:26:41 +00001901 TempParamLists[I] = InstParams;
1902 }
1903 }
1904
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001905 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramer1dd48bc2012-01-20 14:42:32 +00001906 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001907 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001908 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001909 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001910
Douglas Gregor14454802011-02-25 02:25:35 +00001911 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1912 if (QualifierLoc) {
1913 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCall2f88d7d2010-03-27 05:57:59 +00001914 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001915 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001916 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001917 }
1918
1919 DeclContext *DC = Owner;
1920 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001921 if (QualifierLoc) {
John McCall2f88d7d2010-03-27 05:57:59 +00001922 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001923 SS.Adopt(QualifierLoc);
John McCall2f88d7d2010-03-27 05:57:59 +00001924 DC = SemaRef.computeDeclContext(SS);
John McCall1a1b53e2010-10-19 05:01:53 +00001925
1926 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
Craig Topperc3ec1492014-05-26 06:22:03 +00001927 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001928 } else {
1929 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1930 D->getDeclContext(),
1931 TemplateArgs);
1932 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001933 if (!DC) return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001934 }
1935
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001936 // Build the instantiated method declaration.
John McCall2f88d7d2010-03-27 05:57:59 +00001937 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Craig Topperc3ec1492014-05-26 06:22:03 +00001938 CXXMethodDecl *Method = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001939
Abramo Bagnaradff19302011-03-08 08:55:46 +00001940 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001941 DeclarationNameInfo NameInfo
1942 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregore8394862009-08-21 22:43:28 +00001943 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001944 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001945 StartLoc, NameInfo, T, TInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001946 Constructor->isExplicit(),
Reid Kleckner0f764e52015-04-07 20:46:51 +00001947 Constructor->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001948 false, Constructor->isConstexpr());
Malcolm Parsons57ae8572016-11-28 11:11:34 +00001949 Method->setRangeEnd(Constructor->getLocEnd());
Douglas Gregore8394862009-08-21 22:43:28 +00001950 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregore8394862009-08-21 22:43:28 +00001951 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001952 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001953 Destructor->isInlineSpecified(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00001954 false);
Malcolm Parsons57ae8572016-11-28 11:11:34 +00001955 Method->setRangeEnd(Destructor->getLocEnd());
Douglas Gregor05155d82009-08-21 23:19:43 +00001956 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor05155d82009-08-21 23:19:43 +00001957 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001958 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001959 Conversion->isInlineSpecified(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00001960 Conversion->isExplicit(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001961 Conversion->isConstexpr(),
Richard Smitheb3c10c2011-10-01 02:31:28 +00001962 Conversion->getLocEnd());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001963 } else {
Rafael Espindola29cda592013-04-15 12:38:20 +00001964 StorageClass SC = D->isStatic() ? SC_Static : SC_None;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001965 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001966 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001967 SC, D->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001968 D->isConstexpr(), D->getLocEnd());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001969 }
Douglas Gregor97628d62009-08-21 00:16:32 +00001970
Richard Smithf3814ad2013-01-25 00:08:28 +00001971 if (D->isInlined())
1972 Method->setImplicitlyInline();
1973
Douglas Gregor14454802011-02-25 02:25:35 +00001974 if (QualifierLoc)
1975 Method->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001976
Douglas Gregore704c9d2009-08-27 16:57:43 +00001977 if (TemplateParams) {
1978 // Our resulting instantiation is actually a function template, since we
1979 // are substituting only the outer template parameters. For example, given
Mike Stump11289f42009-09-09 15:08:12 +00001980 //
Douglas Gregore704c9d2009-08-27 16:57:43 +00001981 // template<typename T>
1982 // struct X {
1983 // template<typename U> void f(T, U);
1984 // };
1985 //
1986 // X<int> x;
1987 //
1988 // We are instantiating the member template "f" within X<int>, which means
1989 // substituting int for T, but leaving "f" as a member function template.
1990 // Build the function template itself.
1991 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1992 Method->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001993 Method->getDeclName(),
Douglas Gregore704c9d2009-08-27 16:57:43 +00001994 TemplateParams, Method);
John McCall2f88d7d2010-03-27 05:57:59 +00001995 if (isFriend) {
1996 FunctionTemplate->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00001997 FunctionTemplate->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00001998 } else if (D->isOutOfLine())
Mike Stump11289f42009-09-09 15:08:12 +00001999 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregore704c9d2009-08-27 16:57:43 +00002000 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002001 } else if (FunctionTemplate) {
2002 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00002003 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00002004 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002005 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00002006 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00002007 /*InsertPos=*/nullptr);
John McCall2f88d7d2010-03-27 05:57:59 +00002008 } else if (!isFriend) {
Douglas Gregorffe14e32009-11-14 01:20:54 +00002009 // Record that this is an instantiation of a member function.
Douglas Gregord801b062009-10-07 23:56:10 +00002010 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002011 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002012
Mike Stump11289f42009-09-09 15:08:12 +00002013 // If we are instantiating a member function defined
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002014 // out-of-line, the instantiation will have the same lexical
2015 // context (which will be a namespace scope) as the template.
John McCall2f88d7d2010-03-27 05:57:59 +00002016 if (isFriend) {
John McCalld0e23ec2010-10-19 02:26:41 +00002017 if (NumTempParamLists)
Benjamin Kramer9cc210652015-08-05 09:40:49 +00002018 Method->setTemplateParameterListsInfo(
2019 SemaRef.Context,
2020 llvm::makeArrayRef(TempParamLists.data(), NumTempParamLists));
John McCalld0e23ec2010-10-19 02:26:41 +00002021
John McCall2f88d7d2010-03-27 05:57:59 +00002022 Method->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00002023 Method->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00002024 } else if (D->isOutOfLine())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002025 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00002026
Douglas Gregor21342092009-03-24 00:38:23 +00002027 // Attach the parameters
2028 for (unsigned P = 0; P < Params.size(); ++P)
2029 Params[P]->setOwningFunction(Method);
David Blaikie9c70e042011-09-21 18:16:56 +00002030 Method->setParams(Params);
Douglas Gregor21342092009-03-24 00:38:23 +00002031
2032 if (InitMethodInstantiation(Method, D))
2033 Method->setInvalidDecl();
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002034
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002035 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002036 Sema::ForExternalRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00002037
John McCall2f88d7d2010-03-27 05:57:59 +00002038 if (!FunctionTemplate || TemplateParams || isFriend) {
2039 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump11289f42009-09-09 15:08:12 +00002040
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002041 // In C++, the previous declaration we find might be a tag type
2042 // (class or enum). In this case, the new declaration will hide the
2043 // tag type. Note that this does does not apply if we're declaring a
2044 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00002045 if (Previous.isSingleTagDecl())
2046 Previous.clear();
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002047 }
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002048
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002049 if (!IsClassScopeSpecialization)
Craig Topperc3ec1492014-05-26 06:22:03 +00002050 SemaRef.CheckFunctionDeclaration(nullptr, Method, Previous, false);
Douglas Gregor05155d82009-08-21 23:19:43 +00002051
Douglas Gregor21920e372009-12-01 17:24:26 +00002052 if (D->isPure())
2053 SemaRef.CheckPureMethod(Method, SourceRange());
2054
John McCalla0a96892012-08-10 03:15:35 +00002055 // Propagate access. For a non-friend declaration, the access is
2056 // whatever we're propagating from. For a friend, it should be the
2057 // previous declaration we just found.
2058 if (isFriend && Method->getPreviousDecl())
2059 Method->setAccess(Method->getPreviousDecl()->getAccess());
2060 else
2061 Method->setAccess(D->getAccess());
2062 if (FunctionTemplate)
2063 FunctionTemplate->setAccess(Method->getAccess());
John McCall401982f2010-01-20 21:53:11 +00002064
Anders Carlsson7c812f52011-01-20 06:52:44 +00002065 SemaRef.CheckOverrideControl(Method);
2066
Eli Friedman41340732011-11-15 22:39:08 +00002067 // If a function is defined as defaulted or deleted, mark it as such now.
Richard Smith92f241f2012-12-08 02:53:02 +00002068 if (D->isExplicitlyDefaulted())
2069 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002070 if (D->isDeletedAsWritten())
Richard Smith92f241f2012-12-08 02:53:02 +00002071 SemaRef.SetDeclDeleted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002072
John McCalla0a96892012-08-10 03:15:35 +00002073 // If there's a function template, let our caller handle it.
John McCall2f88d7d2010-03-27 05:57:59 +00002074 if (FunctionTemplate) {
John McCalla0a96892012-08-10 03:15:35 +00002075 // do nothing
2076
2077 // Don't hide a (potentially) valid declaration with an invalid one.
John McCall2f88d7d2010-03-27 05:57:59 +00002078 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCalla0a96892012-08-10 03:15:35 +00002079 // do nothing
2080
2081 // Otherwise, check access to friends and make them visible.
2082 } else if (isFriend) {
2083 // We only need to re-check access for methods which we didn't
2084 // manage to match during parsing.
2085 if (!D->getPreviousDecl())
2086 SemaRef.CheckFriendAccess(Method);
2087
2088 Record->makeDeclVisibleInContext(Method);
2089
2090 // Otherwise, add the declaration. We don't need to do this for
2091 // class-scope specializations because we'll have matched them with
2092 // the appropriate template.
2093 } else if (!IsClassScopeSpecialization) {
2094 Owner->addDecl(Method);
John McCall2f88d7d2010-03-27 05:57:59 +00002095 }
Alexis Hunt1fb4e762011-05-23 21:07:59 +00002096
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002097 return Method;
2098}
2099
Douglas Gregor4044d992009-03-24 16:43:20 +00002100Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002101 return VisitCXXMethodDecl(D);
Douglas Gregor4044d992009-03-24 16:43:20 +00002102}
2103
Douglas Gregor654b07e2009-03-24 00:15:49 +00002104Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore8394862009-08-21 22:43:28 +00002105 return VisitCXXMethodDecl(D);
Douglas Gregor654b07e2009-03-24 00:15:49 +00002106}
2107
Douglas Gregor1880ba52009-03-25 00:34:44 +00002108Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor05155d82009-08-21 23:19:43 +00002109 return VisitCXXMethodDecl(D);
Douglas Gregor1880ba52009-03-25 00:34:44 +00002110}
2111
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002112Decl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
David Blaikie7a30dc52013-02-21 01:47:18 +00002113 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, None,
2114 /*ExpectParameterPack=*/ false);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002115}
2116
John McCall87a44eb2009-08-20 01:44:21 +00002117Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
2118 TemplateTypeParmDecl *D) {
2119 // TODO: don't always clone when decls are refcounted.
Chandler Carruth08836322011-05-01 00:51:33 +00002120 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump11289f42009-09-09 15:08:12 +00002121
Richard Smithb4f96252017-02-21 06:30:38 +00002122 TemplateTypeParmDecl *Inst = TemplateTypeParmDecl::Create(
2123 SemaRef.Context, Owner, D->getLocStart(), D->getLocation(),
2124 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(), D->getIndex(),
2125 D->getIdentifier(), D->wasDeclaredWithTypename(), D->isParameterPack());
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002126 Inst->setAccess(AS_public);
John McCall87a44eb2009-08-20 01:44:21 +00002127
Richard Smith52933792015-06-16 21:57:05 +00002128 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002129 TypeSourceInfo *InstantiatedDefaultArg =
2130 SemaRef.SubstType(D->getDefaultArgumentInfo(), TemplateArgs,
2131 D->getDefaultArgumentLoc(), D->getDeclName());
2132 if (InstantiatedDefaultArg)
Richard Smith1469b912015-06-10 00:29:03 +00002133 Inst->setDefaultArgument(InstantiatedDefaultArg);
David Majnemer89189202013-08-28 23:48:32 +00002134 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002135
2136 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002137 // scope.
2138 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002139
John McCall87a44eb2009-08-20 01:44:21 +00002140 return Inst;
2141}
2142
Douglas Gregor6b815c82009-10-23 23:25:44 +00002143Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
2144 NonTypeTemplateParmDecl *D) {
2145 // Substitute into the type of the non-type template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002146 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002147 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
2148 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002149 bool IsExpandedParameterPack = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002150 TypeSourceInfo *DI;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002151 QualType T;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002152 bool Invalid = false;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002153
2154 if (D->isExpandedParameterPack()) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002155 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002156 // expansion of types. Substitute into each of the expanded types.
2157 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
2158 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
2159 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Richard Smith15361a22016-12-28 06:27:18 +00002160 TypeSourceInfo *NewDI =
2161 SemaRef.SubstType(D->getExpansionTypeSourceInfo(I), TemplateArgs,
2162 D->getLocation(), D->getDeclName());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002163 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002164 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002165
Richard Smith15361a22016-12-28 06:27:18 +00002166 QualType NewT =
2167 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002168 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002169 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002170
2171 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002172 ExpandedParameterPackTypes.push_back(NewT);
2173 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002174
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002175 IsExpandedParameterPack = true;
2176 DI = D->getTypeSourceInfo();
2177 T = DI->getType();
Richard Smith1fde8ec2012-09-07 02:06:42 +00002178 } else if (D->isPackExpansion()) {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002179 // The non-type template parameter pack's type is a pack expansion of types.
2180 // Determine whether we need to expand this parameter pack into separate
2181 // types.
David Blaikie6adc78e2013-02-18 22:06:02 +00002182 PackExpansionTypeLoc Expansion = TL.castAs<PackExpansionTypeLoc>();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002183 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002184 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002185 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002186
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002187 // Determine whether the set of unexpanded parameter packs can and should
2188 // be expanded.
2189 bool Expand = true;
2190 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002191 Optional<unsigned> OrigNumExpansions
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002192 = Expansion.getTypePtr()->getNumExpansions();
David Blaikie05785d12013-02-20 22:23:23 +00002193 Optional<unsigned> NumExpansions = OrigNumExpansions;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002194 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
2195 Pattern.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00002196 Unexpanded,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002197 TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002198 Expand, RetainExpansion,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002199 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002200 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002201
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002202 if (Expand) {
2203 for (unsigned I = 0; I != *NumExpansions; ++I) {
2204 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2205 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002206 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002207 D->getDeclName());
2208 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002209 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002210
Richard Smith15361a22016-12-28 06:27:18 +00002211 QualType NewT =
2212 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002213 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002214 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002215
2216 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002217 ExpandedParameterPackTypes.push_back(NewT);
2218 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002219
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002220 // Note that we have an expanded parameter pack. The "type" of this
2221 // expanded parameter pack is the original expansion type, but callers
2222 // will end up using the expanded parameter pack types for type-checking.
2223 IsExpandedParameterPack = true;
2224 DI = D->getTypeSourceInfo();
2225 T = DI->getType();
2226 } else {
2227 // We cannot fully expand the pack expansion now, so substitute into the
2228 // pattern and create a new pack expansion type.
2229 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2230 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002231 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002232 D->getDeclName());
2233 if (!NewPattern)
Craig Topperc3ec1492014-05-26 06:22:03 +00002234 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002235
Richard Smith15361a22016-12-28 06:27:18 +00002236 SemaRef.CheckNonTypeTemplateParameterType(NewPattern, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002237 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
2238 NumExpansions);
2239 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002240 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002241
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002242 T = DI->getType();
2243 }
2244 } else {
2245 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002246 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002247 D->getLocation(), D->getDeclName());
2248 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002249 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002250
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002251 // Check that this type is acceptable for a non-type template parameter.
Richard Smith15361a22016-12-28 06:27:18 +00002252 T = SemaRef.CheckNonTypeTemplateParameterType(DI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002253 if (T.isNull()) {
2254 T = SemaRef.Context.IntTy;
2255 Invalid = true;
2256 }
Douglas Gregor6b815c82009-10-23 23:25:44 +00002257 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002258
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002259 NonTypeTemplateParmDecl *Param;
2260 if (IsExpandedParameterPack)
David Majnemerdfecf1a2016-07-06 04:19:16 +00002261 Param = NonTypeTemplateParmDecl::Create(
2262 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
Richard Smithb4f96252017-02-21 06:30:38 +00002263 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2264 D->getPosition(), D->getIdentifier(), T, DI, ExpandedParameterPackTypes,
David Majnemerdfecf1a2016-07-06 04:19:16 +00002265 ExpandedParameterPackTypesAsWritten);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002266 else
Richard Smithb4f96252017-02-21 06:30:38 +00002267 Param = NonTypeTemplateParmDecl::Create(
2268 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
2269 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2270 D->getPosition(), D->getIdentifier(), T, D->isParameterPack(), DI);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002271
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002272 Param->setAccess(AS_public);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002273 if (Invalid)
2274 Param->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002275
Richard Smith52933792015-06-16 21:57:05 +00002276 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
Faisal Valid143a0c2017-04-01 21:30:49 +00002277 EnterExpressionEvaluationContext ConstantEvaluated(
2278 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
David Majnemer89189202013-08-28 23:48:32 +00002279 ExprResult Value = SemaRef.SubstExpr(D->getDefaultArgument(), TemplateArgs);
2280 if (!Value.isInvalid())
Richard Smith1469b912015-06-10 00:29:03 +00002281 Param->setDefaultArgument(Value.get());
David Majnemer89189202013-08-28 23:48:32 +00002282 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002283
2284 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002285 // scope.
2286 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002287 return Param;
2288}
2289
Richard Smith1fde8ec2012-09-07 02:06:42 +00002290static void collectUnexpandedParameterPacks(
2291 Sema &S,
2292 TemplateParameterList *Params,
2293 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Davide Italiano18960b92015-07-02 19:20:11 +00002294 for (const auto &P : *Params) {
2295 if (P->isTemplateParameterPack())
Richard Smith1fde8ec2012-09-07 02:06:42 +00002296 continue;
Davide Italiano18960b92015-07-02 19:20:11 +00002297 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002298 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
2299 Unexpanded);
Davide Italiano18960b92015-07-02 19:20:11 +00002300 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002301 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
2302 Unexpanded);
2303 }
2304}
2305
Anders Carlsson4bd78752009-08-28 15:18:15 +00002306Decl *
Douglas Gregor38fee962009-11-11 16:58:32 +00002307TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
2308 TemplateTemplateParmDecl *D) {
2309 // Instantiate the template parameter list of the template template parameter.
2310 TemplateParameterList *TempParams = D->getTemplateParameters();
2311 TemplateParameterList *InstParams;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002312 SmallVector<TemplateParameterList*, 8> ExpandedParams;
2313
2314 bool IsExpandedParameterPack = false;
2315
2316 if (D->isExpandedParameterPack()) {
2317 // The template template parameter pack is an already-expanded pack
2318 // expansion of template parameters. Substitute into each of the expanded
2319 // parameters.
2320 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
2321 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2322 I != N; ++I) {
2323 LocalInstantiationScope Scope(SemaRef);
2324 TemplateParameterList *Expansion =
2325 SubstTemplateParams(D->getExpansionTemplateParameters(I));
2326 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002327 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002328 ExpandedParams.push_back(Expansion);
2329 }
2330
2331 IsExpandedParameterPack = true;
2332 InstParams = TempParams;
2333 } else if (D->isPackExpansion()) {
2334 // The template template parameter pack expands to a pack of template
2335 // template parameters. Determine whether we need to expand this parameter
2336 // pack into separate parameters.
2337 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2338 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
2339 Unexpanded);
2340
2341 // Determine whether the set of unexpanded parameter packs can and should
2342 // be expanded.
2343 bool Expand = true;
2344 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002345 Optional<unsigned> NumExpansions;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002346 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
2347 TempParams->getSourceRange(),
2348 Unexpanded,
2349 TemplateArgs,
2350 Expand, RetainExpansion,
2351 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002352 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002353
2354 if (Expand) {
2355 for (unsigned I = 0; I != *NumExpansions; ++I) {
2356 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2357 LocalInstantiationScope Scope(SemaRef);
2358 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
2359 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002360 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002361 ExpandedParams.push_back(Expansion);
2362 }
2363
2364 // Note that we have an expanded parameter pack. The "type" of this
2365 // expanded parameter pack is the original expansion type, but callers
2366 // will end up using the expanded parameter pack types for type-checking.
2367 IsExpandedParameterPack = true;
2368 InstParams = TempParams;
2369 } else {
2370 // We cannot fully expand the pack expansion now, so just substitute
2371 // into the pattern.
2372 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2373
2374 LocalInstantiationScope Scope(SemaRef);
2375 InstParams = SubstTemplateParams(TempParams);
2376 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002377 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002378 }
2379 } else {
Douglas Gregor38fee962009-11-11 16:58:32 +00002380 // Perform the actual substitution of template parameters within a new,
2381 // local instantiation scope.
John McCall19c1bfd2010-08-25 05:32:35 +00002382 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor38fee962009-11-11 16:58:32 +00002383 InstParams = SubstTemplateParams(TempParams);
2384 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002385 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002386 }
2387
Douglas Gregor38fee962009-11-11 16:58:32 +00002388 // Build the template template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00002389 TemplateTemplateParmDecl *Param;
2390 if (IsExpandedParameterPack)
Richard Smithb4f96252017-02-21 06:30:38 +00002391 Param = TemplateTemplateParmDecl::Create(
2392 SemaRef.Context, Owner, D->getLocation(),
2393 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2394 D->getPosition(), D->getIdentifier(), InstParams, ExpandedParams);
Richard Smith1fde8ec2012-09-07 02:06:42 +00002395 else
Richard Smithb4f96252017-02-21 06:30:38 +00002396 Param = TemplateTemplateParmDecl::Create(
2397 SemaRef.Context, Owner, D->getLocation(),
2398 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2399 D->getPosition(), D->isParameterPack(), D->getIdentifier(), InstParams);
Richard Smith52933792015-06-16 21:57:05 +00002400 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002401 NestedNameSpecifierLoc QualifierLoc =
2402 D->getDefaultArgument().getTemplateQualifierLoc();
2403 QualifierLoc =
2404 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgs);
2405 TemplateName TName = SemaRef.SubstTemplateName(
2406 QualifierLoc, D->getDefaultArgument().getArgument().getAsTemplate(),
2407 D->getDefaultArgument().getTemplateNameLoc(), TemplateArgs);
2408 if (!TName.isNull())
2409 Param->setDefaultArgument(
Richard Smith1469b912015-06-10 00:29:03 +00002410 SemaRef.Context,
David Majnemer89189202013-08-28 23:48:32 +00002411 TemplateArgumentLoc(TemplateArgument(TName),
2412 D->getDefaultArgument().getTemplateQualifierLoc(),
Richard Smith1469b912015-06-10 00:29:03 +00002413 D->getDefaultArgument().getTemplateNameLoc()));
David Majnemer89189202013-08-28 23:48:32 +00002414 }
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002415 Param->setAccess(AS_public);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002416
2417 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor38fee962009-11-11 16:58:32 +00002418 // scope.
2419 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002420
Douglas Gregor38fee962009-11-11 16:58:32 +00002421 return Param;
2422}
2423
Douglas Gregore0b28662009-11-17 06:07:40 +00002424Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregor12441b32011-02-25 16:33:46 +00002425 // Using directives are never dependent (and never contain any types or
2426 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002427
Douglas Gregore0b28662009-11-17 06:07:40 +00002428 UsingDirectiveDecl *Inst
2429 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002430 D->getNamespaceKeyLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00002431 D->getQualifierLoc(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002432 D->getIdentLocation(),
2433 D->getNominatedNamespace(),
Douglas Gregore0b28662009-11-17 06:07:40 +00002434 D->getCommonAncestor());
Abramo Bagnara8843f9f2012-09-05 09:55:10 +00002435
2436 // Add the using directive to its declaration context
2437 // only if this is not a function or method.
2438 if (!Owner->isFunctionOrMethod())
2439 Owner->addDecl(Inst);
2440
Douglas Gregore0b28662009-11-17 06:07:40 +00002441 return Inst;
2442}
2443
John McCallb96ec562009-12-04 22:46:56 +00002444Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorac2e4302010-09-29 17:58:28 +00002445
2446 // The nested name specifier may be dependent, for example
2447 // template <typename T> struct t {
2448 // struct s1 { T f1(); };
2449 // struct s2 : s1 { using s1::f1; };
2450 // };
2451 // template struct t<int>;
2452 // Here, in using s1::f1, s1 refers to t<T>::s1;
2453 // we need to substitute for t<int>::s1.
Douglas Gregor0499ab62011-02-25 15:54:31 +00002454 NestedNameSpecifierLoc QualifierLoc
2455 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
2456 TemplateArgs);
2457 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002458 return nullptr;
Douglas Gregorac2e4302010-09-29 17:58:28 +00002459
Richard Smith5179eb72016-06-28 19:03:57 +00002460 // For an inheriting constructor declaration, the name of the using
2461 // declaration is the name of a constructor in this class, not in the
2462 // base class.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002463 DeclarationNameInfo NameInfo = D->getNameInfo();
Richard Smith5179eb72016-06-28 19:03:57 +00002464 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
2465 if (auto *RD = dyn_cast<CXXRecordDecl>(SemaRef.CurContext))
2466 NameInfo.setName(SemaRef.Context.DeclarationNames.getCXXConstructorName(
2467 SemaRef.Context.getCanonicalType(SemaRef.Context.getRecordType(RD))));
John McCallb96ec562009-12-04 22:46:56 +00002468
John McCall84d87672009-12-10 09:41:52 +00002469 // We only need to do redeclaration lookups if we're in a class
2470 // scope (in fact, it's not really even possible in non-class
2471 // scopes).
2472 bool CheckRedeclaration = Owner->isRecord();
2473
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002474 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002475 Sema::ForVisibleRedeclaration);
John McCall84d87672009-12-10 09:41:52 +00002476
John McCallb96ec562009-12-04 22:46:56 +00002477 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002478 D->getUsingLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002479 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002480 NameInfo,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002481 D->hasTypename());
John McCallb96ec562009-12-04 22:46:56 +00002482
Douglas Gregor0499ab62011-02-25 15:54:31 +00002483 CXXScopeSpec SS;
2484 SS.Adopt(QualifierLoc);
John McCall84d87672009-12-10 09:41:52 +00002485 if (CheckRedeclaration) {
2486 Prev.setHideTags(false);
2487 SemaRef.LookupQualifiedName(Prev, Owner);
2488
2489 // Check for invalid redeclarations.
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002490 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLoc(),
2491 D->hasTypename(), SS,
John McCall84d87672009-12-10 09:41:52 +00002492 D->getLocation(), Prev))
2493 NewUD->setInvalidDecl();
2494
2495 }
2496
2497 if (!NewUD->isInvalidDecl() &&
Richard Smithd8a9e372016-12-18 21:39:37 +00002498 SemaRef.CheckUsingDeclQualifier(D->getUsingLoc(), D->hasTypename(),
2499 SS, NameInfo, D->getLocation()))
John McCallb96ec562009-12-04 22:46:56 +00002500 NewUD->setInvalidDecl();
John McCall84d87672009-12-10 09:41:52 +00002501
John McCallb96ec562009-12-04 22:46:56 +00002502 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
2503 NewUD->setAccess(D->getAccess());
2504 Owner->addDecl(NewUD);
2505
John McCall84d87672009-12-10 09:41:52 +00002506 // Don't process the shadow decls for an invalid decl.
2507 if (NewUD->isInvalidDecl())
2508 return NewUD;
2509
Richard Smith5179eb72016-06-28 19:03:57 +00002510 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
Richard Smith09d5b3a2014-05-01 00:35:04 +00002511 SemaRef.CheckInheritingConstructorUsingDecl(NewUD);
Richard Smith23d55872012-04-02 01:30:27 +00002512
John McCalla1d85502009-12-22 22:26:37 +00002513 bool isFunctionScope = Owner->isFunctionOrMethod();
2514
John McCall84d87672009-12-10 09:41:52 +00002515 // Process the shadow decls.
Aaron Ballman91cdc282014-03-13 18:07:29 +00002516 for (auto *Shadow : D->shadows()) {
Richard Smith5179eb72016-06-28 19:03:57 +00002517 // FIXME: UsingShadowDecl doesn't preserve its immediate target, so
2518 // reconstruct it in the case where it matters.
2519 NamedDecl *OldTarget = Shadow->getTargetDecl();
2520 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow))
2521 if (auto *BaseShadow = CUSD->getNominatedBaseClassShadowDecl())
2522 OldTarget = BaseShadow;
2523
John McCall84d87672009-12-10 09:41:52 +00002524 NamedDecl *InstTarget =
Richard Smithfd8634a2013-10-23 02:17:46 +00002525 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
Richard Smith5179eb72016-06-28 19:03:57 +00002526 Shadow->getLocation(), OldTarget, TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00002527 if (!InstTarget)
Craig Topperc3ec1492014-05-26 06:22:03 +00002528 return nullptr;
John McCall84d87672009-12-10 09:41:52 +00002529
Craig Topperc3ec1492014-05-26 06:22:03 +00002530 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00002531 if (CheckRedeclaration) {
2532 if (SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev, PrevDecl))
2533 continue;
Richard Smith41c79d92014-10-11 00:37:16 +00002534 } else if (UsingShadowDecl *OldPrev =
2535 getPreviousDeclForInstantiation(Shadow)) {
Richard Smithfd8634a2013-10-23 02:17:46 +00002536 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl(
2537 Shadow->getLocation(), OldPrev, TemplateArgs));
2538 }
John McCall84d87672009-12-10 09:41:52 +00002539
Richard Smithfd8634a2013-10-23 02:17:46 +00002540 UsingShadowDecl *InstShadow =
Craig Topperc3ec1492014-05-26 06:22:03 +00002541 SemaRef.BuildUsingShadowDecl(/*Scope*/nullptr, NewUD, InstTarget,
2542 PrevDecl);
John McCall84d87672009-12-10 09:41:52 +00002543 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCalla1d85502009-12-22 22:26:37 +00002544
2545 if (isFunctionScope)
2546 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall84d87672009-12-10 09:41:52 +00002547 }
John McCallb96ec562009-12-04 22:46:56 +00002548
2549 return NewUD;
2550}
2551
2552Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall84d87672009-12-10 09:41:52 +00002553 // Ignore these; we handle them in bulk when processing the UsingDecl.
Craig Topperc3ec1492014-05-26 06:22:03 +00002554 return nullptr;
John McCallb96ec562009-12-04 22:46:56 +00002555}
2556
Richard Smith5179eb72016-06-28 19:03:57 +00002557Decl *TemplateDeclInstantiator::VisitConstructorUsingShadowDecl(
2558 ConstructorUsingShadowDecl *D) {
2559 // Ignore these; we handle them in bulk when processing the UsingDecl.
2560 return nullptr;
2561}
2562
Richard Smith151c4562016-12-20 21:35:28 +00002563template <typename T>
2564Decl *TemplateDeclInstantiator::instantiateUnresolvedUsingDecl(
2565 T *D, bool InstantiatingPackElement) {
2566 // If this is a pack expansion, expand it now.
2567 if (D->isPackExpansion() && !InstantiatingPackElement) {
2568 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2569 SemaRef.collectUnexpandedParameterPacks(D->getQualifierLoc(), Unexpanded);
2570 SemaRef.collectUnexpandedParameterPacks(D->getNameInfo(), Unexpanded);
2571
2572 // Determine whether the set of unexpanded parameter packs can and should
2573 // be expanded.
2574 bool Expand = true;
2575 bool RetainExpansion = false;
2576 Optional<unsigned> NumExpansions;
2577 if (SemaRef.CheckParameterPacksForExpansion(
2578 D->getEllipsisLoc(), D->getSourceRange(), Unexpanded, TemplateArgs,
2579 Expand, RetainExpansion, NumExpansions))
2580 return nullptr;
2581
2582 // This declaration cannot appear within a function template signature,
2583 // so we can't have a partial argument list for a parameter pack.
2584 assert(!RetainExpansion &&
2585 "should never need to retain an expansion for UsingPackDecl");
2586
2587 if (!Expand) {
2588 // We cannot fully expand the pack expansion now, so substitute into the
2589 // pattern and create a new pack expansion.
2590 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2591 return instantiateUnresolvedUsingDecl(D, true);
2592 }
2593
2594 // Within a function, we don't have any normal way to check for conflicts
2595 // between shadow declarations from different using declarations in the
2596 // same pack expansion, but this is always ill-formed because all expansions
2597 // must produce (conflicting) enumerators.
2598 //
2599 // Sadly we can't just reject this in the template definition because it
2600 // could be valid if the pack is empty or has exactly one expansion.
2601 if (D->getDeclContext()->isFunctionOrMethod() && *NumExpansions > 1) {
2602 SemaRef.Diag(D->getEllipsisLoc(),
2603 diag::err_using_decl_redeclaration_expansion);
2604 return nullptr;
2605 }
2606
2607 // Instantiate the slices of this pack and build a UsingPackDecl.
2608 SmallVector<NamedDecl*, 8> Expansions;
2609 for (unsigned I = 0; I != *NumExpansions; ++I) {
2610 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2611 Decl *Slice = instantiateUnresolvedUsingDecl(D, true);
2612 if (!Slice)
2613 return nullptr;
2614 // Note that we can still get unresolved using declarations here, if we
2615 // had arguments for all packs but the pattern also contained other
2616 // template arguments (this only happens during partial substitution, eg
2617 // into the body of a generic lambda in a function template).
2618 Expansions.push_back(cast<NamedDecl>(Slice));
2619 }
2620
2621 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2622 if (isDeclWithinFunction(D))
2623 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2624 return NewD;
2625 }
2626
2627 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D);
2628 SourceLocation TypenameLoc = TD ? TD->getTypenameLoc() : SourceLocation();
2629
Douglas Gregor0499ab62011-02-25 15:54:31 +00002630 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002631 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002632 TemplateArgs);
2633 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002634 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002635
Anders Carlsson4bd78752009-08-28 15:18:15 +00002636 CXXScopeSpec SS;
Douglas Gregor0499ab62011-02-25 15:54:31 +00002637 SS.Adopt(QualifierLoc);
Mike Stump11289f42009-09-09 15:08:12 +00002638
Daniel Jasper9949ead2016-12-19 10:09:25 +00002639 DeclarationNameInfo NameInfo
2640 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2641
Richard Smith151c4562016-12-20 21:35:28 +00002642 // Produce a pack expansion only if we're not instantiating a particular
2643 // slice of a pack expansion.
2644 bool InstantiatingSlice = D->getEllipsisLoc().isValid() &&
2645 SemaRef.ArgumentPackSubstitutionIndex != -1;
2646 SourceLocation EllipsisLoc =
2647 InstantiatingSlice ? SourceLocation() : D->getEllipsisLoc();
2648
2649 NamedDecl *UD = SemaRef.BuildUsingDeclaration(
2650 /*Scope*/ nullptr, D->getAccess(), D->getUsingLoc(),
2651 /*HasTypename*/ TD, TypenameLoc, SS, NameInfo, EllipsisLoc, nullptr,
2652 /*IsInstantiation*/ true);
Daniel Jasper9949ead2016-12-19 10:09:25 +00002653 if (UD)
2654 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
2655
2656 return UD;
Richard Smith22a250c2016-12-19 04:08:53 +00002657}
2658
Richard Smith151c4562016-12-20 21:35:28 +00002659Decl *TemplateDeclInstantiator::VisitUnresolvedUsingTypenameDecl(
2660 UnresolvedUsingTypenameDecl *D) {
2661 return instantiateUnresolvedUsingDecl(D);
2662}
2663
2664Decl *TemplateDeclInstantiator::VisitUnresolvedUsingValueDecl(
2665 UnresolvedUsingValueDecl *D) {
2666 return instantiateUnresolvedUsingDecl(D);
2667}
2668
2669Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) {
2670 SmallVector<NamedDecl*, 8> Expansions;
2671 for (auto *UD : D->expansions()) {
George Burgess IV00f70bd2018-03-01 05:43:23 +00002672 if (NamedDecl *NewUD =
Richard Smith151c4562016-12-20 21:35:28 +00002673 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs))
George Burgess IV00f70bd2018-03-01 05:43:23 +00002674 Expansions.push_back(NewUD);
Richard Smith151c4562016-12-20 21:35:28 +00002675 else
2676 return nullptr;
2677 }
2678
2679 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2680 if (isDeclWithinFunction(D))
2681 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2682 return NewD;
2683}
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002684
2685Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
2686 ClassScopeFunctionSpecializationDecl *Decl) {
2687 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nick Lewycky0b727732015-01-02 01:33:12 +00002688 CXXMethodDecl *NewFD =
2689 cast_or_null<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, nullptr, true));
2690 if (!NewFD)
2691 return nullptr;
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002692
2693 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002694 Sema::ForExternalRedeclaration);
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002695
Nico Weber7b5a7162012-06-25 17:21:05 +00002696 TemplateArgumentListInfo TemplateArgs;
Craig Topperc3ec1492014-05-26 06:22:03 +00002697 TemplateArgumentListInfo *TemplateArgsPtr = nullptr;
Nico Weber7b5a7162012-06-25 17:21:05 +00002698 if (Decl->hasExplicitTemplateArgs()) {
2699 TemplateArgs = Decl->templateArgs();
2700 TemplateArgsPtr = &TemplateArgs;
2701 }
2702
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002703 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber7b5a7162012-06-25 17:21:05 +00002704 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
2705 Previous)) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002706 NewFD->setInvalidDecl();
2707 return NewFD;
2708 }
2709
2710 // Associate the specialization with the pattern.
2711 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2712 assert(Specialization && "Class scope Specialization is null");
2713 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2714
Richard Smithc660c8f2018-03-16 13:36:56 +00002715 // FIXME: If this is a definition, check for redefinition errors!
2716
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002717 return NewFD;
2718}
2719
Alexey Bataeva769e072013-03-22 06:34:35 +00002720Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl(
2721 OMPThreadPrivateDecl *D) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002722 SmallVector<Expr *, 5> Vars;
Aaron Ballman2205d2a2014-03-14 15:55:35 +00002723 for (auto *I : D->varlists()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002724 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
Alexey Bataeva769e072013-03-22 06:34:35 +00002725 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr");
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002726 Vars.push_back(Var);
Alexey Bataeva769e072013-03-22 06:34:35 +00002727 }
2728
2729 OMPThreadPrivateDecl *TD =
2730 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars);
2731
Alexey Bataevd3db6ac2014-03-07 09:46:29 +00002732 TD->setAccess(AS_public);
2733 Owner->addDecl(TD);
2734
Alexey Bataeva769e072013-03-22 06:34:35 +00002735 return TD;
2736}
2737
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002738Decl *TemplateDeclInstantiator::VisitOMPDeclareReductionDecl(
2739 OMPDeclareReductionDecl *D) {
2740 // Instantiate type and check if it is allowed.
2741 QualType SubstReductionType = SemaRef.ActOnOpenMPDeclareReductionType(
2742 D->getLocation(),
2743 ParsedType::make(SemaRef.SubstType(D->getType(), TemplateArgs,
2744 D->getLocation(), DeclarationName())));
2745 if (SubstReductionType.isNull())
2746 return nullptr;
2747 bool IsCorrect = !SubstReductionType.isNull();
2748 // Create instantiated copy.
2749 std::pair<QualType, SourceLocation> ReductionTypes[] = {
2750 std::make_pair(SubstReductionType, D->getLocation())};
2751 auto *PrevDeclInScope = D->getPrevDeclInScope();
2752 if (PrevDeclInScope && !PrevDeclInScope->isInvalidDecl()) {
2753 PrevDeclInScope = cast<OMPDeclareReductionDecl>(
2754 SemaRef.CurrentInstantiationScope->findInstantiationOf(PrevDeclInScope)
2755 ->get<Decl *>());
2756 }
2757 auto DRD = SemaRef.ActOnOpenMPDeclareReductionDirectiveStart(
2758 /*S=*/nullptr, Owner, D->getDeclName(), ReductionTypes, D->getAccess(),
2759 PrevDeclInScope);
2760 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl());
2761 if (isDeclWithinFunction(NewDRD))
2762 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewDRD);
2763 Expr *SubstCombiner = nullptr;
2764 Expr *SubstInitializer = nullptr;
2765 // Combiners instantiation sequence.
2766 if (D->getCombiner()) {
2767 SemaRef.ActOnOpenMPDeclareReductionCombinerStart(
2768 /*S=*/nullptr, NewDRD);
2769 const char *Names[] = {"omp_in", "omp_out"};
2770 for (auto &Name : Names) {
2771 DeclarationName DN(&SemaRef.Context.Idents.get(Name));
2772 auto OldLookup = D->lookup(DN);
2773 auto Lookup = NewDRD->lookup(DN);
2774 if (!OldLookup.empty() && !Lookup.empty()) {
2775 assert(Lookup.size() == 1 && OldLookup.size() == 1);
2776 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldLookup.front(),
2777 Lookup.front());
2778 }
2779 }
2780 SubstCombiner = SemaRef.SubstExpr(D->getCombiner(), TemplateArgs).get();
2781 SemaRef.ActOnOpenMPDeclareReductionCombinerEnd(NewDRD, SubstCombiner);
2782 // Initializers instantiation sequence.
2783 if (D->getInitializer()) {
Alexey Bataev070f43a2017-09-06 14:49:58 +00002784 VarDecl *OmpPrivParm =
2785 SemaRef.ActOnOpenMPDeclareReductionInitializerStart(
2786 /*S=*/nullptr, NewDRD);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002787 const char *Names[] = {"omp_orig", "omp_priv"};
2788 for (auto &Name : Names) {
2789 DeclarationName DN(&SemaRef.Context.Idents.get(Name));
2790 auto OldLookup = D->lookup(DN);
2791 auto Lookup = NewDRD->lookup(DN);
2792 if (!OldLookup.empty() && !Lookup.empty()) {
2793 assert(Lookup.size() == 1 && OldLookup.size() == 1);
Alexey Bataev070f43a2017-09-06 14:49:58 +00002794 auto *OldVD = cast<VarDecl>(OldLookup.front());
2795 auto *NewVD = cast<VarDecl>(Lookup.front());
2796 SemaRef.InstantiateVariableInitializer(NewVD, OldVD, TemplateArgs);
2797 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldVD, NewVD);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002798 }
2799 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002800 if (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit) {
2801 SubstInitializer =
2802 SemaRef.SubstExpr(D->getInitializer(), TemplateArgs).get();
2803 } else {
2804 IsCorrect = IsCorrect && OmpPrivParm->hasInit();
2805 }
2806 SemaRef.ActOnOpenMPDeclareReductionInitializerEnd(
2807 NewDRD, SubstInitializer, OmpPrivParm);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002808 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002809 IsCorrect =
2810 IsCorrect && SubstCombiner &&
2811 (!D->getInitializer() ||
2812 (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit &&
2813 SubstInitializer) ||
2814 (D->getInitializerKind() != OMPDeclareReductionDecl::CallInit &&
2815 !SubstInitializer && !SubstInitializer));
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002816 } else
2817 IsCorrect = false;
2818
2819 (void)SemaRef.ActOnOpenMPDeclareReductionDirectiveEnd(/*S=*/nullptr, DRD,
2820 IsCorrect);
2821
2822 return NewDRD;
2823}
2824
Alexey Bataev4244be22016-02-11 05:35:55 +00002825Decl *TemplateDeclInstantiator::VisitOMPCapturedExprDecl(
2826 OMPCapturedExprDecl * /*D*/) {
Alexey Bataev90c228f2016-02-08 09:29:13 +00002827 llvm_unreachable("Should not be met in templates");
2828}
2829
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002830Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002831 return VisitFunctionDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002832}
2833
Richard Smithbc491202017-02-17 20:05:37 +00002834Decl *
2835TemplateDeclInstantiator::VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *D) {
Richard Smith2600c632018-05-30 20:24:10 +00002836 Decl *Inst = VisitFunctionDecl(D, nullptr);
2837 if (Inst && !D->getDescribedFunctionTemplate())
2838 Owner->addDecl(Inst);
2839 return Inst;
Richard Smithbc491202017-02-17 20:05:37 +00002840}
2841
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002842Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002843 return VisitCXXMethodDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002844}
2845
2846Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) {
2847 llvm_unreachable("There are only CXXRecordDecls in C++");
2848}
2849
2850Decl *
2851TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl(
2852 ClassTemplateSpecializationDecl *D) {
Richard Smith8a0dde72013-12-14 01:04:22 +00002853 // As a MS extension, we permit class-scope explicit specialization
2854 // of member class templates.
2855 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
2856 assert(ClassTemplate->getDeclContext()->isRecord() &&
2857 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2858 "can only instantiate an explicit specialization "
2859 "for a member class template");
2860
2861 // Lookup the already-instantiated declaration in the instantiation
2862 // of the class template. FIXME: Diagnose or assert if this fails?
2863 DeclContext::lookup_result Found
2864 = Owner->lookup(ClassTemplate->getDeclName());
2865 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00002866 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002867 ClassTemplateDecl *InstClassTemplate
2868 = dyn_cast<ClassTemplateDecl>(Found.front());
2869 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00002870 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002871
2872 // Substitute into the template arguments of the class template explicit
2873 // specialization.
2874 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc().
2875 castAs<TemplateSpecializationTypeLoc>();
2876 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(),
2877 Loc.getRAngleLoc());
2878 SmallVector<TemplateArgumentLoc, 4> ArgLocs;
2879 for (unsigned I = 0; I != Loc.getNumArgs(); ++I)
2880 ArgLocs.push_back(Loc.getArgLoc(I));
2881 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(),
2882 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002883 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002884
2885 // Check that the template argument list is well-formed for this
2886 // class template.
2887 SmallVector<TemplateArgument, 4> Converted;
2888 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate,
2889 D->getLocation(),
2890 InstTemplateArgs,
2891 false,
2892 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002893 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002894
2895 // Figure out where to insert this class template explicit specialization
2896 // in the member template's set of class template explicit specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002897 void *InsertPos = nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002898 ClassTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00002899 InstClassTemplate->findSpecialization(Converted, InsertPos);
Richard Smith8a0dde72013-12-14 01:04:22 +00002900
2901 // Check whether we've already seen a conflicting instantiation of this
2902 // declaration (for instance, if there was a prior implicit instantiation).
2903 bool Ignored;
2904 if (PrevDecl &&
2905 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(),
2906 D->getSpecializationKind(),
2907 PrevDecl,
2908 PrevDecl->getSpecializationKind(),
2909 PrevDecl->getPointOfInstantiation(),
2910 Ignored))
Craig Topperc3ec1492014-05-26 06:22:03 +00002911 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002912
2913 // If PrevDecl was a definition and D is also a definition, diagnose.
2914 // This happens in cases like:
2915 //
2916 // template<typename T, typename U>
2917 // struct Outer {
2918 // template<typename X> struct Inner;
2919 // template<> struct Inner<T> {};
2920 // template<> struct Inner<U> {};
2921 // };
2922 //
2923 // Outer<int, int> outer; // error: the explicit specializations of Inner
2924 // // have the same signature.
2925 if (PrevDecl && PrevDecl->getDefinition() &&
2926 D->isThisDeclarationADefinition()) {
2927 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl;
2928 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(),
2929 diag::note_previous_definition);
Craig Topperc3ec1492014-05-26 06:22:03 +00002930 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002931 }
2932
2933 // Create the class template partial specialization declaration.
2934 ClassTemplateSpecializationDecl *InstD
2935 = ClassTemplateSpecializationDecl::Create(SemaRef.Context,
2936 D->getTagKind(),
2937 Owner,
2938 D->getLocStart(),
2939 D->getLocation(),
2940 InstClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00002941 Converted,
Richard Smith8a0dde72013-12-14 01:04:22 +00002942 PrevDecl);
2943
2944 // Add this partial specialization to the set of class template partial
2945 // specializations.
2946 if (!PrevDecl)
2947 InstClassTemplate->AddSpecialization(InstD, InsertPos);
2948
2949 // Substitute the nested name specifier, if any.
2950 if (SubstQualifier(D, InstD))
Craig Topperc3ec1492014-05-26 06:22:03 +00002951 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002952
2953 // Build the canonical type that describes the converted template
2954 // arguments of the class template explicit specialization.
2955 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00002956 TemplateName(InstClassTemplate), Converted,
Richard Smith8a0dde72013-12-14 01:04:22 +00002957 SemaRef.Context.getRecordType(InstD));
2958
2959 // Build the fully-sugared type for this class template
2960 // specialization as the user wrote in the specialization
2961 // itself. This means that we'll pretty-print the type retrieved
2962 // from the specialization's declaration the way that the user
2963 // actually wrote the specialization, rather than formatting the
2964 // name based on the "canonical" representation used to store the
2965 // template arguments in the specialization.
2966 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
2967 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs,
2968 CanonType);
2969
2970 InstD->setAccess(D->getAccess());
2971 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
2972 InstD->setSpecializationKind(D->getSpecializationKind());
2973 InstD->setTypeAsWritten(WrittenTy);
2974 InstD->setExternLoc(D->getExternLoc());
2975 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc());
2976
2977 Owner->addDecl(InstD);
2978
2979 // Instantiate the members of the class-scope explicit specialization eagerly.
2980 // We don't have support for lazy instantiation of an explicit specialization
2981 // yet, and MSVC eagerly instantiates in this case.
2982 if (D->isThisDeclarationADefinition() &&
2983 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs,
2984 TSK_ImplicitInstantiation,
2985 /*Complain=*/true))
Craig Topperc3ec1492014-05-26 06:22:03 +00002986 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002987
2988 return InstD;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002989}
2990
Larisse Voufo39a1e502013-08-06 01:03:05 +00002991Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
2992 VarTemplateSpecializationDecl *D) {
2993
2994 TemplateArgumentListInfo VarTemplateArgsInfo;
2995 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
2996 assert(VarTemplate &&
2997 "A template specialization without specialized template?");
2998
2999 // Substitute the current template arguments.
3000 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo();
3001 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc());
3002 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc());
3003
3004 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(),
3005 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003006 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003007
3008 // Check that the template argument list is well-formed for this template.
3009 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003010 if (SemaRef.CheckTemplateArgumentList(
3011 VarTemplate, VarTemplate->getLocStart(),
3012 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00003013 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003014 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003015
3016 // Find the variable template specialization declaration that
3017 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00003018 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003019 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00003020 Converted, InsertPos))
Larisse Voufo39a1e502013-08-06 01:03:05 +00003021 // If we already have a variable template specialization, return it.
3022 return VarSpec;
3023
3024 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos,
3025 VarTemplateArgsInfo, Converted);
3026}
3027
3028Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
3029 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos,
3030 const TemplateArgumentListInfo &TemplateArgsInfo,
Craig Topper00bbdcf2014-06-28 23:22:23 +00003031 ArrayRef<TemplateArgument> Converted) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003032
Larisse Voufo39a1e502013-08-06 01:03:05 +00003033 // Do substitution on the type of the declaration
3034 TypeSourceInfo *DI =
3035 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
3036 D->getTypeSpecStartLoc(), D->getDeclName());
3037 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003038 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003039
3040 if (DI->getType()->isFunctionType()) {
3041 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
3042 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003043 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003044 }
3045
3046 // Build the instantiated declaration
3047 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create(
3048 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
David Majnemer8b622692016-07-03 21:17:51 +00003049 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003050 Var->setTemplateArgsInfo(TemplateArgsInfo);
Richard Smith8809a0c2013-09-27 20:14:12 +00003051 if (InsertPos)
3052 VarTemplate->AddSpecialization(Var, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003053
3054 // Substitute the nested name specifier, if any.
3055 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +00003056 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003057
3058 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs,
Richard Smith541b38b2013-09-20 01:15:31 +00003059 Owner, StartingScope);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003060
3061 return Var;
3062}
3063
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003064Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) {
3065 llvm_unreachable("@defs is not supported in Objective-C++");
3066}
3067
3068Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
3069 // FIXME: We need to be able to instantiate FriendTemplateDecls.
3070 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
3071 DiagnosticsEngine::Error,
3072 "cannot instantiate %0 yet");
3073 SemaRef.Diag(D->getLocation(), DiagID)
3074 << D->getDeclKindName();
3075
Craig Topperc3ec1492014-05-26 06:22:03 +00003076 return nullptr;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003077}
3078
3079Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) {
3080 llvm_unreachable("Unexpected decl");
3081}
3082
John McCall76d824f2009-08-25 22:02:44 +00003083Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregor01afeef2009-08-28 20:31:08 +00003084 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord002c7b2009-05-11 23:53:27 +00003085 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor71ad4772010-02-16 19:28:15 +00003086 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00003087 return nullptr;
Douglas Gregor71ad4772010-02-16 19:28:15 +00003088
Douglas Gregord7e7a512009-03-17 21:15:40 +00003089 return Instantiator.Visit(D);
3090}
3091
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003092/// Instantiates a nested template parameter list in the current
John McCall87a44eb2009-08-20 01:44:21 +00003093/// instantiation context.
3094///
3095/// \param L The parameter list to instantiate
3096///
3097/// \returns NULL if there was an error
3098TemplateParameterList *
John McCall76d824f2009-08-25 22:02:44 +00003099TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCall87a44eb2009-08-20 01:44:21 +00003100 // Get errors for all the parameters before bailing out.
3101 bool Invalid = false;
3102
3103 unsigned N = L->size();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003104 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCall87a44eb2009-08-20 01:44:21 +00003105 ParamVector Params;
3106 Params.reserve(N);
Davide Italiano18960b92015-07-02 19:20:11 +00003107 for (auto &P : *L) {
3108 NamedDecl *D = cast_or_null<NamedDecl>(Visit(P));
John McCall87a44eb2009-08-20 01:44:21 +00003109 Params.push_back(D);
Douglas Gregore62e6a02009-11-11 19:13:48 +00003110 Invalid = Invalid || !D || D->isInvalidDecl();
John McCall87a44eb2009-08-20 01:44:21 +00003111 }
3112
3113 // Clean up if we had an error.
Douglas Gregorb412e172010-07-25 18:17:45 +00003114 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +00003115 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00003116
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003117 // Note: we substitute into associated constraints later
3118 Expr *const UninstantiatedRequiresClause = L->getRequiresClause();
3119
John McCall87a44eb2009-08-20 01:44:21 +00003120 TemplateParameterList *InstL
3121 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
David Majnemer902f8c62015-12-27 07:16:27 +00003122 L->getLAngleLoc(), Params,
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003123 L->getRAngleLoc(),
3124 UninstantiatedRequiresClause);
John McCall87a44eb2009-08-20 01:44:21 +00003125 return InstL;
Mike Stump11289f42009-09-09 15:08:12 +00003126}
John McCall87a44eb2009-08-20 01:44:21 +00003127
Richard Smith5d331022018-03-08 01:07:33 +00003128TemplateParameterList *
3129Sema::SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner,
3130 const MultiLevelTemplateArgumentList &TemplateArgs) {
3131 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
3132 return Instantiator.SubstTemplateParams(Params);
3133}
3134
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003135/// Instantiate the declaration of a class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003136/// specialization.
3137///
3138/// \param ClassTemplate the (instantiated) class template that is partially
3139// specialized by the instantiation of \p PartialSpec.
3140///
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003141/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003142/// specialization that we are instantiating.
3143///
Douglas Gregor869853e2010-11-10 19:44:59 +00003144/// \returns The instantiated partial specialization, if successful; otherwise,
3145/// NULL to indicate an error.
3146ClassTemplatePartialSpecializationDecl *
Douglas Gregor21610382009-10-29 00:04:11 +00003147TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
3148 ClassTemplateDecl *ClassTemplate,
3149 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor954de172009-10-31 17:21:17 +00003150 // Create a local instantiation scope for this class template partial
3151 // specialization, which will contain the instantiations of the template
3152 // parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00003153 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003154
Douglas Gregor21610382009-10-29 00:04:11 +00003155 // Substitute into the template parameters of the class template partial
3156 // specialization.
3157 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3158 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3159 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003160 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003161
Douglas Gregor21610382009-10-29 00:04:11 +00003162 // Substitute into the template arguments of the class template partial
3163 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003164 const ASTTemplateArgumentListInfo *TemplArgInfo
3165 = PartialSpec->getTemplateArgsAsWritten();
3166 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3167 TemplArgInfo->RAngleLoc);
3168 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3169 TemplArgInfo->NumTemplateArgs,
Douglas Gregor0f3feb42010-12-22 21:19:48 +00003170 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003171 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003172
Douglas Gregor21610382009-10-29 00:04:11 +00003173 // Check that the template argument list is well-formed for this
3174 // class template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003175 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003176 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregor21610382009-10-29 00:04:11 +00003177 PartialSpec->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003178 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003179 false,
3180 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003181 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003182
Richard Smith57aae072016-12-28 02:37:25 +00003183 // Check these arguments are valid for a template partial specialization.
3184 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3185 PartialSpec->getLocation(), ClassTemplate, InstTemplateArgs.size(),
3186 Converted))
3187 return nullptr;
3188
Douglas Gregor21610382009-10-29 00:04:11 +00003189 // Figure out where to insert this class template partial specialization
3190 // in the member template's set of class template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003191 void *InsertPos = nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003192 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00003193 = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003194
Douglas Gregor21610382009-10-29 00:04:11 +00003195 // Build the canonical type that describes the converted template
3196 // arguments of the class template partial specialization.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003197 QualType CanonType
Douglas Gregor21610382009-10-29 00:04:11 +00003198 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
David Majnemer6fbeee32016-07-07 04:43:07 +00003199 Converted);
Douglas Gregor21610382009-10-29 00:04:11 +00003200
3201 // Build the fully-sugared type for this class template
3202 // specialization as the user wrote in the specialization
3203 // itself. This means that we'll pretty-print the type retrieved
3204 // from the specialization's declaration the way that the user
3205 // actually wrote the specialization, rather than formatting the
3206 // name based on the "canonical" representation used to store the
3207 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00003208 TypeSourceInfo *WrittenTy
3209 = SemaRef.Context.getTemplateSpecializationTypeInfo(
3210 TemplateName(ClassTemplate),
3211 PartialSpec->getLocation(),
John McCall6b51f282009-11-23 01:53:49 +00003212 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003213 CanonType);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003214
Douglas Gregor21610382009-10-29 00:04:11 +00003215 if (PrevDecl) {
3216 // We've already seen a partial specialization with the same template
3217 // parameters and template arguments. This can happen, for example, when
3218 // substituting the outer template arguments ends up causing two
3219 // class template partial specializations of a member class template
3220 // to have identical forms, e.g.,
3221 //
3222 // template<typename T, typename U>
3223 // struct Outer {
3224 // template<typename X, typename Y> struct Inner;
3225 // template<typename Y> struct Inner<T, Y>;
3226 // template<typename Y> struct Inner<U, Y>;
3227 // };
3228 //
3229 // Outer<int, int> outer; // error: the partial specializations of Inner
3230 // // have the same signature.
3231 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregor869853e2010-11-10 19:44:59 +00003232 << WrittenTy->getType();
Douglas Gregor21610382009-10-29 00:04:11 +00003233 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
3234 << SemaRef.Context.getTypeDeclType(PrevDecl);
Craig Topperc3ec1492014-05-26 06:22:03 +00003235 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003236 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003237
3238
Douglas Gregor21610382009-10-29 00:04:11 +00003239 // Create the class template partial specialization declaration.
3240 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003241 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregore9029562010-05-06 00:28:52 +00003242 PartialSpec->getTagKind(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003243 Owner,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00003244 PartialSpec->getLocStart(),
3245 PartialSpec->getLocation(),
Douglas Gregor21610382009-10-29 00:04:11 +00003246 InstParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003247 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00003248 Converted,
John McCall6b51f282009-11-23 01:53:49 +00003249 InstTemplateArgs,
John McCalle78aac42010-03-10 03:28:59 +00003250 CanonType,
Craig Topperc3ec1492014-05-26 06:22:03 +00003251 nullptr);
John McCall3e11ebe2010-03-15 10:12:16 +00003252 // Substitute the nested name specifier, if any.
3253 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003254 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00003255
Douglas Gregor21610382009-10-29 00:04:11 +00003256 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor6044d692010-05-19 17:02:24 +00003257 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003258
Richard Smith57aae072016-12-28 02:37:25 +00003259 // Check the completed partial specialization.
3260 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3261
Douglas Gregor21610382009-10-29 00:04:11 +00003262 // Add this partial specialization to the set of class template partial
3263 // specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003264 ClassTemplate->AddPartialSpecialization(InstPartialSpec,
3265 /*InsertPos=*/nullptr);
Douglas Gregor869853e2010-11-10 19:44:59 +00003266 return InstPartialSpec;
Douglas Gregor21610382009-10-29 00:04:11 +00003267}
3268
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003269/// Instantiate the declaration of a variable template partial
Larisse Voufo39a1e502013-08-06 01:03:05 +00003270/// specialization.
3271///
3272/// \param VarTemplate the (instantiated) variable template that is partially
3273/// specialized by the instantiation of \p PartialSpec.
3274///
3275/// \param PartialSpec the (uninstantiated) variable template partial
3276/// specialization that we are instantiating.
3277///
3278/// \returns The instantiated partial specialization, if successful; otherwise,
3279/// NULL to indicate an error.
3280VarTemplatePartialSpecializationDecl *
3281TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization(
3282 VarTemplateDecl *VarTemplate,
3283 VarTemplatePartialSpecializationDecl *PartialSpec) {
3284 // Create a local instantiation scope for this variable template partial
3285 // specialization, which will contain the instantiations of the template
3286 // parameters.
3287 LocalInstantiationScope Scope(SemaRef);
3288
3289 // Substitute into the template parameters of the variable template partial
3290 // specialization.
3291 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3292 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3293 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003294 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003295
3296 // Substitute into the template arguments of the variable template partial
3297 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003298 const ASTTemplateArgumentListInfo *TemplArgInfo
3299 = PartialSpec->getTemplateArgsAsWritten();
3300 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3301 TemplArgInfo->RAngleLoc);
3302 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3303 TemplArgInfo->NumTemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00003304 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003305 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003306
3307 // Check that the template argument list is well-formed for this
3308 // class template.
3309 SmallVector<TemplateArgument, 4> Converted;
3310 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(),
3311 InstTemplateArgs, false, Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003312 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003313
Richard Smith57aae072016-12-28 02:37:25 +00003314 // Check these arguments are valid for a template partial specialization.
3315 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3316 PartialSpec->getLocation(), VarTemplate, InstTemplateArgs.size(),
3317 Converted))
3318 return nullptr;
3319
Larisse Voufo39a1e502013-08-06 01:03:05 +00003320 // Figure out where to insert this variable template partial specialization
3321 // in the member template's set of variable template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003322 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003323 VarTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00003324 VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003325
3326 // Build the canonical type that describes the converted template
3327 // arguments of the variable template partial specialization.
3328 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00003329 TemplateName(VarTemplate), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003330
3331 // Build the fully-sugared type for this variable template
3332 // specialization as the user wrote in the specialization
3333 // itself. This means that we'll pretty-print the type retrieved
3334 // from the specialization's declaration the way that the user
3335 // actually wrote the specialization, rather than formatting the
3336 // name based on the "canonical" representation used to store the
3337 // template arguments in the specialization.
3338 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
3339 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs,
3340 CanonType);
3341
3342 if (PrevDecl) {
3343 // We've already seen a partial specialization with the same template
3344 // parameters and template arguments. This can happen, for example, when
3345 // substituting the outer template arguments ends up causing two
3346 // variable template partial specializations of a member variable template
3347 // to have identical forms, e.g.,
3348 //
3349 // template<typename T, typename U>
3350 // struct Outer {
3351 // template<typename X, typename Y> pair<X,Y> p;
3352 // template<typename Y> pair<T, Y> p;
3353 // template<typename Y> pair<U, Y> p;
3354 // };
3355 //
3356 // Outer<int, int> outer; // error: the partial specializations of Inner
3357 // // have the same signature.
3358 SemaRef.Diag(PartialSpec->getLocation(),
3359 diag::err_var_partial_spec_redeclared)
3360 << WrittenTy->getType();
3361 SemaRef.Diag(PrevDecl->getLocation(),
3362 diag::note_var_prev_partial_spec_here);
Craig Topperc3ec1492014-05-26 06:22:03 +00003363 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003364 }
3365
3366 // Do substitution on the type of the declaration
3367 TypeSourceInfo *DI = SemaRef.SubstType(
3368 PartialSpec->getTypeSourceInfo(), TemplateArgs,
3369 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName());
3370 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003371 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003372
3373 if (DI->getType()->isFunctionType()) {
3374 SemaRef.Diag(PartialSpec->getLocation(),
3375 diag::err_variable_instantiates_to_function)
3376 << PartialSpec->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003377 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003378 }
3379
3380 // Create the variable template partial specialization declaration.
3381 VarTemplatePartialSpecializationDecl *InstPartialSpec =
3382 VarTemplatePartialSpecializationDecl::Create(
3383 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(),
3384 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(),
David Majnemer8b622692016-07-03 21:17:51 +00003385 DI, PartialSpec->getStorageClass(), Converted, InstTemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003386
3387 // Substitute the nested name specifier, if any.
3388 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003389 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003390
3391 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
3392 InstPartialSpec->setTypeAsWritten(WrittenTy);
3393
Richard Smith57aae072016-12-28 02:37:25 +00003394 // Check the completed partial specialization.
3395 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3396
Larisse Voufo39a1e502013-08-06 01:03:05 +00003397 // Add this partial specialization to the set of variable template partial
3398 // specializations. The instantiation of the initializer is not necessary.
Craig Topperc3ec1492014-05-26 06:22:03 +00003399 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003400
Larisse Voufo4cda4612013-08-22 00:28:27 +00003401 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00003402 LateAttrs, Owner, StartingScope);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003403
Larisse Voufo39a1e502013-08-06 01:03:05 +00003404 return InstPartialSpec;
3405}
3406
John McCall58f10c32010-03-11 09:03:00 +00003407TypeSourceInfo*
John McCall76d824f2009-08-25 22:02:44 +00003408TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003409 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall58f10c32010-03-11 09:03:00 +00003410 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
3411 assert(OldTInfo && "substituting function without type source info");
3412 assert(Params.empty() && "parameter vector is non-empty at start");
Craig Topperc3ec1492014-05-26 06:22:03 +00003413
3414 CXXRecordDecl *ThisContext = nullptr;
Douglas Gregor3024f072012-04-16 07:05:22 +00003415 unsigned ThisTypeQuals = 0;
3416 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Richard Smithc3d2ebb2013-06-07 02:33:37 +00003417 ThisContext = cast<CXXRecordDecl>(Owner);
Douglas Gregor3024f072012-04-16 07:05:22 +00003418 ThisTypeQuals = Method->getTypeQualifiers();
3419 }
3420
John McCallb29f78f2010-04-09 17:38:44 +00003421 TypeSourceInfo *NewTInfo
3422 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
3423 D->getTypeSpecStartLoc(),
Douglas Gregor3024f072012-04-16 07:05:22 +00003424 D->getDeclName(),
3425 ThisContext, ThisTypeQuals);
John McCall58f10c32010-03-11 09:03:00 +00003426 if (!NewTInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00003427 return nullptr;
Douglas Gregor21342092009-03-24 00:38:23 +00003428
Reid Klecknera09e44c2013-07-31 21:00:18 +00003429 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
3430 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) {
3431 if (NewTInfo != OldTInfo) {
3432 // Get parameters from the new type info.
Abramo Bagnaraa44c9022010-12-13 22:27:55 +00003433 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +00003434 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>();
Richard Smith198223b2012-07-18 01:29:05 +00003435 unsigned NewIdx = 0;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003436 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams();
Douglas Gregorf3010112011-01-07 16:43:16 +00003437 OldIdx != NumOldParams; ++OldIdx) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003438 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx);
Richard Smith198223b2012-07-18 01:29:05 +00003439 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
3440
David Blaikie05785d12013-02-20 22:23:23 +00003441 Optional<unsigned> NumArgumentsInExpansion;
Richard Smith198223b2012-07-18 01:29:05 +00003442 if (OldParam->isParameterPack())
3443 NumArgumentsInExpansion =
3444 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
3445 TemplateArgs);
3446 if (!NumArgumentsInExpansion) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003447 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregorf3010112011-01-07 16:43:16 +00003448 // instantiated to a (still-dependent) parameter pack.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003449 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Douglas Gregorf3010112011-01-07 16:43:16 +00003450 Params.push_back(NewParam);
Richard Smith198223b2012-07-18 01:29:05 +00003451 Scope->InstantiatedLocal(OldParam, NewParam);
3452 } else {
3453 // Parameter pack expansion: make the instantiation an argument pack.
3454 Scope->MakeInstantiatedLocalArgPack(OldParam);
3455 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003456 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Richard Smith198223b2012-07-18 01:29:05 +00003457 Params.push_back(NewParam);
3458 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
3459 }
Douglas Gregorf3010112011-01-07 16:43:16 +00003460 }
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003461 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003462 } else {
3463 // The function type itself was not dependent and therefore no
3464 // substitution occurred. However, we still need to instantiate
3465 // the function parameters themselves.
3466 const FunctionProtoType *OldProto =
3467 cast<FunctionProtoType>(OldProtoLoc.getType());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003468 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end;
3469 ++i) {
3470 ParmVarDecl *OldParam = OldProtoLoc.getParam(i);
Reid Klecknera09e44c2013-07-31 21:00:18 +00003471 if (!OldParam) {
3472 Params.push_back(SemaRef.BuildParmVarDeclForTypedef(
Alp Toker9cacbab2014-01-20 20:26:09 +00003473 D, D->getLocation(), OldProto->getParamType(i)));
Reid Klecknera09e44c2013-07-31 21:00:18 +00003474 continue;
3475 }
3476
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003477 ParmVarDecl *Parm =
Reid Klecknera09e44c2013-07-31 21:00:18 +00003478 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam));
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003479 if (!Parm)
Craig Topperc3ec1492014-05-26 06:22:03 +00003480 return nullptr;
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003481 Params.push_back(Parm);
3482 }
Douglas Gregor940bca72010-04-12 07:48:19 +00003483 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003484 } else {
3485 // If the type of this function, after ignoring parentheses, is not
3486 // *directly* a function type, then we're instantiating a function that
3487 // was declared via a typedef or with attributes, e.g.,
3488 //
3489 // typedef int functype(int, int);
3490 // functype func;
3491 // int __cdecl meth(int, int);
3492 //
3493 // In this case, we'll just go instantiate the ParmVarDecls that we
3494 // synthesized in the method declaration.
3495 SmallVector<QualType, 4> ParamTypes;
John McCallc8e321d2016-03-01 02:09:25 +00003496 Sema::ExtParameterInfoBuilder ExtParamInfos;
David Majnemer59f77922016-06-24 04:05:48 +00003497 if (SemaRef.SubstParmTypes(D->getLocation(), D->parameters(), nullptr,
3498 TemplateArgs, ParamTypes, &Params,
3499 ExtParamInfos))
Craig Topperc3ec1492014-05-26 06:22:03 +00003500 return nullptr;
Douglas Gregor940bca72010-04-12 07:48:19 +00003501 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003502
John McCall58f10c32010-03-11 09:03:00 +00003503 return NewTInfo;
Douglas Gregor21342092009-03-24 00:38:23 +00003504}
3505
Richard Smithf623c962012-04-17 00:58:00 +00003506/// Introduce the instantiated function parameters into the local
3507/// instantiation scope, and set the parameter names to those used
3508/// in the template.
Richard Smith2e321552014-11-12 02:00:47 +00003509static bool addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
Richard Smithf623c962012-04-17 00:58:00 +00003510 const FunctionDecl *PatternDecl,
3511 LocalInstantiationScope &Scope,
3512 const MultiLevelTemplateArgumentList &TemplateArgs) {
3513 unsigned FParamIdx = 0;
3514 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
3515 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
3516 if (!PatternParam->isParameterPack()) {
3517 // Simple case: not a parameter pack.
3518 assert(FParamIdx < Function->getNumParams());
3519 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Richard Smith2e321552014-11-12 02:00:47 +00003520 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smithaae40582014-03-13 00:28:45 +00003521 // If the parameter's type is not dependent, update it to match the type
3522 // in the pattern. They can differ in top-level cv-qualifiers, and we want
3523 // the pattern's type here. If the type is dependent, they can't differ,
Richard Smith2e321552014-11-12 02:00:47 +00003524 // per core issue 1668. Substitute into the type from the pattern, in case
3525 // it's instantiation-dependent.
Richard Smithaae40582014-03-13 00:28:45 +00003526 // FIXME: Updating the type to work around this is at best fragile.
Richard Smith2e321552014-11-12 02:00:47 +00003527 if (!PatternDecl->getType()->isDependentType()) {
3528 QualType T = S.SubstType(PatternParam->getType(), TemplateArgs,
3529 FunctionParam->getLocation(),
3530 FunctionParam->getDeclName());
3531 if (T.isNull())
3532 return true;
3533 FunctionParam->setType(T);
3534 }
Richard Smithaae40582014-03-13 00:28:45 +00003535
Richard Smithf623c962012-04-17 00:58:00 +00003536 Scope.InstantiatedLocal(PatternParam, FunctionParam);
3537 ++FParamIdx;
3538 continue;
3539 }
3540
3541 // Expand the parameter pack.
3542 Scope.MakeInstantiatedLocalArgPack(PatternParam);
David Blaikie05785d12013-02-20 22:23:23 +00003543 Optional<unsigned> NumArgumentsInExpansion
Richard Smithf623c962012-04-17 00:58:00 +00003544 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith198223b2012-07-18 01:29:05 +00003545 assert(NumArgumentsInExpansion &&
3546 "should only be called when all template arguments are known");
Richard Smith2e321552014-11-12 02:00:47 +00003547 QualType PatternType =
3548 PatternParam->getType()->castAs<PackExpansionType>()->getPattern();
Richard Smith198223b2012-07-18 01:29:05 +00003549 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithf623c962012-04-17 00:58:00 +00003550 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003551 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smith2e321552014-11-12 02:00:47 +00003552 if (!PatternDecl->getType()->isDependentType()) {
3553 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, Arg);
3554 QualType T = S.SubstType(PatternType, TemplateArgs,
3555 FunctionParam->getLocation(),
3556 FunctionParam->getDeclName());
3557 if (T.isNull())
3558 return true;
3559 FunctionParam->setType(T);
3560 }
3561
Richard Smithf623c962012-04-17 00:58:00 +00003562 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
3563 ++FParamIdx;
3564 }
3565 }
Richard Smithf623c962012-04-17 00:58:00 +00003566
Richard Smith2e321552014-11-12 02:00:47 +00003567 return false;
Richard Smithf623c962012-04-17 00:58:00 +00003568}
3569
3570void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
3571 FunctionDecl *Decl) {
Richard Smithd3729422012-04-19 00:08:28 +00003572 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
3573 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithf623c962012-04-17 00:58:00 +00003574 return;
3575
3576 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
3577 InstantiatingTemplate::ExceptionSpecification());
Alp Tokerd4a72d52013-10-08 08:09:04 +00003578 if (Inst.isInvalid()) {
Richard Smithd3b5c9082012-07-27 04:22:15 +00003579 // We hit the instantiation depth limit. Clear the exception specification
3580 // so that our callers don't have to cope with EST_Uninstantiated.
Richard Smith8acb4282014-07-31 21:57:55 +00003581 UpdateExceptionSpec(Decl, EST_None);
Richard Smithf623c962012-04-17 00:58:00 +00003582 return;
Richard Smithd3b5c9082012-07-27 04:22:15 +00003583 }
Richard Smith54f18e82016-08-31 02:15:21 +00003584 if (Inst.isAlreadyInstantiating()) {
3585 // This exception specification indirectly depends on itself. Reject.
3586 // FIXME: Corresponding rule in the standard?
3587 Diag(PointOfInstantiation, diag::err_exception_spec_cycle) << Decl;
3588 UpdateExceptionSpec(Decl, EST_None);
3589 return;
3590 }
Richard Smithf623c962012-04-17 00:58:00 +00003591
3592 // Enter the scope of this instantiation. We don't use
3593 // PushDeclContext because we don't have a scope.
3594 Sema::ContextRAII savedContext(*this, Decl);
3595 LocalInstantiationScope Scope(*this);
3596
3597 MultiLevelTemplateArgumentList TemplateArgs =
Craig Topperc3ec1492014-05-26 06:22:03 +00003598 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true);
Richard Smithf623c962012-04-17 00:58:00 +00003599
Richard Smithd3729422012-04-19 00:08:28 +00003600 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
Richard Smith2e321552014-11-12 02:00:47 +00003601 if (addInstantiatedParametersToScope(*this, Decl, Template, Scope,
3602 TemplateArgs)) {
3603 UpdateExceptionSpec(Decl, EST_None);
3604 return;
3605 }
Richard Smithf623c962012-04-17 00:58:00 +00003606
Richard Smith2e321552014-11-12 02:00:47 +00003607 SubstExceptionSpec(Decl, Template->getType()->castAs<FunctionProtoType>(),
3608 TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003609}
3610
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003611/// Initializes the common fields of an instantiation function
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003612/// declaration (New) from the corresponding fields of its template (Tmpl).
3613///
3614/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003615bool
3616TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003617 FunctionDecl *Tmpl) {
David Blaikie5a0956e2012-07-16 18:50:45 +00003618 if (Tmpl->isDeleted())
Alexis Hunt4a8ea102011-05-06 20:44:56 +00003619 New->setDeletedAsWritten();
Mike Stump11289f42009-09-09 15:08:12 +00003620
Richard Smith32918772017-02-14 00:25:28 +00003621 New->setImplicit(Tmpl->isImplicit());
3622
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003623 // Forward the mangling number from the template to the instantiated decl.
3624 SemaRef.Context.setManglingNumber(New,
3625 SemaRef.Context.getManglingNumber(Tmpl));
3626
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003627 // If we are performing substituting explicitly-specified template arguments
3628 // or deduced template arguments into a function template and we reach this
3629 // point, we are now past the point where SFINAE applies and have committed
Mike Stump11289f42009-09-09 15:08:12 +00003630 // to keeping the new function template specialization. We therefore
3631 // convert the active template instantiation for the function template
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003632 // into a template instantiation for this specific function template
3633 // specialization, which is not a SFINAE context, so that we diagnose any
3634 // further errors in the declaration itself.
Richard Smith696e3122017-02-23 01:43:54 +00003635 typedef Sema::CodeSynthesisContext ActiveInstType;
3636 ActiveInstType &ActiveInst = SemaRef.CodeSynthesisContexts.back();
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003637 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
3638 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump11289f42009-09-09 15:08:12 +00003639 if (FunctionTemplateDecl *FunTmpl
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003640 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) {
Mike Stump11289f42009-09-09 15:08:12 +00003641 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003642 "Deduction from the wrong function template?");
Daniel Dunbar54c59642009-07-16 22:10:11 +00003643 (void) FunTmpl;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003644 atTemplateEnd(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003645 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003646 ActiveInst.Entity = New;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003647 atTemplateBegin(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003648 }
3649 }
Mike Stump11289f42009-09-09 15:08:12 +00003650
Douglas Gregor049bdca2009-12-08 17:45:32 +00003651 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
3652 assert(Proto && "Function template without prototype?");
3653
Sebastian Redlfa453cf2011-03-12 11:50:43 +00003654 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalldb40c7f2010-12-14 08:05:40 +00003655 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalldb40c7f2010-12-14 08:05:40 +00003656
Richard Smithf623c962012-04-17 00:58:00 +00003657 // DR1330: In C++11, defer instantiation of a non-trivial
3658 // exception specification.
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003659 // DR1484: Local classes and their members are instantiated along with the
3660 // containing function.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003661 if (SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smith8acb4282014-07-31 21:57:55 +00003662 EPI.ExceptionSpec.Type != EST_None &&
3663 EPI.ExceptionSpec.Type != EST_DynamicNone &&
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003664 EPI.ExceptionSpec.Type != EST_BasicNoexcept &&
Serge Pavlov73c6a242015-08-23 10:22:28 +00003665 !Tmpl->isLexicallyWithinFunctionOrMethod()) {
Richard Smithd3729422012-04-19 00:08:28 +00003666 FunctionDecl *ExceptionSpecTemplate = Tmpl;
Richard Smith8acb4282014-07-31 21:57:55 +00003667 if (EPI.ExceptionSpec.Type == EST_Uninstantiated)
3668 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate;
Richard Smith185be182013-04-10 05:48:59 +00003669 ExceptionSpecificationType NewEST = EST_Uninstantiated;
Richard Smith8acb4282014-07-31 21:57:55 +00003670 if (EPI.ExceptionSpec.Type == EST_Unevaluated)
Richard Smith185be182013-04-10 05:48:59 +00003671 NewEST = EST_Unevaluated;
Richard Smithd3729422012-04-19 00:08:28 +00003672
Richard Smithf623c962012-04-17 00:58:00 +00003673 // Mark the function has having an uninstantiated exception specification.
3674 const FunctionProtoType *NewProto
3675 = New->getType()->getAs<FunctionProtoType>();
3676 assert(NewProto && "Template instantiation without function prototype?");
3677 EPI = NewProto->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00003678 EPI.ExceptionSpec.Type = NewEST;
3679 EPI.ExceptionSpec.SourceDecl = New;
3680 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate;
Reid Kleckner896b32f2013-06-10 20:51:09 +00003681 New->setType(SemaRef.Context.getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00003682 NewProto->getReturnType(), NewProto->getParamTypes(), EPI));
Richard Smithf623c962012-04-17 00:58:00 +00003683 } else {
Faisal Vali40fd4ce2017-05-09 04:17:15 +00003684 Sema::ContextRAII SwitchContext(SemaRef, New);
Richard Smith2e321552014-11-12 02:00:47 +00003685 SemaRef.SubstExceptionSpec(New, Proto, TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003686 }
Douglas Gregor049bdca2009-12-08 17:45:32 +00003687 }
3688
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003689 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithf623c962012-04-17 00:58:00 +00003690 const FunctionDecl *Definition = Tmpl;
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003691 Tmpl->isDefined(Definition);
3692
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00003693 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
3694 LateAttrs, StartingScope);
Douglas Gregor08329632010-06-15 17:05:35 +00003695
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003696 return false;
3697}
3698
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003699/// Initializes common fields of an instantiated method
Douglas Gregor21342092009-03-24 00:38:23 +00003700/// declaration (New) from the corresponding fields of its template
3701/// (Tmpl).
3702///
3703/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003704bool
3705TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor21342092009-03-24 00:38:23 +00003706 CXXMethodDecl *Tmpl) {
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003707 if (InitFunctionInstantiation(New, Tmpl))
3708 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003709
Douglas Gregor21342092009-03-24 00:38:23 +00003710 New->setAccess(Tmpl->getAccess());
Fariborz Jahanian6dfc1972009-12-03 18:44:40 +00003711 if (Tmpl->isVirtualAsWritten())
Douglas Gregor11c024b2010-09-28 20:50:54 +00003712 New->setVirtualAsWritten(true);
Douglas Gregor21342092009-03-24 00:38:23 +00003713
Douglas Gregor21342092009-03-24 00:38:23 +00003714 // FIXME: New needs a pointer to Tmpl
3715 return false;
3716}
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003717
Richard Smith50e291e2018-01-02 23:52:42 +00003718/// Instantiate (or find existing instantiation of) a function template with a
3719/// given set of template arguments.
3720///
3721/// Usually this should not be used, and template argument deduction should be
3722/// used in its place.
3723FunctionDecl *
3724Sema::InstantiateFunctionDeclaration(FunctionTemplateDecl *FTD,
3725 const TemplateArgumentList *Args,
3726 SourceLocation Loc) {
3727 FunctionDecl *FD = FTD->getTemplatedDecl();
3728
3729 sema::TemplateDeductionInfo Info(Loc);
3730 InstantiatingTemplate Inst(
3731 *this, Loc, FTD, Args->asArray(),
3732 CodeSynthesisContext::ExplicitTemplateArgumentSubstitution, Info);
3733 if (Inst.isInvalid())
3734 return nullptr;
3735
3736 ContextRAII SavedContext(*this, FD);
3737 MultiLevelTemplateArgumentList MArgs(*Args);
3738
3739 return cast_or_null<FunctionDecl>(SubstDecl(FD, FD->getParent(), MArgs));
3740}
3741
Reid Kleckner61195e12017-01-05 01:08:22 +00003742/// In the MS ABI, we need to instantiate default arguments of dllexported
3743/// default constructors along with the constructor definition. This allows IR
3744/// gen to emit a constructor closure which calls the default constructor with
3745/// its default arguments.
3746static void InstantiateDefaultCtorDefaultArgs(Sema &S,
3747 CXXConstructorDecl *Ctor) {
3748 assert(S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3749 Ctor->isDefaultConstructor());
3750 unsigned NumParams = Ctor->getNumParams();
3751 if (NumParams == 0)
3752 return;
3753 DLLExportAttr *Attr = Ctor->getAttr<DLLExportAttr>();
3754 if (!Attr)
3755 return;
3756 for (unsigned I = 0; I != NumParams; ++I) {
3757 (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), Ctor,
3758 Ctor->getParamDecl(I));
3759 S.DiscardCleanupsInEvaluationContext();
3760 }
3761}
3762
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003763/// Instantiate the definition of the given function from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003764/// template.
3765///
Douglas Gregordda7ced2009-06-30 17:20:14 +00003766/// \param PointOfInstantiation the point at which the instantiation was
3767/// required. Note that this is not precisely a "point of instantiation"
3768/// for the function, but it's close.
3769///
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003770/// \param Function the already-instantiated declaration of a
Douglas Gregordda7ced2009-06-30 17:20:14 +00003771/// function template specialization or member function of a class template
3772/// specialization.
3773///
3774/// \param Recursive if true, recursively instantiates any functions that
3775/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00003776///
3777/// \param DefinitionRequired if true, then we are performing an explicit
3778/// instantiation where the body of the function is required. Complain if
3779/// there is no such body.
Douglas Gregor85673582009-05-18 17:01:57 +00003780void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregordda7ced2009-06-30 17:20:14 +00003781 FunctionDecl *Function,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003782 bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00003783 bool DefinitionRequired,
3784 bool AtEndOfTU) {
Richard Smithcb189572017-10-28 01:15:00 +00003785 if (Function->isInvalidDecl() || Function->isDefined() ||
3786 isa<CXXDeductionGuideDecl>(Function))
Douglas Gregorb4850462009-05-14 23:26:13 +00003787 return;
3788
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003789 // Never instantiate an explicit specialization except if it is a class scope
3790 // explicit specialization.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003791 TemplateSpecializationKind TSK = Function->getTemplateSpecializationKind();
3792 if (TSK == TSK_ExplicitSpecialization &&
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003793 !Function->getClassScopeSpecializationPattern())
Douglas Gregor86d142a2009-10-08 07:24:58 +00003794 return;
Douglas Gregor69f6a362010-05-17 17:34:56 +00003795
Douglas Gregor24c332b2009-05-14 21:06:31 +00003796 // Find the function body that we'll be substituting.
Douglas Gregorafca3b42009-10-27 20:53:28 +00003797 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Alexis Hunt23f6b832011-05-27 20:00:14 +00003798 assert(PatternDecl && "instantiating a non-template");
3799
Richard Smith6f4e2e02016-08-23 19:41:39 +00003800 const FunctionDecl *PatternDef = PatternDecl->getDefinition();
Richard Smith3f6865a82016-08-23 21:12:54 +00003801 Stmt *Pattern = nullptr;
3802 if (PatternDef) {
3803 Pattern = PatternDef->getBody(PatternDef);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003804 PatternDecl = PatternDef;
Richard Smith6c7161162017-08-12 01:46:03 +00003805 if (PatternDef->willHaveBody())
3806 PatternDef = nullptr;
Richard Smith3f6865a82016-08-23 21:12:54 +00003807 }
Douglas Gregor24c332b2009-05-14 21:06:31 +00003808
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003809 // FIXME: We need to track the instantiation stack in order to know which
3810 // definitions should be visible within this instantiation.
3811 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Function,
3812 Function->getInstantiatedFromMemberFunction(),
Richard Smith6f4e2e02016-08-23 19:41:39 +00003813 PatternDecl, PatternDef, TSK,
3814 /*Complain*/DefinitionRequired)) {
3815 if (DefinitionRequired)
3816 Function->setInvalidDecl();
3817 else if (TSK == TSK_ExplicitInstantiationDefinition) {
3818 // Try again at the end of the translation unit (at which point a
3819 // definition will be required).
3820 assert(!Recursive);
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003821 Function->setInstantiationIsPending(true);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003822 PendingInstantiations.push_back(
3823 std::make_pair(Function, PointOfInstantiation));
3824 } else if (TSK == TSK_ImplicitInstantiation) {
Nick Lewycky2adab1b2018-01-02 19:10:12 +00003825 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
3826 !getSourceManager().isInSystemHeader(PatternDecl->getLocStart())) {
Richard Smith6f4e2e02016-08-23 19:41:39 +00003827 Diag(PointOfInstantiation, diag::warn_func_template_missing)
3828 << Function;
3829 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
3830 if (getLangOpts().CPlusPlus11)
3831 Diag(PointOfInstantiation, diag::note_inst_declaration_hint)
3832 << Function;
3833 }
3834 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003835
Richard Smith6f4e2e02016-08-23 19:41:39 +00003836 return;
3837 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003838
Francois Pichet1c229c02011-04-22 22:18:13 +00003839 // Postpone late parsed template instantiations.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003840 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky610128e2011-05-12 03:51:24 +00003841 !LateTemplateParser) {
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003842 Function->setInstantiationIsPending(true);
Reid Kleckner24bd88c2018-03-26 18:22:47 +00003843 LateParsedInstantiations.push_back(
3844 std::make_pair(Function, PointOfInstantiation));
Francois Pichet1c229c02011-04-22 22:18:13 +00003845 return;
3846 }
3847
Nico Weberae4bb8c2014-08-15 23:21:41 +00003848 // If we're performing recursive template instantiation, create our own
3849 // queue of pending implicit instantiations that we will instantiate later,
3850 // while we're still within our own instantiation context.
3851 // This has to happen before LateTemplateParser below is called, so that
3852 // it marks vtables used in late parsed templates as used.
Richard Smith4f3e3812017-05-20 01:36:41 +00003853 GlobalEagerInstantiationScope GlobalInstantiations(*this,
3854 /*Enabled=*/Recursive);
3855 LocalEagerInstantiationScope LocalInstantiations(*this);
Nico Weberae4bb8c2014-08-15 23:21:41 +00003856
David Majnemerf0a84f22013-08-16 08:29:13 +00003857 // Call the LateTemplateParser callback if there is a need to late parse
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003858 // a templated function definition.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003859 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet1c229c02011-04-22 22:18:13 +00003860 LateTemplateParser) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00003861 // FIXME: Optimize to allow individual templates to be deserialized.
3862 if (PatternDecl->isFromASTFile())
3863 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap);
3864
Justin Lebar28f09c52016-10-10 16:26:08 +00003865 auto LPTIter = LateParsedTemplateMap.find(PatternDecl);
3866 assert(LPTIter != LateParsedTemplateMap.end() &&
3867 "missing LateParsedTemplate");
3868 LateTemplateParser(OpaqueParser, *LPTIter->second);
Francois Pichet1c229c02011-04-22 22:18:13 +00003869 Pattern = PatternDecl->getBody(PatternDecl);
3870 }
3871
Richard Smith6f4e2e02016-08-23 19:41:39 +00003872 // Note, we should never try to instantiate a deleted function template.
Ilya Biryukova27eca22017-12-20 14:32:38 +00003873 assert((Pattern || PatternDecl->isDefaulted() ||
3874 PatternDecl->hasSkippedBody()) &&
Richard Smith6f4e2e02016-08-23 19:41:39 +00003875 "unexpected kind of function template definition");
Douglas Gregor24c332b2009-05-14 21:06:31 +00003876
Richard Smith2a7d4812013-05-04 07:00:32 +00003877 // C++1y [temp.explicit]p10:
3878 // Except for inline functions, declarations with types deduced from their
3879 // initializer or return value, and class template specializations, other
3880 // explicit instantiation declarations have the effect of suppressing the
3881 // implicit instantiation of the entity to which they refer.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003882 if (TSK == TSK_ExplicitInstantiationDeclaration &&
Richard Smith2a7d4812013-05-04 07:00:32 +00003883 !PatternDecl->isInlined() &&
Alp Toker314cc812014-01-25 16:55:45 +00003884 !PatternDecl->getReturnType()->getContainedAutoType())
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003885 return;
Mike Stump11289f42009-09-09 15:08:12 +00003886
Richard Smith195d8ef2014-05-29 03:15:31 +00003887 if (PatternDecl->isInlined()) {
3888 // Function, and all later redeclarations of it (from imported modules,
3889 // for instance), are now implicitly inline.
3890 for (auto *D = Function->getMostRecentDecl(); /**/;
3891 D = D->getPreviousDecl()) {
3892 D->setImplicitlyInline();
3893 if (D == Function)
3894 break;
3895 }
3896 }
Richard Smithf3814ad2013-01-25 00:08:28 +00003897
Douglas Gregor85673582009-05-18 17:01:57 +00003898 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
Richard Smith54f18e82016-08-31 02:15:21 +00003899 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003900 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00003901 PrettyDeclStackTraceEntry CrashInfo(Context, Function, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00003902 "instantiating function definition");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003903
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003904 // The instantiation is visible here, even if it was first declared in an
3905 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00003906 Function->setVisibleDespiteOwningModule();
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003907
Abramo Bagnara12dcbf32011-11-18 08:08:52 +00003908 // Copy the inner loc start from the pattern.
3909 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
3910
Faisal Valid143a0c2017-04-01 21:30:49 +00003911 EnterExpressionEvaluationContext EvalContext(
3912 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated);
Douglas Gregor67da0d92009-05-15 17:59:04 +00003913
Douglas Gregorb4850462009-05-14 23:26:13 +00003914 // Introduce a new scope where local variable instantiations will be
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003915 // recorded, unless we're actually a member function within a local
3916 // class, in which case we need to merge our results with the parent
3917 // scope (of the enclosing function).
3918 bool MergeWithParentScope = false;
3919 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
3920 MergeWithParentScope = Rec->isLocalClass();
3921
3922 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00003923
Richard Smithbd305122012-12-11 01:14:52 +00003924 if (PatternDecl->isDefaulted())
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003925 SetDeclDefaulted(Function, PatternDecl->getLocation());
Richard Smithbd305122012-12-11 01:14:52 +00003926 else {
Richard Smithcc928662014-10-17 20:37:29 +00003927 MultiLevelTemplateArgumentList TemplateArgs =
3928 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl);
3929
3930 // Substitute into the qualifier; we can get a substitution failure here
3931 // through evil use of alias templates.
3932 // FIXME: Is CurContext correct for this? Should we go to the (instantiation
3933 // of the) lexical context of the pattern?
3934 SubstQualifier(*this, PatternDecl, Function, TemplateArgs);
3935
Craig Topperc3ec1492014-05-26 06:22:03 +00003936 ActOnStartOfFunctionDef(nullptr, Function);
Richard Smithbd305122012-12-11 01:14:52 +00003937
3938 // Enter the scope of this instantiation. We don't use
3939 // PushDeclContext because we don't have a scope.
3940 Sema::ContextRAII savedContext(*this, Function);
3941
Richard Smith2e321552014-11-12 02:00:47 +00003942 if (addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
3943 TemplateArgs))
3944 return;
Richard Smithbd305122012-12-11 01:14:52 +00003945
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003946 StmtResult Body;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003947 if (PatternDecl->hasSkippedBody()) {
3948 ActOnSkippedFunctionBody(Function);
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003949 Body = nullptr;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003950 } else {
Ilya Biryukov95f0d322017-12-28 13:05:46 +00003951 if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Function)) {
3952 // If this is a constructor, instantiate the member initializers.
3953 InstantiateMemInitializers(Ctor, cast<CXXConstructorDecl>(PatternDecl),
3954 TemplateArgs);
3955
3956 // If this is an MS ABI dllexport default constructor, instantiate any
3957 // default arguments.
3958 if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3959 Ctor->isDefaultConstructor()) {
3960 InstantiateDefaultCtorDefaultArgs(*this, Ctor);
3961 }
3962 }
3963
Ilya Biryukova27eca22017-12-20 14:32:38 +00003964 // Instantiate the function body.
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003965 Body = SubstStmt(Pattern, TemplateArgs);
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003966
Ilya Biryukova27eca22017-12-20 14:32:38 +00003967 if (Body.isInvalid())
3968 Function->setInvalidDecl();
Ilya Biryukova27eca22017-12-20 14:32:38 +00003969 }
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003970 // FIXME: finishing the function body while in an expression evaluation
3971 // context seems wrong. Investigate more.
3972 ActOnFinishFunctionBody(Function, Body.get(), /*IsInstantiation=*/true);
Richard Smithbd305122012-12-11 01:14:52 +00003973
3974 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
3975
Richard Smithd28ac5b2014-03-22 23:33:22 +00003976 if (auto *Listener = getASTMutationListener())
3977 Listener->FunctionDefinitionInstantiated(Function);
Richard Smith0ac1b8f2014-03-22 01:43:32 +00003978
Richard Smithbd305122012-12-11 01:14:52 +00003979 savedContext.pop();
Mike Stump11289f42009-09-09 15:08:12 +00003980 }
3981
Douglas Gregor28ad4b52009-05-26 20:50:29 +00003982 DeclGroupRef DG(Function);
3983 Consumer.HandleTopLevelDecl(DG);
Mike Stump11289f42009-09-09 15:08:12 +00003984
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003985 // This class may have local implicit instantiations that need to be
3986 // instantiation within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00003987 LocalInstantiations.perform();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003988 Scope.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00003989 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003990}
3991
Larisse Voufo39a1e502013-08-06 01:03:05 +00003992VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation(
3993 VarTemplateDecl *VarTemplate, VarDecl *FromVar,
3994 const TemplateArgumentList &TemplateArgList,
3995 const TemplateArgumentListInfo &TemplateArgsInfo,
3996 SmallVectorImpl<TemplateArgument> &Converted,
3997 SourceLocation PointOfInstantiation, void *InsertPos,
3998 LateInstantiatedAttrVec *LateAttrs,
3999 LocalInstantiationScope *StartingScope) {
4000 if (FromVar->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004001 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004002
4003 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar);
Alp Tokerd4a72d52013-10-08 08:09:04 +00004004 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00004005 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004006
4007 MultiLevelTemplateArgumentList TemplateArgLists;
4008 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList);
4009
Richard Smith8809a0c2013-09-27 20:14:12 +00004010 // Instantiate the first declaration of the variable template: for a partial
4011 // specialization of a static data member template, the first declaration may
4012 // or may not be the declaration in the class; if it's in the class, we want
4013 // to instantiate a member in the class (a declaration), and if it's outside,
4014 // we want to instantiate a definition.
Richard Smithbeef3452014-01-16 23:39:20 +00004015 //
4016 // If we're instantiating an explicitly-specialized member template or member
4017 // partial specialization, don't do this. The member specialization completely
4018 // replaces the original declaration in this case.
4019 bool IsMemberSpec = false;
4020 if (VarTemplatePartialSpecializationDecl *PartialSpec =
4021 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar))
4022 IsMemberSpec = PartialSpec->isMemberSpecialization();
4023 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate())
4024 IsMemberSpec = FromTemplate->isMemberSpecialization();
4025 if (!IsMemberSpec)
4026 FromVar = FromVar->getFirstDecl();
Richard Smith8809a0c2013-09-27 20:14:12 +00004027
Manuel Klimek5843add2013-09-30 13:29:01 +00004028 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList);
4029 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(),
4030 MultiLevelList);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004031
4032 // TODO: Set LateAttrs and StartingScope ...
4033
4034 return cast_or_null<VarTemplateSpecializationDecl>(
4035 Instantiator.VisitVarTemplateSpecializationDecl(
4036 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted));
4037}
4038
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004039/// Instantiates a variable template specialization by completing it
Larisse Voufo39a1e502013-08-06 01:03:05 +00004040/// with appropriate type information and initializer.
4041VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl(
4042 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl,
4043 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith435e6472017-12-02 02:48:42 +00004044 assert(PatternDecl->isThisDeclarationADefinition() &&
4045 "don't have a definition to instantiate from");
Larisse Voufo39a1e502013-08-06 01:03:05 +00004046
4047 // Do substitution on the type of the declaration
4048 TypeSourceInfo *DI =
Richard Smith8809a0c2013-09-27 20:14:12 +00004049 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00004050 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName());
4051 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00004052 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004053
4054 // Update the type of this variable template specialization.
4055 VarSpec->setType(DI->getType());
4056
Richard Smith435e6472017-12-02 02:48:42 +00004057 // Convert the declaration into a definition now.
4058 VarSpec->setCompleteDefinition();
4059
Larisse Voufo39a1e502013-08-06 01:03:05 +00004060 // Instantiate the initializer.
4061 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs);
4062
4063 return VarSpec;
4064}
4065
4066/// BuildVariableInstantiation - Used after a new variable has been created.
4067/// Sets basic variable data and decides whether to postpone the
4068/// variable instantiation.
4069void Sema::BuildVariableInstantiation(
4070 VarDecl *NewVar, VarDecl *OldVar,
4071 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00004072 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner,
4073 LocalInstantiationScope *StartingScope,
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004074 bool InstantiatingVarTemplate) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004075
Richard Smith541b38b2013-09-20 01:15:31 +00004076 // If we are instantiating a local extern declaration, the
4077 // instantiation belongs lexically to the containing function.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004078 // If we are instantiating a static data member defined
4079 // out-of-line, the instantiation will have the same lexical
4080 // context (which will be a namespace scope) as the template.
Richard Smith541b38b2013-09-20 01:15:31 +00004081 if (OldVar->isLocalExternDecl()) {
4082 NewVar->setLocalExternDecl();
4083 NewVar->setLexicalDeclContext(Owner);
4084 } else if (OldVar->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004085 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext());
4086 NewVar->setTSCSpec(OldVar->getTSCSpec());
4087 NewVar->setInitStyle(OldVar->getInitStyle());
4088 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl());
George Karpenkovec38cf72018-03-29 00:56:24 +00004089 NewVar->setObjCForDecl(OldVar->isObjCForDecl());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004090 NewVar->setConstexpr(OldVar->isConstexpr());
Richard Smithbb13c9a2013-09-28 04:02:39 +00004091 NewVar->setInitCapture(OldVar->isInitCapture());
Richard Smith1c34fb72013-08-13 18:18:50 +00004092 NewVar->setPreviousDeclInSameBlockScope(
4093 OldVar->isPreviousDeclInSameBlockScope());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004094 NewVar->setAccess(OldVar->getAccess());
4095
Richard Smith0b551192013-09-23 23:12:22 +00004096 if (!OldVar->isStaticDataMember()) {
Rafael Espindolae4865d22013-10-23 16:46:34 +00004097 if (OldVar->isUsed(false))
4098 NewVar->setIsUsed();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004099 NewVar->setReferenced(OldVar->isReferenced());
4100 }
4101
4102 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope);
4103
Richard Smith541b38b2013-09-20 01:15:31 +00004104 LookupResult Previous(
4105 *this, NewVar->getDeclName(), NewVar->getLocation(),
4106 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
4107 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00004108 NewVar->isLocalExternDecl() ? Sema::ForExternalRedeclaration
4109 : forRedeclarationInCurContext());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004110
Argyrios Kyrtzidis91486222013-11-27 08:34:14 +00004111 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() &&
4112 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() ||
4113 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) {
Richard Smith1c34fb72013-08-13 18:18:50 +00004114 // We have a previous declaration. Use that one, so we merge with the
4115 // right type.
4116 if (NamedDecl *NewPrev = FindInstantiatedDecl(
4117 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs))
4118 Previous.addDecl(NewPrev);
4119 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) &&
4120 OldVar->hasLinkage())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004121 LookupQualifiedName(Previous, NewVar->getDeclContext(), false);
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004122 CheckVariableDeclaration(NewVar, Previous);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004123
Richard Smith541b38b2013-09-20 01:15:31 +00004124 if (!InstantiatingVarTemplate) {
4125 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar);
4126 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004127 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar);
Richard Smith541b38b2013-09-20 01:15:31 +00004128 }
4129
4130 if (!OldVar->isOutOfLine()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004131 if (NewVar->getDeclContext()->isFunctionOrMethod())
4132 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar);
4133 }
4134
4135 // Link instantiations of static data members back to the template from
4136 // which they were instantiated.
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004137 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate)
Larisse Voufo39a1e502013-08-06 01:03:05 +00004138 NewVar->setInstantiationOfStaticDataMember(OldVar,
4139 TSK_ImplicitInstantiation);
4140
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004141 // Forward the mangling number from the template to the instantiated decl.
4142 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar));
David Majnemer2206bf52014-03-05 08:57:59 +00004143 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar));
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004144
Richard Smith62f19e72016-06-25 00:15:56 +00004145 // Delay instantiation of the initializer for variable templates or inline
4146 // static data members until a definition of the variable is needed. We need
4147 // it right away if the type contains 'auto'.
Richard Smithd292b242014-03-16 01:00:40 +00004148 if ((!isa<VarTemplateSpecializationDecl>(NewVar) &&
Richard Smith62f19e72016-06-25 00:15:56 +00004149 !InstantiatingVarTemplate &&
Richard Smith93ee9ca2018-01-10 23:08:26 +00004150 !(OldVar->isInline() && OldVar->isThisDeclarationADefinition() &&
4151 !NewVar->isThisDeclarationADefinition())) ||
Richard Smithd292b242014-03-16 01:00:40 +00004152 NewVar->getType()->isUndeducedType())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004153 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs);
4154
4155 // Diagnose unused local variables with dependent types, where the diagnostic
4156 // will have been deferred.
4157 if (!NewVar->isInvalidDecl() &&
Nico Weber72889432014-09-06 01:25:55 +00004158 NewVar->getDeclContext()->isFunctionOrMethod() &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00004159 OldVar->getType()->isDependentType())
4160 DiagnoseUnusedDecl(NewVar);
4161}
4162
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004163/// Instantiate the initializer of a variable.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004164void Sema::InstantiateVariableInitializer(
4165 VarDecl *Var, VarDecl *OldVar,
4166 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith891fc7f2017-12-05 01:31:47 +00004167 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
4168 L->VariableDefinitionInstantiated(Var);
4169
Richard Smith62f19e72016-06-25 00:15:56 +00004170 // We propagate the 'inline' flag with the initializer, because it
4171 // would otherwise imply that the variable is a definition for a
4172 // non-static data member.
4173 if (OldVar->isInlineSpecified())
4174 Var->setInlineSpecified();
4175 else if (OldVar->isInline())
4176 Var->setImplicitlyInline();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004177
Larisse Voufo39a1e502013-08-06 01:03:05 +00004178 if (OldVar->getInit()) {
Richard Smithc95d2c52017-09-22 04:25:05 +00004179 EnterExpressionEvaluationContext Evaluated(
4180 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated, Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004181
4182 // Instantiate the initializer.
Akira Hatanakab87faff2016-04-28 23:50:12 +00004183 ExprResult Init;
4184
4185 {
4186 ContextRAII SwitchContext(*this, Var->getDeclContext());
4187 Init = SubstInitializer(OldVar->getInit(), TemplateArgs,
4188 OldVar->getInitStyle() == VarDecl::CallInit);
4189 }
4190
Larisse Voufo39a1e502013-08-06 01:03:05 +00004191 if (!Init.isInvalid()) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004192 Expr *InitExpr = Init.get();
4193
Richard Smith95b83e92014-07-10 20:53:43 +00004194 if (Var->hasAttr<DLLImportAttr>() &&
4195 (!InitExpr ||
4196 !InitExpr->isConstantInitializer(getASTContext(), false))) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004197 // Do not dynamically initialize dllimport variables.
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004198 } else if (InitExpr) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004199 bool DirectInit = OldVar->isDirectInit();
Richard Smith3beb7c62017-01-12 02:27:38 +00004200 AddInitializerToDecl(Var, InitExpr, DirectInit);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004201 } else
Richard Smith3beb7c62017-01-12 02:27:38 +00004202 ActOnUninitializedDecl(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004203 } else {
4204 // FIXME: Not too happy about invalidating the declaration
4205 // because of a bogus initializer.
4206 Var->setInvalidDecl();
4207 }
Richard Smith54f18e82016-08-31 02:15:21 +00004208 } else {
George Burgess IV18b28a82018-03-20 03:27:44 +00004209 // `inline` variables are a definition and declaration all in one; we won't
4210 // pick up an initializer from anywhere else.
4211 if (Var->isStaticDataMember() && !Var->isInline()) {
Richard Smith54f18e82016-08-31 02:15:21 +00004212 if (!Var->isOutOfLine())
4213 return;
4214
4215 // If the declaration inside the class had an initializer, don't add
4216 // another one to the out-of-line definition.
4217 if (OldVar->getFirstDecl()->hasInit())
4218 return;
4219 }
4220
4221 // We'll add an initializer to a for-range declaration later.
George Karpenkovec38cf72018-03-29 00:56:24 +00004222 if (Var->isCXXForRangeDecl() || Var->isObjCForDecl())
Richard Smith54f18e82016-08-31 02:15:21 +00004223 return;
4224
Richard Smith3beb7c62017-01-12 02:27:38 +00004225 ActOnUninitializedDecl(Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004226 }
Artem Beleviche9fa53a2018-06-06 22:37:25 +00004227
4228 if (getLangOpts().CUDA)
4229 checkAllowedCUDAInitializer(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004230}
4231
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004232/// Instantiate the definition of the given variable from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004233/// template.
4234///
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004235/// \param PointOfInstantiation the point at which the instantiation was
4236/// required. Note that this is not precisely a "point of instantiation"
Richard Smith891fc7f2017-12-05 01:31:47 +00004237/// for the variable, but it's close.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004238///
Richard Smith891fc7f2017-12-05 01:31:47 +00004239/// \param Var the already-instantiated declaration of a templated variable.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004240///
4241/// \param Recursive if true, recursively instantiates any functions that
4242/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00004243///
4244/// \param DefinitionRequired if true, then we are performing an explicit
Richard Smith891fc7f2017-12-05 01:31:47 +00004245/// instantiation where a definition of the variable is required. Complain
4246/// if there is no such definition.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004247void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation,
4248 VarDecl *Var, bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004249 bool DefinitionRequired, bool AtEndOfTU) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004250 if (Var->isInvalidDecl())
4251 return;
Mike Stump11289f42009-09-09 15:08:12 +00004252
Larisse Voufo39a1e502013-08-06 01:03:05 +00004253 VarTemplateSpecializationDecl *VarSpec =
4254 dyn_cast<VarTemplateSpecializationDecl>(Var);
Craig Topperc3ec1492014-05-26 06:22:03 +00004255 VarDecl *PatternDecl = nullptr, *Def = nullptr;
Richard Smith8809a0c2013-09-27 20:14:12 +00004256 MultiLevelTemplateArgumentList TemplateArgs =
4257 getTemplateInstantiationArgs(Var);
Mike Stump11289f42009-09-09 15:08:12 +00004258
Larisse Voufo39a1e502013-08-06 01:03:05 +00004259 if (VarSpec) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004260 // If this is a variable template specialization, make sure that it is
4261 // non-dependent, then find its instantiation pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004262 bool InstantiationDependent = false;
4263 assert(!TemplateSpecializationType::anyDependentTemplateArguments(
4264 VarSpec->getTemplateArgsInfo(), InstantiationDependent) &&
4265 "Only instantiate variable template specializations that are "
4266 "not type-dependent");
Larisse Voufo4154f462013-08-06 03:57:41 +00004267 (void)InstantiationDependent;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004268
Richard Smith8809a0c2013-09-27 20:14:12 +00004269 // Find the variable initialization that we'll be substituting. If the
4270 // pattern was instantiated from a member template, look back further to
4271 // find the real pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004272 assert(VarSpec->getSpecializedTemplate() &&
4273 "Specialization without specialized template?");
4274 llvm::PointerUnion<VarTemplateDecl *,
4275 VarTemplatePartialSpecializationDecl *> PatternPtr =
4276 VarSpec->getSpecializedTemplateOrPartial();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004277 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004278 VarTemplatePartialSpecializationDecl *Tmpl =
4279 PatternPtr.get<VarTemplatePartialSpecializationDecl *>();
4280 while (VarTemplatePartialSpecializationDecl *From =
4281 Tmpl->getInstantiatedFromMember()) {
4282 if (Tmpl->isMemberSpecialization())
4283 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004284
Richard Smith8809a0c2013-09-27 20:14:12 +00004285 Tmpl = From;
4286 }
4287 PatternDecl = Tmpl;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004288 } else {
Richard Smith8809a0c2013-09-27 20:14:12 +00004289 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>();
4290 while (VarTemplateDecl *From =
4291 Tmpl->getInstantiatedFromMemberTemplate()) {
4292 if (Tmpl->isMemberSpecialization())
4293 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004294
Richard Smith8809a0c2013-09-27 20:14:12 +00004295 Tmpl = From;
4296 }
4297 PatternDecl = Tmpl->getTemplatedDecl();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004298 }
Richard Smith8809a0c2013-09-27 20:14:12 +00004299
4300 // If this is a static data member template, there might be an
4301 // uninstantiated initializer on the declaration. If so, instantiate
4302 // it now.
Richard Smith891fc7f2017-12-05 01:31:47 +00004303 //
4304 // FIXME: This largely duplicates what we would do below. The difference
4305 // is that along this path we may instantiate an initializer from an
4306 // in-class declaration of the template and instantiate the definition
4307 // from a separate out-of-class definition.
Richard Smith8809a0c2013-09-27 20:14:12 +00004308 if (PatternDecl->isStaticDataMember() &&
Rafael Espindola8db352d2013-10-17 15:37:26 +00004309 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() &&
Richard Smith8809a0c2013-09-27 20:14:12 +00004310 !Var->hasInit()) {
4311 // FIXME: Factor out the duplicated instantiation context setup/tear down
4312 // code here.
4313 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004314 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Richard Smith8809a0c2013-09-27 20:14:12 +00004315 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004316 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004317 "instantiating variable initializer");
Richard Smith8809a0c2013-09-27 20:14:12 +00004318
Richard Smithedbc6e92016-10-14 21:41:24 +00004319 // The instantiation is visible here, even if it was first declared in an
4320 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00004321 Var->setVisibleDespiteOwningModule();
Richard Smithedbc6e92016-10-14 21:41:24 +00004322
Richard Smith8809a0c2013-09-27 20:14:12 +00004323 // If we're performing recursive template instantiation, create our own
4324 // queue of pending implicit instantiations that we will instantiate
4325 // later, while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004326 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4327 /*Enabled=*/Recursive);
Richard Smith8809a0c2013-09-27 20:14:12 +00004328 LocalInstantiationScope Local(*this);
Richard Smith4f3e3812017-05-20 01:36:41 +00004329 LocalEagerInstantiationScope LocalInstantiations(*this);
Richard Smith8809a0c2013-09-27 20:14:12 +00004330
4331 // Enter the scope of this instantiation. We don't use
4332 // PushDeclContext because we don't have a scope.
4333 ContextRAII PreviousContext(*this, Var->getDeclContext());
4334 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs);
4335 PreviousContext.pop();
4336
Richard Smith8809a0c2013-09-27 20:14:12 +00004337 // This variable may have local implicit instantiations that need to be
4338 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004339 LocalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004340 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004341 GlobalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004342 }
4343
4344 // Find actual definition
4345 Def = PatternDecl->getDefinition(getASTContext());
4346 } else {
4347 // If this is a static data member, find its out-of-line definition.
4348 assert(Var->isStaticDataMember() && "not a static data member?");
4349 PatternDecl = Var->getInstantiatedFromStaticDataMember();
4350
4351 assert(PatternDecl && "data member was not instantiated from a template?");
4352 assert(PatternDecl->isStaticDataMember() && "not a static data member?");
Richard Smith62f19e72016-06-25 00:15:56 +00004353 Def = PatternDecl->getDefinition();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004354 }
4355
Richard Smithedbc6e92016-10-14 21:41:24 +00004356 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
Richard Smith6739a102016-05-05 00:56:12 +00004357
Richard Smith8809a0c2013-09-27 20:14:12 +00004358 // If we don't have a definition of the variable template, we won't perform
4359 // any instantiation. Rather, we rely on the user to instantiate this
4360 // definition (or provide a specialization for it) in another translation
4361 // unit.
Richard Smithedbc6e92016-10-14 21:41:24 +00004362 if (!Def && !DefinitionRequired) {
4363 if (TSK == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth54080172010-08-25 08:44:16 +00004364 PendingInstantiations.push_back(
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004365 std::make_pair(Var, PointOfInstantiation));
Richard Smithedbc6e92016-10-14 21:41:24 +00004366 } else if (TSK == TSK_ImplicitInstantiation) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004367 // Warn about missing definition at the end of translation unit.
Nick Lewycky2adab1b2018-01-02 19:10:12 +00004368 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
4369 !getSourceManager().isInSystemHeader(PatternDecl->getLocStart())) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004370 Diag(PointOfInstantiation, diag::warn_var_template_missing)
4371 << Var;
4372 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
4373 if (getLangOpts().CPlusPlus11)
4374 Diag(PointOfInstantiation, diag::note_inst_declaration_hint) << Var;
4375 }
Richard Smithedbc6e92016-10-14 21:41:24 +00004376 return;
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004377 }
4378
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004379 }
4380
Richard Smithedbc6e92016-10-14 21:41:24 +00004381 // FIXME: We need to track the instantiation stack in order to know which
4382 // definitions should be visible within this instantiation.
4383 // FIXME: Produce diagnostics when Var->getInstantiatedFromStaticDataMember().
4384 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Var,
4385 /*InstantiatedFromMember*/false,
4386 PatternDecl, Def, TSK,
4387 /*Complain*/DefinitionRequired))
4388 return;
4389
Rafael Espindola189fa742012-03-05 10:54:55 +00004390
Douglas Gregor86d142a2009-10-08 07:24:58 +00004391 // Never instantiate an explicit specialization.
Rafael Espindola189fa742012-03-05 10:54:55 +00004392 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor86d142a2009-10-08 07:24:58 +00004393 return;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004394
Larisse Voufo39a1e502013-08-06 01:03:05 +00004395 // C++11 [temp.explicit]p10:
Richard Smith4309b662017-10-18 22:45:01 +00004396 // Except for inline functions, const variables of literal types, variables
4397 // of reference types, [...] explicit instantiation declarations
Larisse Voufo39a1e502013-08-06 01:03:05 +00004398 // have the effect of suppressing the implicit instantiation of the entity
4399 // to which they refer.
Richard Smith4309b662017-10-18 22:45:01 +00004400 if (TSK == TSK_ExplicitInstantiationDeclaration &&
4401 !Var->isUsableInConstantExpressions(getASTContext()))
Douglas Gregor86d142a2009-10-08 07:24:58 +00004402 return;
Mike Stump11289f42009-09-09 15:08:12 +00004403
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004404 // Make sure to pass the instantiated variable to the consumer at the end.
4405 struct PassToConsumerRAII {
4406 ASTConsumer &Consumer;
4407 VarDecl *Var;
4408
4409 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var)
4410 : Consumer(Consumer), Var(Var) { }
4411
4412 ~PassToConsumerRAII() {
Richard Smith8809a0c2013-09-27 20:14:12 +00004413 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004414 }
4415 } PassToConsumerRAII(Consumer, Var);
Rafael Espindoladf88f6f2012-03-08 15:51:03 +00004416
Reid Klecknere07140e2015-04-15 01:08:06 +00004417 // If we already have a definition, we're done.
4418 if (VarDecl *Def = Var->getDefinition()) {
4419 // We may be explicitly instantiating something we've already implicitly
4420 // instantiated.
4421 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
4422 PointOfInstantiation);
Richard Smith8809a0c2013-09-27 20:14:12 +00004423 return;
Reid Klecknere07140e2015-04-15 01:08:06 +00004424 }
Douglas Gregor57d4f972011-06-03 03:35:07 +00004425
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004426 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004427 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004428 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004429 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004430 "instantiating variable definition");
Mike Stump11289f42009-09-09 15:08:12 +00004431
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004432 // If we're performing recursive template instantiation, create our own
4433 // queue of pending implicit instantiations that we will instantiate later,
4434 // while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004435 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4436 /*Enabled=*/Recursive);
Mike Stump11289f42009-09-09 15:08:12 +00004437
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004438 // Enter the scope of this instantiation. We don't use
4439 // PushDeclContext because we don't have a scope.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004440 ContextRAII PreviousContext(*this, Var->getDeclContext());
Douglas Gregora86bc002012-02-16 21:36:18 +00004441 LocalInstantiationScope Local(*this);
John McCall2957e3e2011-02-14 20:37:25 +00004442
Richard Smith4f3e3812017-05-20 01:36:41 +00004443 LocalEagerInstantiationScope LocalInstantiations(*this);
4444
Larisse Voufo39a1e502013-08-06 01:03:05 +00004445 VarDecl *OldVar = Var;
Richard Smith62f19e72016-06-25 00:15:56 +00004446 if (Def->isStaticDataMember() && !Def->isOutOfLine()) {
4447 // We're instantiating an inline static data member whose definition was
4448 // provided inside the class.
Richard Smith62f19e72016-06-25 00:15:56 +00004449 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4450 } else if (!VarSpec) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004451 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Richard Smith8809a0c2013-09-27 20:14:12 +00004452 TemplateArgs));
Richard Smith62f19e72016-06-25 00:15:56 +00004453 } else if (Var->isStaticDataMember() &&
4454 Var->getLexicalDeclContext()->isRecord()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004455 // We need to instantiate the definition of a static data member template,
4456 // and all we have is the in-class declaration of it. Instantiate a separate
4457 // declaration of the definition.
4458 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(),
4459 TemplateArgs);
4460 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl(
Craig Topperc3ec1492014-05-26 06:22:03 +00004461 VarSpec->getSpecializedTemplate(), Def, nullptr,
Richard Smith8809a0c2013-09-27 20:14:12 +00004462 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray()));
4463 if (Var) {
4464 llvm::PointerUnion<VarTemplateDecl *,
4465 VarTemplatePartialSpecializationDecl *> PatternPtr =
4466 VarSpec->getSpecializedTemplateOrPartial();
4467 if (VarTemplatePartialSpecializationDecl *Partial =
4468 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>())
4469 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf(
4470 Partial, &VarSpec->getTemplateInstantiationArgs());
4471
4472 // Merge the definition with the declaration.
4473 LookupResult R(*this, Var->getDeclName(), Var->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00004474 LookupOrdinaryName, forRedeclarationInCurContext());
Richard Smith8809a0c2013-09-27 20:14:12 +00004475 R.addDecl(OldVar);
4476 MergeVarDecl(Var, R);
4477
4478 // Attach the initializer.
4479 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4480 }
4481 } else
4482 // Complete the existing variable's definition with an appropriately
4483 // substituted type and initializer.
4484 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004485
4486 PreviousContext.pop();
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004487
4488 if (Var) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004489 PassToConsumerRAII.Var = Var;
Richard Smith8809a0c2013-09-27 20:14:12 +00004490 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(),
4491 OldVar->getPointOfInstantiation());
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004492 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004493
4494 // This variable may have local implicit instantiations that need to be
4495 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004496 LocalInstantiations.perform();
Douglas Gregora86bc002012-02-16 21:36:18 +00004497 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004498 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004499}
Douglas Gregor51783312009-05-27 05:35:12 +00004500
Anders Carlsson70553942009-08-29 05:16:22 +00004501void
4502Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
4503 const CXXConstructorDecl *Tmpl,
4504 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00004505
Richard Trieu9becef62011-09-09 03:18:59 +00004506 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith60f2e1e2012-09-25 00:23:05 +00004507 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004508
Anders Carlsson70553942009-08-29 05:16:22 +00004509 // Instantiate all the initializers.
Aaron Ballman0ad78302014-03-13 17:34:31 +00004510 for (const auto *Init : Tmpl->inits()) {
Chandler Carruthf92bd8c2010-09-03 21:54:20 +00004511 // Only instantiate written initializers, let Sema re-construct implicit
4512 // ones.
4513 if (!Init->isWritten())
4514 continue;
4515
Douglas Gregor44e7df62011-01-04 00:32:56 +00004516 SourceLocation EllipsisLoc;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004517
Douglas Gregor44e7df62011-01-04 00:32:56 +00004518 if (Init->isPackExpansion()) {
4519 // This is a pack expansion. We should expand it now.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004520 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Nick Lewycky2c308502013-06-13 00:45:47 +00004521 SmallVector<UnexpandedParameterPack, 4> Unexpanded;
Douglas Gregor44e7df62011-01-04 00:32:56 +00004522 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
Nick Lewycky2c308502013-06-13 00:45:47 +00004523 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded);
Douglas Gregor44e7df62011-01-04 00:32:56 +00004524 bool ShouldExpand = false;
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004525 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00004526 Optional<unsigned> NumExpansions;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004527 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004528 BaseTL.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00004529 Unexpanded,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004530 TemplateArgs, ShouldExpand,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004531 RetainExpansion,
Douglas Gregor44e7df62011-01-04 00:32:56 +00004532 NumExpansions)) {
4533 AnyErrors = true;
4534 New->setInvalidDecl();
4535 continue;
4536 }
4537 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004538
4539 // Loop over all of the arguments in the argument pack(s),
Douglas Gregor0dca5fd2011-01-14 17:04:44 +00004540 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004541 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
4542
4543 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004544 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4545 /*CXXDirectInit=*/true);
4546 if (TempInit.isInvalid()) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004547 AnyErrors = true;
4548 break;
4549 }
4550
4551 // Instantiate the base type.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004552 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004553 TemplateArgs,
4554 Init->getSourceLocation(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004555 New->getDeclName());
4556 if (!BaseTInfo) {
4557 AnyErrors = true;
4558 break;
4559 }
4560
4561 // Build the initializer.
Sebastian Redla74948d2011-09-24 17:48:25 +00004562 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004563 BaseTInfo, TempInit.get(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004564 New->getParent(),
4565 SourceLocation());
4566 if (NewInit.isInvalid()) {
4567 AnyErrors = true;
4568 break;
4569 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004570
Douglas Gregor44e7df62011-01-04 00:32:56 +00004571 NewInits.push_back(NewInit.get());
Douglas Gregor44e7df62011-01-04 00:32:56 +00004572 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004573
Douglas Gregor44e7df62011-01-04 00:32:56 +00004574 continue;
4575 }
4576
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004577 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004578 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4579 /*CXXDirectInit=*/true);
4580 if (TempInit.isInvalid()) {
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004581 AnyErrors = true;
4582 continue;
Anders Carlsson70553942009-08-29 05:16:22 +00004583 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004584
Anders Carlsson70553942009-08-29 05:16:22 +00004585 MemInitResult NewInit;
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004586 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
4587 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
4588 TemplateArgs,
4589 Init->getSourceLocation(),
4590 New->getDeclName());
4591 if (!TInfo) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004592 AnyErrors = true;
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00004593 New->setInvalidDecl();
4594 continue;
4595 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004596
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004597 if (Init->isBaseInitializer())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004598 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004599 New->getParent(), EllipsisLoc);
4600 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004601 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004602 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson70553942009-08-29 05:16:22 +00004603 } else if (Init->isMemberInitializer()) {
Douglas Gregor55e6b312011-03-04 19:46:35 +00004604 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004605 Init->getMemberLocation(),
4606 Init->getMember(),
4607 TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00004608 if (!Member) {
4609 AnyErrors = true;
4610 New->setInvalidDecl();
4611 continue;
4612 }
Mike Stump11289f42009-09-09 15:08:12 +00004613
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004614 NewInit = BuildMemberInitializer(Member, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004615 Init->getSourceLocation());
Francois Pichetd583da02010-12-04 09:14:42 +00004616 } else if (Init->isIndirectMemberInitializer()) {
4617 IndirectFieldDecl *IndirectMember =
Douglas Gregor55e6b312011-03-04 19:46:35 +00004618 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004619 Init->getMemberLocation(),
4620 Init->getIndirectMember(), TemplateArgs));
4621
Douglas Gregor55e6b312011-03-04 19:46:35 +00004622 if (!IndirectMember) {
4623 AnyErrors = true;
4624 New->setInvalidDecl();
Sebastian Redla74948d2011-09-24 17:48:25 +00004625 continue;
Douglas Gregor55e6b312011-03-04 19:46:35 +00004626 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004627
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004628 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004629 Init->getSourceLocation());
Anders Carlsson70553942009-08-29 05:16:22 +00004630 }
4631
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004632 if (NewInit.isInvalid()) {
4633 AnyErrors = true;
Anders Carlsson70553942009-08-29 05:16:22 +00004634 New->setInvalidDecl();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004635 } else {
Richard Trieu9becef62011-09-09 03:18:59 +00004636 NewInits.push_back(NewInit.get());
Anders Carlsson70553942009-08-29 05:16:22 +00004637 }
4638 }
Mike Stump11289f42009-09-09 15:08:12 +00004639
Anders Carlsson70553942009-08-29 05:16:22 +00004640 // Assign all the initializers to the new constructor.
John McCall48871652010-08-21 09:40:31 +00004641 ActOnMemInitializers(New,
Anders Carlsson70553942009-08-29 05:16:22 +00004642 /*FIXME: ColonLoc */
4643 SourceLocation(),
David Blaikie3fc2f912013-01-17 05:26:25 +00004644 NewInits,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004645 AnyErrors);
Anders Carlsson70553942009-08-29 05:16:22 +00004646}
4647
John McCall59660882009-08-29 08:11:13 +00004648// TODO: this could be templated if the various decl types used the
4649// same method name.
4650static bool isInstantiationOf(ClassTemplateDecl *Pattern,
4651 ClassTemplateDecl *Instance) {
4652 Pattern = Pattern->getCanonicalDecl();
4653
4654 do {
4655 Instance = Instance->getCanonicalDecl();
4656 if (Pattern == Instance) return true;
4657 Instance = Instance->getInstantiatedFromMemberTemplate();
4658 } while (Instance);
4659
4660 return false;
4661}
4662
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004663static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
4664 FunctionTemplateDecl *Instance) {
4665 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004666
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004667 do {
4668 Instance = Instance->getCanonicalDecl();
4669 if (Pattern == Instance) return true;
4670 Instance = Instance->getInstantiatedFromMemberTemplate();
4671 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004672
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004673 return false;
4674}
4675
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004676static bool
Douglas Gregor21610382009-10-29 00:04:11 +00004677isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
4678 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004679 Pattern
Douglas Gregor21610382009-10-29 00:04:11 +00004680 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
4681 do {
4682 Instance = cast<ClassTemplatePartialSpecializationDecl>(
4683 Instance->getCanonicalDecl());
4684 if (Pattern == Instance)
4685 return true;
4686 Instance = Instance->getInstantiatedFromMember();
4687 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004688
Douglas Gregor21610382009-10-29 00:04:11 +00004689 return false;
4690}
4691
John McCall59660882009-08-29 08:11:13 +00004692static bool isInstantiationOf(CXXRecordDecl *Pattern,
4693 CXXRecordDecl *Instance) {
4694 Pattern = Pattern->getCanonicalDecl();
4695
4696 do {
4697 Instance = Instance->getCanonicalDecl();
4698 if (Pattern == Instance) return true;
4699 Instance = Instance->getInstantiatedFromMemberClass();
4700 } while (Instance);
4701
4702 return false;
4703}
4704
4705static bool isInstantiationOf(FunctionDecl *Pattern,
4706 FunctionDecl *Instance) {
4707 Pattern = Pattern->getCanonicalDecl();
4708
4709 do {
4710 Instance = Instance->getCanonicalDecl();
4711 if (Pattern == Instance) return true;
4712 Instance = Instance->getInstantiatedFromMemberFunction();
4713 } while (Instance);
4714
4715 return false;
4716}
4717
4718static bool isInstantiationOf(EnumDecl *Pattern,
4719 EnumDecl *Instance) {
4720 Pattern = Pattern->getCanonicalDecl();
4721
4722 do {
4723 Instance = Instance->getCanonicalDecl();
4724 if (Pattern == Instance) return true;
4725 Instance = Instance->getInstantiatedFromMemberEnum();
4726 } while (Instance);
4727
4728 return false;
4729}
4730
John McCallb96ec562009-12-04 22:46:56 +00004731static bool isInstantiationOf(UsingShadowDecl *Pattern,
4732 UsingShadowDecl *Instance,
4733 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004734 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance),
4735 Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004736}
4737
Richard Smith151c4562016-12-20 21:35:28 +00004738static bool isInstantiationOf(UsingDecl *Pattern, UsingDecl *Instance,
John McCallb96ec562009-12-04 22:46:56 +00004739 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004740 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004741}
4742
Richard Smith151c4562016-12-20 21:35:28 +00004743template<typename T>
4744static bool isInstantiationOfUnresolvedUsingDecl(T *Pattern, Decl *Other,
4745 ASTContext &Ctx) {
4746 // An unresolved using declaration can instantiate to an unresolved using
4747 // declaration, or to a using declaration or a using declaration pack.
4748 //
4749 // Multiple declarations can claim to be instantiated from an unresolved
4750 // using declaration if it's a pack expansion. We want the UsingPackDecl
4751 // in that case, not the individual UsingDecls within the pack.
4752 bool OtherIsPackExpansion;
4753 NamedDecl *OtherFrom;
4754 if (auto *OtherUUD = dyn_cast<T>(Other)) {
4755 OtherIsPackExpansion = OtherUUD->isPackExpansion();
4756 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUUD);
4757 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) {
4758 OtherIsPackExpansion = true;
4759 OtherFrom = OtherUPD->getInstantiatedFromUsingDecl();
4760 } else if (auto *OtherUD = dyn_cast<UsingDecl>(Other)) {
4761 OtherIsPackExpansion = false;
4762 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUD);
4763 } else {
4764 return false;
4765 }
4766 return Pattern->isPackExpansion() == OtherIsPackExpansion &&
4767 declaresSameEntity(OtherFrom, Pattern);
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004768}
4769
John McCall59660882009-08-29 08:11:13 +00004770static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
4771 VarDecl *Instance) {
4772 assert(Instance->isStaticDataMember());
4773
4774 Pattern = Pattern->getCanonicalDecl();
4775
4776 do {
4777 Instance = Instance->getCanonicalDecl();
4778 if (Pattern == Instance) return true;
4779 Instance = Instance->getInstantiatedFromStaticDataMember();
4780 } while (Instance);
4781
4782 return false;
4783}
4784
John McCallb96ec562009-12-04 22:46:56 +00004785// Other is the prospective instantiation
4786// D is the prospective pattern
Douglas Gregor51783312009-05-27 05:35:12 +00004787static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Richard Smith151c4562016-12-20 21:35:28 +00004788 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
4789 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
John McCalle61f2ba2009-11-18 02:36:19 +00004790
Richard Smith151c4562016-12-20 21:35:28 +00004791 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D))
4792 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
Douglas Gregor51783312009-05-27 05:35:12 +00004793
Richard Smith151c4562016-12-20 21:35:28 +00004794 if (D->getKind() != Other->getKind())
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004795 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004796
Richard Smithd8a9e372016-12-18 21:39:37 +00004797 if (auto *Record = dyn_cast<CXXRecordDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004798 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump11289f42009-09-09 15:08:12 +00004799
Richard Smithd8a9e372016-12-18 21:39:37 +00004800 if (auto *Function = dyn_cast<FunctionDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004801 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor51783312009-05-27 05:35:12 +00004802
Richard Smithd8a9e372016-12-18 21:39:37 +00004803 if (auto *Enum = dyn_cast<EnumDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004804 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor51783312009-05-27 05:35:12 +00004805
Richard Smithd8a9e372016-12-18 21:39:37 +00004806 if (auto *Var = dyn_cast<VarDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004807 if (Var->isStaticDataMember())
4808 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
4809
Richard Smithd8a9e372016-12-18 21:39:37 +00004810 if (auto *Temp = dyn_cast<ClassTemplateDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004811 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregorf3db0032009-08-28 22:03:51 +00004812
Richard Smithd8a9e372016-12-18 21:39:37 +00004813 if (auto *Temp = dyn_cast<FunctionTemplateDecl>(Other))
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004814 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
4815
Richard Smithd8a9e372016-12-18 21:39:37 +00004816 if (auto *PartialSpec =
4817 dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
Douglas Gregor21610382009-10-29 00:04:11 +00004818 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
4819 PartialSpec);
4820
Richard Smithd8a9e372016-12-18 21:39:37 +00004821 if (auto *Field = dyn_cast<FieldDecl>(Other)) {
Anders Carlsson5da84842009-09-01 04:26:58 +00004822 if (!Field->getDeclName()) {
4823 // This is an unnamed field.
Richard Smith32952e12014-10-14 02:00:47 +00004824 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field),
4825 cast<FieldDecl>(D));
Anders Carlsson5da84842009-09-01 04:26:58 +00004826 }
4827 }
Mike Stump11289f42009-09-09 15:08:12 +00004828
Richard Smithd8a9e372016-12-18 21:39:37 +00004829 if (auto *Using = dyn_cast<UsingDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004830 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
4831
Richard Smithd8a9e372016-12-18 21:39:37 +00004832 if (auto *Shadow = dyn_cast<UsingShadowDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004833 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
4834
Richard Smithd8a9e372016-12-18 21:39:37 +00004835 return D->getDeclName() &&
4836 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
Douglas Gregor51783312009-05-27 05:35:12 +00004837}
4838
4839template<typename ForwardIterator>
Mike Stump11289f42009-09-09 15:08:12 +00004840static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor51783312009-05-27 05:35:12 +00004841 NamedDecl *D,
4842 ForwardIterator first,
4843 ForwardIterator last) {
4844 for (; first != last; ++first)
4845 if (isInstantiationOf(Ctx, D, *first))
4846 return cast<NamedDecl>(*first);
4847
Craig Topperc3ec1492014-05-26 06:22:03 +00004848 return nullptr;
Douglas Gregor51783312009-05-27 05:35:12 +00004849}
4850
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004851/// Finds the instantiation of the given declaration context
John McCallaa74a0c2009-08-28 07:59:38 +00004852/// within the current instantiation.
4853///
4854/// \returns NULL if there was an error
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004855DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregor64621e62009-09-16 18:34:49 +00004856 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCallaa74a0c2009-08-28 07:59:38 +00004857 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Richard Smith4f440e32017-06-08 01:08:50 +00004858 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs, true);
John McCallaa74a0c2009-08-28 07:59:38 +00004859 return cast_or_null<DeclContext>(ID);
4860 } else return DC;
4861}
4862
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004863/// Find the instantiation of the given declaration within the
Douglas Gregorcd3a0972009-05-27 17:54:46 +00004864/// current instantiation.
Douglas Gregor51783312009-05-27 05:35:12 +00004865///
4866/// This routine is intended to be used when \p D is a declaration
4867/// referenced from within a template, that needs to mapped into the
4868/// corresponding declaration within an instantiation. For example,
4869/// given:
4870///
4871/// \code
4872/// template<typename T>
4873/// struct X {
4874/// enum Kind {
4875/// KnownValue = sizeof(T)
4876/// };
4877///
4878/// bool getKind() const { return KnownValue; }
4879/// };
4880///
4881/// template struct X<int>;
4882/// \endcode
4883///
Serge Pavloved5fe902013-07-10 04:59:14 +00004884/// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the
4885/// \p EnumConstantDecl for \p KnownValue (which refers to
4886/// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation
4887/// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs
4888/// this mapping from within the instantiation of <tt>X<int></tt>.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004889NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Richard Smith4f440e32017-06-08 01:08:50 +00004890 const MultiLevelTemplateArgumentList &TemplateArgs,
4891 bool FindingInstantiatedContext) {
Douglas Gregor51783312009-05-27 05:35:12 +00004892 DeclContext *ParentDC = D->getDeclContext();
Faisal Vali2cba1332013-10-23 06:44:28 +00004893 // FIXME: Parmeters of pointer to functions (y below) that are themselves
4894 // parameters (p below) can have their ParentDC set to the translation-unit
4895 // - thus we can not consistently check if the ParentDC of such a parameter
4896 // is Dependent or/and a FunctionOrMethod.
4897 // For e.g. this code, during Template argument deduction tries to
4898 // find an instantiated decl for (T y) when the ParentDC for y is
4899 // the translation unit.
4900 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {}
Aaron Ballman36a53502014-01-16 13:03:14 +00004901 // float baz(float(*)()) { return 0.0; }
Faisal Vali2cba1332013-10-23 06:44:28 +00004902 // Foo(baz);
4903 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time
4904 // it gets here, always has a FunctionOrMethod as its ParentDC??
4905 // For now:
4906 // - as long as we have a ParmVarDecl whose parent is non-dependent and
4907 // whose type is not instantiation dependent, do nothing to the decl
4908 // - otherwise find its instantiated decl.
4909 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() &&
4910 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType())
4911 return D;
Rafael Espindola09b00e32013-10-23 04:12:23 +00004912 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregorb93971082010-02-05 19:54:12 +00004913 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregora86bc002012-02-16 21:36:18 +00004914 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
4915 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004916 // D is a local of some kind. Look into the map of local
4917 // declarations to their instantiations.
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004918 if (CurrentInstantiationScope) {
4919 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) {
4920 if (Decl *FD = Found->dyn_cast<Decl *>())
4921 return cast<NamedDecl>(FD);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004922
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004923 int PackIdx = ArgumentPackSubstitutionIndex;
4924 assert(PackIdx != -1 &&
4925 "found declaration pack but not pack expanding");
4926 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
4927 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
4928 }
Chris Lattnercab02a62011-02-17 20:34:02 +00004929 }
4930
Serge Pavlov7cd8f602013-07-15 06:14:07 +00004931 // If we're performing a partial substitution during template argument
4932 // deduction, we may not have values for template parameters yet. They
4933 // just map to themselves.
4934 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
4935 isa<TemplateTemplateParmDecl>(D))
4936 return D;
4937
Serge Pavlov074a5182013-08-10 12:00:21 +00004938 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004939 return nullptr;
Serge Pavlov074a5182013-08-10 12:00:21 +00004940
Serge Pavlove7ad8312015-05-15 10:10:28 +00004941 // Normally this function only searches for already instantiated declaration
4942 // however we have to make an exclusion for local types used before
4943 // definition as in the code:
4944 //
4945 // template<typename T> void f1() {
4946 // void g1(struct x1);
4947 // struct x1 {};
4948 // }
4949 //
4950 // In this case instantiation of the type of 'g1' requires definition of
4951 // 'x1', which is defined later. Error recovery may produce an enum used
4952 // before definition. In these cases we need to instantiate relevant
4953 // declarations here.
4954 bool NeedInstantiate = false;
4955 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
4956 NeedInstantiate = RD->isLocalClass();
4957 else
4958 NeedInstantiate = isa<EnumDecl>(D);
4959 if (NeedInstantiate) {
Serge Pavlov4c511742015-05-04 16:44:39 +00004960 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4961 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4962 return cast<TypeDecl>(Inst);
4963 }
4964
Chris Lattnercab02a62011-02-17 20:34:02 +00004965 // If we didn't find the decl, then we must have a label decl that hasn't
4966 // been found yet. Lazily instantiate it and return it now.
4967 assert(isa<LabelDecl>(D));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004968
Chris Lattnercab02a62011-02-17 20:34:02 +00004969 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4970 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004971
Chris Lattnercab02a62011-02-17 20:34:02 +00004972 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4973 return cast<LabelDecl>(Inst);
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004974 }
Douglas Gregor51783312009-05-27 05:35:12 +00004975
Larisse Voufo39a1e502013-08-06 01:03:05 +00004976 // For variable template specializations, update those that are still
4977 // type-dependent.
4978 if (VarTemplateSpecializationDecl *VarSpec =
4979 dyn_cast<VarTemplateSpecializationDecl>(D)) {
4980 bool InstantiationDependent = false;
4981 const TemplateArgumentListInfo &VarTemplateArgs =
4982 VarSpec->getTemplateArgsInfo();
4983 if (TemplateSpecializationType::anyDependentTemplateArguments(
4984 VarTemplateArgs, InstantiationDependent))
4985 D = cast<NamedDecl>(
4986 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs));
4987 return D;
4988 }
4989
Douglas Gregor64621e62009-09-16 18:34:49 +00004990 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
4991 if (!Record->isDependentContext())
4992 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004993
Douglas Gregor4109afa2011-11-07 17:43:18 +00004994 // Determine whether this record is the "templated" declaration describing
4995 // a class template or class template partial specialization.
Douglas Gregor64621e62009-09-16 18:34:49 +00004996 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor4109afa2011-11-07 17:43:18 +00004997 if (ClassTemplate)
4998 ClassTemplate = ClassTemplate->getCanonicalDecl();
4999 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5000 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
5001 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
Larisse Voufo39a1e502013-08-06 01:03:05 +00005002
Douglas Gregor4109afa2011-11-07 17:43:18 +00005003 // Walk the current context to find either the record or an instantiation of
5004 // it.
5005 DeclContext *DC = CurContext;
5006 while (!DC->isFileContext()) {
5007 // If we're performing substitution while we're inside the template
5008 // definition, we'll find our own context. We're done.
5009 if (DC->Equals(Record))
5010 return Record;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005011
Douglas Gregor4109afa2011-11-07 17:43:18 +00005012 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
5013 // Check whether we're in the process of instantiating a class template
5014 // specialization of the template we're mapping.
5015 if (ClassTemplateSpecializationDecl *InstSpec
5016 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
5017 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
5018 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
5019 return InstRecord;
5020 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005021
Douglas Gregor4109afa2011-11-07 17:43:18 +00005022 // Check whether we're in the process of instantiating a member class.
5023 if (isInstantiationOf(Record, InstRecord))
5024 return InstRecord;
Douglas Gregor64621e62009-09-16 18:34:49 +00005025 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005026
Douglas Gregor4109afa2011-11-07 17:43:18 +00005027 // Move to the outer template scope.
5028 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
5029 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
5030 DC = FD->getLexicalDeclContext();
5031 continue;
5032 }
Richard Smith32918772017-02-14 00:25:28 +00005033 // An implicit deduction guide acts as if it's within the class template
5034 // specialization described by its name and first N template params.
Richard Smithbc491202017-02-17 20:05:37 +00005035 auto *Guide = dyn_cast<CXXDeductionGuideDecl>(FD);
5036 if (Guide && Guide->isImplicit()) {
5037 TemplateDecl *TD = Guide->getDeducedTemplate();
Richard Smith0cd9c042017-02-21 08:42:39 +00005038 // Convert the arguments to an "as-written" list.
Richard Smith32918772017-02-14 00:25:28 +00005039 TemplateArgumentListInfo Args(Loc, Loc);
Richard Smith0cd9c042017-02-21 08:42:39 +00005040 for (TemplateArgument Arg : TemplateArgs.getInnermost().take_front(
5041 TD->getTemplateParameters()->size())) {
5042 ArrayRef<TemplateArgument> Unpacked(Arg);
5043 if (Arg.getKind() == TemplateArgument::Pack)
5044 Unpacked = Arg.pack_elements();
5045 for (TemplateArgument UnpackedArg : Unpacked)
5046 Args.addArgument(
5047 getTrivialTemplateArgumentLoc(UnpackedArg, QualType(), Loc));
5048 }
Richard Smith32918772017-02-14 00:25:28 +00005049 QualType T = CheckTemplateIdType(TemplateName(TD), Loc, Args);
5050 if (T.isNull())
5051 return nullptr;
Richard Smithe6d4b772017-06-07 02:42:27 +00005052 auto *SubstRecord = T->getAsCXXRecordDecl();
5053 assert(SubstRecord && "class template id not a class type?");
5054 // Check that this template-id names the primary template and not a
5055 // partial or explicit specialization. (In the latter cases, it's
5056 // meaningless to attempt to find an instantiation of D within the
5057 // specialization.)
5058 // FIXME: The standard doesn't say what should happen here.
Richard Smith4f440e32017-06-08 01:08:50 +00005059 if (FindingInstantiatedContext &&
5060 usesPartialOrExplicitSpecialization(
5061 Loc, cast<ClassTemplateSpecializationDecl>(SubstRecord))) {
Richard Smithe6d4b772017-06-07 02:42:27 +00005062 Diag(Loc, diag::err_specialization_not_primary_template)
5063 << T << (SubstRecord->getTemplateSpecializationKind() ==
5064 TSK_ExplicitSpecialization);
5065 return nullptr;
5066 }
5067 DC = SubstRecord;
Richard Smith32918772017-02-14 00:25:28 +00005068 continue;
5069 }
John McCall59660882009-08-29 08:11:13 +00005070 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005071
Douglas Gregor4109afa2011-11-07 17:43:18 +00005072 DC = DC->getParent();
John McCall59660882009-08-29 08:11:13 +00005073 }
Douglas Gregord225fa02010-02-05 22:40:03 +00005074
Douglas Gregor64621e62009-09-16 18:34:49 +00005075 // Fall through to deal with other dependent record types (e.g.,
5076 // anonymous unions in class templates).
5077 }
John McCall59660882009-08-29 08:11:13 +00005078
Douglas Gregor64621e62009-09-16 18:34:49 +00005079 if (!ParentDC->isDependentContext())
5080 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005081
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005082 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00005083 if (!ParentDC)
Craig Topperc3ec1492014-05-26 06:22:03 +00005084 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00005085
Douglas Gregor51783312009-05-27 05:35:12 +00005086 if (ParentDC != D->getDeclContext()) {
5087 // We performed some kind of instantiation in the parent context,
5088 // so now we need to look into the instantiated parent context to
5089 // find the instantiation of the declaration D.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005090
John McCalle78aac42010-03-10 03:28:59 +00005091 // If our context used to be dependent, we may need to instantiate
5092 // it before performing lookup into that context.
Douglas Gregor528ad932011-03-06 20:12:45 +00005093 bool IsBeingInstantiated = false;
John McCalle78aac42010-03-10 03:28:59 +00005094 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005095 if (!Spec->isDependentContext()) {
5096 QualType T = Context.getTypeDeclType(Spec);
John McCalle78aac42010-03-10 03:28:59 +00005097 const RecordType *Tag = T->getAs<RecordType>();
5098 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregor528ad932011-03-06 20:12:45 +00005099 if (Tag->isBeingDefined())
5100 IsBeingInstantiated = true;
John McCalle78aac42010-03-10 03:28:59 +00005101 if (!Tag->isBeingDefined() &&
5102 RequireCompleteType(Loc, T, diag::err_incomplete_type))
Craig Topperc3ec1492014-05-26 06:22:03 +00005103 return nullptr;
Douglas Gregor25edf432010-11-05 23:22:45 +00005104
5105 ParentDC = Tag->getDecl();
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005106 }
5107 }
5108
Craig Topperc3ec1492014-05-26 06:22:03 +00005109 NamedDecl *Result = nullptr;
Richard Smith151c4562016-12-20 21:35:28 +00005110 // FIXME: If the name is a dependent name, this lookup won't necessarily
5111 // find it. Does that ever matter?
Akira Hatanaka59e3b432017-01-31 19:53:32 +00005112 if (auto Name = D->getDeclName()) {
5113 DeclarationNameInfo NameInfo(Name, D->getLocation());
5114 Name = SubstDeclarationNameInfo(NameInfo, TemplateArgs).getName();
5115 if (!Name)
5116 return nullptr;
5117 DeclContext::lookup_result Found = ParentDC->lookup(Name);
David Blaikieff7d47a2012-12-19 00:45:41 +00005118 Result = findInstantiationOf(Context, D, Found.begin(), Found.end());
Douglas Gregor51783312009-05-27 05:35:12 +00005119 } else {
5120 // Since we don't have a name for the entity we're looking for,
5121 // our only option is to walk through all of the declarations to
5122 // find that name. This will occur in a few cases:
5123 //
5124 // - anonymous struct/union within a template
5125 // - unnamed class/struct/union/enum within a template
5126 //
5127 // FIXME: Find a better way to find these instantiations!
Mike Stump11289f42009-09-09 15:08:12 +00005128 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005129 ParentDC->decls_begin(),
5130 ParentDC->decls_end());
Douglas Gregor51783312009-05-27 05:35:12 +00005131 }
Mike Stump11289f42009-09-09 15:08:12 +00005132
Douglas Gregor528ad932011-03-06 20:12:45 +00005133 if (!Result) {
5134 if (isa<UsingShadowDecl>(D)) {
5135 // UsingShadowDecls can instantiate to nothing because of using hiding.
5136 } else if (Diags.hasErrorOccurred()) {
5137 // We've already complained about something, so most likely this
5138 // declaration failed to instantiate. There's no point in complaining
5139 // further, since this is normal in invalid code.
5140 } else if (IsBeingInstantiated) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005141 // The class in which this member exists is currently being
Douglas Gregor528ad932011-03-06 20:12:45 +00005142 // instantiated, and we haven't gotten around to instantiating this
5143 // member yet. This can happen when the code uses forward declarations
5144 // of member classes, and introduces ordering dependencies via
5145 // template instantiation.
5146 Diag(Loc, diag::err_member_not_yet_instantiated)
5147 << D->getDeclName()
5148 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
5149 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith169f2192012-03-26 20:28:16 +00005150 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
5151 // This enumeration constant was found when the template was defined,
5152 // but can't be found in the instantiation. This can happen if an
5153 // unscoped enumeration member is explicitly specialized.
5154 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
5155 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
5156 TemplateArgs));
5157 assert(Spec->getTemplateSpecializationKind() ==
5158 TSK_ExplicitSpecialization);
5159 Diag(Loc, diag::err_enumerator_does_not_exist)
5160 << D->getDeclName()
5161 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
5162 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
5163 << Context.getTypeDeclType(Spec);
Douglas Gregor528ad932011-03-06 20:12:45 +00005164 } else {
5165 // We should have found something, but didn't.
5166 llvm_unreachable("Unable to find instantiation of declaration!");
5167 }
5168 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005169
Douglas Gregor51783312009-05-27 05:35:12 +00005170 D = Result;
5171 }
5172
Douglas Gregor51783312009-05-27 05:35:12 +00005173 return D;
5174}
Douglas Gregor77b50e12009-06-22 23:06:13 +00005175
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005176/// Performs template instantiation for all implicit template
Douglas Gregor77b50e12009-06-22 23:06:13 +00005177/// instantiations we have seen until this point.
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00005178void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005179 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth54080172010-08-25 08:44:16 +00005180 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005181 PendingImplicitInstantiation Inst;
5182
5183 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth54080172010-08-25 08:44:16 +00005184 Inst = PendingInstantiations.front();
5185 PendingInstantiations.pop_front();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005186 } else {
5187 Inst = PendingLocalImplicitInstantiations.front();
5188 PendingLocalImplicitInstantiations.pop_front();
5189 }
Mike Stump11289f42009-09-09 15:08:12 +00005190
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005191 // Instantiate function definitions
5192 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005193 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
5194 TSK_ExplicitInstantiationDefinition;
5195 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00005196 DefinitionRequired, true);
Sunil Srivastava15ed2922017-06-20 22:08:44 +00005197 if (Function->isDefined())
5198 Function->setInstantiationIsPending(false);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005199 continue;
5200 }
Mike Stump11289f42009-09-09 15:08:12 +00005201
Larisse Voufo39a1e502013-08-06 01:03:05 +00005202 // Instantiate variable definitions
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005203 VarDecl *Var = cast<VarDecl>(Inst.first);
Larisse Voufo39a1e502013-08-06 01:03:05 +00005204
5205 assert((Var->isStaticDataMember() ||
5206 isa<VarTemplateSpecializationDecl>(Var)) &&
5207 "Not a static data member, nor a variable template"
5208 " specialization?");
Anders Carlsson62215c42009-09-01 05:12:24 +00005209
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005210 // Don't try to instantiate declarations if the most recent redeclaration
5211 // is invalid.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005212 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005213 continue;
5214
5215 // Check if the most recent declaration has changed the specialization kind
5216 // and removed the need for implicit instantiation.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005217 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005218 case TSK_Undeclared:
David Blaikie83d382b2011-09-23 05:06:16 +00005219 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005220 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005221 case TSK_ExplicitSpecialization:
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005222 continue; // No longer need to instantiate this type.
5223 case TSK_ExplicitInstantiationDefinition:
5224 // We only need an instantiation if the pending instantiation *is* the
5225 // explicit instantiation.
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00005226 if (Var != Var->getMostRecentDecl())
5227 continue;
5228 break;
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005229 case TSK_ImplicitInstantiation:
5230 break;
5231 }
5232
Jordan Rose1e879d82018-03-23 00:07:18 +00005233 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00005234 "instantiating variable definition");
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005235 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
5236 TSK_ExplicitInstantiationDefinition;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005237
5238 // Instantiate static data member definitions or variable template
5239 // specializations.
5240 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00005241 DefinitionRequired, true);
Douglas Gregor77b50e12009-06-22 23:06:13 +00005242 }
5243}
John McCallc62bb642010-03-24 05:22:00 +00005244
5245void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
5246 const MultiLevelTemplateArgumentList &TemplateArgs) {
Aaron Ballmanb105e492014-03-07 14:09:15 +00005247 for (auto DD : Pattern->ddiags()) {
John McCallc62bb642010-03-24 05:22:00 +00005248 switch (DD->getKind()) {
5249 case DependentDiagnostic::Access:
5250 HandleDependentAccessCheck(*DD, TemplateArgs);
5251 break;
5252 }
5253 }
5254}