blob: 7e38dcc7959f9bcb2198d0d599fdba1ccf6df5ba [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
Taiju Tsuikib000a882018-06-19 04:39:07 +0000743 bool NRVO = false;
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000744 if (D->isNRVOVariable()) {
745 QualType ReturnType = cast<FunctionDecl>(DC)->getReturnType();
Richard Trieu09c163b2018-03-15 03:00:55 +0000746 if (SemaRef.isCopyElisionCandidate(ReturnType, Var, Sema::CES_Strict))
Taiju Tsuikib000a882018-06-19 04:39:07 +0000747 NRVO = true;
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000748 }
Taiju Tsuikib000a882018-06-19 04:39:07 +0000749 Var->setNRVOVariable(NRVO);
Alexander Kornienko83a4e182014-05-27 21:29:22 +0000750 Var->setImplicit(D->isImplicit());
751
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000752 return Var;
753}
754
Abramo Bagnarad7340582010-06-05 05:09:32 +0000755Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
756 AccessSpecDecl* AD
757 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
758 D->getAccessSpecifierLoc(), D->getColonLoc());
759 Owner->addHiddenDecl(AD);
760 return AD;
761}
762
Douglas Gregord7e7a512009-03-17 21:15:40 +0000763Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
764 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000765 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000766 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000767 DI->getType()->isVariablyModifiedType()) {
John McCall90459c52009-10-22 23:33:21 +0000768 DI = SemaRef.SubstType(DI, TemplateArgs,
769 D->getLocation(), D->getDeclName());
770 if (!DI) {
John McCallbcd03502009-12-07 02:54:59 +0000771 DI = D->getTypeSourceInfo();
John McCall90459c52009-10-22 23:33:21 +0000772 Invalid = true;
773 } else if (DI->getType()->isFunctionType()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000774 // C++ [temp.arg.type]p3:
775 // If a declaration acquires a function type through a type
776 // dependent on a template-parameter and this causes a
777 // declaration that does not use the syntactic form of a
778 // function declarator to have function type, the program is
779 // ill-formed.
780 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall90459c52009-10-22 23:33:21 +0000781 << DI->getType();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000782 Invalid = true;
783 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000784 } else {
785 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000786 }
787
788 Expr *BitWidth = D->getBitWidth();
789 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +0000790 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000791 else if (BitWidth) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000792 // The bit-width expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000793 EnterExpressionEvaluationContext Unevaluated(
794 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000795
John McCalldadc5752010-08-24 06:29:42 +0000796 ExprResult InstantiatedBitWidth
John McCall76d824f2009-08-25 22:02:44 +0000797 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000798 if (InstantiatedBitWidth.isInvalid()) {
799 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +0000800 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000801 } else
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000802 BitWidth = InstantiatedBitWidth.getAs<Expr>();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000803 }
804
John McCall90459c52009-10-22 23:33:21 +0000805 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
806 DI->getType(), DI,
Mike Stump11289f42009-09-09 15:08:12 +0000807 cast<RecordDecl>(Owner),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000808 D->getLocation(),
809 D->isMutable(),
810 BitWidth,
Richard Smith2b013182012-06-10 03:12:00 +0000811 D->getInClassInitStyle(),
Richard Smith47ad0172012-05-23 04:22:22 +0000812 D->getInnerLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000813 D->getAccess(),
Craig Topperc3ec1492014-05-26 06:22:03 +0000814 nullptr);
Douglas Gregor3c74d412009-10-14 20:14:33 +0000815 if (!Field) {
816 cast<Decl>(Owner)->setInvalidDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +0000817 return nullptr;
Douglas Gregor3c74d412009-10-14 20:14:33 +0000818 }
Mike Stump11289f42009-09-09 15:08:12 +0000819
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000820 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000821
Richard Smith848e1f12013-02-01 08:12:08 +0000822 if (Field->hasAttrs())
823 SemaRef.CheckAlignasUnderalignment(Field);
824
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000825 if (Invalid)
826 Field->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000827
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000828 if (!Field->getDeclName()) {
829 // Keep track of where this decl came from.
830 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000831 }
Douglas Gregor04163182010-05-21 00:31:19 +0000832 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
833 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl50c68252010-08-31 00:36:30 +0000834 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor04163182010-05-21 00:31:19 +0000835 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000836 }
Mike Stump11289f42009-09-09 15:08:12 +0000837
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000838 Field->setImplicit(D->isImplicit());
John McCall401982f2010-01-20 21:53:11 +0000839 Field->setAccess(D->getAccess());
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000840 Owner->addDecl(Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000841
842 return Field;
843}
844
John McCall5e77d762013-04-16 07:28:30 +0000845Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) {
846 bool Invalid = false;
847 TypeSourceInfo *DI = D->getTypeSourceInfo();
848
849 if (DI->getType()->isVariablyModifiedType()) {
850 SemaRef.Diag(D->getLocation(), diag::err_property_is_variably_modified)
Aaron Ballman1bda4592014-01-03 01:09:27 +0000851 << D;
John McCall5e77d762013-04-16 07:28:30 +0000852 Invalid = true;
853 } else if (DI->getType()->isInstantiationDependentType()) {
854 DI = SemaRef.SubstType(DI, TemplateArgs,
855 D->getLocation(), D->getDeclName());
856 if (!DI) {
857 DI = D->getTypeSourceInfo();
858 Invalid = true;
859 } else if (DI->getType()->isFunctionType()) {
860 // C++ [temp.arg.type]p3:
861 // If a declaration acquires a function type through a type
862 // dependent on a template-parameter and this causes a
863 // declaration that does not use the syntactic form of a
864 // function declarator to have function type, the program is
865 // ill-formed.
866 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
867 << DI->getType();
868 Invalid = true;
869 }
870 } else {
871 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
872 }
873
Richard Smithf7981722013-11-22 09:01:48 +0000874 MSPropertyDecl *Property = MSPropertyDecl::Create(
875 SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(),
876 DI, D->getLocStart(), D->getGetterId(), D->getSetterId());
John McCall5e77d762013-04-16 07:28:30 +0000877
878 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
879 StartingScope);
880
881 if (Invalid)
882 Property->setInvalidDecl();
883
884 Property->setAccess(D->getAccess());
885 Owner->addDecl(Property);
886
887 return Property;
888}
889
Francois Pichet783dd6e2010-11-21 06:08:52 +0000890Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
891 NamedDecl **NamedChain =
892 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
893
894 int i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +0000895 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +0000896 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), PI,
Douglas Gregor55e6b312011-03-04 19:46:35 +0000897 TemplateArgs);
898 if (!Next)
Craig Topperc3ec1492014-05-26 06:22:03 +0000899 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000900
Douglas Gregor55e6b312011-03-04 19:46:35 +0000901 NamedChain[i++] = Next;
902 }
Francois Pichet783dd6e2010-11-21 06:08:52 +0000903
Francois Pichetdbafc192010-12-09 10:07:54 +0000904 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Aaron Ballman260995b2014-10-15 16:58:18 +0000905 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
906 SemaRef.Context, Owner, D->getLocation(), D->getIdentifier(), T,
David Majnemer59f77922016-06-24 04:05:48 +0000907 {NamedChain, D->getChainingSize()});
Francois Pichet783dd6e2010-11-21 06:08:52 +0000908
NAKAMURA Takumi729be142014-10-27 12:37:26 +0000909 for (const auto *Attr : D->attrs())
910 IndirectField->addAttr(Attr->clone(SemaRef.Context));
Francois Pichet783dd6e2010-11-21 06:08:52 +0000911
912 IndirectField->setImplicit(D->isImplicit());
913 IndirectField->setAccess(D->getAccess());
914 Owner->addDecl(IndirectField);
915 return IndirectField;
916}
917
John McCallaa74a0c2009-08-28 07:59:38 +0000918Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCallaa74a0c2009-08-28 07:59:38 +0000919 // Handle friend type expressions by simply substituting template
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000920 // parameters into the pattern type and checking the result.
John McCall15ad0962010-03-25 18:04:51 +0000921 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth08836322011-05-01 00:51:33 +0000922 TypeSourceInfo *InstTy;
923 // If this is an unsupported friend, don't bother substituting template
924 // arguments into it. The actual type referred to won't be used by any
925 // parts of Clang, and may not be valid for instantiating. Just use the
926 // same info for the instantiated friend.
927 if (D->isUnsupportedFriend()) {
928 InstTy = Ty;
929 } else {
930 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
931 D->getLocation(), DeclarationName());
932 }
933 if (!InstTy)
Craig Topperc3ec1492014-05-26 06:22:03 +0000934 return nullptr;
John McCallaa74a0c2009-08-28 07:59:38 +0000935
Richard Smitha31a89a2012-09-20 01:31:00 +0000936 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getLocStart(),
Abramo Bagnara254b6302011-10-29 20:52:52 +0000937 D->getFriendLoc(), InstTy);
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000938 if (!FD)
Craig Topperc3ec1492014-05-26 06:22:03 +0000939 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000940
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000941 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000942 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000943 Owner->addDecl(FD);
944 return FD;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000945 }
946
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000947 NamedDecl *ND = D->getFriendDecl();
948 assert(ND && "friend decl must be a decl or a type!");
949
John McCallb9c78482010-04-08 09:05:18 +0000950 // All of the Visit implementations for the various potential friend
951 // declarations have to be carefully written to work for friend
952 // objects, with the most important detail being that the target
953 // decl should almost certainly not be placed in Owner.
954 Decl *NewND = Visit(ND);
Craig Topperc3ec1492014-05-26 06:22:03 +0000955 if (!NewND) return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000956
John McCallaa74a0c2009-08-28 07:59:38 +0000957 FriendDecl *FD =
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000958 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000959 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall75c03bb2009-08-29 03:50:18 +0000960 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000961 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCallaa74a0c2009-08-28 07:59:38 +0000962 Owner->addDecl(FD);
963 return FD;
John McCall58de3582009-08-14 02:03:10 +0000964}
965
Douglas Gregord7e7a512009-03-17 21:15:40 +0000966Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
967 Expr *AssertExpr = D->getAssertExpr();
Mike Stump11289f42009-09-09 15:08:12 +0000968
Richard Smith764d2fe2011-12-20 02:08:33 +0000969 // The expression in a static assertion is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000970 EnterExpressionEvaluationContext Unevaluated(
971 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000972
John McCalldadc5752010-08-24 06:29:42 +0000973 ExprResult InstantiatedAssertExpr
John McCall76d824f2009-08-25 22:02:44 +0000974 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000975 if (InstantiatedAssertExpr.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000976 return nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000977
Richard Smithded9c2e2012-07-11 22:37:56 +0000978 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCallb268a282010-08-23 23:25:46 +0000979 InstantiatedAssertExpr.get(),
Richard Smithded9c2e2012-07-11 22:37:56 +0000980 D->getMessage(),
981 D->getRParenLoc(),
982 D->isFailed());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000983}
984
985Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000986 EnumDecl *PrevDecl = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000987 if (EnumDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Richard Smith2e6610a2012-03-26 04:58:10 +0000988 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +0000989 PatternPrev,
Richard Smith2e6610a2012-03-26 04:58:10 +0000990 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +0000991 if (!Prev) return nullptr;
Richard Smith2e6610a2012-03-26 04:58:10 +0000992 PrevDecl = cast<EnumDecl>(Prev);
993 }
994
Abramo Bagnara29c2d462011-03-09 14:09:51 +0000995 EnumDecl *Enum = EnumDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000996 D->getLocation(), D->getIdentifier(),
Richard Smith2e6610a2012-03-26 04:58:10 +0000997 PrevDecl, D->isScoped(),
Abramo Bagnara0e05e242010-12-03 18:54:17 +0000998 D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor0bf31402010-10-08 23:50:27 +0000999 if (D->isFixed()) {
Richard Smith4b38ded2012-03-14 23:13:10 +00001000 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001001 // If we have type source information for the underlying type, it means it
1002 // has been explicitly set by the user. Perform substitution on it before
1003 // moving on.
1004 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smith4b38ded2012-03-14 23:13:10 +00001005 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
1006 DeclarationName());
1007 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor0bf31402010-10-08 23:50:27 +00001008 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smith4b38ded2012-03-14 23:13:10 +00001009 else
1010 Enum->setIntegerTypeSourceInfo(NewTI);
1011 } else {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001012 assert(!D->getIntegerType()->isDependentType()
1013 && "Dependent type without type source info");
1014 Enum->setIntegerType(D->getIntegerType());
1015 }
1016 }
1017
John McCall811a0f52010-10-22 23:36:17 +00001018 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
1019
Richard Smith4b38ded2012-03-14 23:13:10 +00001020 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor6c2adff2009-03-25 22:00:53 +00001021 Enum->setAccess(D->getAccess());
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001022 // Forward the mangling number from the template to the instantiated decl.
1023 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
David Majnemer00350522015-08-31 18:48:39 +00001024 // See if the old tag was defined along with a declarator.
1025 // If it did, mark the new tag as being associated with that declarator.
1026 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1027 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Enum, DD);
1028 // See if the old tag was defined along with a typedef.
1029 // If it did, mark the new tag as being associated with that typedef.
1030 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1031 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Enum, TND);
Craig Topperc3ec1492014-05-26 06:22:03 +00001032 if (SubstQualifier(D, Enum)) return nullptr;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001033 Owner->addDecl(Enum);
Richard Smith4b38ded2012-03-14 23:13:10 +00001034
Richard Smith258a7442012-03-26 04:08:46 +00001035 EnumDecl *Def = D->getDefinition();
1036 if (Def && Def != D) {
1037 // If this is an out-of-line definition of an enum member template, check
1038 // that the underlying types match in the instantiation of both
1039 // declarations.
1040 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
1041 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
1042 QualType DefnUnderlying =
1043 SemaRef.SubstType(TI->getType(), TemplateArgs,
1044 UnderlyingLoc, DeclarationName());
1045 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
Reid Klecknerb0a17ed2018-02-12 17:37:06 +00001046 DefnUnderlying, /*IsFixed=*/true, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001047 }
1048 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001049
Richard Smith4b38ded2012-03-14 23:13:10 +00001050 // C++11 [temp.inst]p1: The implicit instantiation of a class template
1051 // specialization causes the implicit instantiation of the declarations, but
1052 // not the definitions of scoped member enumerations.
David Majnemer192d1792013-11-27 08:20:38 +00001053 //
1054 // DR1484 clarifies that enumeration definitions inside of a template
1055 // declaration aren't considered entities that can be separately instantiated
1056 // from the rest of the entity they are declared inside of.
1057 if (isDeclWithinFunction(D) ? D == Def : Def && !Enum->isScoped()) {
1058 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001059 InstantiateEnumDefinition(Enum, Def);
David Majnemer192d1792013-11-27 08:20:38 +00001060 }
Richard Smith4b38ded2012-03-14 23:13:10 +00001061
1062 return Enum;
1063}
1064
1065void TemplateDeclInstantiator::InstantiateEnumDefinition(
1066 EnumDecl *Enum, EnumDecl *Pattern) {
1067 Enum->startDefinition();
1068
Richard Smith7d137e32012-03-23 03:33:32 +00001069 // Update the location to refer to the definition.
1070 Enum->setLocation(Pattern->getLocation());
1071
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001072 SmallVector<Decl*, 4> Enumerators;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001073
Craig Topperc3ec1492014-05-26 06:22:03 +00001074 EnumConstantDecl *LastEnumConst = nullptr;
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001075 for (auto *EC : Pattern->enumerators()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +00001076 // The specified value for the enumerator.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001077 ExprResult Value((Expr *)nullptr);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001078 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smith764d2fe2011-12-20 02:08:33 +00001079 // The enumerator's value expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +00001080 EnterExpressionEvaluationContext Unevaluated(
1081 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +00001082
John McCall76d824f2009-08-25 22:02:44 +00001083 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001084 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001085
1086 // Drop the initial value and continue.
1087 bool isInvalid = false;
1088 if (Value.isInvalid()) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001089 Value = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001090 isInvalid = true;
1091 }
1092
Mike Stump11289f42009-09-09 15:08:12 +00001093 EnumConstantDecl *EnumConst
Douglas Gregord7e7a512009-03-17 21:15:40 +00001094 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
1095 EC->getLocation(), EC->getIdentifier(),
John McCallb268a282010-08-23 23:25:46 +00001096 Value.get());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001097
1098 if (isInvalid) {
1099 if (EnumConst)
1100 EnumConst->setInvalidDecl();
1101 Enum->setInvalidDecl();
1102 }
1103
1104 if (EnumConst) {
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001105 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst);
John McCall811a0f52010-10-22 23:36:17 +00001106
John McCallf9b528c2010-01-23 22:37:59 +00001107 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001108 Enum->addDecl(EnumConst);
John McCall48871652010-08-21 09:40:31 +00001109 Enumerators.push_back(EnumConst);
Douglas Gregord7e7a512009-03-17 21:15:40 +00001110 LastEnumConst = EnumConst;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001111
Richard Smith4b38ded2012-03-14 23:13:10 +00001112 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
1113 !Enum->isScoped()) {
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001114 // If the enumeration is within a function or method, record the enum
1115 // constant as a local.
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001116 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst);
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001117 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001118 }
1119 }
Mike Stump11289f42009-09-09 15:08:12 +00001120
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00001121 SemaRef.ActOnEnumBody(Enum->getLocation(), Enum->getBraceRange(), Enum,
Dmitri Gribenkoe5fde992013-04-27 20:23:52 +00001122 Enumerators,
Craig Topperc3ec1492014-05-26 06:22:03 +00001123 nullptr, nullptr);
Douglas Gregord7e7a512009-03-17 21:15:40 +00001124}
1125
Douglas Gregor9106b822009-03-25 15:04:13 +00001126Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +00001127 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor9106b822009-03-25 15:04:13 +00001128}
1129
David Majnemerd9b1a4f2015-11-04 03:40:30 +00001130Decl *
1131TemplateDeclInstantiator::VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D) {
1132 llvm_unreachable("BuiltinTemplateDecls cannot be instantiated.");
1133}
1134
John McCall87a44eb2009-08-20 01:44:21 +00001135Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall598b4402010-03-25 06:39:04 +00001136 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1137
Douglas Gregor954de172009-10-31 17:21:17 +00001138 // Create a local instantiation scope for this class template, which
1139 // will contain the instantiations of the template parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00001140 LocalInstantiationScope Scope(SemaRef);
John McCall87a44eb2009-08-20 01:44:21 +00001141 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCall76d824f2009-08-25 22:02:44 +00001142 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001143 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001144 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00001145
1146 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall598b4402010-03-25 06:39:04 +00001147
1148 // Instantiate the qualifier. We have to do this first in case
1149 // we're a friend declaration, because if we are then we need to put
1150 // the new declaration in the appropriate context.
Douglas Gregor14454802011-02-25 02:25:35 +00001151 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
1152 if (QualifierLoc) {
1153 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1154 TemplateArgs);
1155 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001156 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001157 }
1158
Craig Topperc3ec1492014-05-26 06:22:03 +00001159 CXXRecordDecl *PrevDecl = nullptr;
1160 ClassTemplateDecl *PrevClassTemplate = nullptr;
John McCall598b4402010-03-25 06:39:04 +00001161
Richard Smith41c79d92014-10-11 00:37:16 +00001162 if (!isFriend && getPreviousDeclForInstantiation(Pattern)) {
Nick Lewycky61478912010-11-08 23:29:42 +00001163 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001164 if (!Found.empty()) {
1165 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
Nick Lewycky61478912010-11-08 23:29:42 +00001166 if (PrevClassTemplate)
1167 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1168 }
1169 }
1170
John McCall598b4402010-03-25 06:39:04 +00001171 // If this isn't a friend, then it's a member template, in which
1172 // case we just want to build the instantiation in the
1173 // specialization. If it is a friend, we want to build it in
1174 // the appropriate context.
1175 DeclContext *DC = Owner;
1176 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001177 if (QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001178 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001179 SS.Adopt(QualifierLoc);
John McCall598b4402010-03-25 06:39:04 +00001180 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001181 if (!DC) return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001182 } else {
1183 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
1184 Pattern->getDeclContext(),
1185 TemplateArgs);
1186 }
1187
1188 // Look for a previous declaration of the template in the owning
1189 // context.
1190 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00001191 Sema::LookupOrdinaryName,
1192 SemaRef.forRedeclarationInCurContext());
John McCall598b4402010-03-25 06:39:04 +00001193 SemaRef.LookupQualifiedName(R, DC);
1194
1195 if (R.isSingleResult()) {
1196 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
1197 if (PrevClassTemplate)
1198 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1199 }
1200
Douglas Gregor14454802011-02-25 02:25:35 +00001201 if (!PrevClassTemplate && QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001202 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregorf5af3582010-03-31 23:17:41 +00001203 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregor14454802011-02-25 02:25:35 +00001204 << QualifierLoc.getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00001205 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001206 }
1207
Douglas Gregor01e09d92010-04-08 18:16:15 +00001208 bool AdoptedPreviousTemplateParams = false;
John McCall598b4402010-03-25 06:39:04 +00001209 if (PrevClassTemplate) {
Douglas Gregor01e09d92010-04-08 18:16:15 +00001210 bool Complain = true;
1211
1212 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
1213 // template for struct std::tr1::__detail::_Map_base, where the
1214 // template parameters of the friend declaration don't match the
1215 // template parameters of the original declaration. In this one
1216 // case, we don't complain about the ill-formed friend
1217 // declaration.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001218 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregor01e09d92010-04-08 18:16:15 +00001219 Pattern->getIdentifier()->isStr("_Map_base") &&
1220 DC->isNamespace() &&
1221 cast<NamespaceDecl>(DC)->getIdentifier() &&
1222 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
1223 DeclContext *DCParent = DC->getParent();
1224 if (DCParent->isNamespace() &&
1225 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
1226 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
Richard Trieuc771d5d2014-05-28 02:16:01 +00001227 if (cast<Decl>(DCParent)->isInStdNamespace())
Douglas Gregor01e09d92010-04-08 18:16:15 +00001228 Complain = false;
1229 }
1230 }
1231
John McCall598b4402010-03-25 06:39:04 +00001232 TemplateParameterList *PrevParams
1233 = PrevClassTemplate->getTemplateParameters();
1234
1235 // Make sure the parameter lists match.
1236 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001237 Complain,
Douglas Gregor01e09d92010-04-08 18:16:15 +00001238 Sema::TPL_TemplateMatch)) {
1239 if (Complain)
Craig Topperc3ec1492014-05-26 06:22:03 +00001240 return nullptr;
Douglas Gregor01e09d92010-04-08 18:16:15 +00001241
1242 AdoptedPreviousTemplateParams = true;
1243 InstParams = PrevParams;
1244 }
John McCall598b4402010-03-25 06:39:04 +00001245
1246 // Do some additional validation, then merge default arguments
1247 // from the existing declarations.
Douglas Gregor01e09d92010-04-08 18:16:15 +00001248 if (!AdoptedPreviousTemplateParams &&
1249 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall598b4402010-03-25 06:39:04 +00001250 Sema::TPC_ClassTemplate))
Craig Topperc3ec1492014-05-26 06:22:03 +00001251 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001252 }
1253 }
1254
John McCall87a44eb2009-08-20 01:44:21 +00001255 CXXRecordDecl *RecordInst
John McCall598b4402010-03-25 06:39:04 +00001256 = CXXRecordDecl::Create(SemaRef.Context, Pattern->getTagKind(), DC,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001257 Pattern->getLocStart(), Pattern->getLocation(),
1258 Pattern->getIdentifier(), PrevDecl,
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001259 /*DelayTypeCreation=*/true);
John McCall87a44eb2009-08-20 01:44:21 +00001260
Douglas Gregor14454802011-02-25 02:25:35 +00001261 if (QualifierLoc)
1262 RecordInst->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001263
John McCall87a44eb2009-08-20 01:44:21 +00001264 ClassTemplateDecl *Inst
John McCall598b4402010-03-25 06:39:04 +00001265 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
Vassil Vassilev352e4412017-01-12 09:16:26 +00001266 D->getIdentifier(), InstParams, RecordInst);
1267 assert(!(isFriend && Owner->isDependentContext()));
1268 Inst->setPreviousDecl(PrevClassTemplate);
1269
John McCall87a44eb2009-08-20 01:44:21 +00001270 RecordInst->setDescribedClassTemplate(Inst);
John McCall17762b82010-04-08 20:25:50 +00001271
John McCall598b4402010-03-25 06:39:04 +00001272 if (isFriend) {
John McCall17762b82010-04-08 20:25:50 +00001273 if (PrevClassTemplate)
1274 Inst->setAccess(PrevClassTemplate->getAccess());
1275 else
1276 Inst->setAccess(D->getAccess());
1277
Richard Smith64017682013-07-17 23:53:16 +00001278 Inst->setObjectOfFriendDecl();
John McCall598b4402010-03-25 06:39:04 +00001279 // TODO: do we want to track the instantiation progeny of this
1280 // friend target decl?
1281 } else {
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001282 Inst->setAccess(D->getAccess());
Nick Lewycky61478912010-11-08 23:29:42 +00001283 if (!PrevClassTemplate)
1284 Inst->setInstantiatedFromMemberTemplate(D);
John McCall598b4402010-03-25 06:39:04 +00001285 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001286
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001287 // Trigger creation of the type for the instantiation.
John McCalle78aac42010-03-10 03:28:59 +00001288 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor9961ce92010-07-08 18:37:38 +00001289 Inst->getInjectedClassNameSpecialization());
John McCall17762b82010-04-08 20:25:50 +00001290
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001291 // Finish handling of friends.
John McCall598b4402010-03-25 06:39:04 +00001292 if (isFriend) {
Richard Smith05afe5e2012-03-13 03:12:56 +00001293 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001294 Inst->setLexicalDeclContext(Owner);
1295 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001296 return Inst;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001297 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001298
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001299 if (D->isOutOfLine()) {
1300 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1301 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
1302 }
1303
John McCall87a44eb2009-08-20 01:44:21 +00001304 Owner->addDecl(Inst);
Douglas Gregor869853e2010-11-10 19:44:59 +00001305
1306 if (!PrevClassTemplate) {
1307 // Queue up any out-of-line partial specializations of this member
1308 // class template; the client will force their instantiation once
1309 // the enclosing class has been instantiated.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001310 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregor869853e2010-11-10 19:44:59 +00001311 D->getPartialSpecializations(PartialSpecs);
1312 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001313 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Douglas Gregor869853e2010-11-10 19:44:59 +00001314 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
1315 }
1316
John McCall87a44eb2009-08-20 01:44:21 +00001317 return Inst;
1318}
1319
Douglas Gregore704c9d2009-08-27 16:57:43 +00001320Decl *
Douglas Gregore4b05162009-10-07 17:21:34 +00001321TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
1322 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregor21610382009-10-29 00:04:11 +00001323 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001324
Douglas Gregor21610382009-10-29 00:04:11 +00001325 // Lookup the already-instantiated declaration in the instantiation
1326 // of the class template and return that.
1327 DeclContext::lookup_result Found
1328 = Owner->lookup(ClassTemplate->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001329 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00001330 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001331
Douglas Gregor21610382009-10-29 00:04:11 +00001332 ClassTemplateDecl *InstClassTemplate
David Blaikieff7d47a2012-12-19 00:45:41 +00001333 = dyn_cast<ClassTemplateDecl>(Found.front());
Douglas Gregor21610382009-10-29 00:04:11 +00001334 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00001335 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001336
Douglas Gregor869853e2010-11-10 19:44:59 +00001337 if (ClassTemplatePartialSpecializationDecl *Result
1338 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
1339 return Result;
1340
1341 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregore4b05162009-10-07 17:21:34 +00001342}
1343
Larisse Voufo39a1e502013-08-06 01:03:05 +00001344Decl *TemplateDeclInstantiator::VisitVarTemplateDecl(VarTemplateDecl *D) {
1345 assert(D->getTemplatedDecl()->isStaticDataMember() &&
1346 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001347
1348 // Create a local instantiation scope for this variable template, which
1349 // will contain the instantiations of the template parameters.
1350 LocalInstantiationScope Scope(SemaRef);
1351 TemplateParameterList *TempParams = D->getTemplateParameters();
1352 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1353 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001354 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001355
1356 VarDecl *Pattern = D->getTemplatedDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00001357 VarTemplateDecl *PrevVarTemplate = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001358
Richard Smith41c79d92014-10-11 00:37:16 +00001359 if (getPreviousDeclForInstantiation(Pattern)) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00001360 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
1361 if (!Found.empty())
1362 PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1363 }
1364
Richard Smith1c34fb72013-08-13 18:18:50 +00001365 VarDecl *VarInst =
Larisse Voufo72caf2b2013-08-22 00:59:14 +00001366 cast_or_null<VarDecl>(VisitVarDecl(Pattern,
1367 /*InstantiatingVarTemplate=*/true));
Nick Lewycky6ca07ca2015-08-10 21:54:08 +00001368 if (!VarInst) return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001369
1370 DeclContext *DC = Owner;
1371
Larisse Voufo39a1e502013-08-06 01:03:05 +00001372 VarTemplateDecl *Inst = VarTemplateDecl::Create(
1373 SemaRef.Context, DC, D->getLocation(), D->getIdentifier(), InstParams,
Richard Smithbeef3452014-01-16 23:39:20 +00001374 VarInst);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001375 VarInst->setDescribedVarTemplate(Inst);
Richard Smithbeef3452014-01-16 23:39:20 +00001376 Inst->setPreviousDecl(PrevVarTemplate);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001377
1378 Inst->setAccess(D->getAccess());
1379 if (!PrevVarTemplate)
1380 Inst->setInstantiatedFromMemberTemplate(D);
1381
1382 if (D->isOutOfLine()) {
1383 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1384 VarInst->setLexicalDeclContext(D->getLexicalDeclContext());
1385 }
1386
1387 Owner->addDecl(Inst);
1388
1389 if (!PrevVarTemplate) {
1390 // Queue up any out-of-line partial specializations of this member
1391 // variable template; the client will force their instantiation once
1392 // the enclosing class has been instantiated.
1393 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
1394 D->getPartialSpecializations(PartialSpecs);
1395 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001396 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00001397 OutOfLineVarPartialSpecs.push_back(
1398 std::make_pair(Inst, PartialSpecs[I]));
1399 }
1400
1401 return Inst;
1402}
1403
1404Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl(
1405 VarTemplatePartialSpecializationDecl *D) {
1406 assert(D->isStaticDataMember() &&
1407 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001408
1409 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
1410
1411 // Lookup the already-instantiated declaration and return that.
1412 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName());
1413 assert(!Found.empty() && "Instantiation found nothing?");
1414
1415 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1416 assert(InstVarTemplate && "Instantiation did not find a variable template?");
1417
1418 if (VarTemplatePartialSpecializationDecl *Result =
1419 InstVarTemplate->findPartialSpecInstantiatedFromMember(D))
1420 return Result;
1421
1422 return InstantiateVarTemplatePartialSpecialization(InstVarTemplate, D);
1423}
1424
Douglas Gregore4b05162009-10-07 17:21:34 +00001425Decl *
Douglas Gregore704c9d2009-08-27 16:57:43 +00001426TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor954de172009-10-31 17:21:17 +00001427 // Create a local instantiation scope for this function template, which
1428 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001429 // merged with the local instantiation scope for the function template
Douglas Gregor954de172009-10-31 17:21:17 +00001430 // itself.
John McCall19c1bfd2010-08-25 05:32:35 +00001431 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor14cf7522010-04-30 18:55:50 +00001432
Douglas Gregore704c9d2009-08-27 16:57:43 +00001433 TemplateParameterList *TempParams = D->getTemplateParameters();
1434 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001435 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001436 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001437
Craig Topperc3ec1492014-05-26 06:22:03 +00001438 FunctionDecl *Instantiated = nullptr;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001439 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001440 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001441 InstParams));
1442 else
1443 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001444 D->getTemplatedDecl(),
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001445 InstParams));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001446
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001447 if (!Instantiated)
Craig Topperc3ec1492014-05-26 06:22:03 +00001448 return nullptr;
Douglas Gregore704c9d2009-08-27 16:57:43 +00001449
Mike Stump11289f42009-09-09 15:08:12 +00001450 // Link the instantiated function template declaration to the function
Douglas Gregore704c9d2009-08-27 16:57:43 +00001451 // template from which it was instantiated.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001452 FunctionTemplateDecl *InstTemplate
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001453 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregorca027af2009-10-12 22:27:17 +00001454 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001455 assert(InstTemplate &&
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001456 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCall2079d0b2009-12-14 23:19:40 +00001457
John McCall30837102010-03-26 23:10:15 +00001458 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
1459
John McCall2079d0b2009-12-14 23:19:40 +00001460 // Link the instantiation back to the pattern *unless* this is a
1461 // non-definition friend declaration.
1462 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCall30837102010-03-26 23:10:15 +00001463 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001464 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001465
John McCall30837102010-03-26 23:10:15 +00001466 // Make declarations visible in the appropriate context.
John McCalla0a96892012-08-10 03:15:35 +00001467 if (!isFriend) {
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001468 Owner->addDecl(InstTemplate);
John McCalla0a96892012-08-10 03:15:35 +00001469 } else if (InstTemplate->getDeclContext()->isRecord() &&
Richard Smith41c79d92014-10-11 00:37:16 +00001470 !getPreviousDeclForInstantiation(D)) {
John McCalla0a96892012-08-10 03:15:35 +00001471 SemaRef.CheckFriendAccess(InstTemplate);
1472 }
John McCall30837102010-03-26 23:10:15 +00001473
Douglas Gregore704c9d2009-08-27 16:57:43 +00001474 return InstTemplate;
1475}
1476
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001477Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001478 CXXRecordDecl *PrevDecl = nullptr;
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001479 if (D->isInjectedClassName())
1480 PrevDecl = cast<CXXRecordDecl>(Owner);
Richard Smith41c79d92014-10-11 00:37:16 +00001481 else if (CXXRecordDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001482 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +00001483 PatternPrev,
John McCalle9f92a02009-12-15 22:29:06 +00001484 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001485 if (!Prev) return nullptr;
John McCalle9f92a02009-12-15 22:29:06 +00001486 PrevDecl = cast<CXXRecordDecl>(Prev);
1487 }
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001488
1489 CXXRecordDecl *Record
Mike Stump11289f42009-09-09 15:08:12 +00001490 = CXXRecordDecl::Create(SemaRef.Context, D->getTagKind(), Owner,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00001491 D->getLocStart(), D->getLocation(),
1492 D->getIdentifier(), PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00001493
1494 // Substitute the nested name specifier, if any.
1495 if (SubstQualifier(D, Record))
Craig Topperc3ec1492014-05-26 06:22:03 +00001496 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00001497
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001498 Record->setImplicit(D->isImplicit());
Eli Friedmanbda4ef12009-08-27 19:11:42 +00001499 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1500 // the tag decls introduced by friend class declarations don't have an access
1501 // specifier. Remove once this area of the code gets sorted out.
1502 if (D->getAccess() != AS_none)
1503 Record->setAccess(D->getAccess());
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001504 if (!D->isInjectedClassName())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001505 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001506
John McCallaa74a0c2009-08-28 07:59:38 +00001507 // If the original function was part of a friend declaration,
1508 // inherit its namespace state.
Richard Smith64017682013-07-17 23:53:16 +00001509 if (D->getFriendObjectKind())
1510 Record->setObjectOfFriendDecl();
John McCallaa74a0c2009-08-28 07:59:38 +00001511
Douglas Gregor04163182010-05-21 00:31:19 +00001512 // Make sure that anonymous structs and unions are recorded.
David Majnemer192d1792013-11-27 08:20:38 +00001513 if (D->isAnonymousStructOrUnion())
Douglas Gregor04163182010-05-21 00:31:19 +00001514 Record->setAnonymousStructOrUnion(true);
David Majnemer192d1792013-11-27 08:20:38 +00001515
1516 if (D->isLocalClass())
1517 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
Anders Carlsson5da84842009-09-01 04:26:58 +00001518
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001519 // Forward the mangling number from the template to the instantiated decl.
1520 SemaRef.Context.setManglingNumber(Record,
1521 SemaRef.Context.getManglingNumber(D));
1522
David Majnemer00350522015-08-31 18:48:39 +00001523 // See if the old tag was defined along with a declarator.
1524 // If it did, mark the new tag as being associated with that declarator.
1525 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1526 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Record, DD);
1527
1528 // See if the old tag was defined along with a typedef.
1529 // If it did, mark the new tag as being associated with that typedef.
1530 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1531 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Record, TND);
1532
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001533 Owner->addDecl(Record);
David Majnemer192d1792013-11-27 08:20:38 +00001534
1535 // DR1484 clarifies that the members of a local class are instantiated as part
1536 // of the instantiation of their enclosing entity.
1537 if (D->isCompleteDefinition() && D->isLocalClass()) {
Richard Smith4f3e3812017-05-20 01:36:41 +00001538 Sema::LocalEagerInstantiationScope LocalInstantiations(SemaRef);
Richard Smithb0b68012015-05-11 23:09:06 +00001539
David Majnemera64cb5a2014-02-22 00:17:46 +00001540 SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs,
1541 TSK_ImplicitInstantiation,
1542 /*Complain=*/true);
Richard Smithb0b68012015-05-11 23:09:06 +00001543
Richard Smithece47582017-01-04 23:45:01 +00001544 // For nested local classes, we will instantiate the members when we
1545 // reach the end of the outermost (non-nested) local class.
1546 if (!D->isCXXClassMember())
1547 SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs,
1548 TSK_ImplicitInstantiation);
Richard Smithb0b68012015-05-11 23:09:06 +00001549
1550 // This class may have local implicit instantiations that need to be
1551 // performed within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00001552 LocalInstantiations.perform();
David Majnemer192d1792013-11-27 08:20:38 +00001553 }
Nico Weber72889432014-09-06 01:25:55 +00001554
1555 SemaRef.DiagnoseUnusedNestedTypedefs(Record);
1556
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001557 return Record;
1558}
1559
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001560/// Adjust the given function type for an instantiation of the
Douglas Gregor89f593a2012-09-13 21:56:43 +00001561/// given declaration, to cope with modifications to the function's type that
1562/// aren't reflected in the type-source information.
1563///
1564/// \param D The declaration we're instantiating.
1565/// \param TInfo The already-instantiated type.
1566static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1567 FunctionDecl *D,
1568 TypeSourceInfo *TInfo) {
Douglas Gregor1af8ad42012-09-13 22:01:49 +00001569 const FunctionProtoType *OrigFunc
1570 = D->getType()->castAs<FunctionProtoType>();
1571 const FunctionProtoType *NewFunc
1572 = TInfo->getType()->castAs<FunctionProtoType>();
1573 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1574 return TInfo->getType();
1575
1576 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1577 NewEPI.ExtInfo = OrigFunc->getExtInfo();
Alp Toker314cc812014-01-25 16:55:45 +00001578 return Context.getFunctionType(NewFunc->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00001579 NewFunc->getParamTypes(), NewEPI);
Douglas Gregor89f593a2012-09-13 21:56:43 +00001580}
1581
John McCallaa74a0c2009-08-28 07:59:38 +00001582/// Normal class members are of more specific types and therefore
Richard Smith4fa145152017-12-21 19:43:39 +00001583/// don't make it here. This function serves three purposes:
John McCallaa74a0c2009-08-28 07:59:38 +00001584/// 1) instantiating function templates
1585/// 2) substituting friend declarations
Richard Smith4fa145152017-12-21 19:43:39 +00001586/// 3) substituting deduction guide declarations for nested class templates
Douglas Gregor33636e62009-12-24 20:56:24 +00001587Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001588 TemplateParameterList *TemplateParams) {
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001589 // Check whether there is already a function template specialization for
1590 // this declaration.
1591 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCall2f88d7d2010-03-27 05:57:59 +00001592 if (FunctionTemplate && !TemplateParams) {
Richard Smith47752e42013-05-03 23:46:09 +00001593 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001594
Craig Topperc3ec1492014-05-26 06:22:03 +00001595 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001596 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001597 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001598
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001599 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001600 if (SpecFunc)
1601 return SpecFunc;
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001602 }
Mike Stump11289f42009-09-09 15:08:12 +00001603
John McCall2f88d7d2010-03-27 05:57:59 +00001604 bool isFriend;
1605 if (FunctionTemplate)
1606 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1607 else
1608 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1609
Craig Topperc3ec1492014-05-26 06:22:03 +00001610 bool MergeWithParentScope = (TemplateParams != nullptr) ||
Douglas Gregor9f44d142010-05-21 21:25:08 +00001611 Owner->isFunctionOrMethod() ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001612 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001613 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001614 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00001615
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001616 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie4d142962011-11-10 05:42:04 +00001617 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001618 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001619 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001620 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCall58de3582009-08-14 02:03:10 +00001621
Douglas Gregor14454802011-02-25 02:25:35 +00001622 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1623 if (QualifierLoc) {
1624 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1625 TemplateArgs);
1626 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001627 return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001628 }
1629
John McCallce410662010-02-06 01:50:47 +00001630 // If we're instantiating a local function declaration, put the result
Richard Smith541b38b2013-09-20 01:15:31 +00001631 // in the enclosing namespace; otherwise we need to find the instantiated
1632 // context.
John McCallce410662010-02-06 01:50:47 +00001633 DeclContext *DC;
Richard Smith541b38b2013-09-20 01:15:31 +00001634 if (D->isLocalExternDecl()) {
John McCallce410662010-02-06 01:50:47 +00001635 DC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001636 SemaRef.adjustContextForLocalExternDecl(DC);
1637 } else if (isFriend && QualifierLoc) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001638 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001639 SS.Adopt(QualifierLoc);
John McCalle0b2ddb2010-03-26 04:53:08 +00001640 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001641 if (!DC) return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001642 } else {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001643 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001644 TemplateArgs);
John McCalle0b2ddb2010-03-26 04:53:08 +00001645 }
John McCallce410662010-02-06 01:50:47 +00001646
Richard Smith4fa145152017-12-21 19:43:39 +00001647 DeclarationNameInfo NameInfo
1648 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1649
Richard Smithbc491202017-02-17 20:05:37 +00001650 FunctionDecl *Function;
Faisal Vali81b756e2017-10-22 14:45:08 +00001651 if (auto *DGuide = dyn_cast<CXXDeductionGuideDecl>(D)) {
Richard Smithbc491202017-02-17 20:05:37 +00001652 Function = CXXDeductionGuideDecl::Create(
Faisal Vali81b756e2017-10-22 14:45:08 +00001653 SemaRef.Context, DC, D->getInnerLocStart(), DGuide->isExplicit(),
Richard Smith4fa145152017-12-21 19:43:39 +00001654 NameInfo, T, TInfo, D->getSourceRange().getEnd());
Faisal Vali81b756e2017-10-22 14:45:08 +00001655 if (DGuide->isCopyDeductionCandidate())
1656 cast<CXXDeductionGuideDecl>(Function)->setIsCopyDeductionCandidate();
Richard Smithc660c8f2018-03-16 13:36:56 +00001657 Function->setAccess(D->getAccess());
Faisal Vali81b756e2017-10-22 14:45:08 +00001658 } else {
Richard Smithbc491202017-02-17 20:05:37 +00001659 Function = FunctionDecl::Create(
Richard Smith4fa145152017-12-21 19:43:39 +00001660 SemaRef.Context, DC, D->getInnerLocStart(), NameInfo, T, TInfo,
Richard Smithbc491202017-02-17 20:05:37 +00001661 D->getCanonicalDecl()->getStorageClass(), D->isInlineSpecified(),
1662 D->hasWrittenPrototype(), D->isConstexpr());
1663 Function->setRangeEnd(D->getSourceRange().getEnd());
1664 }
John McCall3e11ebe2010-03-15 10:12:16 +00001665
Richard Smithf3814ad2013-01-25 00:08:28 +00001666 if (D->isInlined())
1667 Function->setImplicitlyInline();
1668
Douglas Gregor14454802011-02-25 02:25:35 +00001669 if (QualifierLoc)
1670 Function->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001671
Richard Smith541b38b2013-09-20 01:15:31 +00001672 if (D->isLocalExternDecl())
1673 Function->setLocalExternDecl();
1674
John McCall30837102010-03-26 23:10:15 +00001675 DeclContext *LexicalDC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001676 if (!isFriend && D->isOutOfLine() && !D->isLocalExternDecl()) {
John McCall30837102010-03-26 23:10:15 +00001677 assert(D->getDeclContext()->isFileContext());
1678 LexicalDC = D->getDeclContext();
1679 }
1680
1681 Function->setLexicalDeclContext(LexicalDC);
Mike Stump11289f42009-09-09 15:08:12 +00001682
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001683 // Attach the parameters
Reid Klecknera09e44c2013-07-31 21:00:18 +00001684 for (unsigned P = 0; P < Params.size(); ++P)
1685 if (Params[P])
1686 Params[P]->setOwningFunction(Function);
David Blaikie9c70e042011-09-21 18:16:56 +00001687 Function->setParams(Params);
John McCallaa74a0c2009-08-28 07:59:38 +00001688
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001689 if (TemplateParams) {
1690 // Our resulting instantiation is actually a function template, since we
1691 // are substituting only the outer template parameters. For example, given
1692 //
1693 // template<typename T>
1694 // struct X {
1695 // template<typename U> friend void f(T, U);
1696 // };
1697 //
1698 // X<int> x;
1699 //
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001700 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001701 // which means substituting int for T, but leaving "f" as a friend function
1702 // template.
1703 // Build the function template itself.
John McCalle0b2ddb2010-03-26 04:53:08 +00001704 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001705 Function->getLocation(),
1706 Function->getDeclName(),
1707 TemplateParams, Function);
1708 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCall30837102010-03-26 23:10:15 +00001709
1710 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalle0b2ddb2010-03-26 04:53:08 +00001711
1712 if (isFriend && D->isThisDeclarationADefinition()) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001713 FunctionTemplate->setInstantiatedFromMemberTemplate(
1714 D->getDescribedFunctionTemplate());
1715 }
Douglas Gregorffe14e32009-11-14 01:20:54 +00001716 } else if (FunctionTemplate) {
1717 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001718 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001719 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001720 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00001721 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00001722 /*InsertPos=*/nullptr);
Richard Smith152bcd22017-01-28 02:56:07 +00001723 } else if (isFriend && D->isThisDeclarationADefinition()) {
1724 // Do not connect the friend to the template unless it's actually a
1725 // definition. We don't want non-template functions to be marked as being
1726 // template instantiations.
John McCalle0b2ddb2010-03-26 04:53:08 +00001727 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCallaa74a0c2009-08-28 07:59:38 +00001728 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001729
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001730 if (InitFunctionInstantiation(Function, D))
1731 Function->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001732
John McCallb9c78482010-04-08 09:05:18 +00001733 bool isExplicitSpecialization = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001734
Richard Smith541b38b2013-09-20 01:15:31 +00001735 LookupResult Previous(
1736 SemaRef, Function->getDeclName(), SourceLocation(),
1737 D->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
1738 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00001739 D->isLocalExternDecl() ? Sema::ForExternalRedeclaration
1740 : SemaRef.forRedeclarationInCurContext());
John McCall1f82f242009-11-18 22:49:29 +00001741
John McCallb9c78482010-04-08 09:05:18 +00001742 if (DependentFunctionTemplateSpecializationInfo *Info
1743 = D->getDependentSpecializationInfo()) {
1744 assert(isFriend && "non-friend has dependent specialization info?");
1745
1746 // This needs to be set now for future sanity.
Richard Smith64017682013-07-17 23:53:16 +00001747 Function->setObjectOfFriendDecl();
John McCallb9c78482010-04-08 09:05:18 +00001748
1749 // Instantiate the explicit template arguments.
1750 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1751 Info->getRAngleLoc());
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001752 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1753 ExplicitArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00001754 return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001755
1756 // Map the candidate templates to their instantiations.
1757 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1758 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1759 Info->getTemplate(I),
1760 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001761 if (!Temp) return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001762
1763 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1764 }
1765
1766 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1767 &ExplicitArgs,
1768 Previous))
1769 Function->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001770
John McCallb9c78482010-04-08 09:05:18 +00001771 isExplicitSpecialization = true;
1772
1773 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001774 // Look only into the namespace where the friend would be declared to
1775 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001776 // as described in ActOnFriendFunctionDecl.
John McCall1f82f242009-11-18 22:49:29 +00001777 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001778
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001779 // In C++, the previous declaration we find might be a tag type
1780 // (class or enum). In this case, the new declaration will hide the
1781 // tag type. Note that this does does not apply if we're declaring a
1782 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00001783 if (Previous.isSingleTagDecl())
1784 Previous.clear();
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001785 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001786
Serge Pavlov25dbe1a2017-06-21 12:46:57 +00001787 if (isFriend)
1788 Function->setObjectOfFriendDecl();
1789
Craig Topperc3ec1492014-05-26 06:22:03 +00001790 SemaRef.CheckFunctionDeclaration(/*Scope*/ nullptr, Function, Previous,
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +00001791 isExplicitSpecialization);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001792
John McCallb9467b62010-04-24 01:30:58 +00001793 NamedDecl *PrincipalDecl = (TemplateParams
1794 ? cast<NamedDecl>(FunctionTemplate)
1795 : Function);
1796
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001797 // If the original function was part of a friend declaration,
1798 // inherit its namespace state and add it to the owner.
John McCalle0b2ddb2010-03-26 04:53:08 +00001799 if (isFriend) {
Serge Pavlova4ab1b12017-06-14 10:57:56 +00001800 PrincipalDecl->setObjectOfFriendDecl();
Richard Smith05afe5e2012-03-13 03:12:56 +00001801 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greif718d5152010-08-30 21:10:05 +00001802
Richard Smith91dfaac2014-02-03 02:37:59 +00001803 bool QueuedInstantiation = false;
Gabor Greif718d5152010-08-30 21:10:05 +00001804
Richard Smith91dfaac2014-02-03 02:37:59 +00001805 // C++11 [temp.friend]p4 (DR329):
1806 // When a function is defined in a friend function declaration in a class
1807 // template, the function is instantiated when the function is odr-used.
1808 // The same restrictions on multiple declarations and definitions that
1809 // apply to non-template function declarations and definitions also apply
1810 // to these implicit definitions.
1811 if (D->isThisDeclarationADefinition()) {
Serge Pavlove6e534c2018-03-01 07:04:11 +00001812 SemaRef.CheckForFunctionRedefinition(Function);
1813 if (!Function->isInvalidDecl()) {
1814 for (auto R : Function->redecls()) {
1815 if (R == Function)
1816 continue;
Richard Smith91dfaac2014-02-03 02:37:59 +00001817
Serge Pavlove6e534c2018-03-01 07:04:11 +00001818 // If some prior declaration of this function has been used, we need
1819 // to instantiate its definition.
1820 if (!QueuedInstantiation && R->isUsed(false)) {
1821 if (MemberSpecializationInfo *MSInfo =
1822 Function->getMemberSpecializationInfo()) {
1823 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1824 SourceLocation Loc = R->getLocation(); // FIXME
1825 MSInfo->setPointOfInstantiation(Loc);
1826 SemaRef.PendingLocalImplicitInstantiations.push_back(
1827 std::make_pair(Function, Loc));
1828 QueuedInstantiation = true;
1829 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001830 }
Richard Smith91dfaac2014-02-03 02:37:59 +00001831 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001832 }
1833 }
1834 }
Richard Smithf3597652017-05-10 00:01:13 +00001835
1836 // Check the template parameter list against the previous declaration. The
1837 // goal here is to pick up default arguments added since the friend was
1838 // declared; we know the template parameter lists match, since otherwise
1839 // we would not have picked this template as the previous declaration.
1840 if (TemplateParams && FunctionTemplate->getPreviousDecl()) {
1841 SemaRef.CheckTemplateParameterList(
1842 TemplateParams,
1843 FunctionTemplate->getPreviousDecl()->getTemplateParameters(),
1844 Function->isThisDeclarationADefinition()
1845 ? Sema::TPC_FriendFunctionTemplateDefinition
1846 : Sema::TPC_FriendFunctionTemplate);
1847 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001848 }
1849
Richard Smith541b38b2013-09-20 01:15:31 +00001850 if (Function->isLocalExternDecl() && !Function->getPreviousDecl())
1851 DC->makeDeclVisibleInContext(PrincipalDecl);
1852
John McCallb9467b62010-04-24 01:30:58 +00001853 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1854 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1855 PrincipalDecl->setNonMemberOperator();
1856
Alexis Hunt1fb4e762011-05-23 21:07:59 +00001857 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001858 return Function;
1859}
1860
Douglas Gregore704c9d2009-08-27 16:57:43 +00001861Decl *
1862TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichet00c7e6c2011-08-14 03:52:19 +00001863 TemplateParameterList *TemplateParams,
1864 bool IsClassScopeSpecialization) {
Douglas Gregor97628d62009-08-21 00:16:32 +00001865 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregore704c9d2009-08-27 16:57:43 +00001866 if (FunctionTemplate && !TemplateParams) {
Mike Stump11289f42009-09-09 15:08:12 +00001867 // We are creating a function template specialization from a function
1868 // template. Check whether there is already a function template
Douglas Gregore704c9d2009-08-27 16:57:43 +00001869 // specialization for this particular set of template arguments.
Richard Smith47752e42013-05-03 23:46:09 +00001870 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001871
Craig Topperc3ec1492014-05-26 06:22:03 +00001872 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001873 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001874 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001875
Douglas Gregor97628d62009-08-21 00:16:32 +00001876 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001877 if (SpecFunc)
1878 return SpecFunc;
Douglas Gregor97628d62009-08-21 00:16:32 +00001879 }
1880
John McCall2f88d7d2010-03-27 05:57:59 +00001881 bool isFriend;
1882 if (FunctionTemplate)
1883 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1884 else
1885 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1886
Craig Topperc3ec1492014-05-26 06:22:03 +00001887 bool MergeWithParentScope = (TemplateParams != nullptr) ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001888 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001889 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001890 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor37256522009-05-14 21:44:34 +00001891
John McCalld0e23ec2010-10-19 02:26:41 +00001892 // Instantiate enclosing template arguments for friends.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001893 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCalld0e23ec2010-10-19 02:26:41 +00001894 unsigned NumTempParamLists = 0;
1895 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
Benjamin Kramer9dc549b2015-08-04 14:46:06 +00001896 TempParamLists.resize(NumTempParamLists);
John McCalld0e23ec2010-10-19 02:26:41 +00001897 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1898 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1899 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1900 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001901 return nullptr;
John McCalld0e23ec2010-10-19 02:26:41 +00001902 TempParamLists[I] = InstParams;
1903 }
1904 }
1905
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001906 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramer1dd48bc2012-01-20 14:42:32 +00001907 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001908 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001909 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001910 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001911
Douglas Gregor14454802011-02-25 02:25:35 +00001912 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1913 if (QualifierLoc) {
1914 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCall2f88d7d2010-03-27 05:57:59 +00001915 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001916 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001917 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001918 }
1919
1920 DeclContext *DC = Owner;
1921 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001922 if (QualifierLoc) {
John McCall2f88d7d2010-03-27 05:57:59 +00001923 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001924 SS.Adopt(QualifierLoc);
John McCall2f88d7d2010-03-27 05:57:59 +00001925 DC = SemaRef.computeDeclContext(SS);
John McCall1a1b53e2010-10-19 05:01:53 +00001926
1927 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
Craig Topperc3ec1492014-05-26 06:22:03 +00001928 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001929 } else {
1930 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1931 D->getDeclContext(),
1932 TemplateArgs);
1933 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001934 if (!DC) return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001935 }
1936
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001937 // Build the instantiated method declaration.
John McCall2f88d7d2010-03-27 05:57:59 +00001938 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Craig Topperc3ec1492014-05-26 06:22:03 +00001939 CXXMethodDecl *Method = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001940
Abramo Bagnaradff19302011-03-08 08:55:46 +00001941 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001942 DeclarationNameInfo NameInfo
1943 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregore8394862009-08-21 22:43:28 +00001944 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001945 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001946 StartLoc, NameInfo, T, TInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001947 Constructor->isExplicit(),
Reid Kleckner0f764e52015-04-07 20:46:51 +00001948 Constructor->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001949 false, Constructor->isConstexpr());
Malcolm Parsons57ae8572016-11-28 11:11:34 +00001950 Method->setRangeEnd(Constructor->getLocEnd());
Douglas Gregore8394862009-08-21 22:43:28 +00001951 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregore8394862009-08-21 22:43:28 +00001952 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001953 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001954 Destructor->isInlineSpecified(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00001955 false);
Malcolm Parsons57ae8572016-11-28 11:11:34 +00001956 Method->setRangeEnd(Destructor->getLocEnd());
Douglas Gregor05155d82009-08-21 23:19:43 +00001957 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Douglas Gregor05155d82009-08-21 23:19:43 +00001958 Method = CXXConversionDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001959 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001960 Conversion->isInlineSpecified(),
Douglas Gregorf2f08062011-03-08 17:10:18 +00001961 Conversion->isExplicit(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001962 Conversion->isConstexpr(),
Richard Smitheb3c10c2011-10-01 02:31:28 +00001963 Conversion->getLocEnd());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001964 } else {
Rafael Espindola29cda592013-04-15 12:38:20 +00001965 StorageClass SC = D->isStatic() ? SC_Static : SC_None;
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001966 Method = CXXMethodDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001967 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001968 SC, D->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001969 D->isConstexpr(), D->getLocEnd());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001970 }
Douglas Gregor97628d62009-08-21 00:16:32 +00001971
Richard Smithf3814ad2013-01-25 00:08:28 +00001972 if (D->isInlined())
1973 Method->setImplicitlyInline();
1974
Douglas Gregor14454802011-02-25 02:25:35 +00001975 if (QualifierLoc)
1976 Method->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001977
Douglas Gregore704c9d2009-08-27 16:57:43 +00001978 if (TemplateParams) {
1979 // Our resulting instantiation is actually a function template, since we
1980 // are substituting only the outer template parameters. For example, given
Mike Stump11289f42009-09-09 15:08:12 +00001981 //
Douglas Gregore704c9d2009-08-27 16:57:43 +00001982 // template<typename T>
1983 // struct X {
1984 // template<typename U> void f(T, U);
1985 // };
1986 //
1987 // X<int> x;
1988 //
1989 // We are instantiating the member template "f" within X<int>, which means
1990 // substituting int for T, but leaving "f" as a member function template.
1991 // Build the function template itself.
1992 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1993 Method->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001994 Method->getDeclName(),
Douglas Gregore704c9d2009-08-27 16:57:43 +00001995 TemplateParams, Method);
John McCall2f88d7d2010-03-27 05:57:59 +00001996 if (isFriend) {
1997 FunctionTemplate->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00001998 FunctionTemplate->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00001999 } else if (D->isOutOfLine())
Mike Stump11289f42009-09-09 15:08:12 +00002000 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregore704c9d2009-08-27 16:57:43 +00002001 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002002 } else if (FunctionTemplate) {
2003 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00002004 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00002005 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00002006 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00002007 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00002008 /*InsertPos=*/nullptr);
John McCall2f88d7d2010-03-27 05:57:59 +00002009 } else if (!isFriend) {
Douglas Gregorffe14e32009-11-14 01:20:54 +00002010 // Record that this is an instantiation of a member function.
Douglas Gregord801b062009-10-07 23:56:10 +00002011 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002012 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002013
Mike Stump11289f42009-09-09 15:08:12 +00002014 // If we are instantiating a member function defined
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002015 // out-of-line, the instantiation will have the same lexical
2016 // context (which will be a namespace scope) as the template.
John McCall2f88d7d2010-03-27 05:57:59 +00002017 if (isFriend) {
John McCalld0e23ec2010-10-19 02:26:41 +00002018 if (NumTempParamLists)
Benjamin Kramer9cc210652015-08-05 09:40:49 +00002019 Method->setTemplateParameterListsInfo(
2020 SemaRef.Context,
2021 llvm::makeArrayRef(TempParamLists.data(), NumTempParamLists));
John McCalld0e23ec2010-10-19 02:26:41 +00002022
John McCall2f88d7d2010-03-27 05:57:59 +00002023 Method->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00002024 Method->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00002025 } else if (D->isOutOfLine())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002026 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00002027
Douglas Gregor21342092009-03-24 00:38:23 +00002028 // Attach the parameters
2029 for (unsigned P = 0; P < Params.size(); ++P)
2030 Params[P]->setOwningFunction(Method);
David Blaikie9c70e042011-09-21 18:16:56 +00002031 Method->setParams(Params);
Douglas Gregor21342092009-03-24 00:38:23 +00002032
2033 if (InitMethodInstantiation(Method, D))
2034 Method->setInvalidDecl();
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002035
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002036 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002037 Sema::ForExternalRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00002038
John McCall2f88d7d2010-03-27 05:57:59 +00002039 if (!FunctionTemplate || TemplateParams || isFriend) {
2040 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump11289f42009-09-09 15:08:12 +00002041
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002042 // In C++, the previous declaration we find might be a tag type
2043 // (class or enum). In this case, the new declaration will hide the
2044 // tag type. Note that this does does not apply if we're declaring a
2045 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00002046 if (Previous.isSingleTagDecl())
2047 Previous.clear();
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002048 }
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002049
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002050 if (!IsClassScopeSpecialization)
Craig Topperc3ec1492014-05-26 06:22:03 +00002051 SemaRef.CheckFunctionDeclaration(nullptr, Method, Previous, false);
Douglas Gregor05155d82009-08-21 23:19:43 +00002052
Douglas Gregor21920e372009-12-01 17:24:26 +00002053 if (D->isPure())
2054 SemaRef.CheckPureMethod(Method, SourceRange());
2055
John McCalla0a96892012-08-10 03:15:35 +00002056 // Propagate access. For a non-friend declaration, the access is
2057 // whatever we're propagating from. For a friend, it should be the
2058 // previous declaration we just found.
2059 if (isFriend && Method->getPreviousDecl())
2060 Method->setAccess(Method->getPreviousDecl()->getAccess());
2061 else
2062 Method->setAccess(D->getAccess());
2063 if (FunctionTemplate)
2064 FunctionTemplate->setAccess(Method->getAccess());
John McCall401982f2010-01-20 21:53:11 +00002065
Anders Carlsson7c812f52011-01-20 06:52:44 +00002066 SemaRef.CheckOverrideControl(Method);
2067
Eli Friedman41340732011-11-15 22:39:08 +00002068 // If a function is defined as defaulted or deleted, mark it as such now.
Richard Smith92f241f2012-12-08 02:53:02 +00002069 if (D->isExplicitlyDefaulted())
2070 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002071 if (D->isDeletedAsWritten())
Richard Smith92f241f2012-12-08 02:53:02 +00002072 SemaRef.SetDeclDeleted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002073
John McCalla0a96892012-08-10 03:15:35 +00002074 // If there's a function template, let our caller handle it.
John McCall2f88d7d2010-03-27 05:57:59 +00002075 if (FunctionTemplate) {
John McCalla0a96892012-08-10 03:15:35 +00002076 // do nothing
2077
2078 // Don't hide a (potentially) valid declaration with an invalid one.
John McCall2f88d7d2010-03-27 05:57:59 +00002079 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCalla0a96892012-08-10 03:15:35 +00002080 // do nothing
2081
2082 // Otherwise, check access to friends and make them visible.
2083 } else if (isFriend) {
2084 // We only need to re-check access for methods which we didn't
2085 // manage to match during parsing.
2086 if (!D->getPreviousDecl())
2087 SemaRef.CheckFriendAccess(Method);
2088
2089 Record->makeDeclVisibleInContext(Method);
2090
2091 // Otherwise, add the declaration. We don't need to do this for
2092 // class-scope specializations because we'll have matched them with
2093 // the appropriate template.
2094 } else if (!IsClassScopeSpecialization) {
2095 Owner->addDecl(Method);
John McCall2f88d7d2010-03-27 05:57:59 +00002096 }
Alexis Hunt1fb4e762011-05-23 21:07:59 +00002097
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002098 return Method;
2099}
2100
Douglas Gregor4044d992009-03-24 16:43:20 +00002101Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002102 return VisitCXXMethodDecl(D);
Douglas Gregor4044d992009-03-24 16:43:20 +00002103}
2104
Douglas Gregor654b07e2009-03-24 00:15:49 +00002105Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore8394862009-08-21 22:43:28 +00002106 return VisitCXXMethodDecl(D);
Douglas Gregor654b07e2009-03-24 00:15:49 +00002107}
2108
Douglas Gregor1880ba52009-03-25 00:34:44 +00002109Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor05155d82009-08-21 23:19:43 +00002110 return VisitCXXMethodDecl(D);
Douglas Gregor1880ba52009-03-25 00:34:44 +00002111}
2112
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002113Decl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
David Blaikie7a30dc52013-02-21 01:47:18 +00002114 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, None,
2115 /*ExpectParameterPack=*/ false);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002116}
2117
John McCall87a44eb2009-08-20 01:44:21 +00002118Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
2119 TemplateTypeParmDecl *D) {
2120 // TODO: don't always clone when decls are refcounted.
Chandler Carruth08836322011-05-01 00:51:33 +00002121 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump11289f42009-09-09 15:08:12 +00002122
Richard Smithb4f96252017-02-21 06:30:38 +00002123 TemplateTypeParmDecl *Inst = TemplateTypeParmDecl::Create(
2124 SemaRef.Context, Owner, D->getLocStart(), D->getLocation(),
2125 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(), D->getIndex(),
2126 D->getIdentifier(), D->wasDeclaredWithTypename(), D->isParameterPack());
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002127 Inst->setAccess(AS_public);
John McCall87a44eb2009-08-20 01:44:21 +00002128
Richard Smith52933792015-06-16 21:57:05 +00002129 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002130 TypeSourceInfo *InstantiatedDefaultArg =
2131 SemaRef.SubstType(D->getDefaultArgumentInfo(), TemplateArgs,
2132 D->getDefaultArgumentLoc(), D->getDeclName());
2133 if (InstantiatedDefaultArg)
Richard Smith1469b912015-06-10 00:29:03 +00002134 Inst->setDefaultArgument(InstantiatedDefaultArg);
David Majnemer89189202013-08-28 23:48:32 +00002135 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002136
2137 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002138 // scope.
2139 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002140
John McCall87a44eb2009-08-20 01:44:21 +00002141 return Inst;
2142}
2143
Douglas Gregor6b815c82009-10-23 23:25:44 +00002144Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
2145 NonTypeTemplateParmDecl *D) {
2146 // Substitute into the type of the non-type template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002147 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002148 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
2149 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002150 bool IsExpandedParameterPack = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002151 TypeSourceInfo *DI;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002152 QualType T;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002153 bool Invalid = false;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002154
2155 if (D->isExpandedParameterPack()) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002156 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002157 // expansion of types. Substitute into each of the expanded types.
2158 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
2159 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
2160 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Richard Smith15361a22016-12-28 06:27:18 +00002161 TypeSourceInfo *NewDI =
2162 SemaRef.SubstType(D->getExpansionTypeSourceInfo(I), TemplateArgs,
2163 D->getLocation(), D->getDeclName());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002164 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002165 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002166
Richard Smith15361a22016-12-28 06:27:18 +00002167 QualType NewT =
2168 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002169 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002170 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002171
2172 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002173 ExpandedParameterPackTypes.push_back(NewT);
2174 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002175
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002176 IsExpandedParameterPack = true;
2177 DI = D->getTypeSourceInfo();
2178 T = DI->getType();
Richard Smith1fde8ec2012-09-07 02:06:42 +00002179 } else if (D->isPackExpansion()) {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002180 // The non-type template parameter pack's type is a pack expansion of types.
2181 // Determine whether we need to expand this parameter pack into separate
2182 // types.
David Blaikie6adc78e2013-02-18 22:06:02 +00002183 PackExpansionTypeLoc Expansion = TL.castAs<PackExpansionTypeLoc>();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002184 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002185 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002186 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002187
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002188 // Determine whether the set of unexpanded parameter packs can and should
2189 // be expanded.
2190 bool Expand = true;
2191 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002192 Optional<unsigned> OrigNumExpansions
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002193 = Expansion.getTypePtr()->getNumExpansions();
David Blaikie05785d12013-02-20 22:23:23 +00002194 Optional<unsigned> NumExpansions = OrigNumExpansions;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002195 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
2196 Pattern.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00002197 Unexpanded,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002198 TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002199 Expand, RetainExpansion,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002200 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002201 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002202
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002203 if (Expand) {
2204 for (unsigned I = 0; I != *NumExpansions; ++I) {
2205 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2206 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002207 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002208 D->getDeclName());
2209 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002210 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002211
Richard Smith15361a22016-12-28 06:27:18 +00002212 QualType NewT =
2213 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002214 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002215 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002216
2217 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002218 ExpandedParameterPackTypes.push_back(NewT);
2219 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002220
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002221 // Note that we have an expanded parameter pack. The "type" of this
2222 // expanded parameter pack is the original expansion type, but callers
2223 // will end up using the expanded parameter pack types for type-checking.
2224 IsExpandedParameterPack = true;
2225 DI = D->getTypeSourceInfo();
2226 T = DI->getType();
2227 } else {
2228 // We cannot fully expand the pack expansion now, so substitute into the
2229 // pattern and create a new pack expansion type.
2230 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2231 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002232 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002233 D->getDeclName());
2234 if (!NewPattern)
Craig Topperc3ec1492014-05-26 06:22:03 +00002235 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002236
Richard Smith15361a22016-12-28 06:27:18 +00002237 SemaRef.CheckNonTypeTemplateParameterType(NewPattern, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002238 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
2239 NumExpansions);
2240 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002241 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002242
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002243 T = DI->getType();
2244 }
2245 } else {
2246 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002247 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002248 D->getLocation(), D->getDeclName());
2249 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002250 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002251
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002252 // Check that this type is acceptable for a non-type template parameter.
Richard Smith15361a22016-12-28 06:27:18 +00002253 T = SemaRef.CheckNonTypeTemplateParameterType(DI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002254 if (T.isNull()) {
2255 T = SemaRef.Context.IntTy;
2256 Invalid = true;
2257 }
Douglas Gregor6b815c82009-10-23 23:25:44 +00002258 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002259
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002260 NonTypeTemplateParmDecl *Param;
2261 if (IsExpandedParameterPack)
David Majnemerdfecf1a2016-07-06 04:19:16 +00002262 Param = NonTypeTemplateParmDecl::Create(
2263 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
Richard Smithb4f96252017-02-21 06:30:38 +00002264 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2265 D->getPosition(), D->getIdentifier(), T, DI, ExpandedParameterPackTypes,
David Majnemerdfecf1a2016-07-06 04:19:16 +00002266 ExpandedParameterPackTypesAsWritten);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002267 else
Richard Smithb4f96252017-02-21 06:30:38 +00002268 Param = NonTypeTemplateParmDecl::Create(
2269 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
2270 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2271 D->getPosition(), D->getIdentifier(), T, D->isParameterPack(), DI);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002272
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002273 Param->setAccess(AS_public);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002274 if (Invalid)
2275 Param->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002276
Richard Smith52933792015-06-16 21:57:05 +00002277 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
Faisal Valid143a0c2017-04-01 21:30:49 +00002278 EnterExpressionEvaluationContext ConstantEvaluated(
2279 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
David Majnemer89189202013-08-28 23:48:32 +00002280 ExprResult Value = SemaRef.SubstExpr(D->getDefaultArgument(), TemplateArgs);
2281 if (!Value.isInvalid())
Richard Smith1469b912015-06-10 00:29:03 +00002282 Param->setDefaultArgument(Value.get());
David Majnemer89189202013-08-28 23:48:32 +00002283 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002284
2285 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002286 // scope.
2287 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002288 return Param;
2289}
2290
Richard Smith1fde8ec2012-09-07 02:06:42 +00002291static void collectUnexpandedParameterPacks(
2292 Sema &S,
2293 TemplateParameterList *Params,
2294 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Davide Italiano18960b92015-07-02 19:20:11 +00002295 for (const auto &P : *Params) {
2296 if (P->isTemplateParameterPack())
Richard Smith1fde8ec2012-09-07 02:06:42 +00002297 continue;
Davide Italiano18960b92015-07-02 19:20:11 +00002298 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002299 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
2300 Unexpanded);
Davide Italiano18960b92015-07-02 19:20:11 +00002301 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002302 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
2303 Unexpanded);
2304 }
2305}
2306
Anders Carlsson4bd78752009-08-28 15:18:15 +00002307Decl *
Douglas Gregor38fee962009-11-11 16:58:32 +00002308TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
2309 TemplateTemplateParmDecl *D) {
2310 // Instantiate the template parameter list of the template template parameter.
2311 TemplateParameterList *TempParams = D->getTemplateParameters();
2312 TemplateParameterList *InstParams;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002313 SmallVector<TemplateParameterList*, 8> ExpandedParams;
2314
2315 bool IsExpandedParameterPack = false;
2316
2317 if (D->isExpandedParameterPack()) {
2318 // The template template parameter pack is an already-expanded pack
2319 // expansion of template parameters. Substitute into each of the expanded
2320 // parameters.
2321 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
2322 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2323 I != N; ++I) {
2324 LocalInstantiationScope Scope(SemaRef);
2325 TemplateParameterList *Expansion =
2326 SubstTemplateParams(D->getExpansionTemplateParameters(I));
2327 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002328 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002329 ExpandedParams.push_back(Expansion);
2330 }
2331
2332 IsExpandedParameterPack = true;
2333 InstParams = TempParams;
2334 } else if (D->isPackExpansion()) {
2335 // The template template parameter pack expands to a pack of template
2336 // template parameters. Determine whether we need to expand this parameter
2337 // pack into separate parameters.
2338 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2339 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
2340 Unexpanded);
2341
2342 // Determine whether the set of unexpanded parameter packs can and should
2343 // be expanded.
2344 bool Expand = true;
2345 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002346 Optional<unsigned> NumExpansions;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002347 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
2348 TempParams->getSourceRange(),
2349 Unexpanded,
2350 TemplateArgs,
2351 Expand, RetainExpansion,
2352 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002353 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002354
2355 if (Expand) {
2356 for (unsigned I = 0; I != *NumExpansions; ++I) {
2357 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2358 LocalInstantiationScope Scope(SemaRef);
2359 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
2360 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002361 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002362 ExpandedParams.push_back(Expansion);
2363 }
2364
2365 // Note that we have an expanded parameter pack. The "type" of this
2366 // expanded parameter pack is the original expansion type, but callers
2367 // will end up using the expanded parameter pack types for type-checking.
2368 IsExpandedParameterPack = true;
2369 InstParams = TempParams;
2370 } else {
2371 // We cannot fully expand the pack expansion now, so just substitute
2372 // into the pattern.
2373 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2374
2375 LocalInstantiationScope Scope(SemaRef);
2376 InstParams = SubstTemplateParams(TempParams);
2377 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002378 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002379 }
2380 } else {
Douglas Gregor38fee962009-11-11 16:58:32 +00002381 // Perform the actual substitution of template parameters within a new,
2382 // local instantiation scope.
John McCall19c1bfd2010-08-25 05:32:35 +00002383 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor38fee962009-11-11 16:58:32 +00002384 InstParams = SubstTemplateParams(TempParams);
2385 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002386 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002387 }
2388
Douglas Gregor38fee962009-11-11 16:58:32 +00002389 // Build the template template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00002390 TemplateTemplateParmDecl *Param;
2391 if (IsExpandedParameterPack)
Richard Smithb4f96252017-02-21 06:30:38 +00002392 Param = TemplateTemplateParmDecl::Create(
2393 SemaRef.Context, Owner, D->getLocation(),
2394 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2395 D->getPosition(), D->getIdentifier(), InstParams, ExpandedParams);
Richard Smith1fde8ec2012-09-07 02:06:42 +00002396 else
Richard Smithb4f96252017-02-21 06:30:38 +00002397 Param = TemplateTemplateParmDecl::Create(
2398 SemaRef.Context, Owner, D->getLocation(),
2399 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2400 D->getPosition(), D->isParameterPack(), D->getIdentifier(), InstParams);
Richard Smith52933792015-06-16 21:57:05 +00002401 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002402 NestedNameSpecifierLoc QualifierLoc =
2403 D->getDefaultArgument().getTemplateQualifierLoc();
2404 QualifierLoc =
2405 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgs);
2406 TemplateName TName = SemaRef.SubstTemplateName(
2407 QualifierLoc, D->getDefaultArgument().getArgument().getAsTemplate(),
2408 D->getDefaultArgument().getTemplateNameLoc(), TemplateArgs);
2409 if (!TName.isNull())
2410 Param->setDefaultArgument(
Richard Smith1469b912015-06-10 00:29:03 +00002411 SemaRef.Context,
David Majnemer89189202013-08-28 23:48:32 +00002412 TemplateArgumentLoc(TemplateArgument(TName),
2413 D->getDefaultArgument().getTemplateQualifierLoc(),
Richard Smith1469b912015-06-10 00:29:03 +00002414 D->getDefaultArgument().getTemplateNameLoc()));
David Majnemer89189202013-08-28 23:48:32 +00002415 }
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002416 Param->setAccess(AS_public);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002417
2418 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor38fee962009-11-11 16:58:32 +00002419 // scope.
2420 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002421
Douglas Gregor38fee962009-11-11 16:58:32 +00002422 return Param;
2423}
2424
Douglas Gregore0b28662009-11-17 06:07:40 +00002425Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregor12441b32011-02-25 16:33:46 +00002426 // Using directives are never dependent (and never contain any types or
2427 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002428
Douglas Gregore0b28662009-11-17 06:07:40 +00002429 UsingDirectiveDecl *Inst
2430 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002431 D->getNamespaceKeyLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00002432 D->getQualifierLoc(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002433 D->getIdentLocation(),
2434 D->getNominatedNamespace(),
Douglas Gregore0b28662009-11-17 06:07:40 +00002435 D->getCommonAncestor());
Abramo Bagnara8843f9f2012-09-05 09:55:10 +00002436
2437 // Add the using directive to its declaration context
2438 // only if this is not a function or method.
2439 if (!Owner->isFunctionOrMethod())
2440 Owner->addDecl(Inst);
2441
Douglas Gregore0b28662009-11-17 06:07:40 +00002442 return Inst;
2443}
2444
John McCallb96ec562009-12-04 22:46:56 +00002445Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorac2e4302010-09-29 17:58:28 +00002446
2447 // The nested name specifier may be dependent, for example
2448 // template <typename T> struct t {
2449 // struct s1 { T f1(); };
2450 // struct s2 : s1 { using s1::f1; };
2451 // };
2452 // template struct t<int>;
2453 // Here, in using s1::f1, s1 refers to t<T>::s1;
2454 // we need to substitute for t<int>::s1.
Douglas Gregor0499ab62011-02-25 15:54:31 +00002455 NestedNameSpecifierLoc QualifierLoc
2456 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
2457 TemplateArgs);
2458 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002459 return nullptr;
Douglas Gregorac2e4302010-09-29 17:58:28 +00002460
Richard Smith5179eb72016-06-28 19:03:57 +00002461 // For an inheriting constructor declaration, the name of the using
2462 // declaration is the name of a constructor in this class, not in the
2463 // base class.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002464 DeclarationNameInfo NameInfo = D->getNameInfo();
Richard Smith5179eb72016-06-28 19:03:57 +00002465 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
2466 if (auto *RD = dyn_cast<CXXRecordDecl>(SemaRef.CurContext))
2467 NameInfo.setName(SemaRef.Context.DeclarationNames.getCXXConstructorName(
2468 SemaRef.Context.getCanonicalType(SemaRef.Context.getRecordType(RD))));
John McCallb96ec562009-12-04 22:46:56 +00002469
John McCall84d87672009-12-10 09:41:52 +00002470 // We only need to do redeclaration lookups if we're in a class
2471 // scope (in fact, it's not really even possible in non-class
2472 // scopes).
2473 bool CheckRedeclaration = Owner->isRecord();
2474
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002475 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002476 Sema::ForVisibleRedeclaration);
John McCall84d87672009-12-10 09:41:52 +00002477
John McCallb96ec562009-12-04 22:46:56 +00002478 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002479 D->getUsingLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002480 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002481 NameInfo,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002482 D->hasTypename());
John McCallb96ec562009-12-04 22:46:56 +00002483
Douglas Gregor0499ab62011-02-25 15:54:31 +00002484 CXXScopeSpec SS;
2485 SS.Adopt(QualifierLoc);
John McCall84d87672009-12-10 09:41:52 +00002486 if (CheckRedeclaration) {
2487 Prev.setHideTags(false);
2488 SemaRef.LookupQualifiedName(Prev, Owner);
2489
2490 // Check for invalid redeclarations.
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002491 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLoc(),
2492 D->hasTypename(), SS,
John McCall84d87672009-12-10 09:41:52 +00002493 D->getLocation(), Prev))
2494 NewUD->setInvalidDecl();
2495
2496 }
2497
2498 if (!NewUD->isInvalidDecl() &&
Richard Smithd8a9e372016-12-18 21:39:37 +00002499 SemaRef.CheckUsingDeclQualifier(D->getUsingLoc(), D->hasTypename(),
2500 SS, NameInfo, D->getLocation()))
John McCallb96ec562009-12-04 22:46:56 +00002501 NewUD->setInvalidDecl();
John McCall84d87672009-12-10 09:41:52 +00002502
John McCallb96ec562009-12-04 22:46:56 +00002503 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
2504 NewUD->setAccess(D->getAccess());
2505 Owner->addDecl(NewUD);
2506
John McCall84d87672009-12-10 09:41:52 +00002507 // Don't process the shadow decls for an invalid decl.
2508 if (NewUD->isInvalidDecl())
2509 return NewUD;
2510
Richard Smith5179eb72016-06-28 19:03:57 +00002511 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
Richard Smith09d5b3a2014-05-01 00:35:04 +00002512 SemaRef.CheckInheritingConstructorUsingDecl(NewUD);
Richard Smith23d55872012-04-02 01:30:27 +00002513
John McCalla1d85502009-12-22 22:26:37 +00002514 bool isFunctionScope = Owner->isFunctionOrMethod();
2515
John McCall84d87672009-12-10 09:41:52 +00002516 // Process the shadow decls.
Aaron Ballman91cdc282014-03-13 18:07:29 +00002517 for (auto *Shadow : D->shadows()) {
Richard Smith5179eb72016-06-28 19:03:57 +00002518 // FIXME: UsingShadowDecl doesn't preserve its immediate target, so
2519 // reconstruct it in the case where it matters.
2520 NamedDecl *OldTarget = Shadow->getTargetDecl();
2521 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow))
2522 if (auto *BaseShadow = CUSD->getNominatedBaseClassShadowDecl())
2523 OldTarget = BaseShadow;
2524
John McCall84d87672009-12-10 09:41:52 +00002525 NamedDecl *InstTarget =
Richard Smithfd8634a2013-10-23 02:17:46 +00002526 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
Richard Smith5179eb72016-06-28 19:03:57 +00002527 Shadow->getLocation(), OldTarget, TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00002528 if (!InstTarget)
Craig Topperc3ec1492014-05-26 06:22:03 +00002529 return nullptr;
John McCall84d87672009-12-10 09:41:52 +00002530
Craig Topperc3ec1492014-05-26 06:22:03 +00002531 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00002532 if (CheckRedeclaration) {
2533 if (SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev, PrevDecl))
2534 continue;
Richard Smith41c79d92014-10-11 00:37:16 +00002535 } else if (UsingShadowDecl *OldPrev =
2536 getPreviousDeclForInstantiation(Shadow)) {
Richard Smithfd8634a2013-10-23 02:17:46 +00002537 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl(
2538 Shadow->getLocation(), OldPrev, TemplateArgs));
2539 }
John McCall84d87672009-12-10 09:41:52 +00002540
Richard Smithfd8634a2013-10-23 02:17:46 +00002541 UsingShadowDecl *InstShadow =
Craig Topperc3ec1492014-05-26 06:22:03 +00002542 SemaRef.BuildUsingShadowDecl(/*Scope*/nullptr, NewUD, InstTarget,
2543 PrevDecl);
John McCall84d87672009-12-10 09:41:52 +00002544 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCalla1d85502009-12-22 22:26:37 +00002545
2546 if (isFunctionScope)
2547 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall84d87672009-12-10 09:41:52 +00002548 }
John McCallb96ec562009-12-04 22:46:56 +00002549
2550 return NewUD;
2551}
2552
2553Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall84d87672009-12-10 09:41:52 +00002554 // Ignore these; we handle them in bulk when processing the UsingDecl.
Craig Topperc3ec1492014-05-26 06:22:03 +00002555 return nullptr;
John McCallb96ec562009-12-04 22:46:56 +00002556}
2557
Richard Smith5179eb72016-06-28 19:03:57 +00002558Decl *TemplateDeclInstantiator::VisitConstructorUsingShadowDecl(
2559 ConstructorUsingShadowDecl *D) {
2560 // Ignore these; we handle them in bulk when processing the UsingDecl.
2561 return nullptr;
2562}
2563
Richard Smith151c4562016-12-20 21:35:28 +00002564template <typename T>
2565Decl *TemplateDeclInstantiator::instantiateUnresolvedUsingDecl(
2566 T *D, bool InstantiatingPackElement) {
2567 // If this is a pack expansion, expand it now.
2568 if (D->isPackExpansion() && !InstantiatingPackElement) {
2569 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2570 SemaRef.collectUnexpandedParameterPacks(D->getQualifierLoc(), Unexpanded);
2571 SemaRef.collectUnexpandedParameterPacks(D->getNameInfo(), Unexpanded);
2572
2573 // Determine whether the set of unexpanded parameter packs can and should
2574 // be expanded.
2575 bool Expand = true;
2576 bool RetainExpansion = false;
2577 Optional<unsigned> NumExpansions;
2578 if (SemaRef.CheckParameterPacksForExpansion(
2579 D->getEllipsisLoc(), D->getSourceRange(), Unexpanded, TemplateArgs,
2580 Expand, RetainExpansion, NumExpansions))
2581 return nullptr;
2582
2583 // This declaration cannot appear within a function template signature,
2584 // so we can't have a partial argument list for a parameter pack.
2585 assert(!RetainExpansion &&
2586 "should never need to retain an expansion for UsingPackDecl");
2587
2588 if (!Expand) {
2589 // We cannot fully expand the pack expansion now, so substitute into the
2590 // pattern and create a new pack expansion.
2591 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2592 return instantiateUnresolvedUsingDecl(D, true);
2593 }
2594
2595 // Within a function, we don't have any normal way to check for conflicts
2596 // between shadow declarations from different using declarations in the
2597 // same pack expansion, but this is always ill-formed because all expansions
2598 // must produce (conflicting) enumerators.
2599 //
2600 // Sadly we can't just reject this in the template definition because it
2601 // could be valid if the pack is empty or has exactly one expansion.
2602 if (D->getDeclContext()->isFunctionOrMethod() && *NumExpansions > 1) {
2603 SemaRef.Diag(D->getEllipsisLoc(),
2604 diag::err_using_decl_redeclaration_expansion);
2605 return nullptr;
2606 }
2607
2608 // Instantiate the slices of this pack and build a UsingPackDecl.
2609 SmallVector<NamedDecl*, 8> Expansions;
2610 for (unsigned I = 0; I != *NumExpansions; ++I) {
2611 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2612 Decl *Slice = instantiateUnresolvedUsingDecl(D, true);
2613 if (!Slice)
2614 return nullptr;
2615 // Note that we can still get unresolved using declarations here, if we
2616 // had arguments for all packs but the pattern also contained other
2617 // template arguments (this only happens during partial substitution, eg
2618 // into the body of a generic lambda in a function template).
2619 Expansions.push_back(cast<NamedDecl>(Slice));
2620 }
2621
2622 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2623 if (isDeclWithinFunction(D))
2624 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2625 return NewD;
2626 }
2627
2628 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D);
2629 SourceLocation TypenameLoc = TD ? TD->getTypenameLoc() : SourceLocation();
2630
Douglas Gregor0499ab62011-02-25 15:54:31 +00002631 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002632 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002633 TemplateArgs);
2634 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002635 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002636
Anders Carlsson4bd78752009-08-28 15:18:15 +00002637 CXXScopeSpec SS;
Douglas Gregor0499ab62011-02-25 15:54:31 +00002638 SS.Adopt(QualifierLoc);
Mike Stump11289f42009-09-09 15:08:12 +00002639
Daniel Jasper9949ead2016-12-19 10:09:25 +00002640 DeclarationNameInfo NameInfo
2641 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2642
Richard Smith151c4562016-12-20 21:35:28 +00002643 // Produce a pack expansion only if we're not instantiating a particular
2644 // slice of a pack expansion.
2645 bool InstantiatingSlice = D->getEllipsisLoc().isValid() &&
2646 SemaRef.ArgumentPackSubstitutionIndex != -1;
2647 SourceLocation EllipsisLoc =
2648 InstantiatingSlice ? SourceLocation() : D->getEllipsisLoc();
2649
2650 NamedDecl *UD = SemaRef.BuildUsingDeclaration(
2651 /*Scope*/ nullptr, D->getAccess(), D->getUsingLoc(),
2652 /*HasTypename*/ TD, TypenameLoc, SS, NameInfo, EllipsisLoc, nullptr,
2653 /*IsInstantiation*/ true);
Daniel Jasper9949ead2016-12-19 10:09:25 +00002654 if (UD)
2655 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
2656
2657 return UD;
Richard Smith22a250c2016-12-19 04:08:53 +00002658}
2659
Richard Smith151c4562016-12-20 21:35:28 +00002660Decl *TemplateDeclInstantiator::VisitUnresolvedUsingTypenameDecl(
2661 UnresolvedUsingTypenameDecl *D) {
2662 return instantiateUnresolvedUsingDecl(D);
2663}
2664
2665Decl *TemplateDeclInstantiator::VisitUnresolvedUsingValueDecl(
2666 UnresolvedUsingValueDecl *D) {
2667 return instantiateUnresolvedUsingDecl(D);
2668}
2669
2670Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) {
2671 SmallVector<NamedDecl*, 8> Expansions;
2672 for (auto *UD : D->expansions()) {
George Burgess IV00f70bd2018-03-01 05:43:23 +00002673 if (NamedDecl *NewUD =
Richard Smith151c4562016-12-20 21:35:28 +00002674 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs))
George Burgess IV00f70bd2018-03-01 05:43:23 +00002675 Expansions.push_back(NewUD);
Richard Smith151c4562016-12-20 21:35:28 +00002676 else
2677 return nullptr;
2678 }
2679
2680 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2681 if (isDeclWithinFunction(D))
2682 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2683 return NewD;
2684}
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002685
2686Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
2687 ClassScopeFunctionSpecializationDecl *Decl) {
2688 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nick Lewycky0b727732015-01-02 01:33:12 +00002689 CXXMethodDecl *NewFD =
2690 cast_or_null<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, nullptr, true));
2691 if (!NewFD)
2692 return nullptr;
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002693
2694 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002695 Sema::ForExternalRedeclaration);
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002696
Nico Weber7b5a7162012-06-25 17:21:05 +00002697 TemplateArgumentListInfo TemplateArgs;
Craig Topperc3ec1492014-05-26 06:22:03 +00002698 TemplateArgumentListInfo *TemplateArgsPtr = nullptr;
Nico Weber7b5a7162012-06-25 17:21:05 +00002699 if (Decl->hasExplicitTemplateArgs()) {
2700 TemplateArgs = Decl->templateArgs();
2701 TemplateArgsPtr = &TemplateArgs;
2702 }
2703
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002704 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber7b5a7162012-06-25 17:21:05 +00002705 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
2706 Previous)) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002707 NewFD->setInvalidDecl();
2708 return NewFD;
2709 }
2710
2711 // Associate the specialization with the pattern.
2712 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2713 assert(Specialization && "Class scope Specialization is null");
2714 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2715
Richard Smithc660c8f2018-03-16 13:36:56 +00002716 // FIXME: If this is a definition, check for redefinition errors!
2717
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002718 return NewFD;
2719}
2720
Alexey Bataeva769e072013-03-22 06:34:35 +00002721Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl(
2722 OMPThreadPrivateDecl *D) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002723 SmallVector<Expr *, 5> Vars;
Aaron Ballman2205d2a2014-03-14 15:55:35 +00002724 for (auto *I : D->varlists()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002725 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
Alexey Bataeva769e072013-03-22 06:34:35 +00002726 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr");
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002727 Vars.push_back(Var);
Alexey Bataeva769e072013-03-22 06:34:35 +00002728 }
2729
2730 OMPThreadPrivateDecl *TD =
2731 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars);
2732
Alexey Bataevd3db6ac2014-03-07 09:46:29 +00002733 TD->setAccess(AS_public);
2734 Owner->addDecl(TD);
2735
Alexey Bataeva769e072013-03-22 06:34:35 +00002736 return TD;
2737}
2738
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002739Decl *TemplateDeclInstantiator::VisitOMPDeclareReductionDecl(
2740 OMPDeclareReductionDecl *D) {
2741 // Instantiate type and check if it is allowed.
2742 QualType SubstReductionType = SemaRef.ActOnOpenMPDeclareReductionType(
2743 D->getLocation(),
2744 ParsedType::make(SemaRef.SubstType(D->getType(), TemplateArgs,
2745 D->getLocation(), DeclarationName())));
2746 if (SubstReductionType.isNull())
2747 return nullptr;
2748 bool IsCorrect = !SubstReductionType.isNull();
2749 // Create instantiated copy.
2750 std::pair<QualType, SourceLocation> ReductionTypes[] = {
2751 std::make_pair(SubstReductionType, D->getLocation())};
2752 auto *PrevDeclInScope = D->getPrevDeclInScope();
2753 if (PrevDeclInScope && !PrevDeclInScope->isInvalidDecl()) {
2754 PrevDeclInScope = cast<OMPDeclareReductionDecl>(
2755 SemaRef.CurrentInstantiationScope->findInstantiationOf(PrevDeclInScope)
2756 ->get<Decl *>());
2757 }
2758 auto DRD = SemaRef.ActOnOpenMPDeclareReductionDirectiveStart(
2759 /*S=*/nullptr, Owner, D->getDeclName(), ReductionTypes, D->getAccess(),
2760 PrevDeclInScope);
2761 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl());
2762 if (isDeclWithinFunction(NewDRD))
2763 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewDRD);
2764 Expr *SubstCombiner = nullptr;
2765 Expr *SubstInitializer = nullptr;
2766 // Combiners instantiation sequence.
2767 if (D->getCombiner()) {
2768 SemaRef.ActOnOpenMPDeclareReductionCombinerStart(
2769 /*S=*/nullptr, NewDRD);
2770 const char *Names[] = {"omp_in", "omp_out"};
2771 for (auto &Name : Names) {
2772 DeclarationName DN(&SemaRef.Context.Idents.get(Name));
2773 auto OldLookup = D->lookup(DN);
2774 auto Lookup = NewDRD->lookup(DN);
2775 if (!OldLookup.empty() && !Lookup.empty()) {
2776 assert(Lookup.size() == 1 && OldLookup.size() == 1);
2777 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldLookup.front(),
2778 Lookup.front());
2779 }
2780 }
2781 SubstCombiner = SemaRef.SubstExpr(D->getCombiner(), TemplateArgs).get();
2782 SemaRef.ActOnOpenMPDeclareReductionCombinerEnd(NewDRD, SubstCombiner);
2783 // Initializers instantiation sequence.
2784 if (D->getInitializer()) {
Alexey Bataev070f43a2017-09-06 14:49:58 +00002785 VarDecl *OmpPrivParm =
2786 SemaRef.ActOnOpenMPDeclareReductionInitializerStart(
2787 /*S=*/nullptr, NewDRD);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002788 const char *Names[] = {"omp_orig", "omp_priv"};
2789 for (auto &Name : Names) {
2790 DeclarationName DN(&SemaRef.Context.Idents.get(Name));
2791 auto OldLookup = D->lookup(DN);
2792 auto Lookup = NewDRD->lookup(DN);
2793 if (!OldLookup.empty() && !Lookup.empty()) {
2794 assert(Lookup.size() == 1 && OldLookup.size() == 1);
Alexey Bataev070f43a2017-09-06 14:49:58 +00002795 auto *OldVD = cast<VarDecl>(OldLookup.front());
2796 auto *NewVD = cast<VarDecl>(Lookup.front());
2797 SemaRef.InstantiateVariableInitializer(NewVD, OldVD, TemplateArgs);
2798 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldVD, NewVD);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002799 }
2800 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002801 if (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit) {
2802 SubstInitializer =
2803 SemaRef.SubstExpr(D->getInitializer(), TemplateArgs).get();
2804 } else {
2805 IsCorrect = IsCorrect && OmpPrivParm->hasInit();
2806 }
2807 SemaRef.ActOnOpenMPDeclareReductionInitializerEnd(
2808 NewDRD, SubstInitializer, OmpPrivParm);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002809 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002810 IsCorrect =
2811 IsCorrect && SubstCombiner &&
2812 (!D->getInitializer() ||
2813 (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit &&
2814 SubstInitializer) ||
2815 (D->getInitializerKind() != OMPDeclareReductionDecl::CallInit &&
2816 !SubstInitializer && !SubstInitializer));
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002817 } else
2818 IsCorrect = false;
2819
2820 (void)SemaRef.ActOnOpenMPDeclareReductionDirectiveEnd(/*S=*/nullptr, DRD,
2821 IsCorrect);
2822
2823 return NewDRD;
2824}
2825
Alexey Bataev4244be22016-02-11 05:35:55 +00002826Decl *TemplateDeclInstantiator::VisitOMPCapturedExprDecl(
2827 OMPCapturedExprDecl * /*D*/) {
Alexey Bataev90c228f2016-02-08 09:29:13 +00002828 llvm_unreachable("Should not be met in templates");
2829}
2830
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002831Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002832 return VisitFunctionDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002833}
2834
Richard Smithbc491202017-02-17 20:05:37 +00002835Decl *
2836TemplateDeclInstantiator::VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *D) {
Richard Smith2600c632018-05-30 20:24:10 +00002837 Decl *Inst = VisitFunctionDecl(D, nullptr);
2838 if (Inst && !D->getDescribedFunctionTemplate())
2839 Owner->addDecl(Inst);
2840 return Inst;
Richard Smithbc491202017-02-17 20:05:37 +00002841}
2842
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002843Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002844 return VisitCXXMethodDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002845}
2846
2847Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) {
2848 llvm_unreachable("There are only CXXRecordDecls in C++");
2849}
2850
2851Decl *
2852TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl(
2853 ClassTemplateSpecializationDecl *D) {
Richard Smith8a0dde72013-12-14 01:04:22 +00002854 // As a MS extension, we permit class-scope explicit specialization
2855 // of member class templates.
2856 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
2857 assert(ClassTemplate->getDeclContext()->isRecord() &&
2858 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2859 "can only instantiate an explicit specialization "
2860 "for a member class template");
2861
2862 // Lookup the already-instantiated declaration in the instantiation
2863 // of the class template. FIXME: Diagnose or assert if this fails?
2864 DeclContext::lookup_result Found
2865 = Owner->lookup(ClassTemplate->getDeclName());
2866 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00002867 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002868 ClassTemplateDecl *InstClassTemplate
2869 = dyn_cast<ClassTemplateDecl>(Found.front());
2870 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00002871 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002872
2873 // Substitute into the template arguments of the class template explicit
2874 // specialization.
2875 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc().
2876 castAs<TemplateSpecializationTypeLoc>();
2877 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(),
2878 Loc.getRAngleLoc());
2879 SmallVector<TemplateArgumentLoc, 4> ArgLocs;
2880 for (unsigned I = 0; I != Loc.getNumArgs(); ++I)
2881 ArgLocs.push_back(Loc.getArgLoc(I));
2882 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(),
2883 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002884 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002885
2886 // Check that the template argument list is well-formed for this
2887 // class template.
2888 SmallVector<TemplateArgument, 4> Converted;
2889 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate,
2890 D->getLocation(),
2891 InstTemplateArgs,
2892 false,
2893 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002894 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002895
2896 // Figure out where to insert this class template explicit specialization
2897 // in the member template's set of class template explicit specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002898 void *InsertPos = nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002899 ClassTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00002900 InstClassTemplate->findSpecialization(Converted, InsertPos);
Richard Smith8a0dde72013-12-14 01:04:22 +00002901
2902 // Check whether we've already seen a conflicting instantiation of this
2903 // declaration (for instance, if there was a prior implicit instantiation).
2904 bool Ignored;
2905 if (PrevDecl &&
2906 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(),
2907 D->getSpecializationKind(),
2908 PrevDecl,
2909 PrevDecl->getSpecializationKind(),
2910 PrevDecl->getPointOfInstantiation(),
2911 Ignored))
Craig Topperc3ec1492014-05-26 06:22:03 +00002912 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002913
2914 // If PrevDecl was a definition and D is also a definition, diagnose.
2915 // This happens in cases like:
2916 //
2917 // template<typename T, typename U>
2918 // struct Outer {
2919 // template<typename X> struct Inner;
2920 // template<> struct Inner<T> {};
2921 // template<> struct Inner<U> {};
2922 // };
2923 //
2924 // Outer<int, int> outer; // error: the explicit specializations of Inner
2925 // // have the same signature.
2926 if (PrevDecl && PrevDecl->getDefinition() &&
2927 D->isThisDeclarationADefinition()) {
2928 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl;
2929 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(),
2930 diag::note_previous_definition);
Craig Topperc3ec1492014-05-26 06:22:03 +00002931 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002932 }
2933
2934 // Create the class template partial specialization declaration.
2935 ClassTemplateSpecializationDecl *InstD
2936 = ClassTemplateSpecializationDecl::Create(SemaRef.Context,
2937 D->getTagKind(),
2938 Owner,
2939 D->getLocStart(),
2940 D->getLocation(),
2941 InstClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00002942 Converted,
Richard Smith8a0dde72013-12-14 01:04:22 +00002943 PrevDecl);
2944
2945 // Add this partial specialization to the set of class template partial
2946 // specializations.
2947 if (!PrevDecl)
2948 InstClassTemplate->AddSpecialization(InstD, InsertPos);
2949
2950 // Substitute the nested name specifier, if any.
2951 if (SubstQualifier(D, InstD))
Craig Topperc3ec1492014-05-26 06:22:03 +00002952 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002953
2954 // Build the canonical type that describes the converted template
2955 // arguments of the class template explicit specialization.
2956 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00002957 TemplateName(InstClassTemplate), Converted,
Richard Smith8a0dde72013-12-14 01:04:22 +00002958 SemaRef.Context.getRecordType(InstD));
2959
2960 // Build the fully-sugared type for this class template
2961 // specialization as the user wrote in the specialization
2962 // itself. This means that we'll pretty-print the type retrieved
2963 // from the specialization's declaration the way that the user
2964 // actually wrote the specialization, rather than formatting the
2965 // name based on the "canonical" representation used to store the
2966 // template arguments in the specialization.
2967 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
2968 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs,
2969 CanonType);
2970
2971 InstD->setAccess(D->getAccess());
2972 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
2973 InstD->setSpecializationKind(D->getSpecializationKind());
2974 InstD->setTypeAsWritten(WrittenTy);
2975 InstD->setExternLoc(D->getExternLoc());
2976 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc());
2977
2978 Owner->addDecl(InstD);
2979
2980 // Instantiate the members of the class-scope explicit specialization eagerly.
2981 // We don't have support for lazy instantiation of an explicit specialization
2982 // yet, and MSVC eagerly instantiates in this case.
2983 if (D->isThisDeclarationADefinition() &&
2984 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs,
2985 TSK_ImplicitInstantiation,
2986 /*Complain=*/true))
Craig Topperc3ec1492014-05-26 06:22:03 +00002987 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002988
2989 return InstD;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002990}
2991
Larisse Voufo39a1e502013-08-06 01:03:05 +00002992Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
2993 VarTemplateSpecializationDecl *D) {
2994
2995 TemplateArgumentListInfo VarTemplateArgsInfo;
2996 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
2997 assert(VarTemplate &&
2998 "A template specialization without specialized template?");
2999
3000 // Substitute the current template arguments.
3001 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo();
3002 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc());
3003 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc());
3004
3005 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(),
3006 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003007 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003008
3009 // Check that the template argument list is well-formed for this template.
3010 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003011 if (SemaRef.CheckTemplateArgumentList(
3012 VarTemplate, VarTemplate->getLocStart(),
3013 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00003014 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003015 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003016
3017 // Find the variable template specialization declaration that
3018 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00003019 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003020 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00003021 Converted, InsertPos))
Larisse Voufo39a1e502013-08-06 01:03:05 +00003022 // If we already have a variable template specialization, return it.
3023 return VarSpec;
3024
3025 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos,
3026 VarTemplateArgsInfo, Converted);
3027}
3028
3029Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
3030 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos,
3031 const TemplateArgumentListInfo &TemplateArgsInfo,
Craig Topper00bbdcf2014-06-28 23:22:23 +00003032 ArrayRef<TemplateArgument> Converted) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003033
Larisse Voufo39a1e502013-08-06 01:03:05 +00003034 // Do substitution on the type of the declaration
3035 TypeSourceInfo *DI =
3036 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
3037 D->getTypeSpecStartLoc(), D->getDeclName());
3038 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003039 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003040
3041 if (DI->getType()->isFunctionType()) {
3042 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
3043 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003044 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003045 }
3046
3047 // Build the instantiated declaration
3048 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create(
3049 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
David Majnemer8b622692016-07-03 21:17:51 +00003050 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003051 Var->setTemplateArgsInfo(TemplateArgsInfo);
Richard Smith8809a0c2013-09-27 20:14:12 +00003052 if (InsertPos)
3053 VarTemplate->AddSpecialization(Var, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003054
3055 // Substitute the nested name specifier, if any.
3056 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +00003057 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003058
3059 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs,
Richard Smith541b38b2013-09-20 01:15:31 +00003060 Owner, StartingScope);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003061
3062 return Var;
3063}
3064
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003065Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) {
3066 llvm_unreachable("@defs is not supported in Objective-C++");
3067}
3068
3069Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
3070 // FIXME: We need to be able to instantiate FriendTemplateDecls.
3071 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
3072 DiagnosticsEngine::Error,
3073 "cannot instantiate %0 yet");
3074 SemaRef.Diag(D->getLocation(), DiagID)
3075 << D->getDeclKindName();
3076
Craig Topperc3ec1492014-05-26 06:22:03 +00003077 return nullptr;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003078}
3079
3080Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) {
3081 llvm_unreachable("Unexpected decl");
3082}
3083
John McCall76d824f2009-08-25 22:02:44 +00003084Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregor01afeef2009-08-28 20:31:08 +00003085 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord002c7b2009-05-11 23:53:27 +00003086 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor71ad4772010-02-16 19:28:15 +00003087 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00003088 return nullptr;
Douglas Gregor71ad4772010-02-16 19:28:15 +00003089
Douglas Gregord7e7a512009-03-17 21:15:40 +00003090 return Instantiator.Visit(D);
3091}
3092
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003093/// Instantiates a nested template parameter list in the current
John McCall87a44eb2009-08-20 01:44:21 +00003094/// instantiation context.
3095///
3096/// \param L The parameter list to instantiate
3097///
3098/// \returns NULL if there was an error
3099TemplateParameterList *
John McCall76d824f2009-08-25 22:02:44 +00003100TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCall87a44eb2009-08-20 01:44:21 +00003101 // Get errors for all the parameters before bailing out.
3102 bool Invalid = false;
3103
3104 unsigned N = L->size();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003105 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCall87a44eb2009-08-20 01:44:21 +00003106 ParamVector Params;
3107 Params.reserve(N);
Davide Italiano18960b92015-07-02 19:20:11 +00003108 for (auto &P : *L) {
3109 NamedDecl *D = cast_or_null<NamedDecl>(Visit(P));
John McCall87a44eb2009-08-20 01:44:21 +00003110 Params.push_back(D);
Douglas Gregore62e6a02009-11-11 19:13:48 +00003111 Invalid = Invalid || !D || D->isInvalidDecl();
John McCall87a44eb2009-08-20 01:44:21 +00003112 }
3113
3114 // Clean up if we had an error.
Douglas Gregorb412e172010-07-25 18:17:45 +00003115 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +00003116 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00003117
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003118 // Note: we substitute into associated constraints later
3119 Expr *const UninstantiatedRequiresClause = L->getRequiresClause();
3120
John McCall87a44eb2009-08-20 01:44:21 +00003121 TemplateParameterList *InstL
3122 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
David Majnemer902f8c62015-12-27 07:16:27 +00003123 L->getLAngleLoc(), Params,
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003124 L->getRAngleLoc(),
3125 UninstantiatedRequiresClause);
John McCall87a44eb2009-08-20 01:44:21 +00003126 return InstL;
Mike Stump11289f42009-09-09 15:08:12 +00003127}
John McCall87a44eb2009-08-20 01:44:21 +00003128
Richard Smith5d331022018-03-08 01:07:33 +00003129TemplateParameterList *
3130Sema::SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner,
3131 const MultiLevelTemplateArgumentList &TemplateArgs) {
3132 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
3133 return Instantiator.SubstTemplateParams(Params);
3134}
3135
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003136/// Instantiate the declaration of a class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003137/// specialization.
3138///
3139/// \param ClassTemplate the (instantiated) class template that is partially
3140// specialized by the instantiation of \p PartialSpec.
3141///
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003142/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003143/// specialization that we are instantiating.
3144///
Douglas Gregor869853e2010-11-10 19:44:59 +00003145/// \returns The instantiated partial specialization, if successful; otherwise,
3146/// NULL to indicate an error.
3147ClassTemplatePartialSpecializationDecl *
Douglas Gregor21610382009-10-29 00:04:11 +00003148TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
3149 ClassTemplateDecl *ClassTemplate,
3150 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor954de172009-10-31 17:21:17 +00003151 // Create a local instantiation scope for this class template partial
3152 // specialization, which will contain the instantiations of the template
3153 // parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00003154 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003155
Douglas Gregor21610382009-10-29 00:04:11 +00003156 // Substitute into the template parameters of the class template partial
3157 // specialization.
3158 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3159 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3160 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003161 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003162
Douglas Gregor21610382009-10-29 00:04:11 +00003163 // Substitute into the template arguments of the class template partial
3164 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003165 const ASTTemplateArgumentListInfo *TemplArgInfo
3166 = PartialSpec->getTemplateArgsAsWritten();
3167 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3168 TemplArgInfo->RAngleLoc);
3169 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3170 TemplArgInfo->NumTemplateArgs,
Douglas Gregor0f3feb42010-12-22 21:19:48 +00003171 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003172 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003173
Douglas Gregor21610382009-10-29 00:04:11 +00003174 // Check that the template argument list is well-formed for this
3175 // class template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003176 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003177 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregor21610382009-10-29 00:04:11 +00003178 PartialSpec->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003179 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003180 false,
3181 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003182 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003183
Richard Smith57aae072016-12-28 02:37:25 +00003184 // Check these arguments are valid for a template partial specialization.
3185 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3186 PartialSpec->getLocation(), ClassTemplate, InstTemplateArgs.size(),
3187 Converted))
3188 return nullptr;
3189
Douglas Gregor21610382009-10-29 00:04:11 +00003190 // Figure out where to insert this class template partial specialization
3191 // in the member template's set of class template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003192 void *InsertPos = nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003193 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00003194 = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003195
Douglas Gregor21610382009-10-29 00:04:11 +00003196 // Build the canonical type that describes the converted template
3197 // arguments of the class template partial specialization.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003198 QualType CanonType
Douglas Gregor21610382009-10-29 00:04:11 +00003199 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
David Majnemer6fbeee32016-07-07 04:43:07 +00003200 Converted);
Douglas Gregor21610382009-10-29 00:04:11 +00003201
3202 // Build the fully-sugared type for this class template
3203 // specialization as the user wrote in the specialization
3204 // itself. This means that we'll pretty-print the type retrieved
3205 // from the specialization's declaration the way that the user
3206 // actually wrote the specialization, rather than formatting the
3207 // name based on the "canonical" representation used to store the
3208 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00003209 TypeSourceInfo *WrittenTy
3210 = SemaRef.Context.getTemplateSpecializationTypeInfo(
3211 TemplateName(ClassTemplate),
3212 PartialSpec->getLocation(),
John McCall6b51f282009-11-23 01:53:49 +00003213 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003214 CanonType);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003215
Douglas Gregor21610382009-10-29 00:04:11 +00003216 if (PrevDecl) {
3217 // We've already seen a partial specialization with the same template
3218 // parameters and template arguments. This can happen, for example, when
3219 // substituting the outer template arguments ends up causing two
3220 // class template partial specializations of a member class template
3221 // to have identical forms, e.g.,
3222 //
3223 // template<typename T, typename U>
3224 // struct Outer {
3225 // template<typename X, typename Y> struct Inner;
3226 // template<typename Y> struct Inner<T, Y>;
3227 // template<typename Y> struct Inner<U, Y>;
3228 // };
3229 //
3230 // Outer<int, int> outer; // error: the partial specializations of Inner
3231 // // have the same signature.
3232 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregor869853e2010-11-10 19:44:59 +00003233 << WrittenTy->getType();
Douglas Gregor21610382009-10-29 00:04:11 +00003234 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
3235 << SemaRef.Context.getTypeDeclType(PrevDecl);
Craig Topperc3ec1492014-05-26 06:22:03 +00003236 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003237 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003238
3239
Douglas Gregor21610382009-10-29 00:04:11 +00003240 // Create the class template partial specialization declaration.
3241 ClassTemplatePartialSpecializationDecl *InstPartialSpec
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003242 = ClassTemplatePartialSpecializationDecl::Create(SemaRef.Context,
Douglas Gregore9029562010-05-06 00:28:52 +00003243 PartialSpec->getTagKind(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003244 Owner,
Abramo Bagnara29c2d462011-03-09 14:09:51 +00003245 PartialSpec->getLocStart(),
3246 PartialSpec->getLocation(),
Douglas Gregor21610382009-10-29 00:04:11 +00003247 InstParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003248 ClassTemplate,
David Majnemer8b622692016-07-03 21:17:51 +00003249 Converted,
John McCall6b51f282009-11-23 01:53:49 +00003250 InstTemplateArgs,
John McCalle78aac42010-03-10 03:28:59 +00003251 CanonType,
Craig Topperc3ec1492014-05-26 06:22:03 +00003252 nullptr);
John McCall3e11ebe2010-03-15 10:12:16 +00003253 // Substitute the nested name specifier, if any.
3254 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003255 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00003256
Douglas Gregor21610382009-10-29 00:04:11 +00003257 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor6044d692010-05-19 17:02:24 +00003258 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003259
Richard Smith57aae072016-12-28 02:37:25 +00003260 // Check the completed partial specialization.
3261 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3262
Douglas Gregor21610382009-10-29 00:04:11 +00003263 // Add this partial specialization to the set of class template partial
3264 // specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003265 ClassTemplate->AddPartialSpecialization(InstPartialSpec,
3266 /*InsertPos=*/nullptr);
Douglas Gregor869853e2010-11-10 19:44:59 +00003267 return InstPartialSpec;
Douglas Gregor21610382009-10-29 00:04:11 +00003268}
3269
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003270/// Instantiate the declaration of a variable template partial
Larisse Voufo39a1e502013-08-06 01:03:05 +00003271/// specialization.
3272///
3273/// \param VarTemplate the (instantiated) variable template that is partially
3274/// specialized by the instantiation of \p PartialSpec.
3275///
3276/// \param PartialSpec the (uninstantiated) variable template partial
3277/// specialization that we are instantiating.
3278///
3279/// \returns The instantiated partial specialization, if successful; otherwise,
3280/// NULL to indicate an error.
3281VarTemplatePartialSpecializationDecl *
3282TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization(
3283 VarTemplateDecl *VarTemplate,
3284 VarTemplatePartialSpecializationDecl *PartialSpec) {
3285 // Create a local instantiation scope for this variable template partial
3286 // specialization, which will contain the instantiations of the template
3287 // parameters.
3288 LocalInstantiationScope Scope(SemaRef);
3289
3290 // Substitute into the template parameters of the variable template partial
3291 // specialization.
3292 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3293 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3294 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003295 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003296
3297 // Substitute into the template arguments of the variable template partial
3298 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003299 const ASTTemplateArgumentListInfo *TemplArgInfo
3300 = PartialSpec->getTemplateArgsAsWritten();
3301 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3302 TemplArgInfo->RAngleLoc);
3303 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3304 TemplArgInfo->NumTemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00003305 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003306 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003307
3308 // Check that the template argument list is well-formed for this
3309 // class template.
3310 SmallVector<TemplateArgument, 4> Converted;
3311 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(),
3312 InstTemplateArgs, false, Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003313 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003314
Richard Smith57aae072016-12-28 02:37:25 +00003315 // Check these arguments are valid for a template partial specialization.
3316 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3317 PartialSpec->getLocation(), VarTemplate, InstTemplateArgs.size(),
3318 Converted))
3319 return nullptr;
3320
Larisse Voufo39a1e502013-08-06 01:03:05 +00003321 // Figure out where to insert this variable template partial specialization
3322 // in the member template's set of variable template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003323 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003324 VarTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00003325 VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003326
3327 // Build the canonical type that describes the converted template
3328 // arguments of the variable template partial specialization.
3329 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00003330 TemplateName(VarTemplate), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003331
3332 // Build the fully-sugared type for this variable template
3333 // specialization as the user wrote in the specialization
3334 // itself. This means that we'll pretty-print the type retrieved
3335 // from the specialization's declaration the way that the user
3336 // actually wrote the specialization, rather than formatting the
3337 // name based on the "canonical" representation used to store the
3338 // template arguments in the specialization.
3339 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
3340 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs,
3341 CanonType);
3342
3343 if (PrevDecl) {
3344 // We've already seen a partial specialization with the same template
3345 // parameters and template arguments. This can happen, for example, when
3346 // substituting the outer template arguments ends up causing two
3347 // variable template partial specializations of a member variable template
3348 // to have identical forms, e.g.,
3349 //
3350 // template<typename T, typename U>
3351 // struct Outer {
3352 // template<typename X, typename Y> pair<X,Y> p;
3353 // template<typename Y> pair<T, Y> p;
3354 // template<typename Y> pair<U, Y> p;
3355 // };
3356 //
3357 // Outer<int, int> outer; // error: the partial specializations of Inner
3358 // // have the same signature.
3359 SemaRef.Diag(PartialSpec->getLocation(),
3360 diag::err_var_partial_spec_redeclared)
3361 << WrittenTy->getType();
3362 SemaRef.Diag(PrevDecl->getLocation(),
3363 diag::note_var_prev_partial_spec_here);
Craig Topperc3ec1492014-05-26 06:22:03 +00003364 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003365 }
3366
3367 // Do substitution on the type of the declaration
3368 TypeSourceInfo *DI = SemaRef.SubstType(
3369 PartialSpec->getTypeSourceInfo(), TemplateArgs,
3370 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName());
3371 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003372 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003373
3374 if (DI->getType()->isFunctionType()) {
3375 SemaRef.Diag(PartialSpec->getLocation(),
3376 diag::err_variable_instantiates_to_function)
3377 << PartialSpec->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003378 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003379 }
3380
3381 // Create the variable template partial specialization declaration.
3382 VarTemplatePartialSpecializationDecl *InstPartialSpec =
3383 VarTemplatePartialSpecializationDecl::Create(
3384 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(),
3385 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(),
David Majnemer8b622692016-07-03 21:17:51 +00003386 DI, PartialSpec->getStorageClass(), Converted, InstTemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003387
3388 // Substitute the nested name specifier, if any.
3389 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003390 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003391
3392 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
3393 InstPartialSpec->setTypeAsWritten(WrittenTy);
3394
Richard Smith57aae072016-12-28 02:37:25 +00003395 // Check the completed partial specialization.
3396 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3397
Larisse Voufo39a1e502013-08-06 01:03:05 +00003398 // Add this partial specialization to the set of variable template partial
3399 // specializations. The instantiation of the initializer is not necessary.
Craig Topperc3ec1492014-05-26 06:22:03 +00003400 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003401
Larisse Voufo4cda4612013-08-22 00:28:27 +00003402 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00003403 LateAttrs, Owner, StartingScope);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003404
Larisse Voufo39a1e502013-08-06 01:03:05 +00003405 return InstPartialSpec;
3406}
3407
John McCall58f10c32010-03-11 09:03:00 +00003408TypeSourceInfo*
John McCall76d824f2009-08-25 22:02:44 +00003409TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003410 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall58f10c32010-03-11 09:03:00 +00003411 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
3412 assert(OldTInfo && "substituting function without type source info");
3413 assert(Params.empty() && "parameter vector is non-empty at start");
Craig Topperc3ec1492014-05-26 06:22:03 +00003414
3415 CXXRecordDecl *ThisContext = nullptr;
Douglas Gregor3024f072012-04-16 07:05:22 +00003416 unsigned ThisTypeQuals = 0;
3417 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Richard Smithc3d2ebb2013-06-07 02:33:37 +00003418 ThisContext = cast<CXXRecordDecl>(Owner);
Douglas Gregor3024f072012-04-16 07:05:22 +00003419 ThisTypeQuals = Method->getTypeQualifiers();
3420 }
3421
John McCallb29f78f2010-04-09 17:38:44 +00003422 TypeSourceInfo *NewTInfo
3423 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
3424 D->getTypeSpecStartLoc(),
Douglas Gregor3024f072012-04-16 07:05:22 +00003425 D->getDeclName(),
3426 ThisContext, ThisTypeQuals);
John McCall58f10c32010-03-11 09:03:00 +00003427 if (!NewTInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00003428 return nullptr;
Douglas Gregor21342092009-03-24 00:38:23 +00003429
Reid Klecknera09e44c2013-07-31 21:00:18 +00003430 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
3431 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) {
3432 if (NewTInfo != OldTInfo) {
3433 // Get parameters from the new type info.
Abramo Bagnaraa44c9022010-12-13 22:27:55 +00003434 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +00003435 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>();
Richard Smith198223b2012-07-18 01:29:05 +00003436 unsigned NewIdx = 0;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003437 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams();
Douglas Gregorf3010112011-01-07 16:43:16 +00003438 OldIdx != NumOldParams; ++OldIdx) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003439 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx);
Richard Smith198223b2012-07-18 01:29:05 +00003440 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
3441
David Blaikie05785d12013-02-20 22:23:23 +00003442 Optional<unsigned> NumArgumentsInExpansion;
Richard Smith198223b2012-07-18 01:29:05 +00003443 if (OldParam->isParameterPack())
3444 NumArgumentsInExpansion =
3445 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
3446 TemplateArgs);
3447 if (!NumArgumentsInExpansion) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003448 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregorf3010112011-01-07 16:43:16 +00003449 // instantiated to a (still-dependent) parameter pack.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003450 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Douglas Gregorf3010112011-01-07 16:43:16 +00003451 Params.push_back(NewParam);
Richard Smith198223b2012-07-18 01:29:05 +00003452 Scope->InstantiatedLocal(OldParam, NewParam);
3453 } else {
3454 // Parameter pack expansion: make the instantiation an argument pack.
3455 Scope->MakeInstantiatedLocalArgPack(OldParam);
3456 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003457 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Richard Smith198223b2012-07-18 01:29:05 +00003458 Params.push_back(NewParam);
3459 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
3460 }
Douglas Gregorf3010112011-01-07 16:43:16 +00003461 }
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003462 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003463 } else {
3464 // The function type itself was not dependent and therefore no
3465 // substitution occurred. However, we still need to instantiate
3466 // the function parameters themselves.
3467 const FunctionProtoType *OldProto =
3468 cast<FunctionProtoType>(OldProtoLoc.getType());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003469 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end;
3470 ++i) {
3471 ParmVarDecl *OldParam = OldProtoLoc.getParam(i);
Reid Klecknera09e44c2013-07-31 21:00:18 +00003472 if (!OldParam) {
3473 Params.push_back(SemaRef.BuildParmVarDeclForTypedef(
Alp Toker9cacbab2014-01-20 20:26:09 +00003474 D, D->getLocation(), OldProto->getParamType(i)));
Reid Klecknera09e44c2013-07-31 21:00:18 +00003475 continue;
3476 }
3477
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003478 ParmVarDecl *Parm =
Reid Klecknera09e44c2013-07-31 21:00:18 +00003479 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam));
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003480 if (!Parm)
Craig Topperc3ec1492014-05-26 06:22:03 +00003481 return nullptr;
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003482 Params.push_back(Parm);
3483 }
Douglas Gregor940bca72010-04-12 07:48:19 +00003484 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003485 } else {
3486 // If the type of this function, after ignoring parentheses, is not
3487 // *directly* a function type, then we're instantiating a function that
3488 // was declared via a typedef or with attributes, e.g.,
3489 //
3490 // typedef int functype(int, int);
3491 // functype func;
3492 // int __cdecl meth(int, int);
3493 //
3494 // In this case, we'll just go instantiate the ParmVarDecls that we
3495 // synthesized in the method declaration.
3496 SmallVector<QualType, 4> ParamTypes;
John McCallc8e321d2016-03-01 02:09:25 +00003497 Sema::ExtParameterInfoBuilder ExtParamInfos;
David Majnemer59f77922016-06-24 04:05:48 +00003498 if (SemaRef.SubstParmTypes(D->getLocation(), D->parameters(), nullptr,
3499 TemplateArgs, ParamTypes, &Params,
3500 ExtParamInfos))
Craig Topperc3ec1492014-05-26 06:22:03 +00003501 return nullptr;
Douglas Gregor940bca72010-04-12 07:48:19 +00003502 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003503
John McCall58f10c32010-03-11 09:03:00 +00003504 return NewTInfo;
Douglas Gregor21342092009-03-24 00:38:23 +00003505}
3506
Richard Smithf623c962012-04-17 00:58:00 +00003507/// Introduce the instantiated function parameters into the local
3508/// instantiation scope, and set the parameter names to those used
3509/// in the template.
Richard Smith2e321552014-11-12 02:00:47 +00003510static bool addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
Richard Smithf623c962012-04-17 00:58:00 +00003511 const FunctionDecl *PatternDecl,
3512 LocalInstantiationScope &Scope,
3513 const MultiLevelTemplateArgumentList &TemplateArgs) {
3514 unsigned FParamIdx = 0;
3515 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
3516 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
3517 if (!PatternParam->isParameterPack()) {
3518 // Simple case: not a parameter pack.
3519 assert(FParamIdx < Function->getNumParams());
3520 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Richard Smith2e321552014-11-12 02:00:47 +00003521 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smithaae40582014-03-13 00:28:45 +00003522 // If the parameter's type is not dependent, update it to match the type
3523 // in the pattern. They can differ in top-level cv-qualifiers, and we want
3524 // the pattern's type here. If the type is dependent, they can't differ,
Richard Smith2e321552014-11-12 02:00:47 +00003525 // per core issue 1668. Substitute into the type from the pattern, in case
3526 // it's instantiation-dependent.
Richard Smithaae40582014-03-13 00:28:45 +00003527 // FIXME: Updating the type to work around this is at best fragile.
Richard Smith2e321552014-11-12 02:00:47 +00003528 if (!PatternDecl->getType()->isDependentType()) {
3529 QualType T = S.SubstType(PatternParam->getType(), TemplateArgs,
3530 FunctionParam->getLocation(),
3531 FunctionParam->getDeclName());
3532 if (T.isNull())
3533 return true;
3534 FunctionParam->setType(T);
3535 }
Richard Smithaae40582014-03-13 00:28:45 +00003536
Richard Smithf623c962012-04-17 00:58:00 +00003537 Scope.InstantiatedLocal(PatternParam, FunctionParam);
3538 ++FParamIdx;
3539 continue;
3540 }
3541
3542 // Expand the parameter pack.
3543 Scope.MakeInstantiatedLocalArgPack(PatternParam);
David Blaikie05785d12013-02-20 22:23:23 +00003544 Optional<unsigned> NumArgumentsInExpansion
Richard Smithf623c962012-04-17 00:58:00 +00003545 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith198223b2012-07-18 01:29:05 +00003546 assert(NumArgumentsInExpansion &&
3547 "should only be called when all template arguments are known");
Richard Smith2e321552014-11-12 02:00:47 +00003548 QualType PatternType =
3549 PatternParam->getType()->castAs<PackExpansionType>()->getPattern();
Richard Smith198223b2012-07-18 01:29:05 +00003550 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithf623c962012-04-17 00:58:00 +00003551 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003552 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smith2e321552014-11-12 02:00:47 +00003553 if (!PatternDecl->getType()->isDependentType()) {
3554 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, Arg);
3555 QualType T = S.SubstType(PatternType, TemplateArgs,
3556 FunctionParam->getLocation(),
3557 FunctionParam->getDeclName());
3558 if (T.isNull())
3559 return true;
3560 FunctionParam->setType(T);
3561 }
3562
Richard Smithf623c962012-04-17 00:58:00 +00003563 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
3564 ++FParamIdx;
3565 }
3566 }
Richard Smithf623c962012-04-17 00:58:00 +00003567
Richard Smith2e321552014-11-12 02:00:47 +00003568 return false;
Richard Smithf623c962012-04-17 00:58:00 +00003569}
3570
3571void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
3572 FunctionDecl *Decl) {
Richard Smithd3729422012-04-19 00:08:28 +00003573 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
3574 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithf623c962012-04-17 00:58:00 +00003575 return;
3576
3577 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
3578 InstantiatingTemplate::ExceptionSpecification());
Alp Tokerd4a72d52013-10-08 08:09:04 +00003579 if (Inst.isInvalid()) {
Richard Smithd3b5c9082012-07-27 04:22:15 +00003580 // We hit the instantiation depth limit. Clear the exception specification
3581 // so that our callers don't have to cope with EST_Uninstantiated.
Richard Smith8acb4282014-07-31 21:57:55 +00003582 UpdateExceptionSpec(Decl, EST_None);
Richard Smithf623c962012-04-17 00:58:00 +00003583 return;
Richard Smithd3b5c9082012-07-27 04:22:15 +00003584 }
Richard Smith54f18e82016-08-31 02:15:21 +00003585 if (Inst.isAlreadyInstantiating()) {
3586 // This exception specification indirectly depends on itself. Reject.
3587 // FIXME: Corresponding rule in the standard?
3588 Diag(PointOfInstantiation, diag::err_exception_spec_cycle) << Decl;
3589 UpdateExceptionSpec(Decl, EST_None);
3590 return;
3591 }
Richard Smithf623c962012-04-17 00:58:00 +00003592
3593 // Enter the scope of this instantiation. We don't use
3594 // PushDeclContext because we don't have a scope.
3595 Sema::ContextRAII savedContext(*this, Decl);
3596 LocalInstantiationScope Scope(*this);
3597
3598 MultiLevelTemplateArgumentList TemplateArgs =
Craig Topperc3ec1492014-05-26 06:22:03 +00003599 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true);
Richard Smithf623c962012-04-17 00:58:00 +00003600
Richard Smithd3729422012-04-19 00:08:28 +00003601 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
Richard Smith2e321552014-11-12 02:00:47 +00003602 if (addInstantiatedParametersToScope(*this, Decl, Template, Scope,
3603 TemplateArgs)) {
3604 UpdateExceptionSpec(Decl, EST_None);
3605 return;
3606 }
Richard Smithf623c962012-04-17 00:58:00 +00003607
Richard Smith2e321552014-11-12 02:00:47 +00003608 SubstExceptionSpec(Decl, Template->getType()->castAs<FunctionProtoType>(),
3609 TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003610}
3611
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003612/// Initializes the common fields of an instantiation function
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003613/// declaration (New) from the corresponding fields of its template (Tmpl).
3614///
3615/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003616bool
3617TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003618 FunctionDecl *Tmpl) {
David Blaikie5a0956e2012-07-16 18:50:45 +00003619 if (Tmpl->isDeleted())
Alexis Hunt4a8ea102011-05-06 20:44:56 +00003620 New->setDeletedAsWritten();
Mike Stump11289f42009-09-09 15:08:12 +00003621
Richard Smith32918772017-02-14 00:25:28 +00003622 New->setImplicit(Tmpl->isImplicit());
3623
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003624 // Forward the mangling number from the template to the instantiated decl.
3625 SemaRef.Context.setManglingNumber(New,
3626 SemaRef.Context.getManglingNumber(Tmpl));
3627
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003628 // If we are performing substituting explicitly-specified template arguments
3629 // or deduced template arguments into a function template and we reach this
3630 // point, we are now past the point where SFINAE applies and have committed
Mike Stump11289f42009-09-09 15:08:12 +00003631 // to keeping the new function template specialization. We therefore
3632 // convert the active template instantiation for the function template
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003633 // into a template instantiation for this specific function template
3634 // specialization, which is not a SFINAE context, so that we diagnose any
3635 // further errors in the declaration itself.
Richard Smith696e3122017-02-23 01:43:54 +00003636 typedef Sema::CodeSynthesisContext ActiveInstType;
3637 ActiveInstType &ActiveInst = SemaRef.CodeSynthesisContexts.back();
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003638 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
3639 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump11289f42009-09-09 15:08:12 +00003640 if (FunctionTemplateDecl *FunTmpl
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003641 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) {
Mike Stump11289f42009-09-09 15:08:12 +00003642 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003643 "Deduction from the wrong function template?");
Daniel Dunbar54c59642009-07-16 22:10:11 +00003644 (void) FunTmpl;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003645 atTemplateEnd(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003646 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003647 ActiveInst.Entity = New;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003648 atTemplateBegin(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003649 }
3650 }
Mike Stump11289f42009-09-09 15:08:12 +00003651
Douglas Gregor049bdca2009-12-08 17:45:32 +00003652 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
3653 assert(Proto && "Function template without prototype?");
3654
Sebastian Redlfa453cf2011-03-12 11:50:43 +00003655 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalldb40c7f2010-12-14 08:05:40 +00003656 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalldb40c7f2010-12-14 08:05:40 +00003657
Richard Smithf623c962012-04-17 00:58:00 +00003658 // DR1330: In C++11, defer instantiation of a non-trivial
3659 // exception specification.
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003660 // DR1484: Local classes and their members are instantiated along with the
3661 // containing function.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003662 if (SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smith8acb4282014-07-31 21:57:55 +00003663 EPI.ExceptionSpec.Type != EST_None &&
3664 EPI.ExceptionSpec.Type != EST_DynamicNone &&
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003665 EPI.ExceptionSpec.Type != EST_BasicNoexcept &&
Serge Pavlov73c6a242015-08-23 10:22:28 +00003666 !Tmpl->isLexicallyWithinFunctionOrMethod()) {
Richard Smithd3729422012-04-19 00:08:28 +00003667 FunctionDecl *ExceptionSpecTemplate = Tmpl;
Richard Smith8acb4282014-07-31 21:57:55 +00003668 if (EPI.ExceptionSpec.Type == EST_Uninstantiated)
3669 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate;
Richard Smith185be182013-04-10 05:48:59 +00003670 ExceptionSpecificationType NewEST = EST_Uninstantiated;
Richard Smith8acb4282014-07-31 21:57:55 +00003671 if (EPI.ExceptionSpec.Type == EST_Unevaluated)
Richard Smith185be182013-04-10 05:48:59 +00003672 NewEST = EST_Unevaluated;
Richard Smithd3729422012-04-19 00:08:28 +00003673
Richard Smithf623c962012-04-17 00:58:00 +00003674 // Mark the function has having an uninstantiated exception specification.
3675 const FunctionProtoType *NewProto
3676 = New->getType()->getAs<FunctionProtoType>();
3677 assert(NewProto && "Template instantiation without function prototype?");
3678 EPI = NewProto->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00003679 EPI.ExceptionSpec.Type = NewEST;
3680 EPI.ExceptionSpec.SourceDecl = New;
3681 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate;
Reid Kleckner896b32f2013-06-10 20:51:09 +00003682 New->setType(SemaRef.Context.getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00003683 NewProto->getReturnType(), NewProto->getParamTypes(), EPI));
Richard Smithf623c962012-04-17 00:58:00 +00003684 } else {
Faisal Vali40fd4ce2017-05-09 04:17:15 +00003685 Sema::ContextRAII SwitchContext(SemaRef, New);
Richard Smith2e321552014-11-12 02:00:47 +00003686 SemaRef.SubstExceptionSpec(New, Proto, TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003687 }
Douglas Gregor049bdca2009-12-08 17:45:32 +00003688 }
3689
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003690 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithf623c962012-04-17 00:58:00 +00003691 const FunctionDecl *Definition = Tmpl;
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003692 Tmpl->isDefined(Definition);
3693
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00003694 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
3695 LateAttrs, StartingScope);
Douglas Gregor08329632010-06-15 17:05:35 +00003696
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003697 return false;
3698}
3699
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003700/// Initializes common fields of an instantiated method
Douglas Gregor21342092009-03-24 00:38:23 +00003701/// declaration (New) from the corresponding fields of its template
3702/// (Tmpl).
3703///
3704/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003705bool
3706TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor21342092009-03-24 00:38:23 +00003707 CXXMethodDecl *Tmpl) {
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003708 if (InitFunctionInstantiation(New, Tmpl))
3709 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003710
Douglas Gregor21342092009-03-24 00:38:23 +00003711 New->setAccess(Tmpl->getAccess());
Fariborz Jahanian6dfc1972009-12-03 18:44:40 +00003712 if (Tmpl->isVirtualAsWritten())
Douglas Gregor11c024b2010-09-28 20:50:54 +00003713 New->setVirtualAsWritten(true);
Douglas Gregor21342092009-03-24 00:38:23 +00003714
Douglas Gregor21342092009-03-24 00:38:23 +00003715 // FIXME: New needs a pointer to Tmpl
3716 return false;
3717}
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003718
Richard Smith50e291e2018-01-02 23:52:42 +00003719/// Instantiate (or find existing instantiation of) a function template with a
3720/// given set of template arguments.
3721///
3722/// Usually this should not be used, and template argument deduction should be
3723/// used in its place.
3724FunctionDecl *
3725Sema::InstantiateFunctionDeclaration(FunctionTemplateDecl *FTD,
3726 const TemplateArgumentList *Args,
3727 SourceLocation Loc) {
3728 FunctionDecl *FD = FTD->getTemplatedDecl();
3729
3730 sema::TemplateDeductionInfo Info(Loc);
3731 InstantiatingTemplate Inst(
3732 *this, Loc, FTD, Args->asArray(),
3733 CodeSynthesisContext::ExplicitTemplateArgumentSubstitution, Info);
3734 if (Inst.isInvalid())
3735 return nullptr;
3736
3737 ContextRAII SavedContext(*this, FD);
3738 MultiLevelTemplateArgumentList MArgs(*Args);
3739
3740 return cast_or_null<FunctionDecl>(SubstDecl(FD, FD->getParent(), MArgs));
3741}
3742
Reid Kleckner61195e12017-01-05 01:08:22 +00003743/// In the MS ABI, we need to instantiate default arguments of dllexported
3744/// default constructors along with the constructor definition. This allows IR
3745/// gen to emit a constructor closure which calls the default constructor with
3746/// its default arguments.
3747static void InstantiateDefaultCtorDefaultArgs(Sema &S,
3748 CXXConstructorDecl *Ctor) {
3749 assert(S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3750 Ctor->isDefaultConstructor());
3751 unsigned NumParams = Ctor->getNumParams();
3752 if (NumParams == 0)
3753 return;
3754 DLLExportAttr *Attr = Ctor->getAttr<DLLExportAttr>();
3755 if (!Attr)
3756 return;
3757 for (unsigned I = 0; I != NumParams; ++I) {
3758 (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), Ctor,
3759 Ctor->getParamDecl(I));
3760 S.DiscardCleanupsInEvaluationContext();
3761 }
3762}
3763
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003764/// Instantiate the definition of the given function from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003765/// template.
3766///
Douglas Gregordda7ced2009-06-30 17:20:14 +00003767/// \param PointOfInstantiation the point at which the instantiation was
3768/// required. Note that this is not precisely a "point of instantiation"
3769/// for the function, but it's close.
3770///
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003771/// \param Function the already-instantiated declaration of a
Douglas Gregordda7ced2009-06-30 17:20:14 +00003772/// function template specialization or member function of a class template
3773/// specialization.
3774///
3775/// \param Recursive if true, recursively instantiates any functions that
3776/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00003777///
3778/// \param DefinitionRequired if true, then we are performing an explicit
3779/// instantiation where the body of the function is required. Complain if
3780/// there is no such body.
Douglas Gregor85673582009-05-18 17:01:57 +00003781void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregordda7ced2009-06-30 17:20:14 +00003782 FunctionDecl *Function,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003783 bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00003784 bool DefinitionRequired,
3785 bool AtEndOfTU) {
Richard Smithcb189572017-10-28 01:15:00 +00003786 if (Function->isInvalidDecl() || Function->isDefined() ||
3787 isa<CXXDeductionGuideDecl>(Function))
Douglas Gregorb4850462009-05-14 23:26:13 +00003788 return;
3789
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003790 // Never instantiate an explicit specialization except if it is a class scope
3791 // explicit specialization.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003792 TemplateSpecializationKind TSK = Function->getTemplateSpecializationKind();
3793 if (TSK == TSK_ExplicitSpecialization &&
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003794 !Function->getClassScopeSpecializationPattern())
Douglas Gregor86d142a2009-10-08 07:24:58 +00003795 return;
Douglas Gregor69f6a362010-05-17 17:34:56 +00003796
Douglas Gregor24c332b2009-05-14 21:06:31 +00003797 // Find the function body that we'll be substituting.
Douglas Gregorafca3b42009-10-27 20:53:28 +00003798 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Alexis Hunt23f6b832011-05-27 20:00:14 +00003799 assert(PatternDecl && "instantiating a non-template");
3800
Richard Smith6f4e2e02016-08-23 19:41:39 +00003801 const FunctionDecl *PatternDef = PatternDecl->getDefinition();
Richard Smith3f6865a82016-08-23 21:12:54 +00003802 Stmt *Pattern = nullptr;
3803 if (PatternDef) {
3804 Pattern = PatternDef->getBody(PatternDef);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003805 PatternDecl = PatternDef;
Richard Smith6c7161162017-08-12 01:46:03 +00003806 if (PatternDef->willHaveBody())
3807 PatternDef = nullptr;
Richard Smith3f6865a82016-08-23 21:12:54 +00003808 }
Douglas Gregor24c332b2009-05-14 21:06:31 +00003809
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003810 // FIXME: We need to track the instantiation stack in order to know which
3811 // definitions should be visible within this instantiation.
3812 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Function,
3813 Function->getInstantiatedFromMemberFunction(),
Richard Smith6f4e2e02016-08-23 19:41:39 +00003814 PatternDecl, PatternDef, TSK,
3815 /*Complain*/DefinitionRequired)) {
3816 if (DefinitionRequired)
3817 Function->setInvalidDecl();
3818 else if (TSK == TSK_ExplicitInstantiationDefinition) {
3819 // Try again at the end of the translation unit (at which point a
3820 // definition will be required).
3821 assert(!Recursive);
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003822 Function->setInstantiationIsPending(true);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003823 PendingInstantiations.push_back(
3824 std::make_pair(Function, PointOfInstantiation));
3825 } else if (TSK == TSK_ImplicitInstantiation) {
Nick Lewycky2adab1b2018-01-02 19:10:12 +00003826 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
3827 !getSourceManager().isInSystemHeader(PatternDecl->getLocStart())) {
Richard Smith6f4e2e02016-08-23 19:41:39 +00003828 Diag(PointOfInstantiation, diag::warn_func_template_missing)
3829 << Function;
3830 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
3831 if (getLangOpts().CPlusPlus11)
3832 Diag(PointOfInstantiation, diag::note_inst_declaration_hint)
3833 << Function;
3834 }
3835 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003836
Richard Smith6f4e2e02016-08-23 19:41:39 +00003837 return;
3838 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003839
Francois Pichet1c229c02011-04-22 22:18:13 +00003840 // Postpone late parsed template instantiations.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003841 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky610128e2011-05-12 03:51:24 +00003842 !LateTemplateParser) {
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003843 Function->setInstantiationIsPending(true);
Reid Kleckner24bd88c2018-03-26 18:22:47 +00003844 LateParsedInstantiations.push_back(
3845 std::make_pair(Function, PointOfInstantiation));
Francois Pichet1c229c02011-04-22 22:18:13 +00003846 return;
3847 }
3848
Nico Weberae4bb8c2014-08-15 23:21:41 +00003849 // If we're performing recursive template instantiation, create our own
3850 // queue of pending implicit instantiations that we will instantiate later,
3851 // while we're still within our own instantiation context.
3852 // This has to happen before LateTemplateParser below is called, so that
3853 // it marks vtables used in late parsed templates as used.
Richard Smith4f3e3812017-05-20 01:36:41 +00003854 GlobalEagerInstantiationScope GlobalInstantiations(*this,
3855 /*Enabled=*/Recursive);
3856 LocalEagerInstantiationScope LocalInstantiations(*this);
Nico Weberae4bb8c2014-08-15 23:21:41 +00003857
David Majnemerf0a84f22013-08-16 08:29:13 +00003858 // Call the LateTemplateParser callback if there is a need to late parse
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003859 // a templated function definition.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003860 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet1c229c02011-04-22 22:18:13 +00003861 LateTemplateParser) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00003862 // FIXME: Optimize to allow individual templates to be deserialized.
3863 if (PatternDecl->isFromASTFile())
3864 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap);
3865
Justin Lebar28f09c52016-10-10 16:26:08 +00003866 auto LPTIter = LateParsedTemplateMap.find(PatternDecl);
3867 assert(LPTIter != LateParsedTemplateMap.end() &&
3868 "missing LateParsedTemplate");
3869 LateTemplateParser(OpaqueParser, *LPTIter->second);
Francois Pichet1c229c02011-04-22 22:18:13 +00003870 Pattern = PatternDecl->getBody(PatternDecl);
3871 }
3872
Richard Smith6f4e2e02016-08-23 19:41:39 +00003873 // Note, we should never try to instantiate a deleted function template.
Ilya Biryukova27eca22017-12-20 14:32:38 +00003874 assert((Pattern || PatternDecl->isDefaulted() ||
3875 PatternDecl->hasSkippedBody()) &&
Richard Smith6f4e2e02016-08-23 19:41:39 +00003876 "unexpected kind of function template definition");
Douglas Gregor24c332b2009-05-14 21:06:31 +00003877
Richard Smith2a7d4812013-05-04 07:00:32 +00003878 // C++1y [temp.explicit]p10:
3879 // Except for inline functions, declarations with types deduced from their
3880 // initializer or return value, and class template specializations, other
3881 // explicit instantiation declarations have the effect of suppressing the
3882 // implicit instantiation of the entity to which they refer.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003883 if (TSK == TSK_ExplicitInstantiationDeclaration &&
Richard Smith2a7d4812013-05-04 07:00:32 +00003884 !PatternDecl->isInlined() &&
Alp Toker314cc812014-01-25 16:55:45 +00003885 !PatternDecl->getReturnType()->getContainedAutoType())
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003886 return;
Mike Stump11289f42009-09-09 15:08:12 +00003887
Richard Smith195d8ef2014-05-29 03:15:31 +00003888 if (PatternDecl->isInlined()) {
3889 // Function, and all later redeclarations of it (from imported modules,
3890 // for instance), are now implicitly inline.
3891 for (auto *D = Function->getMostRecentDecl(); /**/;
3892 D = D->getPreviousDecl()) {
3893 D->setImplicitlyInline();
3894 if (D == Function)
3895 break;
3896 }
3897 }
Richard Smithf3814ad2013-01-25 00:08:28 +00003898
Douglas Gregor85673582009-05-18 17:01:57 +00003899 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
Richard Smith54f18e82016-08-31 02:15:21 +00003900 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003901 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00003902 PrettyDeclStackTraceEntry CrashInfo(Context, Function, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00003903 "instantiating function definition");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003904
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003905 // The instantiation is visible here, even if it was first declared in an
3906 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00003907 Function->setVisibleDespiteOwningModule();
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003908
Abramo Bagnara12dcbf32011-11-18 08:08:52 +00003909 // Copy the inner loc start from the pattern.
3910 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
3911
Faisal Valid143a0c2017-04-01 21:30:49 +00003912 EnterExpressionEvaluationContext EvalContext(
3913 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated);
Douglas Gregor67da0d92009-05-15 17:59:04 +00003914
Douglas Gregorb4850462009-05-14 23:26:13 +00003915 // Introduce a new scope where local variable instantiations will be
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003916 // recorded, unless we're actually a member function within a local
3917 // class, in which case we need to merge our results with the parent
3918 // scope (of the enclosing function).
3919 bool MergeWithParentScope = false;
3920 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
3921 MergeWithParentScope = Rec->isLocalClass();
3922
3923 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00003924
Richard Smithbd305122012-12-11 01:14:52 +00003925 if (PatternDecl->isDefaulted())
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003926 SetDeclDefaulted(Function, PatternDecl->getLocation());
Richard Smithbd305122012-12-11 01:14:52 +00003927 else {
Richard Smithcc928662014-10-17 20:37:29 +00003928 MultiLevelTemplateArgumentList TemplateArgs =
3929 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl);
3930
3931 // Substitute into the qualifier; we can get a substitution failure here
3932 // through evil use of alias templates.
3933 // FIXME: Is CurContext correct for this? Should we go to the (instantiation
3934 // of the) lexical context of the pattern?
3935 SubstQualifier(*this, PatternDecl, Function, TemplateArgs);
3936
Craig Topperc3ec1492014-05-26 06:22:03 +00003937 ActOnStartOfFunctionDef(nullptr, Function);
Richard Smithbd305122012-12-11 01:14:52 +00003938
3939 // Enter the scope of this instantiation. We don't use
3940 // PushDeclContext because we don't have a scope.
3941 Sema::ContextRAII savedContext(*this, Function);
3942
Richard Smith2e321552014-11-12 02:00:47 +00003943 if (addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
3944 TemplateArgs))
3945 return;
Richard Smithbd305122012-12-11 01:14:52 +00003946
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003947 StmtResult Body;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003948 if (PatternDecl->hasSkippedBody()) {
3949 ActOnSkippedFunctionBody(Function);
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003950 Body = nullptr;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003951 } else {
Ilya Biryukov95f0d322017-12-28 13:05:46 +00003952 if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Function)) {
3953 // If this is a constructor, instantiate the member initializers.
3954 InstantiateMemInitializers(Ctor, cast<CXXConstructorDecl>(PatternDecl),
3955 TemplateArgs);
3956
3957 // If this is an MS ABI dllexport default constructor, instantiate any
3958 // default arguments.
3959 if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3960 Ctor->isDefaultConstructor()) {
3961 InstantiateDefaultCtorDefaultArgs(*this, Ctor);
3962 }
3963 }
3964
Ilya Biryukova27eca22017-12-20 14:32:38 +00003965 // Instantiate the function body.
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003966 Body = SubstStmt(Pattern, TemplateArgs);
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003967
Ilya Biryukova27eca22017-12-20 14:32:38 +00003968 if (Body.isInvalid())
3969 Function->setInvalidDecl();
Ilya Biryukova27eca22017-12-20 14:32:38 +00003970 }
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003971 // FIXME: finishing the function body while in an expression evaluation
3972 // context seems wrong. Investigate more.
3973 ActOnFinishFunctionBody(Function, Body.get(), /*IsInstantiation=*/true);
Richard Smithbd305122012-12-11 01:14:52 +00003974
3975 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
3976
Richard Smithd28ac5b2014-03-22 23:33:22 +00003977 if (auto *Listener = getASTMutationListener())
3978 Listener->FunctionDefinitionInstantiated(Function);
Richard Smith0ac1b8f2014-03-22 01:43:32 +00003979
Richard Smithbd305122012-12-11 01:14:52 +00003980 savedContext.pop();
Mike Stump11289f42009-09-09 15:08:12 +00003981 }
3982
Douglas Gregor28ad4b52009-05-26 20:50:29 +00003983 DeclGroupRef DG(Function);
3984 Consumer.HandleTopLevelDecl(DG);
Mike Stump11289f42009-09-09 15:08:12 +00003985
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003986 // This class may have local implicit instantiations that need to be
3987 // instantiation within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00003988 LocalInstantiations.perform();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003989 Scope.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00003990 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003991}
3992
Larisse Voufo39a1e502013-08-06 01:03:05 +00003993VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation(
3994 VarTemplateDecl *VarTemplate, VarDecl *FromVar,
3995 const TemplateArgumentList &TemplateArgList,
3996 const TemplateArgumentListInfo &TemplateArgsInfo,
3997 SmallVectorImpl<TemplateArgument> &Converted,
3998 SourceLocation PointOfInstantiation, void *InsertPos,
3999 LateInstantiatedAttrVec *LateAttrs,
4000 LocalInstantiationScope *StartingScope) {
4001 if (FromVar->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004002 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004003
4004 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar);
Alp Tokerd4a72d52013-10-08 08:09:04 +00004005 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00004006 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004007
4008 MultiLevelTemplateArgumentList TemplateArgLists;
4009 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList);
4010
Richard Smith8809a0c2013-09-27 20:14:12 +00004011 // Instantiate the first declaration of the variable template: for a partial
4012 // specialization of a static data member template, the first declaration may
4013 // or may not be the declaration in the class; if it's in the class, we want
4014 // to instantiate a member in the class (a declaration), and if it's outside,
4015 // we want to instantiate a definition.
Richard Smithbeef3452014-01-16 23:39:20 +00004016 //
4017 // If we're instantiating an explicitly-specialized member template or member
4018 // partial specialization, don't do this. The member specialization completely
4019 // replaces the original declaration in this case.
4020 bool IsMemberSpec = false;
4021 if (VarTemplatePartialSpecializationDecl *PartialSpec =
4022 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar))
4023 IsMemberSpec = PartialSpec->isMemberSpecialization();
4024 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate())
4025 IsMemberSpec = FromTemplate->isMemberSpecialization();
4026 if (!IsMemberSpec)
4027 FromVar = FromVar->getFirstDecl();
Richard Smith8809a0c2013-09-27 20:14:12 +00004028
Manuel Klimek5843add2013-09-30 13:29:01 +00004029 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList);
4030 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(),
4031 MultiLevelList);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004032
4033 // TODO: Set LateAttrs and StartingScope ...
4034
4035 return cast_or_null<VarTemplateSpecializationDecl>(
4036 Instantiator.VisitVarTemplateSpecializationDecl(
4037 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted));
4038}
4039
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004040/// Instantiates a variable template specialization by completing it
Larisse Voufo39a1e502013-08-06 01:03:05 +00004041/// with appropriate type information and initializer.
4042VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl(
4043 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl,
4044 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith435e6472017-12-02 02:48:42 +00004045 assert(PatternDecl->isThisDeclarationADefinition() &&
4046 "don't have a definition to instantiate from");
Larisse Voufo39a1e502013-08-06 01:03:05 +00004047
4048 // Do substitution on the type of the declaration
4049 TypeSourceInfo *DI =
Richard Smith8809a0c2013-09-27 20:14:12 +00004050 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00004051 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName());
4052 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00004053 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004054
4055 // Update the type of this variable template specialization.
4056 VarSpec->setType(DI->getType());
4057
Richard Smith435e6472017-12-02 02:48:42 +00004058 // Convert the declaration into a definition now.
4059 VarSpec->setCompleteDefinition();
4060
Larisse Voufo39a1e502013-08-06 01:03:05 +00004061 // Instantiate the initializer.
4062 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs);
4063
4064 return VarSpec;
4065}
4066
4067/// BuildVariableInstantiation - Used after a new variable has been created.
4068/// Sets basic variable data and decides whether to postpone the
4069/// variable instantiation.
4070void Sema::BuildVariableInstantiation(
4071 VarDecl *NewVar, VarDecl *OldVar,
4072 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00004073 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner,
4074 LocalInstantiationScope *StartingScope,
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004075 bool InstantiatingVarTemplate) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004076
Richard Smith541b38b2013-09-20 01:15:31 +00004077 // If we are instantiating a local extern declaration, the
4078 // instantiation belongs lexically to the containing function.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004079 // If we are instantiating a static data member defined
4080 // out-of-line, the instantiation will have the same lexical
4081 // context (which will be a namespace scope) as the template.
Richard Smith541b38b2013-09-20 01:15:31 +00004082 if (OldVar->isLocalExternDecl()) {
4083 NewVar->setLocalExternDecl();
4084 NewVar->setLexicalDeclContext(Owner);
4085 } else if (OldVar->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004086 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext());
4087 NewVar->setTSCSpec(OldVar->getTSCSpec());
4088 NewVar->setInitStyle(OldVar->getInitStyle());
4089 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl());
George Karpenkovec38cf72018-03-29 00:56:24 +00004090 NewVar->setObjCForDecl(OldVar->isObjCForDecl());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004091 NewVar->setConstexpr(OldVar->isConstexpr());
Richard Smithbb13c9a2013-09-28 04:02:39 +00004092 NewVar->setInitCapture(OldVar->isInitCapture());
Richard Smith1c34fb72013-08-13 18:18:50 +00004093 NewVar->setPreviousDeclInSameBlockScope(
4094 OldVar->isPreviousDeclInSameBlockScope());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004095 NewVar->setAccess(OldVar->getAccess());
4096
Richard Smith0b551192013-09-23 23:12:22 +00004097 if (!OldVar->isStaticDataMember()) {
Rafael Espindolae4865d22013-10-23 16:46:34 +00004098 if (OldVar->isUsed(false))
4099 NewVar->setIsUsed();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004100 NewVar->setReferenced(OldVar->isReferenced());
4101 }
4102
4103 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope);
4104
Richard Smith541b38b2013-09-20 01:15:31 +00004105 LookupResult Previous(
4106 *this, NewVar->getDeclName(), NewVar->getLocation(),
4107 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
4108 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00004109 NewVar->isLocalExternDecl() ? Sema::ForExternalRedeclaration
4110 : forRedeclarationInCurContext());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004111
Argyrios Kyrtzidis91486222013-11-27 08:34:14 +00004112 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() &&
4113 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() ||
4114 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) {
Richard Smith1c34fb72013-08-13 18:18:50 +00004115 // We have a previous declaration. Use that one, so we merge with the
4116 // right type.
4117 if (NamedDecl *NewPrev = FindInstantiatedDecl(
4118 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs))
4119 Previous.addDecl(NewPrev);
4120 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) &&
4121 OldVar->hasLinkage())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004122 LookupQualifiedName(Previous, NewVar->getDeclContext(), false);
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004123 CheckVariableDeclaration(NewVar, Previous);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004124
Richard Smith541b38b2013-09-20 01:15:31 +00004125 if (!InstantiatingVarTemplate) {
4126 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar);
4127 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004128 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar);
Richard Smith541b38b2013-09-20 01:15:31 +00004129 }
4130
4131 if (!OldVar->isOutOfLine()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004132 if (NewVar->getDeclContext()->isFunctionOrMethod())
4133 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar);
4134 }
4135
4136 // Link instantiations of static data members back to the template from
4137 // which they were instantiated.
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004138 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate)
Larisse Voufo39a1e502013-08-06 01:03:05 +00004139 NewVar->setInstantiationOfStaticDataMember(OldVar,
4140 TSK_ImplicitInstantiation);
4141
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004142 // Forward the mangling number from the template to the instantiated decl.
4143 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar));
David Majnemer2206bf52014-03-05 08:57:59 +00004144 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar));
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004145
Richard Smith62f19e72016-06-25 00:15:56 +00004146 // Delay instantiation of the initializer for variable templates or inline
4147 // static data members until a definition of the variable is needed. We need
4148 // it right away if the type contains 'auto'.
Richard Smithd292b242014-03-16 01:00:40 +00004149 if ((!isa<VarTemplateSpecializationDecl>(NewVar) &&
Richard Smith62f19e72016-06-25 00:15:56 +00004150 !InstantiatingVarTemplate &&
Richard Smith93ee9ca2018-01-10 23:08:26 +00004151 !(OldVar->isInline() && OldVar->isThisDeclarationADefinition() &&
4152 !NewVar->isThisDeclarationADefinition())) ||
Richard Smithd292b242014-03-16 01:00:40 +00004153 NewVar->getType()->isUndeducedType())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004154 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs);
4155
4156 // Diagnose unused local variables with dependent types, where the diagnostic
4157 // will have been deferred.
4158 if (!NewVar->isInvalidDecl() &&
Nico Weber72889432014-09-06 01:25:55 +00004159 NewVar->getDeclContext()->isFunctionOrMethod() &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00004160 OldVar->getType()->isDependentType())
4161 DiagnoseUnusedDecl(NewVar);
4162}
4163
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004164/// Instantiate the initializer of a variable.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004165void Sema::InstantiateVariableInitializer(
4166 VarDecl *Var, VarDecl *OldVar,
4167 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith891fc7f2017-12-05 01:31:47 +00004168 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
4169 L->VariableDefinitionInstantiated(Var);
4170
Richard Smith62f19e72016-06-25 00:15:56 +00004171 // We propagate the 'inline' flag with the initializer, because it
4172 // would otherwise imply that the variable is a definition for a
4173 // non-static data member.
4174 if (OldVar->isInlineSpecified())
4175 Var->setInlineSpecified();
4176 else if (OldVar->isInline())
4177 Var->setImplicitlyInline();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004178
Larisse Voufo39a1e502013-08-06 01:03:05 +00004179 if (OldVar->getInit()) {
Richard Smithc95d2c52017-09-22 04:25:05 +00004180 EnterExpressionEvaluationContext Evaluated(
4181 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated, Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004182
4183 // Instantiate the initializer.
Akira Hatanakab87faff2016-04-28 23:50:12 +00004184 ExprResult Init;
4185
4186 {
4187 ContextRAII SwitchContext(*this, Var->getDeclContext());
4188 Init = SubstInitializer(OldVar->getInit(), TemplateArgs,
4189 OldVar->getInitStyle() == VarDecl::CallInit);
4190 }
4191
Larisse Voufo39a1e502013-08-06 01:03:05 +00004192 if (!Init.isInvalid()) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004193 Expr *InitExpr = Init.get();
4194
Richard Smith95b83e92014-07-10 20:53:43 +00004195 if (Var->hasAttr<DLLImportAttr>() &&
4196 (!InitExpr ||
4197 !InitExpr->isConstantInitializer(getASTContext(), false))) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004198 // Do not dynamically initialize dllimport variables.
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004199 } else if (InitExpr) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004200 bool DirectInit = OldVar->isDirectInit();
Richard Smith3beb7c62017-01-12 02:27:38 +00004201 AddInitializerToDecl(Var, InitExpr, DirectInit);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004202 } else
Richard Smith3beb7c62017-01-12 02:27:38 +00004203 ActOnUninitializedDecl(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004204 } else {
4205 // FIXME: Not too happy about invalidating the declaration
4206 // because of a bogus initializer.
4207 Var->setInvalidDecl();
4208 }
Richard Smith54f18e82016-08-31 02:15:21 +00004209 } else {
George Burgess IV18b28a82018-03-20 03:27:44 +00004210 // `inline` variables are a definition and declaration all in one; we won't
4211 // pick up an initializer from anywhere else.
4212 if (Var->isStaticDataMember() && !Var->isInline()) {
Richard Smith54f18e82016-08-31 02:15:21 +00004213 if (!Var->isOutOfLine())
4214 return;
4215
4216 // If the declaration inside the class had an initializer, don't add
4217 // another one to the out-of-line definition.
4218 if (OldVar->getFirstDecl()->hasInit())
4219 return;
4220 }
4221
4222 // We'll add an initializer to a for-range declaration later.
George Karpenkovec38cf72018-03-29 00:56:24 +00004223 if (Var->isCXXForRangeDecl() || Var->isObjCForDecl())
Richard Smith54f18e82016-08-31 02:15:21 +00004224 return;
4225
Richard Smith3beb7c62017-01-12 02:27:38 +00004226 ActOnUninitializedDecl(Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004227 }
Artem Beleviche9fa53a2018-06-06 22:37:25 +00004228
4229 if (getLangOpts().CUDA)
4230 checkAllowedCUDAInitializer(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004231}
4232
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004233/// Instantiate the definition of the given variable from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004234/// template.
4235///
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004236/// \param PointOfInstantiation the point at which the instantiation was
4237/// required. Note that this is not precisely a "point of instantiation"
Richard Smith891fc7f2017-12-05 01:31:47 +00004238/// for the variable, but it's close.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004239///
Richard Smith891fc7f2017-12-05 01:31:47 +00004240/// \param Var the already-instantiated declaration of a templated variable.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004241///
4242/// \param Recursive if true, recursively instantiates any functions that
4243/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00004244///
4245/// \param DefinitionRequired if true, then we are performing an explicit
Richard Smith891fc7f2017-12-05 01:31:47 +00004246/// instantiation where a definition of the variable is required. Complain
4247/// if there is no such definition.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004248void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation,
4249 VarDecl *Var, bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004250 bool DefinitionRequired, bool AtEndOfTU) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004251 if (Var->isInvalidDecl())
4252 return;
Mike Stump11289f42009-09-09 15:08:12 +00004253
Larisse Voufo39a1e502013-08-06 01:03:05 +00004254 VarTemplateSpecializationDecl *VarSpec =
4255 dyn_cast<VarTemplateSpecializationDecl>(Var);
Craig Topperc3ec1492014-05-26 06:22:03 +00004256 VarDecl *PatternDecl = nullptr, *Def = nullptr;
Richard Smith8809a0c2013-09-27 20:14:12 +00004257 MultiLevelTemplateArgumentList TemplateArgs =
4258 getTemplateInstantiationArgs(Var);
Mike Stump11289f42009-09-09 15:08:12 +00004259
Larisse Voufo39a1e502013-08-06 01:03:05 +00004260 if (VarSpec) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004261 // If this is a variable template specialization, make sure that it is
4262 // non-dependent, then find its instantiation pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004263 bool InstantiationDependent = false;
4264 assert(!TemplateSpecializationType::anyDependentTemplateArguments(
4265 VarSpec->getTemplateArgsInfo(), InstantiationDependent) &&
4266 "Only instantiate variable template specializations that are "
4267 "not type-dependent");
Larisse Voufo4154f462013-08-06 03:57:41 +00004268 (void)InstantiationDependent;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004269
Richard Smith8809a0c2013-09-27 20:14:12 +00004270 // Find the variable initialization that we'll be substituting. If the
4271 // pattern was instantiated from a member template, look back further to
4272 // find the real pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004273 assert(VarSpec->getSpecializedTemplate() &&
4274 "Specialization without specialized template?");
4275 llvm::PointerUnion<VarTemplateDecl *,
4276 VarTemplatePartialSpecializationDecl *> PatternPtr =
4277 VarSpec->getSpecializedTemplateOrPartial();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004278 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004279 VarTemplatePartialSpecializationDecl *Tmpl =
4280 PatternPtr.get<VarTemplatePartialSpecializationDecl *>();
4281 while (VarTemplatePartialSpecializationDecl *From =
4282 Tmpl->getInstantiatedFromMember()) {
4283 if (Tmpl->isMemberSpecialization())
4284 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004285
Richard Smith8809a0c2013-09-27 20:14:12 +00004286 Tmpl = From;
4287 }
4288 PatternDecl = Tmpl;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004289 } else {
Richard Smith8809a0c2013-09-27 20:14:12 +00004290 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>();
4291 while (VarTemplateDecl *From =
4292 Tmpl->getInstantiatedFromMemberTemplate()) {
4293 if (Tmpl->isMemberSpecialization())
4294 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004295
Richard Smith8809a0c2013-09-27 20:14:12 +00004296 Tmpl = From;
4297 }
4298 PatternDecl = Tmpl->getTemplatedDecl();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004299 }
Richard Smith8809a0c2013-09-27 20:14:12 +00004300
4301 // If this is a static data member template, there might be an
4302 // uninstantiated initializer on the declaration. If so, instantiate
4303 // it now.
Richard Smith891fc7f2017-12-05 01:31:47 +00004304 //
4305 // FIXME: This largely duplicates what we would do below. The difference
4306 // is that along this path we may instantiate an initializer from an
4307 // in-class declaration of the template and instantiate the definition
4308 // from a separate out-of-class definition.
Richard Smith8809a0c2013-09-27 20:14:12 +00004309 if (PatternDecl->isStaticDataMember() &&
Rafael Espindola8db352d2013-10-17 15:37:26 +00004310 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() &&
Richard Smith8809a0c2013-09-27 20:14:12 +00004311 !Var->hasInit()) {
4312 // FIXME: Factor out the duplicated instantiation context setup/tear down
4313 // code here.
4314 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004315 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Richard Smith8809a0c2013-09-27 20:14:12 +00004316 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004317 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004318 "instantiating variable initializer");
Richard Smith8809a0c2013-09-27 20:14:12 +00004319
Richard Smithedbc6e92016-10-14 21:41:24 +00004320 // The instantiation is visible here, even if it was first declared in an
4321 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00004322 Var->setVisibleDespiteOwningModule();
Richard Smithedbc6e92016-10-14 21:41:24 +00004323
Richard Smith8809a0c2013-09-27 20:14:12 +00004324 // If we're performing recursive template instantiation, create our own
4325 // queue of pending implicit instantiations that we will instantiate
4326 // later, while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004327 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4328 /*Enabled=*/Recursive);
Richard Smith8809a0c2013-09-27 20:14:12 +00004329 LocalInstantiationScope Local(*this);
Richard Smith4f3e3812017-05-20 01:36:41 +00004330 LocalEagerInstantiationScope LocalInstantiations(*this);
Richard Smith8809a0c2013-09-27 20:14:12 +00004331
4332 // Enter the scope of this instantiation. We don't use
4333 // PushDeclContext because we don't have a scope.
4334 ContextRAII PreviousContext(*this, Var->getDeclContext());
4335 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs);
4336 PreviousContext.pop();
4337
Richard Smith8809a0c2013-09-27 20:14:12 +00004338 // This variable may have local implicit instantiations that need to be
4339 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004340 LocalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004341 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004342 GlobalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004343 }
4344
4345 // Find actual definition
4346 Def = PatternDecl->getDefinition(getASTContext());
4347 } else {
4348 // If this is a static data member, find its out-of-line definition.
4349 assert(Var->isStaticDataMember() && "not a static data member?");
4350 PatternDecl = Var->getInstantiatedFromStaticDataMember();
4351
4352 assert(PatternDecl && "data member was not instantiated from a template?");
4353 assert(PatternDecl->isStaticDataMember() && "not a static data member?");
Richard Smith62f19e72016-06-25 00:15:56 +00004354 Def = PatternDecl->getDefinition();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004355 }
4356
Richard Smithedbc6e92016-10-14 21:41:24 +00004357 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
Richard Smith6739a102016-05-05 00:56:12 +00004358
Richard Smith8809a0c2013-09-27 20:14:12 +00004359 // If we don't have a definition of the variable template, we won't perform
4360 // any instantiation. Rather, we rely on the user to instantiate this
4361 // definition (or provide a specialization for it) in another translation
4362 // unit.
Richard Smithedbc6e92016-10-14 21:41:24 +00004363 if (!Def && !DefinitionRequired) {
4364 if (TSK == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth54080172010-08-25 08:44:16 +00004365 PendingInstantiations.push_back(
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004366 std::make_pair(Var, PointOfInstantiation));
Richard Smithedbc6e92016-10-14 21:41:24 +00004367 } else if (TSK == TSK_ImplicitInstantiation) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004368 // Warn about missing definition at the end of translation unit.
Nick Lewycky2adab1b2018-01-02 19:10:12 +00004369 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
4370 !getSourceManager().isInSystemHeader(PatternDecl->getLocStart())) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004371 Diag(PointOfInstantiation, diag::warn_var_template_missing)
4372 << Var;
4373 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
4374 if (getLangOpts().CPlusPlus11)
4375 Diag(PointOfInstantiation, diag::note_inst_declaration_hint) << Var;
4376 }
Richard Smithedbc6e92016-10-14 21:41:24 +00004377 return;
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004378 }
4379
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004380 }
4381
Richard Smithedbc6e92016-10-14 21:41:24 +00004382 // FIXME: We need to track the instantiation stack in order to know which
4383 // definitions should be visible within this instantiation.
4384 // FIXME: Produce diagnostics when Var->getInstantiatedFromStaticDataMember().
4385 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Var,
4386 /*InstantiatedFromMember*/false,
4387 PatternDecl, Def, TSK,
4388 /*Complain*/DefinitionRequired))
4389 return;
4390
Rafael Espindola189fa742012-03-05 10:54:55 +00004391
Douglas Gregor86d142a2009-10-08 07:24:58 +00004392 // Never instantiate an explicit specialization.
Rafael Espindola189fa742012-03-05 10:54:55 +00004393 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor86d142a2009-10-08 07:24:58 +00004394 return;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004395
Larisse Voufo39a1e502013-08-06 01:03:05 +00004396 // C++11 [temp.explicit]p10:
Richard Smith4309b662017-10-18 22:45:01 +00004397 // Except for inline functions, const variables of literal types, variables
4398 // of reference types, [...] explicit instantiation declarations
Larisse Voufo39a1e502013-08-06 01:03:05 +00004399 // have the effect of suppressing the implicit instantiation of the entity
4400 // to which they refer.
Richard Smith4309b662017-10-18 22:45:01 +00004401 if (TSK == TSK_ExplicitInstantiationDeclaration &&
4402 !Var->isUsableInConstantExpressions(getASTContext()))
Douglas Gregor86d142a2009-10-08 07:24:58 +00004403 return;
Mike Stump11289f42009-09-09 15:08:12 +00004404
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004405 // Make sure to pass the instantiated variable to the consumer at the end.
4406 struct PassToConsumerRAII {
4407 ASTConsumer &Consumer;
4408 VarDecl *Var;
4409
4410 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var)
4411 : Consumer(Consumer), Var(Var) { }
4412
4413 ~PassToConsumerRAII() {
Richard Smith8809a0c2013-09-27 20:14:12 +00004414 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004415 }
4416 } PassToConsumerRAII(Consumer, Var);
Rafael Espindoladf88f6f2012-03-08 15:51:03 +00004417
Reid Klecknere07140e2015-04-15 01:08:06 +00004418 // If we already have a definition, we're done.
4419 if (VarDecl *Def = Var->getDefinition()) {
4420 // We may be explicitly instantiating something we've already implicitly
4421 // instantiated.
4422 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
4423 PointOfInstantiation);
Richard Smith8809a0c2013-09-27 20:14:12 +00004424 return;
Reid Klecknere07140e2015-04-15 01:08:06 +00004425 }
Douglas Gregor57d4f972011-06-03 03:35:07 +00004426
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004427 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004428 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004429 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004430 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004431 "instantiating variable definition");
Mike Stump11289f42009-09-09 15:08:12 +00004432
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004433 // If we're performing recursive template instantiation, create our own
4434 // queue of pending implicit instantiations that we will instantiate later,
4435 // while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004436 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4437 /*Enabled=*/Recursive);
Mike Stump11289f42009-09-09 15:08:12 +00004438
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004439 // Enter the scope of this instantiation. We don't use
4440 // PushDeclContext because we don't have a scope.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004441 ContextRAII PreviousContext(*this, Var->getDeclContext());
Douglas Gregora86bc002012-02-16 21:36:18 +00004442 LocalInstantiationScope Local(*this);
John McCall2957e3e2011-02-14 20:37:25 +00004443
Richard Smith4f3e3812017-05-20 01:36:41 +00004444 LocalEagerInstantiationScope LocalInstantiations(*this);
4445
Larisse Voufo39a1e502013-08-06 01:03:05 +00004446 VarDecl *OldVar = Var;
Richard Smith62f19e72016-06-25 00:15:56 +00004447 if (Def->isStaticDataMember() && !Def->isOutOfLine()) {
4448 // We're instantiating an inline static data member whose definition was
4449 // provided inside the class.
Richard Smith62f19e72016-06-25 00:15:56 +00004450 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4451 } else if (!VarSpec) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004452 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Richard Smith8809a0c2013-09-27 20:14:12 +00004453 TemplateArgs));
Richard Smith62f19e72016-06-25 00:15:56 +00004454 } else if (Var->isStaticDataMember() &&
4455 Var->getLexicalDeclContext()->isRecord()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004456 // We need to instantiate the definition of a static data member template,
4457 // and all we have is the in-class declaration of it. Instantiate a separate
4458 // declaration of the definition.
4459 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(),
4460 TemplateArgs);
4461 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl(
Craig Topperc3ec1492014-05-26 06:22:03 +00004462 VarSpec->getSpecializedTemplate(), Def, nullptr,
Richard Smith8809a0c2013-09-27 20:14:12 +00004463 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray()));
4464 if (Var) {
4465 llvm::PointerUnion<VarTemplateDecl *,
4466 VarTemplatePartialSpecializationDecl *> PatternPtr =
4467 VarSpec->getSpecializedTemplateOrPartial();
4468 if (VarTemplatePartialSpecializationDecl *Partial =
4469 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>())
4470 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf(
4471 Partial, &VarSpec->getTemplateInstantiationArgs());
4472
4473 // Merge the definition with the declaration.
4474 LookupResult R(*this, Var->getDeclName(), Var->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00004475 LookupOrdinaryName, forRedeclarationInCurContext());
Richard Smith8809a0c2013-09-27 20:14:12 +00004476 R.addDecl(OldVar);
4477 MergeVarDecl(Var, R);
4478
4479 // Attach the initializer.
4480 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4481 }
4482 } else
4483 // Complete the existing variable's definition with an appropriately
4484 // substituted type and initializer.
4485 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004486
4487 PreviousContext.pop();
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004488
4489 if (Var) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004490 PassToConsumerRAII.Var = Var;
Richard Smith8809a0c2013-09-27 20:14:12 +00004491 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(),
4492 OldVar->getPointOfInstantiation());
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004493 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004494
4495 // This variable may have local implicit instantiations that need to be
4496 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004497 LocalInstantiations.perform();
Douglas Gregora86bc002012-02-16 21:36:18 +00004498 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004499 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004500}
Douglas Gregor51783312009-05-27 05:35:12 +00004501
Anders Carlsson70553942009-08-29 05:16:22 +00004502void
4503Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
4504 const CXXConstructorDecl *Tmpl,
4505 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00004506
Richard Trieu9becef62011-09-09 03:18:59 +00004507 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith60f2e1e2012-09-25 00:23:05 +00004508 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004509
Anders Carlsson70553942009-08-29 05:16:22 +00004510 // Instantiate all the initializers.
Aaron Ballman0ad78302014-03-13 17:34:31 +00004511 for (const auto *Init : Tmpl->inits()) {
Chandler Carruthf92bd8c2010-09-03 21:54:20 +00004512 // Only instantiate written initializers, let Sema re-construct implicit
4513 // ones.
4514 if (!Init->isWritten())
4515 continue;
4516
Douglas Gregor44e7df62011-01-04 00:32:56 +00004517 SourceLocation EllipsisLoc;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004518
Douglas Gregor44e7df62011-01-04 00:32:56 +00004519 if (Init->isPackExpansion()) {
4520 // This is a pack expansion. We should expand it now.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004521 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Nick Lewycky2c308502013-06-13 00:45:47 +00004522 SmallVector<UnexpandedParameterPack, 4> Unexpanded;
Douglas Gregor44e7df62011-01-04 00:32:56 +00004523 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
Nick Lewycky2c308502013-06-13 00:45:47 +00004524 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded);
Douglas Gregor44e7df62011-01-04 00:32:56 +00004525 bool ShouldExpand = false;
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004526 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00004527 Optional<unsigned> NumExpansions;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004528 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004529 BaseTL.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00004530 Unexpanded,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004531 TemplateArgs, ShouldExpand,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004532 RetainExpansion,
Douglas Gregor44e7df62011-01-04 00:32:56 +00004533 NumExpansions)) {
4534 AnyErrors = true;
4535 New->setInvalidDecl();
4536 continue;
4537 }
4538 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004539
4540 // Loop over all of the arguments in the argument pack(s),
Douglas Gregor0dca5fd2011-01-14 17:04:44 +00004541 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004542 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
4543
4544 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004545 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4546 /*CXXDirectInit=*/true);
4547 if (TempInit.isInvalid()) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004548 AnyErrors = true;
4549 break;
4550 }
4551
4552 // Instantiate the base type.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004553 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004554 TemplateArgs,
4555 Init->getSourceLocation(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004556 New->getDeclName());
4557 if (!BaseTInfo) {
4558 AnyErrors = true;
4559 break;
4560 }
4561
4562 // Build the initializer.
Sebastian Redla74948d2011-09-24 17:48:25 +00004563 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004564 BaseTInfo, TempInit.get(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004565 New->getParent(),
4566 SourceLocation());
4567 if (NewInit.isInvalid()) {
4568 AnyErrors = true;
4569 break;
4570 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004571
Douglas Gregor44e7df62011-01-04 00:32:56 +00004572 NewInits.push_back(NewInit.get());
Douglas Gregor44e7df62011-01-04 00:32:56 +00004573 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004574
Douglas Gregor44e7df62011-01-04 00:32:56 +00004575 continue;
4576 }
4577
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004578 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004579 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4580 /*CXXDirectInit=*/true);
4581 if (TempInit.isInvalid()) {
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004582 AnyErrors = true;
4583 continue;
Anders Carlsson70553942009-08-29 05:16:22 +00004584 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004585
Anders Carlsson70553942009-08-29 05:16:22 +00004586 MemInitResult NewInit;
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004587 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
4588 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
4589 TemplateArgs,
4590 Init->getSourceLocation(),
4591 New->getDeclName());
4592 if (!TInfo) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004593 AnyErrors = true;
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00004594 New->setInvalidDecl();
4595 continue;
4596 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004597
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004598 if (Init->isBaseInitializer())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004599 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004600 New->getParent(), EllipsisLoc);
4601 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004602 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004603 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson70553942009-08-29 05:16:22 +00004604 } else if (Init->isMemberInitializer()) {
Douglas Gregor55e6b312011-03-04 19:46:35 +00004605 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004606 Init->getMemberLocation(),
4607 Init->getMember(),
4608 TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00004609 if (!Member) {
4610 AnyErrors = true;
4611 New->setInvalidDecl();
4612 continue;
4613 }
Mike Stump11289f42009-09-09 15:08:12 +00004614
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004615 NewInit = BuildMemberInitializer(Member, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004616 Init->getSourceLocation());
Francois Pichetd583da02010-12-04 09:14:42 +00004617 } else if (Init->isIndirectMemberInitializer()) {
4618 IndirectFieldDecl *IndirectMember =
Douglas Gregor55e6b312011-03-04 19:46:35 +00004619 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004620 Init->getMemberLocation(),
4621 Init->getIndirectMember(), TemplateArgs));
4622
Douglas Gregor55e6b312011-03-04 19:46:35 +00004623 if (!IndirectMember) {
4624 AnyErrors = true;
4625 New->setInvalidDecl();
Sebastian Redla74948d2011-09-24 17:48:25 +00004626 continue;
Douglas Gregor55e6b312011-03-04 19:46:35 +00004627 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004628
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004629 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004630 Init->getSourceLocation());
Anders Carlsson70553942009-08-29 05:16:22 +00004631 }
4632
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004633 if (NewInit.isInvalid()) {
4634 AnyErrors = true;
Anders Carlsson70553942009-08-29 05:16:22 +00004635 New->setInvalidDecl();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004636 } else {
Richard Trieu9becef62011-09-09 03:18:59 +00004637 NewInits.push_back(NewInit.get());
Anders Carlsson70553942009-08-29 05:16:22 +00004638 }
4639 }
Mike Stump11289f42009-09-09 15:08:12 +00004640
Anders Carlsson70553942009-08-29 05:16:22 +00004641 // Assign all the initializers to the new constructor.
John McCall48871652010-08-21 09:40:31 +00004642 ActOnMemInitializers(New,
Anders Carlsson70553942009-08-29 05:16:22 +00004643 /*FIXME: ColonLoc */
4644 SourceLocation(),
David Blaikie3fc2f912013-01-17 05:26:25 +00004645 NewInits,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004646 AnyErrors);
Anders Carlsson70553942009-08-29 05:16:22 +00004647}
4648
John McCall59660882009-08-29 08:11:13 +00004649// TODO: this could be templated if the various decl types used the
4650// same method name.
4651static bool isInstantiationOf(ClassTemplateDecl *Pattern,
4652 ClassTemplateDecl *Instance) {
4653 Pattern = Pattern->getCanonicalDecl();
4654
4655 do {
4656 Instance = Instance->getCanonicalDecl();
4657 if (Pattern == Instance) return true;
4658 Instance = Instance->getInstantiatedFromMemberTemplate();
4659 } while (Instance);
4660
4661 return false;
4662}
4663
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004664static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
4665 FunctionTemplateDecl *Instance) {
4666 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004667
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004668 do {
4669 Instance = Instance->getCanonicalDecl();
4670 if (Pattern == Instance) return true;
4671 Instance = Instance->getInstantiatedFromMemberTemplate();
4672 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004673
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004674 return false;
4675}
4676
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004677static bool
Douglas Gregor21610382009-10-29 00:04:11 +00004678isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
4679 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004680 Pattern
Douglas Gregor21610382009-10-29 00:04:11 +00004681 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
4682 do {
4683 Instance = cast<ClassTemplatePartialSpecializationDecl>(
4684 Instance->getCanonicalDecl());
4685 if (Pattern == Instance)
4686 return true;
4687 Instance = Instance->getInstantiatedFromMember();
4688 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004689
Douglas Gregor21610382009-10-29 00:04:11 +00004690 return false;
4691}
4692
John McCall59660882009-08-29 08:11:13 +00004693static bool isInstantiationOf(CXXRecordDecl *Pattern,
4694 CXXRecordDecl *Instance) {
4695 Pattern = Pattern->getCanonicalDecl();
4696
4697 do {
4698 Instance = Instance->getCanonicalDecl();
4699 if (Pattern == Instance) return true;
4700 Instance = Instance->getInstantiatedFromMemberClass();
4701 } while (Instance);
4702
4703 return false;
4704}
4705
4706static bool isInstantiationOf(FunctionDecl *Pattern,
4707 FunctionDecl *Instance) {
4708 Pattern = Pattern->getCanonicalDecl();
4709
4710 do {
4711 Instance = Instance->getCanonicalDecl();
4712 if (Pattern == Instance) return true;
4713 Instance = Instance->getInstantiatedFromMemberFunction();
4714 } while (Instance);
4715
4716 return false;
4717}
4718
4719static bool isInstantiationOf(EnumDecl *Pattern,
4720 EnumDecl *Instance) {
4721 Pattern = Pattern->getCanonicalDecl();
4722
4723 do {
4724 Instance = Instance->getCanonicalDecl();
4725 if (Pattern == Instance) return true;
4726 Instance = Instance->getInstantiatedFromMemberEnum();
4727 } while (Instance);
4728
4729 return false;
4730}
4731
John McCallb96ec562009-12-04 22:46:56 +00004732static bool isInstantiationOf(UsingShadowDecl *Pattern,
4733 UsingShadowDecl *Instance,
4734 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004735 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance),
4736 Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004737}
4738
Richard Smith151c4562016-12-20 21:35:28 +00004739static bool isInstantiationOf(UsingDecl *Pattern, UsingDecl *Instance,
John McCallb96ec562009-12-04 22:46:56 +00004740 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004741 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004742}
4743
Richard Smith151c4562016-12-20 21:35:28 +00004744template<typename T>
4745static bool isInstantiationOfUnresolvedUsingDecl(T *Pattern, Decl *Other,
4746 ASTContext &Ctx) {
4747 // An unresolved using declaration can instantiate to an unresolved using
4748 // declaration, or to a using declaration or a using declaration pack.
4749 //
4750 // Multiple declarations can claim to be instantiated from an unresolved
4751 // using declaration if it's a pack expansion. We want the UsingPackDecl
4752 // in that case, not the individual UsingDecls within the pack.
4753 bool OtherIsPackExpansion;
4754 NamedDecl *OtherFrom;
4755 if (auto *OtherUUD = dyn_cast<T>(Other)) {
4756 OtherIsPackExpansion = OtherUUD->isPackExpansion();
4757 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUUD);
4758 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) {
4759 OtherIsPackExpansion = true;
4760 OtherFrom = OtherUPD->getInstantiatedFromUsingDecl();
4761 } else if (auto *OtherUD = dyn_cast<UsingDecl>(Other)) {
4762 OtherIsPackExpansion = false;
4763 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUD);
4764 } else {
4765 return false;
4766 }
4767 return Pattern->isPackExpansion() == OtherIsPackExpansion &&
4768 declaresSameEntity(OtherFrom, Pattern);
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004769}
4770
John McCall59660882009-08-29 08:11:13 +00004771static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
4772 VarDecl *Instance) {
4773 assert(Instance->isStaticDataMember());
4774
4775 Pattern = Pattern->getCanonicalDecl();
4776
4777 do {
4778 Instance = Instance->getCanonicalDecl();
4779 if (Pattern == Instance) return true;
4780 Instance = Instance->getInstantiatedFromStaticDataMember();
4781 } while (Instance);
4782
4783 return false;
4784}
4785
John McCallb96ec562009-12-04 22:46:56 +00004786// Other is the prospective instantiation
4787// D is the prospective pattern
Douglas Gregor51783312009-05-27 05:35:12 +00004788static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Richard Smith151c4562016-12-20 21:35:28 +00004789 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
4790 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
John McCalle61f2ba2009-11-18 02:36:19 +00004791
Richard Smith151c4562016-12-20 21:35:28 +00004792 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D))
4793 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
Douglas Gregor51783312009-05-27 05:35:12 +00004794
Richard Smith151c4562016-12-20 21:35:28 +00004795 if (D->getKind() != Other->getKind())
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004796 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004797
Richard Smithd8a9e372016-12-18 21:39:37 +00004798 if (auto *Record = dyn_cast<CXXRecordDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004799 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump11289f42009-09-09 15:08:12 +00004800
Richard Smithd8a9e372016-12-18 21:39:37 +00004801 if (auto *Function = dyn_cast<FunctionDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004802 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor51783312009-05-27 05:35:12 +00004803
Richard Smithd8a9e372016-12-18 21:39:37 +00004804 if (auto *Enum = dyn_cast<EnumDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004805 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor51783312009-05-27 05:35:12 +00004806
Richard Smithd8a9e372016-12-18 21:39:37 +00004807 if (auto *Var = dyn_cast<VarDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004808 if (Var->isStaticDataMember())
4809 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
4810
Richard Smithd8a9e372016-12-18 21:39:37 +00004811 if (auto *Temp = dyn_cast<ClassTemplateDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004812 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregorf3db0032009-08-28 22:03:51 +00004813
Richard Smithd8a9e372016-12-18 21:39:37 +00004814 if (auto *Temp = dyn_cast<FunctionTemplateDecl>(Other))
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004815 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
4816
Richard Smithd8a9e372016-12-18 21:39:37 +00004817 if (auto *PartialSpec =
4818 dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
Douglas Gregor21610382009-10-29 00:04:11 +00004819 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
4820 PartialSpec);
4821
Richard Smithd8a9e372016-12-18 21:39:37 +00004822 if (auto *Field = dyn_cast<FieldDecl>(Other)) {
Anders Carlsson5da84842009-09-01 04:26:58 +00004823 if (!Field->getDeclName()) {
4824 // This is an unnamed field.
Richard Smith32952e12014-10-14 02:00:47 +00004825 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field),
4826 cast<FieldDecl>(D));
Anders Carlsson5da84842009-09-01 04:26:58 +00004827 }
4828 }
Mike Stump11289f42009-09-09 15:08:12 +00004829
Richard Smithd8a9e372016-12-18 21:39:37 +00004830 if (auto *Using = dyn_cast<UsingDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004831 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
4832
Richard Smithd8a9e372016-12-18 21:39:37 +00004833 if (auto *Shadow = dyn_cast<UsingShadowDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004834 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
4835
Richard Smithd8a9e372016-12-18 21:39:37 +00004836 return D->getDeclName() &&
4837 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
Douglas Gregor51783312009-05-27 05:35:12 +00004838}
4839
4840template<typename ForwardIterator>
Mike Stump11289f42009-09-09 15:08:12 +00004841static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor51783312009-05-27 05:35:12 +00004842 NamedDecl *D,
4843 ForwardIterator first,
4844 ForwardIterator last) {
4845 for (; first != last; ++first)
4846 if (isInstantiationOf(Ctx, D, *first))
4847 return cast<NamedDecl>(*first);
4848
Craig Topperc3ec1492014-05-26 06:22:03 +00004849 return nullptr;
Douglas Gregor51783312009-05-27 05:35:12 +00004850}
4851
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004852/// Finds the instantiation of the given declaration context
John McCallaa74a0c2009-08-28 07:59:38 +00004853/// within the current instantiation.
4854///
4855/// \returns NULL if there was an error
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004856DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregor64621e62009-09-16 18:34:49 +00004857 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCallaa74a0c2009-08-28 07:59:38 +00004858 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Richard Smith4f440e32017-06-08 01:08:50 +00004859 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs, true);
John McCallaa74a0c2009-08-28 07:59:38 +00004860 return cast_or_null<DeclContext>(ID);
4861 } else return DC;
4862}
4863
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004864/// Find the instantiation of the given declaration within the
Douglas Gregorcd3a0972009-05-27 17:54:46 +00004865/// current instantiation.
Douglas Gregor51783312009-05-27 05:35:12 +00004866///
4867/// This routine is intended to be used when \p D is a declaration
4868/// referenced from within a template, that needs to mapped into the
4869/// corresponding declaration within an instantiation. For example,
4870/// given:
4871///
4872/// \code
4873/// template<typename T>
4874/// struct X {
4875/// enum Kind {
4876/// KnownValue = sizeof(T)
4877/// };
4878///
4879/// bool getKind() const { return KnownValue; }
4880/// };
4881///
4882/// template struct X<int>;
4883/// \endcode
4884///
Serge Pavloved5fe902013-07-10 04:59:14 +00004885/// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the
4886/// \p EnumConstantDecl for \p KnownValue (which refers to
4887/// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation
4888/// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs
4889/// this mapping from within the instantiation of <tt>X<int></tt>.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004890NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Richard Smith4f440e32017-06-08 01:08:50 +00004891 const MultiLevelTemplateArgumentList &TemplateArgs,
4892 bool FindingInstantiatedContext) {
Douglas Gregor51783312009-05-27 05:35:12 +00004893 DeclContext *ParentDC = D->getDeclContext();
Faisal Vali2cba1332013-10-23 06:44:28 +00004894 // FIXME: Parmeters of pointer to functions (y below) that are themselves
4895 // parameters (p below) can have their ParentDC set to the translation-unit
4896 // - thus we can not consistently check if the ParentDC of such a parameter
4897 // is Dependent or/and a FunctionOrMethod.
4898 // For e.g. this code, during Template argument deduction tries to
4899 // find an instantiated decl for (T y) when the ParentDC for y is
4900 // the translation unit.
4901 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {}
Aaron Ballman36a53502014-01-16 13:03:14 +00004902 // float baz(float(*)()) { return 0.0; }
Faisal Vali2cba1332013-10-23 06:44:28 +00004903 // Foo(baz);
4904 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time
4905 // it gets here, always has a FunctionOrMethod as its ParentDC??
4906 // For now:
4907 // - as long as we have a ParmVarDecl whose parent is non-dependent and
4908 // whose type is not instantiation dependent, do nothing to the decl
4909 // - otherwise find its instantiated decl.
4910 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() &&
4911 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType())
4912 return D;
Rafael Espindola09b00e32013-10-23 04:12:23 +00004913 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregorb93971082010-02-05 19:54:12 +00004914 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregora86bc002012-02-16 21:36:18 +00004915 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
4916 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004917 // D is a local of some kind. Look into the map of local
4918 // declarations to their instantiations.
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004919 if (CurrentInstantiationScope) {
4920 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) {
4921 if (Decl *FD = Found->dyn_cast<Decl *>())
4922 return cast<NamedDecl>(FD);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004923
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004924 int PackIdx = ArgumentPackSubstitutionIndex;
4925 assert(PackIdx != -1 &&
4926 "found declaration pack but not pack expanding");
4927 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
4928 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
4929 }
Chris Lattnercab02a62011-02-17 20:34:02 +00004930 }
4931
Serge Pavlov7cd8f602013-07-15 06:14:07 +00004932 // If we're performing a partial substitution during template argument
4933 // deduction, we may not have values for template parameters yet. They
4934 // just map to themselves.
4935 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
4936 isa<TemplateTemplateParmDecl>(D))
4937 return D;
4938
Serge Pavlov074a5182013-08-10 12:00:21 +00004939 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004940 return nullptr;
Serge Pavlov074a5182013-08-10 12:00:21 +00004941
Serge Pavlove7ad8312015-05-15 10:10:28 +00004942 // Normally this function only searches for already instantiated declaration
4943 // however we have to make an exclusion for local types used before
4944 // definition as in the code:
4945 //
4946 // template<typename T> void f1() {
4947 // void g1(struct x1);
4948 // struct x1 {};
4949 // }
4950 //
4951 // In this case instantiation of the type of 'g1' requires definition of
4952 // 'x1', which is defined later. Error recovery may produce an enum used
4953 // before definition. In these cases we need to instantiate relevant
4954 // declarations here.
4955 bool NeedInstantiate = false;
4956 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
4957 NeedInstantiate = RD->isLocalClass();
4958 else
4959 NeedInstantiate = isa<EnumDecl>(D);
4960 if (NeedInstantiate) {
Serge Pavlov4c511742015-05-04 16:44:39 +00004961 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4962 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4963 return cast<TypeDecl>(Inst);
4964 }
4965
Chris Lattnercab02a62011-02-17 20:34:02 +00004966 // If we didn't find the decl, then we must have a label decl that hasn't
4967 // been found yet. Lazily instantiate it and return it now.
4968 assert(isa<LabelDecl>(D));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004969
Chris Lattnercab02a62011-02-17 20:34:02 +00004970 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4971 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004972
Chris Lattnercab02a62011-02-17 20:34:02 +00004973 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4974 return cast<LabelDecl>(Inst);
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004975 }
Douglas Gregor51783312009-05-27 05:35:12 +00004976
Larisse Voufo39a1e502013-08-06 01:03:05 +00004977 // For variable template specializations, update those that are still
4978 // type-dependent.
4979 if (VarTemplateSpecializationDecl *VarSpec =
4980 dyn_cast<VarTemplateSpecializationDecl>(D)) {
4981 bool InstantiationDependent = false;
4982 const TemplateArgumentListInfo &VarTemplateArgs =
4983 VarSpec->getTemplateArgsInfo();
4984 if (TemplateSpecializationType::anyDependentTemplateArguments(
4985 VarTemplateArgs, InstantiationDependent))
4986 D = cast<NamedDecl>(
4987 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs));
4988 return D;
4989 }
4990
Douglas Gregor64621e62009-09-16 18:34:49 +00004991 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
4992 if (!Record->isDependentContext())
4993 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004994
Douglas Gregor4109afa2011-11-07 17:43:18 +00004995 // Determine whether this record is the "templated" declaration describing
4996 // a class template or class template partial specialization.
Douglas Gregor64621e62009-09-16 18:34:49 +00004997 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor4109afa2011-11-07 17:43:18 +00004998 if (ClassTemplate)
4999 ClassTemplate = ClassTemplate->getCanonicalDecl();
5000 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
5001 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
5002 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
Larisse Voufo39a1e502013-08-06 01:03:05 +00005003
Douglas Gregor4109afa2011-11-07 17:43:18 +00005004 // Walk the current context to find either the record or an instantiation of
5005 // it.
5006 DeclContext *DC = CurContext;
5007 while (!DC->isFileContext()) {
5008 // If we're performing substitution while we're inside the template
5009 // definition, we'll find our own context. We're done.
5010 if (DC->Equals(Record))
5011 return Record;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005012
Douglas Gregor4109afa2011-11-07 17:43:18 +00005013 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
5014 // Check whether we're in the process of instantiating a class template
5015 // specialization of the template we're mapping.
5016 if (ClassTemplateSpecializationDecl *InstSpec
5017 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
5018 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
5019 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
5020 return InstRecord;
5021 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005022
Douglas Gregor4109afa2011-11-07 17:43:18 +00005023 // Check whether we're in the process of instantiating a member class.
5024 if (isInstantiationOf(Record, InstRecord))
5025 return InstRecord;
Douglas Gregor64621e62009-09-16 18:34:49 +00005026 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005027
Douglas Gregor4109afa2011-11-07 17:43:18 +00005028 // Move to the outer template scope.
5029 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
5030 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
5031 DC = FD->getLexicalDeclContext();
5032 continue;
5033 }
Richard Smith32918772017-02-14 00:25:28 +00005034 // An implicit deduction guide acts as if it's within the class template
5035 // specialization described by its name and first N template params.
Richard Smithbc491202017-02-17 20:05:37 +00005036 auto *Guide = dyn_cast<CXXDeductionGuideDecl>(FD);
5037 if (Guide && Guide->isImplicit()) {
5038 TemplateDecl *TD = Guide->getDeducedTemplate();
Richard Smith0cd9c042017-02-21 08:42:39 +00005039 // Convert the arguments to an "as-written" list.
Richard Smith32918772017-02-14 00:25:28 +00005040 TemplateArgumentListInfo Args(Loc, Loc);
Richard Smith0cd9c042017-02-21 08:42:39 +00005041 for (TemplateArgument Arg : TemplateArgs.getInnermost().take_front(
5042 TD->getTemplateParameters()->size())) {
5043 ArrayRef<TemplateArgument> Unpacked(Arg);
5044 if (Arg.getKind() == TemplateArgument::Pack)
5045 Unpacked = Arg.pack_elements();
5046 for (TemplateArgument UnpackedArg : Unpacked)
5047 Args.addArgument(
5048 getTrivialTemplateArgumentLoc(UnpackedArg, QualType(), Loc));
5049 }
Richard Smith32918772017-02-14 00:25:28 +00005050 QualType T = CheckTemplateIdType(TemplateName(TD), Loc, Args);
5051 if (T.isNull())
5052 return nullptr;
Richard Smithe6d4b772017-06-07 02:42:27 +00005053 auto *SubstRecord = T->getAsCXXRecordDecl();
5054 assert(SubstRecord && "class template id not a class type?");
5055 // Check that this template-id names the primary template and not a
5056 // partial or explicit specialization. (In the latter cases, it's
5057 // meaningless to attempt to find an instantiation of D within the
5058 // specialization.)
5059 // FIXME: The standard doesn't say what should happen here.
Richard Smith4f440e32017-06-08 01:08:50 +00005060 if (FindingInstantiatedContext &&
5061 usesPartialOrExplicitSpecialization(
5062 Loc, cast<ClassTemplateSpecializationDecl>(SubstRecord))) {
Richard Smithe6d4b772017-06-07 02:42:27 +00005063 Diag(Loc, diag::err_specialization_not_primary_template)
5064 << T << (SubstRecord->getTemplateSpecializationKind() ==
5065 TSK_ExplicitSpecialization);
5066 return nullptr;
5067 }
5068 DC = SubstRecord;
Richard Smith32918772017-02-14 00:25:28 +00005069 continue;
5070 }
John McCall59660882009-08-29 08:11:13 +00005071 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005072
Douglas Gregor4109afa2011-11-07 17:43:18 +00005073 DC = DC->getParent();
John McCall59660882009-08-29 08:11:13 +00005074 }
Douglas Gregord225fa02010-02-05 22:40:03 +00005075
Douglas Gregor64621e62009-09-16 18:34:49 +00005076 // Fall through to deal with other dependent record types (e.g.,
5077 // anonymous unions in class templates).
5078 }
John McCall59660882009-08-29 08:11:13 +00005079
Douglas Gregor64621e62009-09-16 18:34:49 +00005080 if (!ParentDC->isDependentContext())
5081 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005082
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005083 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00005084 if (!ParentDC)
Craig Topperc3ec1492014-05-26 06:22:03 +00005085 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00005086
Douglas Gregor51783312009-05-27 05:35:12 +00005087 if (ParentDC != D->getDeclContext()) {
5088 // We performed some kind of instantiation in the parent context,
5089 // so now we need to look into the instantiated parent context to
5090 // find the instantiation of the declaration D.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005091
John McCalle78aac42010-03-10 03:28:59 +00005092 // If our context used to be dependent, we may need to instantiate
5093 // it before performing lookup into that context.
Douglas Gregor528ad932011-03-06 20:12:45 +00005094 bool IsBeingInstantiated = false;
John McCalle78aac42010-03-10 03:28:59 +00005095 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005096 if (!Spec->isDependentContext()) {
5097 QualType T = Context.getTypeDeclType(Spec);
John McCalle78aac42010-03-10 03:28:59 +00005098 const RecordType *Tag = T->getAs<RecordType>();
5099 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregor528ad932011-03-06 20:12:45 +00005100 if (Tag->isBeingDefined())
5101 IsBeingInstantiated = true;
John McCalle78aac42010-03-10 03:28:59 +00005102 if (!Tag->isBeingDefined() &&
5103 RequireCompleteType(Loc, T, diag::err_incomplete_type))
Craig Topperc3ec1492014-05-26 06:22:03 +00005104 return nullptr;
Douglas Gregor25edf432010-11-05 23:22:45 +00005105
5106 ParentDC = Tag->getDecl();
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005107 }
5108 }
5109
Craig Topperc3ec1492014-05-26 06:22:03 +00005110 NamedDecl *Result = nullptr;
Richard Smith151c4562016-12-20 21:35:28 +00005111 // FIXME: If the name is a dependent name, this lookup won't necessarily
5112 // find it. Does that ever matter?
Akira Hatanaka59e3b432017-01-31 19:53:32 +00005113 if (auto Name = D->getDeclName()) {
5114 DeclarationNameInfo NameInfo(Name, D->getLocation());
5115 Name = SubstDeclarationNameInfo(NameInfo, TemplateArgs).getName();
5116 if (!Name)
5117 return nullptr;
5118 DeclContext::lookup_result Found = ParentDC->lookup(Name);
David Blaikieff7d47a2012-12-19 00:45:41 +00005119 Result = findInstantiationOf(Context, D, Found.begin(), Found.end());
Douglas Gregor51783312009-05-27 05:35:12 +00005120 } else {
5121 // Since we don't have a name for the entity we're looking for,
5122 // our only option is to walk through all of the declarations to
5123 // find that name. This will occur in a few cases:
5124 //
5125 // - anonymous struct/union within a template
5126 // - unnamed class/struct/union/enum within a template
5127 //
5128 // FIXME: Find a better way to find these instantiations!
Mike Stump11289f42009-09-09 15:08:12 +00005129 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005130 ParentDC->decls_begin(),
5131 ParentDC->decls_end());
Douglas Gregor51783312009-05-27 05:35:12 +00005132 }
Mike Stump11289f42009-09-09 15:08:12 +00005133
Douglas Gregor528ad932011-03-06 20:12:45 +00005134 if (!Result) {
5135 if (isa<UsingShadowDecl>(D)) {
5136 // UsingShadowDecls can instantiate to nothing because of using hiding.
5137 } else if (Diags.hasErrorOccurred()) {
5138 // We've already complained about something, so most likely this
5139 // declaration failed to instantiate. There's no point in complaining
5140 // further, since this is normal in invalid code.
5141 } else if (IsBeingInstantiated) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005142 // The class in which this member exists is currently being
Douglas Gregor528ad932011-03-06 20:12:45 +00005143 // instantiated, and we haven't gotten around to instantiating this
5144 // member yet. This can happen when the code uses forward declarations
5145 // of member classes, and introduces ordering dependencies via
5146 // template instantiation.
5147 Diag(Loc, diag::err_member_not_yet_instantiated)
5148 << D->getDeclName()
5149 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
5150 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith169f2192012-03-26 20:28:16 +00005151 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
5152 // This enumeration constant was found when the template was defined,
5153 // but can't be found in the instantiation. This can happen if an
5154 // unscoped enumeration member is explicitly specialized.
5155 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
5156 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
5157 TemplateArgs));
5158 assert(Spec->getTemplateSpecializationKind() ==
5159 TSK_ExplicitSpecialization);
5160 Diag(Loc, diag::err_enumerator_does_not_exist)
5161 << D->getDeclName()
5162 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
5163 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
5164 << Context.getTypeDeclType(Spec);
Douglas Gregor528ad932011-03-06 20:12:45 +00005165 } else {
5166 // We should have found something, but didn't.
5167 llvm_unreachable("Unable to find instantiation of declaration!");
5168 }
5169 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005170
Douglas Gregor51783312009-05-27 05:35:12 +00005171 D = Result;
5172 }
5173
Douglas Gregor51783312009-05-27 05:35:12 +00005174 return D;
5175}
Douglas Gregor77b50e12009-06-22 23:06:13 +00005176
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005177/// Performs template instantiation for all implicit template
Douglas Gregor77b50e12009-06-22 23:06:13 +00005178/// instantiations we have seen until this point.
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00005179void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005180 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth54080172010-08-25 08:44:16 +00005181 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005182 PendingImplicitInstantiation Inst;
5183
5184 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth54080172010-08-25 08:44:16 +00005185 Inst = PendingInstantiations.front();
5186 PendingInstantiations.pop_front();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005187 } else {
5188 Inst = PendingLocalImplicitInstantiations.front();
5189 PendingLocalImplicitInstantiations.pop_front();
5190 }
Mike Stump11289f42009-09-09 15:08:12 +00005191
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005192 // Instantiate function definitions
5193 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005194 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
5195 TSK_ExplicitInstantiationDefinition;
5196 InstantiateFunctionDefinition(/*FIXME:*/Inst.second, Function, true,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00005197 DefinitionRequired, true);
Sunil Srivastava15ed2922017-06-20 22:08:44 +00005198 if (Function->isDefined())
5199 Function->setInstantiationIsPending(false);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005200 continue;
5201 }
Mike Stump11289f42009-09-09 15:08:12 +00005202
Larisse Voufo39a1e502013-08-06 01:03:05 +00005203 // Instantiate variable definitions
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005204 VarDecl *Var = cast<VarDecl>(Inst.first);
Larisse Voufo39a1e502013-08-06 01:03:05 +00005205
5206 assert((Var->isStaticDataMember() ||
5207 isa<VarTemplateSpecializationDecl>(Var)) &&
5208 "Not a static data member, nor a variable template"
5209 " specialization?");
Anders Carlsson62215c42009-09-01 05:12:24 +00005210
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005211 // Don't try to instantiate declarations if the most recent redeclaration
5212 // is invalid.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005213 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005214 continue;
5215
5216 // Check if the most recent declaration has changed the specialization kind
5217 // and removed the need for implicit instantiation.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005218 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005219 case TSK_Undeclared:
David Blaikie83d382b2011-09-23 05:06:16 +00005220 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005221 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005222 case TSK_ExplicitSpecialization:
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005223 continue; // No longer need to instantiate this type.
5224 case TSK_ExplicitInstantiationDefinition:
5225 // We only need an instantiation if the pending instantiation *is* the
5226 // explicit instantiation.
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00005227 if (Var != Var->getMostRecentDecl())
5228 continue;
5229 break;
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005230 case TSK_ImplicitInstantiation:
5231 break;
5232 }
5233
Jordan Rose1e879d82018-03-23 00:07:18 +00005234 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00005235 "instantiating variable definition");
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005236 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
5237 TSK_ExplicitInstantiationDefinition;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005238
5239 // Instantiate static data member definitions or variable template
5240 // specializations.
5241 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00005242 DefinitionRequired, true);
Douglas Gregor77b50e12009-06-22 23:06:13 +00005243 }
5244}
John McCallc62bb642010-03-24 05:22:00 +00005245
5246void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
5247 const MultiLevelTemplateArgumentList &TemplateArgs) {
Aaron Ballmanb105e492014-03-07 14:09:15 +00005248 for (auto DD : Pattern->ddiags()) {
John McCallc62bb642010-03-24 05:22:00 +00005249 switch (DD->getKind()) {
5250 case DependentDiagnostic::Access:
5251 HandleDependentAccessCheck(*DD, TemplateArgs);
5252 break;
5253 }
5254 }
5255}