blob: 2c29b8cbcc197c58982f5ba7c9ad1c5a453d1742 [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") &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000565 SemaRef.getSourceManager().isInSystemHeader(D->getBeginLoc()))
Richard Smith2ddcbab2012-10-23 00:32:41 +0000566 // 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)
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000573 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
Richard Smithdda56e42011-04-15 14:24:37 +0000574 D->getLocation(), D->getIdentifier(), DI);
575 else
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000576 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
Richard Smithdda56e42011-04-15 14:24:37 +0000577 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.
Fangrui Song6907ce22018-07-30 19:24:48 +0000732 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
Douglas Gregor8ca0c642011-12-10 01:22:52 +0000733 SemaRef.inferObjCARCLifetime(Var))
734 Var->setInvalidDecl();
735
Larisse Voufo39a1e502013-08-06 01:03:05 +0000736 // Substitute the nested name specifier, if any.
737 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +0000738 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000739
Richard Smith541b38b2013-09-20 01:15:31 +0000740 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs, Owner,
Larisse Voufo72caf2b2013-08-22 00:59:14 +0000741 StartingScope, InstantiatingVarTemplate);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000742
743 if (D->isNRVOVariable()) {
744 QualType ReturnType = cast<FunctionDecl>(DC)->getReturnType();
Richard Trieu09c163b2018-03-15 03:00:55 +0000745 if (SemaRef.isCopyElisionCandidate(ReturnType, Var, Sema::CES_Strict))
Taiju Tsuiki3be68e12018-06-19 05:35:30 +0000746 Var->setNRVOVariable(true);
Nick Lewyckyd78f92f2014-05-03 00:41:18 +0000747 }
Taiju Tsuiki3be68e12018-06-19 05:35:30 +0000748
Alexander Kornienko83a4e182014-05-27 21:29:22 +0000749 Var->setImplicit(D->isImplicit());
750
Douglas Gregoref1a09a2009-03-25 23:32:15 +0000751 return Var;
752}
753
Abramo Bagnarad7340582010-06-05 05:09:32 +0000754Decl *TemplateDeclInstantiator::VisitAccessSpecDecl(AccessSpecDecl *D) {
755 AccessSpecDecl* AD
756 = AccessSpecDecl::Create(SemaRef.Context, D->getAccess(), Owner,
757 D->getAccessSpecifierLoc(), D->getColonLoc());
758 Owner->addHiddenDecl(AD);
759 return AD;
760}
761
Douglas Gregord7e7a512009-03-17 21:15:40 +0000762Decl *TemplateDeclInstantiator::VisitFieldDecl(FieldDecl *D) {
763 bool Invalid = false;
John McCallbcd03502009-12-07 02:54:59 +0000764 TypeSourceInfo *DI = D->getTypeSourceInfo();
Douglas Gregor678d76c2011-07-01 01:22:09 +0000765 if (DI->getType()->isInstantiationDependentType() ||
Douglas Gregor5a5073e2010-05-24 17:22:01 +0000766 DI->getType()->isVariablyModifiedType()) {
John McCall90459c52009-10-22 23:33:21 +0000767 DI = SemaRef.SubstType(DI, TemplateArgs,
768 D->getLocation(), D->getDeclName());
769 if (!DI) {
John McCallbcd03502009-12-07 02:54:59 +0000770 DI = D->getTypeSourceInfo();
John McCall90459c52009-10-22 23:33:21 +0000771 Invalid = true;
772 } else if (DI->getType()->isFunctionType()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +0000773 // C++ [temp.arg.type]p3:
774 // If a declaration acquires a function type through a type
775 // dependent on a template-parameter and this causes a
776 // declaration that does not use the syntactic form of a
777 // function declarator to have function type, the program is
778 // ill-formed.
779 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
John McCall90459c52009-10-22 23:33:21 +0000780 << DI->getType();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000781 Invalid = true;
782 }
Douglas Gregor5597ab42010-05-07 23:12:07 +0000783 } else {
784 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000785 }
786
787 Expr *BitWidth = D->getBitWidth();
788 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +0000789 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000790 else if (BitWidth) {
Richard Smith764d2fe2011-12-20 02:08:33 +0000791 // The bit-width expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000792 EnterExpressionEvaluationContext Unevaluated(
793 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000794
John McCalldadc5752010-08-24 06:29:42 +0000795 ExprResult InstantiatedBitWidth
John McCall76d824f2009-08-25 22:02:44 +0000796 = SemaRef.SubstExpr(BitWidth, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000797 if (InstantiatedBitWidth.isInvalid()) {
798 Invalid = true;
Craig Topperc3ec1492014-05-26 06:22:03 +0000799 BitWidth = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000800 } else
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000801 BitWidth = InstantiatedBitWidth.getAs<Expr>();
Douglas Gregord7e7a512009-03-17 21:15:40 +0000802 }
803
John McCall90459c52009-10-22 23:33:21 +0000804 FieldDecl *Field = SemaRef.CheckFieldDecl(D->getDeclName(),
805 DI->getType(), DI,
Mike Stump11289f42009-09-09 15:08:12 +0000806 cast<RecordDecl>(Owner),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000807 D->getLocation(),
808 D->isMutable(),
809 BitWidth,
Richard Smith2b013182012-06-10 03:12:00 +0000810 D->getInClassInitStyle(),
Richard Smith47ad0172012-05-23 04:22:22 +0000811 D->getInnerLocStart(),
Douglas Gregord7e7a512009-03-17 21:15:40 +0000812 D->getAccess(),
Craig Topperc3ec1492014-05-26 06:22:03 +0000813 nullptr);
Douglas Gregor3c74d412009-10-14 20:14:33 +0000814 if (!Field) {
815 cast<Decl>(Owner)->setInvalidDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +0000816 return nullptr;
Douglas Gregor3c74d412009-10-14 20:14:33 +0000817 }
Mike Stump11289f42009-09-09 15:08:12 +0000818
DeLesley Hutchins30398dd2012-01-20 22:50:54 +0000819 SemaRef.InstantiateAttrs(TemplateArgs, D, Field, LateAttrs, StartingScope);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000820
Richard Smith848e1f12013-02-01 08:12:08 +0000821 if (Field->hasAttrs())
822 SemaRef.CheckAlignasUnderalignment(Field);
823
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000824 if (Invalid)
825 Field->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +0000826
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000827 if (!Field->getDeclName()) {
828 // Keep track of where this decl came from.
829 SemaRef.Context.setInstantiatedFromUnnamedFieldDecl(Field, D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000830 }
Douglas Gregor04163182010-05-21 00:31:19 +0000831 if (CXXRecordDecl *Parent= dyn_cast<CXXRecordDecl>(Field->getDeclContext())) {
832 if (Parent->isAnonymousStructOrUnion() &&
Sebastian Redl50c68252010-08-31 00:36:30 +0000833 Parent->getRedeclContext()->isFunctionOrMethod())
Douglas Gregor04163182010-05-21 00:31:19 +0000834 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000835 }
Mike Stump11289f42009-09-09 15:08:12 +0000836
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000837 Field->setImplicit(D->isImplicit());
John McCall401982f2010-01-20 21:53:11 +0000838 Field->setAccess(D->getAccess());
Anders Carlsson2e56cc62009-09-02 19:17:55 +0000839 Owner->addDecl(Field);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000840
841 return Field;
842}
843
John McCall5e77d762013-04-16 07:28:30 +0000844Decl *TemplateDeclInstantiator::VisitMSPropertyDecl(MSPropertyDecl *D) {
845 bool Invalid = false;
846 TypeSourceInfo *DI = D->getTypeSourceInfo();
847
848 if (DI->getType()->isVariablyModifiedType()) {
849 SemaRef.Diag(D->getLocation(), diag::err_property_is_variably_modified)
Aaron Ballman1bda4592014-01-03 01:09:27 +0000850 << D;
John McCall5e77d762013-04-16 07:28:30 +0000851 Invalid = true;
852 } else if (DI->getType()->isInstantiationDependentType()) {
853 DI = SemaRef.SubstType(DI, TemplateArgs,
854 D->getLocation(), D->getDeclName());
855 if (!DI) {
856 DI = D->getTypeSourceInfo();
857 Invalid = true;
858 } else if (DI->getType()->isFunctionType()) {
859 // C++ [temp.arg.type]p3:
860 // If a declaration acquires a function type through a type
861 // dependent on a template-parameter and this causes a
862 // declaration that does not use the syntactic form of a
863 // function declarator to have function type, the program is
864 // ill-formed.
865 SemaRef.Diag(D->getLocation(), diag::err_field_instantiates_to_function)
866 << DI->getType();
867 Invalid = true;
868 }
869 } else {
870 SemaRef.MarkDeclarationsReferencedInType(D->getLocation(), DI->getType());
871 }
872
Richard Smithf7981722013-11-22 09:01:48 +0000873 MSPropertyDecl *Property = MSPropertyDecl::Create(
874 SemaRef.Context, Owner, D->getLocation(), D->getDeclName(), DI->getType(),
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000875 DI, D->getBeginLoc(), D->getGetterId(), D->getSetterId());
John McCall5e77d762013-04-16 07:28:30 +0000876
877 SemaRef.InstantiateAttrs(TemplateArgs, D, Property, LateAttrs,
878 StartingScope);
879
880 if (Invalid)
881 Property->setInvalidDecl();
882
883 Property->setAccess(D->getAccess());
884 Owner->addDecl(Property);
885
886 return Property;
887}
888
Francois Pichet783dd6e2010-11-21 06:08:52 +0000889Decl *TemplateDeclInstantiator::VisitIndirectFieldDecl(IndirectFieldDecl *D) {
890 NamedDecl **NamedChain =
891 new (SemaRef.Context)NamedDecl*[D->getChainingSize()];
892
893 int i = 0;
Aaron Ballman29c94602014-03-07 18:36:15 +0000894 for (auto *PI : D->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +0000895 NamedDecl *Next = SemaRef.FindInstantiatedDecl(D->getLocation(), PI,
Douglas Gregor55e6b312011-03-04 19:46:35 +0000896 TemplateArgs);
897 if (!Next)
Craig Topperc3ec1492014-05-26 06:22:03 +0000898 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000899
Douglas Gregor55e6b312011-03-04 19:46:35 +0000900 NamedChain[i++] = Next;
901 }
Francois Pichet783dd6e2010-11-21 06:08:52 +0000902
Francois Pichetdbafc192010-12-09 10:07:54 +0000903 QualType T = cast<FieldDecl>(NamedChain[i-1])->getType();
Aaron Ballman260995b2014-10-15 16:58:18 +0000904 IndirectFieldDecl *IndirectField = IndirectFieldDecl::Create(
905 SemaRef.Context, Owner, D->getLocation(), D->getIdentifier(), T,
David Majnemer59f77922016-06-24 04:05:48 +0000906 {NamedChain, D->getChainingSize()});
Francois Pichet783dd6e2010-11-21 06:08:52 +0000907
NAKAMURA Takumi729be142014-10-27 12:37:26 +0000908 for (const auto *Attr : D->attrs())
909 IndirectField->addAttr(Attr->clone(SemaRef.Context));
Francois Pichet783dd6e2010-11-21 06:08:52 +0000910
911 IndirectField->setImplicit(D->isImplicit());
912 IndirectField->setAccess(D->getAccess());
913 Owner->addDecl(IndirectField);
914 return IndirectField;
915}
916
John McCallaa74a0c2009-08-28 07:59:38 +0000917Decl *TemplateDeclInstantiator::VisitFriendDecl(FriendDecl *D) {
John McCallaa74a0c2009-08-28 07:59:38 +0000918 // Handle friend type expressions by simply substituting template
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000919 // parameters into the pattern type and checking the result.
John McCall15ad0962010-03-25 18:04:51 +0000920 if (TypeSourceInfo *Ty = D->getFriendType()) {
Chandler Carruth08836322011-05-01 00:51:33 +0000921 TypeSourceInfo *InstTy;
922 // If this is an unsupported friend, don't bother substituting template
923 // arguments into it. The actual type referred to won't be used by any
924 // parts of Clang, and may not be valid for instantiating. Just use the
925 // same info for the instantiated friend.
926 if (D->isUnsupportedFriend()) {
927 InstTy = Ty;
928 } else {
929 InstTy = SemaRef.SubstType(Ty, TemplateArgs,
930 D->getLocation(), DeclarationName());
931 }
932 if (!InstTy)
Craig Topperc3ec1492014-05-26 06:22:03 +0000933 return nullptr;
John McCallaa74a0c2009-08-28 07:59:38 +0000934
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000935 FriendDecl *FD = SemaRef.CheckFriendTypeDecl(D->getBeginLoc(),
Abramo Bagnara254b6302011-10-29 20:52:52 +0000936 D->getFriendLoc(), InstTy);
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000937 if (!FD)
Craig Topperc3ec1492014-05-26 06:22:03 +0000938 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000939
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000940 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000941 FD->setUnsupportedFriend(D->isUnsupportedFriend());
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000942 Owner->addDecl(FD);
943 return FD;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000944 }
945
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000946 NamedDecl *ND = D->getFriendDecl();
947 assert(ND && "friend decl must be a decl or a type!");
948
John McCallb9c78482010-04-08 09:05:18 +0000949 // All of the Visit implementations for the various potential friend
950 // declarations have to be carefully written to work for friend
951 // objects, with the most important detail being that the target
952 // decl should almost certainly not be placed in Owner.
953 Decl *NewND = Visit(ND);
Craig Topperc3ec1492014-05-26 06:22:03 +0000954 if (!NewND) return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +0000955
John McCallaa74a0c2009-08-28 07:59:38 +0000956 FriendDecl *FD =
NAKAMURA Takumi82a35112011-10-08 11:31:46 +0000957 FriendDecl::Create(SemaRef.Context, Owner, D->getLocation(),
Douglas Gregor3b4abb62010-04-07 17:57:12 +0000958 cast<NamedDecl>(NewND), D->getFriendLoc());
John McCall75c03bb2009-08-29 03:50:18 +0000959 FD->setAccess(AS_public);
John McCallace48cd2010-10-19 01:40:49 +0000960 FD->setUnsupportedFriend(D->isUnsupportedFriend());
John McCallaa74a0c2009-08-28 07:59:38 +0000961 Owner->addDecl(FD);
962 return FD;
John McCall58de3582009-08-14 02:03:10 +0000963}
964
Douglas Gregord7e7a512009-03-17 21:15:40 +0000965Decl *TemplateDeclInstantiator::VisitStaticAssertDecl(StaticAssertDecl *D) {
966 Expr *AssertExpr = D->getAssertExpr();
Mike Stump11289f42009-09-09 15:08:12 +0000967
Richard Smith764d2fe2011-12-20 02:08:33 +0000968 // The expression in a static assertion is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +0000969 EnterExpressionEvaluationContext Unevaluated(
970 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +0000971
John McCalldadc5752010-08-24 06:29:42 +0000972 ExprResult InstantiatedAssertExpr
John McCall76d824f2009-08-25 22:02:44 +0000973 = SemaRef.SubstExpr(AssertExpr, TemplateArgs);
Douglas Gregord7e7a512009-03-17 21:15:40 +0000974 if (InstantiatedAssertExpr.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +0000975 return nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +0000976
Richard Smithded9c2e2012-07-11 22:37:56 +0000977 return SemaRef.BuildStaticAssertDeclaration(D->getLocation(),
John McCallb268a282010-08-23 23:25:46 +0000978 InstantiatedAssertExpr.get(),
Richard Smithded9c2e2012-07-11 22:37:56 +0000979 D->getMessage(),
980 D->getRParenLoc(),
981 D->isFailed());
Douglas Gregord7e7a512009-03-17 21:15:40 +0000982}
983
984Decl *TemplateDeclInstantiator::VisitEnumDecl(EnumDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000985 EnumDecl *PrevDecl = nullptr;
Richard Smith41c79d92014-10-11 00:37:16 +0000986 if (EnumDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Richard Smith2e6610a2012-03-26 04:58:10 +0000987 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +0000988 PatternPrev,
Richard Smith2e6610a2012-03-26 04:58:10 +0000989 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +0000990 if (!Prev) return nullptr;
Richard Smith2e6610a2012-03-26 04:58:10 +0000991 PrevDecl = cast<EnumDecl>(Prev);
992 }
993
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000994 EnumDecl *Enum =
995 EnumDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(),
996 D->getLocation(), D->getIdentifier(), PrevDecl,
997 D->isScoped(), D->isScopedUsingClassTag(), D->isFixed());
Douglas Gregor0bf31402010-10-08 23:50:27 +0000998 if (D->isFixed()) {
Richard Smith4b38ded2012-03-14 23:13:10 +0000999 if (TypeSourceInfo *TI = D->getIntegerTypeSourceInfo()) {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001000 // If we have type source information for the underlying type, it means it
1001 // has been explicitly set by the user. Perform substitution on it before
1002 // moving on.
1003 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
Richard Smith4b38ded2012-03-14 23:13:10 +00001004 TypeSourceInfo *NewTI = SemaRef.SubstType(TI, TemplateArgs, UnderlyingLoc,
1005 DeclarationName());
1006 if (!NewTI || SemaRef.CheckEnumUnderlyingType(NewTI))
Douglas Gregor0bf31402010-10-08 23:50:27 +00001007 Enum->setIntegerType(SemaRef.Context.IntTy);
Richard Smith4b38ded2012-03-14 23:13:10 +00001008 else
1009 Enum->setIntegerTypeSourceInfo(NewTI);
1010 } else {
Douglas Gregor0bf31402010-10-08 23:50:27 +00001011 assert(!D->getIntegerType()->isDependentType()
1012 && "Dependent type without type source info");
1013 Enum->setIntegerType(D->getIntegerType());
1014 }
1015 }
1016
John McCall811a0f52010-10-22 23:36:17 +00001017 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
1018
Richard Smith4b38ded2012-03-14 23:13:10 +00001019 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
Douglas Gregor6c2adff2009-03-25 22:00:53 +00001020 Enum->setAccess(D->getAccess());
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001021 // Forward the mangling number from the template to the instantiated decl.
1022 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
David Majnemer00350522015-08-31 18:48:39 +00001023 // See if the old tag was defined along with a declarator.
1024 // If it did, mark the new tag as being associated with that declarator.
1025 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1026 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Enum, DD);
1027 // See if the old tag was defined along with a typedef.
1028 // If it did, mark the new tag as being associated with that typedef.
1029 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1030 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Enum, TND);
Craig Topperc3ec1492014-05-26 06:22:03 +00001031 if (SubstQualifier(D, Enum)) return nullptr;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001032 Owner->addDecl(Enum);
Richard Smith4b38ded2012-03-14 23:13:10 +00001033
Richard Smith258a7442012-03-26 04:08:46 +00001034 EnumDecl *Def = D->getDefinition();
1035 if (Def && Def != D) {
1036 // If this is an out-of-line definition of an enum member template, check
1037 // that the underlying types match in the instantiation of both
1038 // declarations.
1039 if (TypeSourceInfo *TI = Def->getIntegerTypeSourceInfo()) {
1040 SourceLocation UnderlyingLoc = TI->getTypeLoc().getBeginLoc();
1041 QualType DefnUnderlying =
1042 SemaRef.SubstType(TI->getType(), TemplateArgs,
1043 UnderlyingLoc, DeclarationName());
1044 SemaRef.CheckEnumRedeclaration(Def->getLocation(), Def->isScoped(),
Reid Klecknerb0a17ed2018-02-12 17:37:06 +00001045 DefnUnderlying, /*IsFixed=*/true, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001046 }
1047 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001048
Richard Smith4b38ded2012-03-14 23:13:10 +00001049 // C++11 [temp.inst]p1: The implicit instantiation of a class template
1050 // specialization causes the implicit instantiation of the declarations, but
1051 // not the definitions of scoped member enumerations.
David Majnemer192d1792013-11-27 08:20:38 +00001052 //
1053 // DR1484 clarifies that enumeration definitions inside of a template
1054 // declaration aren't considered entities that can be separately instantiated
1055 // from the rest of the entity they are declared inside of.
1056 if (isDeclWithinFunction(D) ? D == Def : Def && !Enum->isScoped()) {
1057 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Enum);
Richard Smith258a7442012-03-26 04:08:46 +00001058 InstantiateEnumDefinition(Enum, Def);
David Majnemer192d1792013-11-27 08:20:38 +00001059 }
Richard Smith4b38ded2012-03-14 23:13:10 +00001060
1061 return Enum;
1062}
1063
1064void TemplateDeclInstantiator::InstantiateEnumDefinition(
1065 EnumDecl *Enum, EnumDecl *Pattern) {
1066 Enum->startDefinition();
1067
Richard Smith7d137e32012-03-23 03:33:32 +00001068 // Update the location to refer to the definition.
1069 Enum->setLocation(Pattern->getLocation());
1070
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001071 SmallVector<Decl*, 4> Enumerators;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001072
Craig Topperc3ec1492014-05-26 06:22:03 +00001073 EnumConstantDecl *LastEnumConst = nullptr;
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001074 for (auto *EC : Pattern->enumerators()) {
Douglas Gregord7e7a512009-03-17 21:15:40 +00001075 // The specified value for the enumerator.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001076 ExprResult Value((Expr *)nullptr);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001077 if (Expr *UninstValue = EC->getInitExpr()) {
Richard Smith764d2fe2011-12-20 02:08:33 +00001078 // The enumerator's value expression is a constant expression.
Faisal Valid143a0c2017-04-01 21:30:49 +00001079 EnterExpressionEvaluationContext Unevaluated(
1080 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
Mike Stump11289f42009-09-09 15:08:12 +00001081
John McCall76d824f2009-08-25 22:02:44 +00001082 Value = SemaRef.SubstExpr(UninstValue, TemplateArgs);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00001083 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001084
1085 // Drop the initial value and continue.
1086 bool isInvalid = false;
1087 if (Value.isInvalid()) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001088 Value = nullptr;
Douglas Gregord7e7a512009-03-17 21:15:40 +00001089 isInvalid = true;
1090 }
1091
Mike Stump11289f42009-09-09 15:08:12 +00001092 EnumConstantDecl *EnumConst
Douglas Gregord7e7a512009-03-17 21:15:40 +00001093 = SemaRef.CheckEnumConstant(Enum, LastEnumConst,
1094 EC->getLocation(), EC->getIdentifier(),
John McCallb268a282010-08-23 23:25:46 +00001095 Value.get());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001096
1097 if (isInvalid) {
1098 if (EnumConst)
1099 EnumConst->setInvalidDecl();
1100 Enum->setInvalidDecl();
1101 }
1102
1103 if (EnumConst) {
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001104 SemaRef.InstantiateAttrs(TemplateArgs, EC, EnumConst);
John McCall811a0f52010-10-22 23:36:17 +00001105
John McCallf9b528c2010-01-23 22:37:59 +00001106 EnumConst->setAccess(Enum->getAccess());
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001107 Enum->addDecl(EnumConst);
John McCall48871652010-08-21 09:40:31 +00001108 Enumerators.push_back(EnumConst);
Douglas Gregord7e7a512009-03-17 21:15:40 +00001109 LastEnumConst = EnumConst;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001110
Richard Smith4b38ded2012-03-14 23:13:10 +00001111 if (Pattern->getDeclContext()->isFunctionOrMethod() &&
1112 !Enum->isScoped()) {
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001113 // If the enumeration is within a function or method, record the enum
1114 // constant as a local.
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00001115 SemaRef.CurrentInstantiationScope->InstantiatedLocal(EC, EnumConst);
Douglas Gregoraff9c1a2010-03-01 19:00:07 +00001116 }
Douglas Gregord7e7a512009-03-17 21:15:40 +00001117 }
1118 }
Mike Stump11289f42009-09-09 15:08:12 +00001119
Argyrios Kyrtzidisd798c052016-07-15 18:11:33 +00001120 SemaRef.ActOnEnumBody(Enum->getLocation(), Enum->getBraceRange(), Enum,
Erich Keanec480f302018-07-12 21:09:05 +00001121 Enumerators, nullptr, ParsedAttributesView());
Douglas Gregord7e7a512009-03-17 21:15:40 +00001122}
1123
Douglas Gregor9106b822009-03-25 15:04:13 +00001124Decl *TemplateDeclInstantiator::VisitEnumConstantDecl(EnumConstantDecl *D) {
David Blaikie83d382b2011-09-23 05:06:16 +00001125 llvm_unreachable("EnumConstantDecls can only occur within EnumDecls.");
Douglas Gregor9106b822009-03-25 15:04:13 +00001126}
1127
David Majnemerd9b1a4f2015-11-04 03:40:30 +00001128Decl *
1129TemplateDeclInstantiator::VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D) {
1130 llvm_unreachable("BuiltinTemplateDecls cannot be instantiated.");
1131}
1132
John McCall87a44eb2009-08-20 01:44:21 +00001133Decl *TemplateDeclInstantiator::VisitClassTemplateDecl(ClassTemplateDecl *D) {
John McCall598b4402010-03-25 06:39:04 +00001134 bool isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1135
Douglas Gregor954de172009-10-31 17:21:17 +00001136 // Create a local instantiation scope for this class template, which
1137 // will contain the instantiations of the template parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00001138 LocalInstantiationScope Scope(SemaRef);
John McCall87a44eb2009-08-20 01:44:21 +00001139 TemplateParameterList *TempParams = D->getTemplateParameters();
John McCall76d824f2009-08-25 22:02:44 +00001140 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001141 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001142 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00001143
1144 CXXRecordDecl *Pattern = D->getTemplatedDecl();
John McCall598b4402010-03-25 06:39:04 +00001145
1146 // Instantiate the qualifier. We have to do this first in case
1147 // we're a friend declaration, because if we are then we need to put
1148 // the new declaration in the appropriate context.
Douglas Gregor14454802011-02-25 02:25:35 +00001149 NestedNameSpecifierLoc QualifierLoc = Pattern->getQualifierLoc();
1150 if (QualifierLoc) {
1151 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1152 TemplateArgs);
1153 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001154 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001155 }
1156
Craig Topperc3ec1492014-05-26 06:22:03 +00001157 CXXRecordDecl *PrevDecl = nullptr;
1158 ClassTemplateDecl *PrevClassTemplate = nullptr;
John McCall598b4402010-03-25 06:39:04 +00001159
Richard Smith41c79d92014-10-11 00:37:16 +00001160 if (!isFriend && getPreviousDeclForInstantiation(Pattern)) {
Nick Lewycky61478912010-11-08 23:29:42 +00001161 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001162 if (!Found.empty()) {
1163 PrevClassTemplate = dyn_cast<ClassTemplateDecl>(Found.front());
Nick Lewycky61478912010-11-08 23:29:42 +00001164 if (PrevClassTemplate)
1165 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1166 }
1167 }
1168
John McCall598b4402010-03-25 06:39:04 +00001169 // If this isn't a friend, then it's a member template, in which
1170 // case we just want to build the instantiation in the
1171 // specialization. If it is a friend, we want to build it in
1172 // the appropriate context.
1173 DeclContext *DC = Owner;
1174 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001175 if (QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001176 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001177 SS.Adopt(QualifierLoc);
John McCall598b4402010-03-25 06:39:04 +00001178 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001179 if (!DC) return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001180 } else {
1181 DC = SemaRef.FindInstantiatedContext(Pattern->getLocation(),
1182 Pattern->getDeclContext(),
1183 TemplateArgs);
1184 }
1185
1186 // Look for a previous declaration of the template in the owning
1187 // context.
1188 LookupResult R(SemaRef, Pattern->getDeclName(), Pattern->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00001189 Sema::LookupOrdinaryName,
1190 SemaRef.forRedeclarationInCurContext());
John McCall598b4402010-03-25 06:39:04 +00001191 SemaRef.LookupQualifiedName(R, DC);
1192
1193 if (R.isSingleResult()) {
1194 PrevClassTemplate = R.getAsSingle<ClassTemplateDecl>();
1195 if (PrevClassTemplate)
1196 PrevDecl = PrevClassTemplate->getTemplatedDecl();
1197 }
1198
Douglas Gregor14454802011-02-25 02:25:35 +00001199 if (!PrevClassTemplate && QualifierLoc) {
John McCall598b4402010-03-25 06:39:04 +00001200 SemaRef.Diag(Pattern->getLocation(), diag::err_not_tag_in_scope)
Douglas Gregorf5af3582010-03-31 23:17:41 +00001201 << D->getTemplatedDecl()->getTagKind() << Pattern->getDeclName() << DC
Douglas Gregor14454802011-02-25 02:25:35 +00001202 << QualifierLoc.getSourceRange();
Craig Topperc3ec1492014-05-26 06:22:03 +00001203 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001204 }
1205
Douglas Gregor01e09d92010-04-08 18:16:15 +00001206 bool AdoptedPreviousTemplateParams = false;
John McCall598b4402010-03-25 06:39:04 +00001207 if (PrevClassTemplate) {
Douglas Gregor01e09d92010-04-08 18:16:15 +00001208 bool Complain = true;
1209
1210 // HACK: libstdc++ 4.2.1 contains an ill-formed friend class
1211 // template for struct std::tr1::__detail::_Map_base, where the
1212 // template parameters of the friend declaration don't match the
1213 // template parameters of the original declaration. In this one
1214 // case, we don't complain about the ill-formed friend
1215 // declaration.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001216 if (isFriend && Pattern->getIdentifier() &&
Douglas Gregor01e09d92010-04-08 18:16:15 +00001217 Pattern->getIdentifier()->isStr("_Map_base") &&
1218 DC->isNamespace() &&
1219 cast<NamespaceDecl>(DC)->getIdentifier() &&
1220 cast<NamespaceDecl>(DC)->getIdentifier()->isStr("__detail")) {
1221 DeclContext *DCParent = DC->getParent();
1222 if (DCParent->isNamespace() &&
1223 cast<NamespaceDecl>(DCParent)->getIdentifier() &&
1224 cast<NamespaceDecl>(DCParent)->getIdentifier()->isStr("tr1")) {
Richard Trieuc771d5d2014-05-28 02:16:01 +00001225 if (cast<Decl>(DCParent)->isInStdNamespace())
Douglas Gregor01e09d92010-04-08 18:16:15 +00001226 Complain = false;
1227 }
1228 }
1229
John McCall598b4402010-03-25 06:39:04 +00001230 TemplateParameterList *PrevParams
Richard Smithc4577662018-09-12 02:13:47 +00001231 = PrevClassTemplate->getMostRecentDecl()->getTemplateParameters();
John McCall598b4402010-03-25 06:39:04 +00001232
1233 // Make sure the parameter lists match.
1234 if (!SemaRef.TemplateParameterListsAreEqual(InstParams, PrevParams,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001235 Complain,
Douglas Gregor01e09d92010-04-08 18:16:15 +00001236 Sema::TPL_TemplateMatch)) {
1237 if (Complain)
Craig Topperc3ec1492014-05-26 06:22:03 +00001238 return nullptr;
Douglas Gregor01e09d92010-04-08 18:16:15 +00001239
1240 AdoptedPreviousTemplateParams = true;
1241 InstParams = PrevParams;
1242 }
John McCall598b4402010-03-25 06:39:04 +00001243
1244 // Do some additional validation, then merge default arguments
1245 // from the existing declarations.
Douglas Gregor01e09d92010-04-08 18:16:15 +00001246 if (!AdoptedPreviousTemplateParams &&
1247 SemaRef.CheckTemplateParameterList(InstParams, PrevParams,
John McCall598b4402010-03-25 06:39:04 +00001248 Sema::TPC_ClassTemplate))
Craig Topperc3ec1492014-05-26 06:22:03 +00001249 return nullptr;
John McCall598b4402010-03-25 06:39:04 +00001250 }
1251 }
1252
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001253 CXXRecordDecl *RecordInst = CXXRecordDecl::Create(
1254 SemaRef.Context, Pattern->getTagKind(), DC, Pattern->getBeginLoc(),
1255 Pattern->getLocation(), Pattern->getIdentifier(), PrevDecl,
1256 /*DelayTypeCreation=*/true);
John McCall87a44eb2009-08-20 01:44:21 +00001257
Douglas Gregor14454802011-02-25 02:25:35 +00001258 if (QualifierLoc)
1259 RecordInst->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001260
John McCall87a44eb2009-08-20 01:44:21 +00001261 ClassTemplateDecl *Inst
John McCall598b4402010-03-25 06:39:04 +00001262 = ClassTemplateDecl::Create(SemaRef.Context, DC, D->getLocation(),
Vassil Vassilev352e4412017-01-12 09:16:26 +00001263 D->getIdentifier(), InstParams, RecordInst);
1264 assert(!(isFriend && Owner->isDependentContext()));
1265 Inst->setPreviousDecl(PrevClassTemplate);
1266
John McCall87a44eb2009-08-20 01:44:21 +00001267 RecordInst->setDescribedClassTemplate(Inst);
John McCall17762b82010-04-08 20:25:50 +00001268
John McCall598b4402010-03-25 06:39:04 +00001269 if (isFriend) {
John McCall17762b82010-04-08 20:25:50 +00001270 if (PrevClassTemplate)
1271 Inst->setAccess(PrevClassTemplate->getAccess());
1272 else
1273 Inst->setAccess(D->getAccess());
1274
Richard Smith64017682013-07-17 23:53:16 +00001275 Inst->setObjectOfFriendDecl();
John McCall598b4402010-03-25 06:39:04 +00001276 // TODO: do we want to track the instantiation progeny of this
1277 // friend target decl?
1278 } else {
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001279 Inst->setAccess(D->getAccess());
Nick Lewycky61478912010-11-08 23:29:42 +00001280 if (!PrevClassTemplate)
1281 Inst->setInstantiatedFromMemberTemplate(D);
John McCall598b4402010-03-25 06:39:04 +00001282 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001283
Douglas Gregoref06ccf2009-10-12 23:11:44 +00001284 // Trigger creation of the type for the instantiation.
John McCalle78aac42010-03-10 03:28:59 +00001285 SemaRef.Context.getInjectedClassNameType(RecordInst,
Douglas Gregor9961ce92010-07-08 18:37:38 +00001286 Inst->getInjectedClassNameSpecialization());
John McCall17762b82010-04-08 20:25:50 +00001287
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001288 // Finish handling of friends.
John McCall598b4402010-03-25 06:39:04 +00001289 if (isFriend) {
Richard Smith05afe5e2012-03-13 03:12:56 +00001290 DC->makeDeclVisibleInContext(Inst);
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001291 Inst->setLexicalDeclContext(Owner);
1292 RecordInst->setLexicalDeclContext(Owner);
Douglas Gregor412e8bc2009-10-30 21:07:27 +00001293 return Inst;
Douglas Gregorbb3b46e2009-10-30 22:42:42 +00001294 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001295
Abramo Bagnaraedf99ff2011-11-26 13:33:46 +00001296 if (D->isOutOfLine()) {
1297 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1298 RecordInst->setLexicalDeclContext(D->getLexicalDeclContext());
1299 }
1300
John McCall87a44eb2009-08-20 01:44:21 +00001301 Owner->addDecl(Inst);
Douglas Gregor869853e2010-11-10 19:44:59 +00001302
1303 if (!PrevClassTemplate) {
1304 // Queue up any out-of-line partial specializations of this member
1305 // class template; the client will force their instantiation once
1306 // the enclosing class has been instantiated.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001307 SmallVector<ClassTemplatePartialSpecializationDecl *, 4> PartialSpecs;
Douglas Gregor869853e2010-11-10 19:44:59 +00001308 D->getPartialSpecializations(PartialSpecs);
1309 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001310 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Douglas Gregor869853e2010-11-10 19:44:59 +00001311 OutOfLinePartialSpecs.push_back(std::make_pair(Inst, PartialSpecs[I]));
1312 }
1313
John McCall87a44eb2009-08-20 01:44:21 +00001314 return Inst;
1315}
1316
Douglas Gregore704c9d2009-08-27 16:57:43 +00001317Decl *
Douglas Gregore4b05162009-10-07 17:21:34 +00001318TemplateDeclInstantiator::VisitClassTemplatePartialSpecializationDecl(
1319 ClassTemplatePartialSpecializationDecl *D) {
Douglas Gregor21610382009-10-29 00:04:11 +00001320 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001321
Douglas Gregor21610382009-10-29 00:04:11 +00001322 // Lookup the already-instantiated declaration in the instantiation
1323 // of the class template and return that.
1324 DeclContext::lookup_result Found
1325 = Owner->lookup(ClassTemplate->getDeclName());
David Blaikieff7d47a2012-12-19 00:45:41 +00001326 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00001327 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001328
Douglas Gregor21610382009-10-29 00:04:11 +00001329 ClassTemplateDecl *InstClassTemplate
David Blaikieff7d47a2012-12-19 00:45:41 +00001330 = dyn_cast<ClassTemplateDecl>(Found.front());
Douglas Gregor21610382009-10-29 00:04:11 +00001331 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00001332 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001333
Douglas Gregor869853e2010-11-10 19:44:59 +00001334 if (ClassTemplatePartialSpecializationDecl *Result
1335 = InstClassTemplate->findPartialSpecInstantiatedFromMember(D))
1336 return Result;
1337
1338 return InstantiateClassTemplatePartialSpecialization(InstClassTemplate, D);
Douglas Gregore4b05162009-10-07 17:21:34 +00001339}
1340
Larisse Voufo39a1e502013-08-06 01:03:05 +00001341Decl *TemplateDeclInstantiator::VisitVarTemplateDecl(VarTemplateDecl *D) {
1342 assert(D->getTemplatedDecl()->isStaticDataMember() &&
1343 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001344
1345 // Create a local instantiation scope for this variable template, which
1346 // will contain the instantiations of the template parameters.
1347 LocalInstantiationScope Scope(SemaRef);
1348 TemplateParameterList *TempParams = D->getTemplateParameters();
1349 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1350 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001351 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001352
1353 VarDecl *Pattern = D->getTemplatedDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00001354 VarTemplateDecl *PrevVarTemplate = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001355
Richard Smith41c79d92014-10-11 00:37:16 +00001356 if (getPreviousDeclForInstantiation(Pattern)) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00001357 DeclContext::lookup_result Found = Owner->lookup(Pattern->getDeclName());
1358 if (!Found.empty())
1359 PrevVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1360 }
1361
Richard Smith1c34fb72013-08-13 18:18:50 +00001362 VarDecl *VarInst =
Larisse Voufo72caf2b2013-08-22 00:59:14 +00001363 cast_or_null<VarDecl>(VisitVarDecl(Pattern,
1364 /*InstantiatingVarTemplate=*/true));
Nick Lewycky6ca07ca2015-08-10 21:54:08 +00001365 if (!VarInst) return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00001366
1367 DeclContext *DC = Owner;
1368
Larisse Voufo39a1e502013-08-06 01:03:05 +00001369 VarTemplateDecl *Inst = VarTemplateDecl::Create(
1370 SemaRef.Context, DC, D->getLocation(), D->getIdentifier(), InstParams,
Richard Smithbeef3452014-01-16 23:39:20 +00001371 VarInst);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001372 VarInst->setDescribedVarTemplate(Inst);
Richard Smithbeef3452014-01-16 23:39:20 +00001373 Inst->setPreviousDecl(PrevVarTemplate);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001374
1375 Inst->setAccess(D->getAccess());
1376 if (!PrevVarTemplate)
1377 Inst->setInstantiatedFromMemberTemplate(D);
1378
1379 if (D->isOutOfLine()) {
1380 Inst->setLexicalDeclContext(D->getLexicalDeclContext());
1381 VarInst->setLexicalDeclContext(D->getLexicalDeclContext());
1382 }
1383
1384 Owner->addDecl(Inst);
1385
1386 if (!PrevVarTemplate) {
1387 // Queue up any out-of-line partial specializations of this member
1388 // variable template; the client will force their instantiation once
1389 // the enclosing class has been instantiated.
1390 SmallVector<VarTemplatePartialSpecializationDecl *, 4> PartialSpecs;
1391 D->getPartialSpecializations(PartialSpecs);
1392 for (unsigned I = 0, N = PartialSpecs.size(); I != N; ++I)
Rafael Espindola8db352d2013-10-17 15:37:26 +00001393 if (PartialSpecs[I]->getFirstDecl()->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00001394 OutOfLineVarPartialSpecs.push_back(
1395 std::make_pair(Inst, PartialSpecs[I]));
1396 }
1397
1398 return Inst;
1399}
1400
1401Decl *TemplateDeclInstantiator::VisitVarTemplatePartialSpecializationDecl(
1402 VarTemplatePartialSpecializationDecl *D) {
1403 assert(D->isStaticDataMember() &&
1404 "Only static data member templates are allowed.");
Larisse Voufo39a1e502013-08-06 01:03:05 +00001405
1406 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
1407
1408 // Lookup the already-instantiated declaration and return that.
1409 DeclContext::lookup_result Found = Owner->lookup(VarTemplate->getDeclName());
1410 assert(!Found.empty() && "Instantiation found nothing?");
1411
1412 VarTemplateDecl *InstVarTemplate = dyn_cast<VarTemplateDecl>(Found.front());
1413 assert(InstVarTemplate && "Instantiation did not find a variable template?");
1414
1415 if (VarTemplatePartialSpecializationDecl *Result =
1416 InstVarTemplate->findPartialSpecInstantiatedFromMember(D))
1417 return Result;
1418
1419 return InstantiateVarTemplatePartialSpecialization(InstVarTemplate, D);
1420}
1421
Douglas Gregore4b05162009-10-07 17:21:34 +00001422Decl *
Douglas Gregore704c9d2009-08-27 16:57:43 +00001423TemplateDeclInstantiator::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Douglas Gregor954de172009-10-31 17:21:17 +00001424 // Create a local instantiation scope for this function template, which
1425 // will contain the instantiations of the template parameters and then get
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001426 // merged with the local instantiation scope for the function template
Douglas Gregor954de172009-10-31 17:21:17 +00001427 // itself.
John McCall19c1bfd2010-08-25 05:32:35 +00001428 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor14cf7522010-04-30 18:55:50 +00001429
Douglas Gregore704c9d2009-08-27 16:57:43 +00001430 TemplateParameterList *TempParams = D->getTemplateParameters();
1431 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
Mike Stump11289f42009-09-09 15:08:12 +00001432 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001433 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001434
Craig Topperc3ec1492014-05-26 06:22:03 +00001435 FunctionDecl *Instantiated = nullptr;
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001436 if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(D->getTemplatedDecl()))
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001437 Instantiated = cast_or_null<FunctionDecl>(VisitCXXMethodDecl(DMethod,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001438 InstParams));
1439 else
1440 Instantiated = cast_or_null<FunctionDecl>(VisitFunctionDecl(
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001441 D->getTemplatedDecl(),
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001442 InstParams));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001443
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001444 if (!Instantiated)
Craig Topperc3ec1492014-05-26 06:22:03 +00001445 return nullptr;
Douglas Gregore704c9d2009-08-27 16:57:43 +00001446
Mike Stump11289f42009-09-09 15:08:12 +00001447 // Link the instantiated function template declaration to the function
Douglas Gregore704c9d2009-08-27 16:57:43 +00001448 // template from which it was instantiated.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001449 FunctionTemplateDecl *InstTemplate
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001450 = Instantiated->getDescribedFunctionTemplate();
Douglas Gregorca027af2009-10-12 22:27:17 +00001451 InstTemplate->setAccess(D->getAccess());
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001452 assert(InstTemplate &&
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001453 "VisitFunctionDecl/CXXMethodDecl didn't create a template!");
John McCall2079d0b2009-12-14 23:19:40 +00001454
John McCall30837102010-03-26 23:10:15 +00001455 bool isFriend = (InstTemplate->getFriendObjectKind() != Decl::FOK_None);
1456
John McCall2079d0b2009-12-14 23:19:40 +00001457 // Link the instantiation back to the pattern *unless* this is a
1458 // non-definition friend declaration.
1459 if (!InstTemplate->getInstantiatedFromMemberTemplate() &&
John McCall30837102010-03-26 23:10:15 +00001460 !(isFriend && !D->getTemplatedDecl()->isThisDeclarationADefinition()))
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001461 InstTemplate->setInstantiatedFromMemberTemplate(D);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001462
John McCall30837102010-03-26 23:10:15 +00001463 // Make declarations visible in the appropriate context.
John McCalla0a96892012-08-10 03:15:35 +00001464 if (!isFriend) {
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001465 Owner->addDecl(InstTemplate);
John McCalla0a96892012-08-10 03:15:35 +00001466 } else if (InstTemplate->getDeclContext()->isRecord() &&
Richard Smith41c79d92014-10-11 00:37:16 +00001467 !getPreviousDeclForInstantiation(D)) {
John McCalla0a96892012-08-10 03:15:35 +00001468 SemaRef.CheckFriendAccess(InstTemplate);
1469 }
John McCall30837102010-03-26 23:10:15 +00001470
Douglas Gregore704c9d2009-08-27 16:57:43 +00001471 return InstTemplate;
1472}
1473
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001474Decl *TemplateDeclInstantiator::VisitCXXRecordDecl(CXXRecordDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00001475 CXXRecordDecl *PrevDecl = nullptr;
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001476 if (D->isInjectedClassName())
1477 PrevDecl = cast<CXXRecordDecl>(Owner);
Richard Smith41c79d92014-10-11 00:37:16 +00001478 else if (CXXRecordDecl *PatternPrev = getPreviousDeclForInstantiation(D)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001479 NamedDecl *Prev = SemaRef.FindInstantiatedDecl(D->getLocation(),
Richard Smith41c79d92014-10-11 00:37:16 +00001480 PatternPrev,
John McCalle9f92a02009-12-15 22:29:06 +00001481 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001482 if (!Prev) return nullptr;
John McCalle9f92a02009-12-15 22:29:06 +00001483 PrevDecl = cast<CXXRecordDecl>(Prev);
1484 }
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001485
Stephen Kellyf2ceec42018-08-09 21:08:08 +00001486 CXXRecordDecl *Record = CXXRecordDecl::Create(
1487 SemaRef.Context, D->getTagKind(), Owner, D->getBeginLoc(),
1488 D->getLocation(), D->getIdentifier(), PrevDecl);
John McCall3e11ebe2010-03-15 10:12:16 +00001489
1490 // Substitute the nested name specifier, if any.
1491 if (SubstQualifier(D, Record))
Craig Topperc3ec1492014-05-26 06:22:03 +00001492 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00001493
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001494 Record->setImplicit(D->isImplicit());
Eli Friedmanbda4ef12009-08-27 19:11:42 +00001495 // FIXME: Check against AS_none is an ugly hack to work around the issue that
1496 // the tag decls introduced by friend class declarations don't have an access
1497 // specifier. Remove once this area of the code gets sorted out.
1498 if (D->getAccess() != AS_none)
1499 Record->setAccess(D->getAccess());
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001500 if (!D->isInjectedClassName())
Douglas Gregorbbe8f462009-10-08 15:14:33 +00001501 Record->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001502
John McCallaa74a0c2009-08-28 07:59:38 +00001503 // If the original function was part of a friend declaration,
1504 // inherit its namespace state.
Richard Smith64017682013-07-17 23:53:16 +00001505 if (D->getFriendObjectKind())
1506 Record->setObjectOfFriendDecl();
John McCallaa74a0c2009-08-28 07:59:38 +00001507
Douglas Gregor04163182010-05-21 00:31:19 +00001508 // Make sure that anonymous structs and unions are recorded.
David Majnemer192d1792013-11-27 08:20:38 +00001509 if (D->isAnonymousStructOrUnion())
Douglas Gregor04163182010-05-21 00:31:19 +00001510 Record->setAnonymousStructOrUnion(true);
David Majnemer192d1792013-11-27 08:20:38 +00001511
1512 if (D->isLocalClass())
1513 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Record);
Anders Carlsson5da84842009-09-01 04:26:58 +00001514
David Majnemerdbc0c8f2013-12-04 09:01:55 +00001515 // Forward the mangling number from the template to the instantiated decl.
1516 SemaRef.Context.setManglingNumber(Record,
1517 SemaRef.Context.getManglingNumber(D));
1518
David Majnemer00350522015-08-31 18:48:39 +00001519 // See if the old tag was defined along with a declarator.
1520 // If it did, mark the new tag as being associated with that declarator.
1521 if (DeclaratorDecl *DD = SemaRef.Context.getDeclaratorForUnnamedTagDecl(D))
1522 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Record, DD);
1523
1524 // See if the old tag was defined along with a typedef.
1525 // If it did, mark the new tag as being associated with that typedef.
1526 if (TypedefNameDecl *TND = SemaRef.Context.getTypedefNameForUnnamedTagDecl(D))
1527 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Record, TND);
1528
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001529 Owner->addDecl(Record);
David Majnemer192d1792013-11-27 08:20:38 +00001530
1531 // DR1484 clarifies that the members of a local class are instantiated as part
1532 // of the instantiation of their enclosing entity.
1533 if (D->isCompleteDefinition() && D->isLocalClass()) {
Richard Smith4f3e3812017-05-20 01:36:41 +00001534 Sema::LocalEagerInstantiationScope LocalInstantiations(SemaRef);
Richard Smithb0b68012015-05-11 23:09:06 +00001535
David Majnemera64cb5a2014-02-22 00:17:46 +00001536 SemaRef.InstantiateClass(D->getLocation(), Record, D, TemplateArgs,
1537 TSK_ImplicitInstantiation,
1538 /*Complain=*/true);
Richard Smithb0b68012015-05-11 23:09:06 +00001539
Richard Smithece47582017-01-04 23:45:01 +00001540 // For nested local classes, we will instantiate the members when we
1541 // reach the end of the outermost (non-nested) local class.
1542 if (!D->isCXXClassMember())
1543 SemaRef.InstantiateClassMembers(D->getLocation(), Record, TemplateArgs,
1544 TSK_ImplicitInstantiation);
Richard Smithb0b68012015-05-11 23:09:06 +00001545
1546 // This class may have local implicit instantiations that need to be
1547 // performed within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00001548 LocalInstantiations.perform();
David Majnemer192d1792013-11-27 08:20:38 +00001549 }
Nico Weber72889432014-09-06 01:25:55 +00001550
1551 SemaRef.DiagnoseUnusedNestedTypedefs(Record);
1552
Douglas Gregor8ea8fd42009-03-25 21:17:03 +00001553 return Record;
1554}
1555
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001556/// Adjust the given function type for an instantiation of the
Douglas Gregor89f593a2012-09-13 21:56:43 +00001557/// given declaration, to cope with modifications to the function's type that
1558/// aren't reflected in the type-source information.
1559///
1560/// \param D The declaration we're instantiating.
1561/// \param TInfo The already-instantiated type.
1562static QualType adjustFunctionTypeForInstantiation(ASTContext &Context,
1563 FunctionDecl *D,
1564 TypeSourceInfo *TInfo) {
Douglas Gregor1af8ad42012-09-13 22:01:49 +00001565 const FunctionProtoType *OrigFunc
1566 = D->getType()->castAs<FunctionProtoType>();
1567 const FunctionProtoType *NewFunc
1568 = TInfo->getType()->castAs<FunctionProtoType>();
1569 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo())
1570 return TInfo->getType();
1571
1572 FunctionProtoType::ExtProtoInfo NewEPI = NewFunc->getExtProtoInfo();
1573 NewEPI.ExtInfo = OrigFunc->getExtInfo();
Alp Toker314cc812014-01-25 16:55:45 +00001574 return Context.getFunctionType(NewFunc->getReturnType(),
Alp Toker9cacbab2014-01-20 20:26:09 +00001575 NewFunc->getParamTypes(), NewEPI);
Douglas Gregor89f593a2012-09-13 21:56:43 +00001576}
1577
John McCallaa74a0c2009-08-28 07:59:38 +00001578/// Normal class members are of more specific types and therefore
Richard Smith4fa145152017-12-21 19:43:39 +00001579/// don't make it here. This function serves three purposes:
John McCallaa74a0c2009-08-28 07:59:38 +00001580/// 1) instantiating function templates
1581/// 2) substituting friend declarations
Richard Smith4fa145152017-12-21 19:43:39 +00001582/// 3) substituting deduction guide declarations for nested class templates
Douglas Gregor33636e62009-12-24 20:56:24 +00001583Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001584 TemplateParameterList *TemplateParams) {
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001585 // Check whether there is already a function template specialization for
1586 // this declaration.
1587 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
John McCall2f88d7d2010-03-27 05:57:59 +00001588 if (FunctionTemplate && !TemplateParams) {
Richard Smith47752e42013-05-03 23:46:09 +00001589 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001590
Craig Topperc3ec1492014-05-26 06:22:03 +00001591 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001592 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001593 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001594
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001595 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001596 if (SpecFunc)
1597 return SpecFunc;
Douglas Gregor8f5d4422009-06-29 20:59:39 +00001598 }
Mike Stump11289f42009-09-09 15:08:12 +00001599
John McCall2f88d7d2010-03-27 05:57:59 +00001600 bool isFriend;
1601 if (FunctionTemplate)
1602 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1603 else
1604 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1605
Craig Topperc3ec1492014-05-26 06:22:03 +00001606 bool MergeWithParentScope = (TemplateParams != nullptr) ||
Douglas Gregor9f44d142010-05-21 21:25:08 +00001607 Owner->isFunctionOrMethod() ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001608 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001609 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001610 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00001611
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001612 SmallVector<ParmVarDecl *, 4> Params;
David Blaikie4d142962011-11-10 05:42:04 +00001613 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001614 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001615 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001616 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
John McCall58de3582009-08-14 02:03:10 +00001617
Douglas Gregor14454802011-02-25 02:25:35 +00001618 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1619 if (QualifierLoc) {
1620 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
1621 TemplateArgs);
1622 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001623 return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001624 }
1625
John McCallce410662010-02-06 01:50:47 +00001626 // If we're instantiating a local function declaration, put the result
Richard Smith541b38b2013-09-20 01:15:31 +00001627 // in the enclosing namespace; otherwise we need to find the instantiated
1628 // context.
John McCallce410662010-02-06 01:50:47 +00001629 DeclContext *DC;
Richard Smith541b38b2013-09-20 01:15:31 +00001630 if (D->isLocalExternDecl()) {
John McCallce410662010-02-06 01:50:47 +00001631 DC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001632 SemaRef.adjustContextForLocalExternDecl(DC);
1633 } else if (isFriend && QualifierLoc) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001634 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001635 SS.Adopt(QualifierLoc);
John McCalle0b2ddb2010-03-26 04:53:08 +00001636 DC = SemaRef.computeDeclContext(SS);
Craig Topperc3ec1492014-05-26 06:22:03 +00001637 if (!DC) return nullptr;
John McCalle0b2ddb2010-03-26 04:53:08 +00001638 } else {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001639 DC = SemaRef.FindInstantiatedContext(D->getLocation(), D->getDeclContext(),
Douglas Gregora04f2ca2010-03-01 15:56:25 +00001640 TemplateArgs);
John McCalle0b2ddb2010-03-26 04:53:08 +00001641 }
John McCallce410662010-02-06 01:50:47 +00001642
Richard Smith4fa145152017-12-21 19:43:39 +00001643 DeclarationNameInfo NameInfo
1644 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
1645
Richard Smithbc491202017-02-17 20:05:37 +00001646 FunctionDecl *Function;
Faisal Vali81b756e2017-10-22 14:45:08 +00001647 if (auto *DGuide = dyn_cast<CXXDeductionGuideDecl>(D)) {
Richard Smithbc491202017-02-17 20:05:37 +00001648 Function = CXXDeductionGuideDecl::Create(
Faisal Vali81b756e2017-10-22 14:45:08 +00001649 SemaRef.Context, DC, D->getInnerLocStart(), DGuide->isExplicit(),
Richard Smith4fa145152017-12-21 19:43:39 +00001650 NameInfo, T, TInfo, D->getSourceRange().getEnd());
Faisal Vali81b756e2017-10-22 14:45:08 +00001651 if (DGuide->isCopyDeductionCandidate())
1652 cast<CXXDeductionGuideDecl>(Function)->setIsCopyDeductionCandidate();
Richard Smithc660c8f2018-03-16 13:36:56 +00001653 Function->setAccess(D->getAccess());
Faisal Vali81b756e2017-10-22 14:45:08 +00001654 } else {
Richard Smithbc491202017-02-17 20:05:37 +00001655 Function = FunctionDecl::Create(
Richard Smith4fa145152017-12-21 19:43:39 +00001656 SemaRef.Context, DC, D->getInnerLocStart(), NameInfo, T, TInfo,
Richard Smithbc491202017-02-17 20:05:37 +00001657 D->getCanonicalDecl()->getStorageClass(), D->isInlineSpecified(),
1658 D->hasWrittenPrototype(), D->isConstexpr());
1659 Function->setRangeEnd(D->getSourceRange().getEnd());
1660 }
John McCall3e11ebe2010-03-15 10:12:16 +00001661
Richard Smithf3814ad2013-01-25 00:08:28 +00001662 if (D->isInlined())
1663 Function->setImplicitlyInline();
1664
Douglas Gregor14454802011-02-25 02:25:35 +00001665 if (QualifierLoc)
1666 Function->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001667
Richard Smith541b38b2013-09-20 01:15:31 +00001668 if (D->isLocalExternDecl())
1669 Function->setLocalExternDecl();
1670
John McCall30837102010-03-26 23:10:15 +00001671 DeclContext *LexicalDC = Owner;
Richard Smith541b38b2013-09-20 01:15:31 +00001672 if (!isFriend && D->isOutOfLine() && !D->isLocalExternDecl()) {
John McCall30837102010-03-26 23:10:15 +00001673 assert(D->getDeclContext()->isFileContext());
1674 LexicalDC = D->getDeclContext();
1675 }
1676
1677 Function->setLexicalDeclContext(LexicalDC);
Mike Stump11289f42009-09-09 15:08:12 +00001678
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001679 // Attach the parameters
Reid Klecknera09e44c2013-07-31 21:00:18 +00001680 for (unsigned P = 0; P < Params.size(); ++P)
1681 if (Params[P])
1682 Params[P]->setOwningFunction(Function);
David Blaikie9c70e042011-09-21 18:16:56 +00001683 Function->setParams(Params);
John McCallaa74a0c2009-08-28 07:59:38 +00001684
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001685 if (TemplateParams) {
1686 // Our resulting instantiation is actually a function template, since we
1687 // are substituting only the outer template parameters. For example, given
1688 //
1689 // template<typename T>
1690 // struct X {
1691 // template<typename U> friend void f(T, U);
1692 // };
1693 //
1694 // X<int> x;
1695 //
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001696 // We are instantiating the friend function template "f" within X<int>,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001697 // which means substituting int for T, but leaving "f" as a friend function
1698 // template.
1699 // Build the function template itself.
John McCalle0b2ddb2010-03-26 04:53:08 +00001700 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, DC,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001701 Function->getLocation(),
1702 Function->getDeclName(),
1703 TemplateParams, Function);
1704 Function->setDescribedFunctionTemplate(FunctionTemplate);
John McCall30837102010-03-26 23:10:15 +00001705
1706 FunctionTemplate->setLexicalDeclContext(LexicalDC);
John McCalle0b2ddb2010-03-26 04:53:08 +00001707
1708 if (isFriend && D->isThisDeclarationADefinition()) {
John McCalle0b2ddb2010-03-26 04:53:08 +00001709 FunctionTemplate->setInstantiatedFromMemberTemplate(
1710 D->getDescribedFunctionTemplate());
1711 }
Douglas Gregorffe14e32009-11-14 01:20:54 +00001712 } else if (FunctionTemplate) {
1713 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001714 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001715 Function->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001716 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00001717 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00001718 /*InsertPos=*/nullptr);
Richard Smith152bcd22017-01-28 02:56:07 +00001719 } else if (isFriend && D->isThisDeclarationADefinition()) {
1720 // Do not connect the friend to the template unless it's actually a
1721 // definition. We don't want non-template functions to be marked as being
1722 // template instantiations.
John McCalle0b2ddb2010-03-26 04:53:08 +00001723 Function->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
John McCallaa74a0c2009-08-28 07:59:38 +00001724 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001725
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001726 if (InitFunctionInstantiation(Function, D))
1727 Function->setInvalidDecl();
Mike Stump11289f42009-09-09 15:08:12 +00001728
John McCallb9c78482010-04-08 09:05:18 +00001729 bool isExplicitSpecialization = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001730
Richard Smith541b38b2013-09-20 01:15:31 +00001731 LookupResult Previous(
1732 SemaRef, Function->getDeclName(), SourceLocation(),
1733 D->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
1734 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00001735 D->isLocalExternDecl() ? Sema::ForExternalRedeclaration
1736 : SemaRef.forRedeclarationInCurContext());
John McCall1f82f242009-11-18 22:49:29 +00001737
John McCallb9c78482010-04-08 09:05:18 +00001738 if (DependentFunctionTemplateSpecializationInfo *Info
1739 = D->getDependentSpecializationInfo()) {
1740 assert(isFriend && "non-friend has dependent specialization info?");
1741
1742 // This needs to be set now for future sanity.
Richard Smith64017682013-07-17 23:53:16 +00001743 Function->setObjectOfFriendDecl();
John McCallb9c78482010-04-08 09:05:18 +00001744
1745 // Instantiate the explicit template arguments.
1746 TemplateArgumentListInfo ExplicitArgs(Info->getLAngleLoc(),
1747 Info->getRAngleLoc());
Douglas Gregor0f3feb42010-12-22 21:19:48 +00001748 if (SemaRef.Subst(Info->getTemplateArgs(), Info->getNumTemplateArgs(),
1749 ExplicitArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00001750 return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001751
1752 // Map the candidate templates to their instantiations.
1753 for (unsigned I = 0, E = Info->getNumTemplates(); I != E; ++I) {
1754 Decl *Temp = SemaRef.FindInstantiatedDecl(D->getLocation(),
1755 Info->getTemplate(I),
1756 TemplateArgs);
Craig Topperc3ec1492014-05-26 06:22:03 +00001757 if (!Temp) return nullptr;
John McCallb9c78482010-04-08 09:05:18 +00001758
1759 Previous.addDecl(cast<FunctionTemplateDecl>(Temp));
1760 }
1761
1762 if (SemaRef.CheckFunctionTemplateSpecialization(Function,
1763 &ExplicitArgs,
1764 Previous))
1765 Function->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001766
John McCallb9c78482010-04-08 09:05:18 +00001767 isExplicitSpecialization = true;
1768
1769 } else if (TemplateParams || !FunctionTemplate) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001770 // Look only into the namespace where the friend would be declared to
1771 // find a previous declaration. This is the innermost enclosing namespace,
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001772 // as described in ActOnFriendFunctionDecl.
John McCall1f82f242009-11-18 22:49:29 +00001773 SemaRef.LookupQualifiedName(Previous, DC);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001774
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001775 // In C++, the previous declaration we find might be a tag type
1776 // (class or enum). In this case, the new declaration will hide the
1777 // tag type. Note that this does does not apply if we're declaring a
1778 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00001779 if (Previous.isSingleTagDecl())
1780 Previous.clear();
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001781 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001782
Serge Pavlov25dbe1a2017-06-21 12:46:57 +00001783 if (isFriend)
1784 Function->setObjectOfFriendDecl();
1785
Craig Topperc3ec1492014-05-26 06:22:03 +00001786 SemaRef.CheckFunctionDeclaration(/*Scope*/ nullptr, Function, Previous,
Kaelyn Uhrain4dc695d2011-10-11 00:28:45 +00001787 isExplicitSpecialization);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001788
John McCallb9467b62010-04-24 01:30:58 +00001789 NamedDecl *PrincipalDecl = (TemplateParams
1790 ? cast<NamedDecl>(FunctionTemplate)
1791 : Function);
1792
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001793 // If the original function was part of a friend declaration,
1794 // inherit its namespace state and add it to the owner.
John McCalle0b2ddb2010-03-26 04:53:08 +00001795 if (isFriend) {
Serge Pavlova4ab1b12017-06-14 10:57:56 +00001796 PrincipalDecl->setObjectOfFriendDecl();
Richard Smith05afe5e2012-03-13 03:12:56 +00001797 DC->makeDeclVisibleInContext(PrincipalDecl);
Gabor Greif718d5152010-08-30 21:10:05 +00001798
Richard Smith91dfaac2014-02-03 02:37:59 +00001799 bool QueuedInstantiation = false;
Gabor Greif718d5152010-08-30 21:10:05 +00001800
Richard Smith91dfaac2014-02-03 02:37:59 +00001801 // C++11 [temp.friend]p4 (DR329):
1802 // When a function is defined in a friend function declaration in a class
1803 // template, the function is instantiated when the function is odr-used.
1804 // The same restrictions on multiple declarations and definitions that
1805 // apply to non-template function declarations and definitions also apply
1806 // to these implicit definitions.
1807 if (D->isThisDeclarationADefinition()) {
Serge Pavlove6e534c2018-03-01 07:04:11 +00001808 SemaRef.CheckForFunctionRedefinition(Function);
1809 if (!Function->isInvalidDecl()) {
1810 for (auto R : Function->redecls()) {
1811 if (R == Function)
1812 continue;
Richard Smith91dfaac2014-02-03 02:37:59 +00001813
Serge Pavlove6e534c2018-03-01 07:04:11 +00001814 // If some prior declaration of this function has been used, we need
1815 // to instantiate its definition.
1816 if (!QueuedInstantiation && R->isUsed(false)) {
1817 if (MemberSpecializationInfo *MSInfo =
1818 Function->getMemberSpecializationInfo()) {
1819 if (MSInfo->getPointOfInstantiation().isInvalid()) {
1820 SourceLocation Loc = R->getLocation(); // FIXME
1821 MSInfo->setPointOfInstantiation(Loc);
1822 SemaRef.PendingLocalImplicitInstantiations.push_back(
1823 std::make_pair(Function, Loc));
1824 QueuedInstantiation = true;
1825 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001826 }
Richard Smith91dfaac2014-02-03 02:37:59 +00001827 }
Douglas Gregorb92ea592010-05-18 05:45:02 +00001828 }
1829 }
1830 }
Richard Smithf3597652017-05-10 00:01:13 +00001831
1832 // Check the template parameter list against the previous declaration. The
1833 // goal here is to pick up default arguments added since the friend was
1834 // declared; we know the template parameter lists match, since otherwise
1835 // we would not have picked this template as the previous declaration.
1836 if (TemplateParams && FunctionTemplate->getPreviousDecl()) {
1837 SemaRef.CheckTemplateParameterList(
1838 TemplateParams,
1839 FunctionTemplate->getPreviousDecl()->getTemplateParameters(),
1840 Function->isThisDeclarationADefinition()
1841 ? Sema::TPC_FriendFunctionTemplateDefinition
1842 : Sema::TPC_FriendFunctionTemplate);
1843 }
Douglas Gregor3a88c1d2009-10-13 14:39:41 +00001844 }
1845
Richard Smith541b38b2013-09-20 01:15:31 +00001846 if (Function->isLocalExternDecl() && !Function->getPreviousDecl())
1847 DC->makeDeclVisibleInContext(PrincipalDecl);
1848
John McCallb9467b62010-04-24 01:30:58 +00001849 if (Function->isOverloadedOperator() && !DC->isRecord() &&
1850 PrincipalDecl->isInIdentifierNamespace(Decl::IDNS_Ordinary))
1851 PrincipalDecl->setNonMemberOperator();
1852
Alexis Hunt1fb4e762011-05-23 21:07:59 +00001853 assert(!D->isDefaulted() && "only methods should be defaulted");
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00001854 return Function;
1855}
1856
Douglas Gregore704c9d2009-08-27 16:57:43 +00001857Decl *
1858TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D,
Francois Pichet00c7e6c2011-08-14 03:52:19 +00001859 TemplateParameterList *TemplateParams,
1860 bool IsClassScopeSpecialization) {
Douglas Gregor97628d62009-08-21 00:16:32 +00001861 FunctionTemplateDecl *FunctionTemplate = D->getDescribedFunctionTemplate();
Douglas Gregore704c9d2009-08-27 16:57:43 +00001862 if (FunctionTemplate && !TemplateParams) {
Mike Stump11289f42009-09-09 15:08:12 +00001863 // We are creating a function template specialization from a function
1864 // template. Check whether there is already a function template
Douglas Gregore704c9d2009-08-27 16:57:43 +00001865 // specialization for this particular set of template arguments.
Richard Smith47752e42013-05-03 23:46:09 +00001866 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Mike Stump11289f42009-09-09 15:08:12 +00001867
Craig Topperc3ec1492014-05-26 06:22:03 +00001868 void *InsertPos = nullptr;
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001869 FunctionDecl *SpecFunc
Craig Topper7e0daca2014-06-26 04:58:53 +00001870 = FunctionTemplate->findSpecialization(Innermost, InsertPos);
Mike Stump11289f42009-09-09 15:08:12 +00001871
Douglas Gregor97628d62009-08-21 00:16:32 +00001872 // If we already have a function template specialization, return it.
Argyrios Kyrtzidisdde57902010-07-20 13:59:58 +00001873 if (SpecFunc)
1874 return SpecFunc;
Douglas Gregor97628d62009-08-21 00:16:32 +00001875 }
1876
John McCall2f88d7d2010-03-27 05:57:59 +00001877 bool isFriend;
1878 if (FunctionTemplate)
1879 isFriend = (FunctionTemplate->getFriendObjectKind() != Decl::FOK_None);
1880 else
1881 isFriend = (D->getFriendObjectKind() != Decl::FOK_None);
1882
Craig Topperc3ec1492014-05-26 06:22:03 +00001883 bool MergeWithParentScope = (TemplateParams != nullptr) ||
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001884 !(isa<Decl>(Owner) &&
Douglas Gregorf5974fa2010-01-16 20:21:20 +00001885 cast<Decl>(Owner)->isDefinedOutsideFunctionOrMethod());
John McCall19c1bfd2010-08-25 05:32:35 +00001886 LocalInstantiationScope Scope(SemaRef, MergeWithParentScope);
Douglas Gregor37256522009-05-14 21:44:34 +00001887
John McCalld0e23ec2010-10-19 02:26:41 +00001888 // Instantiate enclosing template arguments for friends.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001889 SmallVector<TemplateParameterList *, 4> TempParamLists;
John McCalld0e23ec2010-10-19 02:26:41 +00001890 unsigned NumTempParamLists = 0;
1891 if (isFriend && (NumTempParamLists = D->getNumTemplateParameterLists())) {
Benjamin Kramer9dc549b2015-08-04 14:46:06 +00001892 TempParamLists.resize(NumTempParamLists);
John McCalld0e23ec2010-10-19 02:26:41 +00001893 for (unsigned I = 0; I != NumTempParamLists; ++I) {
1894 TemplateParameterList *TempParams = D->getTemplateParameterList(I);
1895 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
1896 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00001897 return nullptr;
John McCalld0e23ec2010-10-19 02:26:41 +00001898 TempParamLists[I] = InstParams;
1899 }
1900 }
1901
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001902 SmallVector<ParmVarDecl *, 4> Params;
Benjamin Kramer1dd48bc2012-01-20 14:42:32 +00001903 TypeSourceInfo *TInfo = SubstFunctionType(D, Params);
John McCall58f10c32010-03-11 09:03:00 +00001904 if (!TInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00001905 return nullptr;
Douglas Gregor89f593a2012-09-13 21:56:43 +00001906 QualType T = adjustFunctionTypeForInstantiation(SemaRef.Context, D, TInfo);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001907
Douglas Gregor14454802011-02-25 02:25:35 +00001908 NestedNameSpecifierLoc QualifierLoc = D->getQualifierLoc();
1909 if (QualifierLoc) {
1910 QualifierLoc = SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc,
John McCall2f88d7d2010-03-27 05:57:59 +00001911 TemplateArgs);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00001912 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00001913 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001914 }
1915
1916 DeclContext *DC = Owner;
1917 if (isFriend) {
Douglas Gregor14454802011-02-25 02:25:35 +00001918 if (QualifierLoc) {
John McCall2f88d7d2010-03-27 05:57:59 +00001919 CXXScopeSpec SS;
Douglas Gregor14454802011-02-25 02:25:35 +00001920 SS.Adopt(QualifierLoc);
John McCall2f88d7d2010-03-27 05:57:59 +00001921 DC = SemaRef.computeDeclContext(SS);
John McCall1a1b53e2010-10-19 05:01:53 +00001922
1923 if (DC && SemaRef.RequireCompleteDeclContext(SS, DC))
Craig Topperc3ec1492014-05-26 06:22:03 +00001924 return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001925 } else {
1926 DC = SemaRef.FindInstantiatedContext(D->getLocation(),
1927 D->getDeclContext(),
1928 TemplateArgs);
1929 }
Craig Topperc3ec1492014-05-26 06:22:03 +00001930 if (!DC) return nullptr;
John McCall2f88d7d2010-03-27 05:57:59 +00001931 }
1932
Douglas Gregorf4f296d2009-03-23 23:06:20 +00001933 // Build the instantiated method declaration.
John McCall2f88d7d2010-03-27 05:57:59 +00001934 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
Craig Topperc3ec1492014-05-26 06:22:03 +00001935 CXXMethodDecl *Method = nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00001936
Abramo Bagnaradff19302011-03-08 08:55:46 +00001937 SourceLocation StartLoc = D->getInnerLocStart();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001938 DeclarationNameInfo NameInfo
1939 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
Douglas Gregore8394862009-08-21 22:43:28 +00001940 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00001941 Method = CXXConstructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001942 StartLoc, NameInfo, T, TInfo,
Mike Stump11289f42009-09-09 15:08:12 +00001943 Constructor->isExplicit(),
Reid Kleckner0f764e52015-04-07 20:46:51 +00001944 Constructor->isInlineSpecified(),
Richard Smith3607ffe2012-02-13 03:54:03 +00001945 false, Constructor->isConstexpr());
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001946 Method->setRangeEnd(Constructor->getEndLoc());
Douglas Gregore8394862009-08-21 22:43:28 +00001947 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregore8394862009-08-21 22:43:28 +00001948 Method = CXXDestructorDecl::Create(SemaRef.Context, Record,
Abramo Bagnaradff19302011-03-08 08:55:46 +00001949 StartLoc, NameInfo, T, TInfo,
Reid Kleckner0f764e52015-04-07 20:46:51 +00001950 Destructor->isInlineSpecified(),
Douglas Gregorc4df4072010-04-19 22:54:31 +00001951 false);
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001952 Method->setRangeEnd(Destructor->getEndLoc());
Douglas Gregor05155d82009-08-21 23:19:43 +00001953 } else if (CXXConversionDecl *Conversion = dyn_cast<CXXConversionDecl>(D)) {
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001954 Method = CXXConversionDecl::Create(
1955 SemaRef.Context, Record, StartLoc, NameInfo, T, TInfo,
1956 Conversion->isInlineSpecified(), Conversion->isExplicit(),
1957 Conversion->isConstexpr(), Conversion->getEndLoc());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001958 } else {
Rafael Espindola29cda592013-04-15 12:38:20 +00001959 StorageClass SC = D->isStatic() ? SC_Static : SC_None;
Stephen Kelly1c301dc2018-08-09 21:09:38 +00001960 Method = CXXMethodDecl::Create(SemaRef.Context, Record, StartLoc, NameInfo,
1961 T, TInfo, SC, D->isInlineSpecified(),
1962 D->isConstexpr(), D->getEndLoc());
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00001963 }
Douglas Gregor97628d62009-08-21 00:16:32 +00001964
Richard Smithf3814ad2013-01-25 00:08:28 +00001965 if (D->isInlined())
1966 Method->setImplicitlyInline();
1967
Douglas Gregor14454802011-02-25 02:25:35 +00001968 if (QualifierLoc)
1969 Method->setQualifierInfo(QualifierLoc);
John McCall3e11ebe2010-03-15 10:12:16 +00001970
Douglas Gregore704c9d2009-08-27 16:57:43 +00001971 if (TemplateParams) {
1972 // Our resulting instantiation is actually a function template, since we
1973 // are substituting only the outer template parameters. For example, given
Mike Stump11289f42009-09-09 15:08:12 +00001974 //
Douglas Gregore704c9d2009-08-27 16:57:43 +00001975 // template<typename T>
1976 // struct X {
1977 // template<typename U> void f(T, U);
1978 // };
1979 //
1980 // X<int> x;
1981 //
1982 // We are instantiating the member template "f" within X<int>, which means
1983 // substituting int for T, but leaving "f" as a member function template.
1984 // Build the function template itself.
1985 FunctionTemplate = FunctionTemplateDecl::Create(SemaRef.Context, Record,
1986 Method->getLocation(),
Mike Stump11289f42009-09-09 15:08:12 +00001987 Method->getDeclName(),
Douglas Gregore704c9d2009-08-27 16:57:43 +00001988 TemplateParams, Method);
John McCall2f88d7d2010-03-27 05:57:59 +00001989 if (isFriend) {
1990 FunctionTemplate->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00001991 FunctionTemplate->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00001992 } else if (D->isOutOfLine())
Mike Stump11289f42009-09-09 15:08:12 +00001993 FunctionTemplate->setLexicalDeclContext(D->getLexicalDeclContext());
Douglas Gregore704c9d2009-08-27 16:57:43 +00001994 Method->setDescribedFunctionTemplate(FunctionTemplate);
Douglas Gregorffe14e32009-11-14 01:20:54 +00001995 } else if (FunctionTemplate) {
1996 // Record this function template specialization.
Richard Smith47752e42013-05-03 23:46:09 +00001997 ArrayRef<TemplateArgument> Innermost = TemplateArgs.getInnermost();
Douglas Gregord5058122010-02-11 01:19:42 +00001998 Method->setFunctionTemplateSpecialization(FunctionTemplate,
Douglas Gregor1ccc8412010-11-07 23:05:16 +00001999 TemplateArgumentList::CreateCopy(SemaRef.Context,
David Majnemer8b622692016-07-03 21:17:51 +00002000 Innermost),
Craig Topperc3ec1492014-05-26 06:22:03 +00002001 /*InsertPos=*/nullptr);
John McCall2f88d7d2010-03-27 05:57:59 +00002002 } else if (!isFriend) {
Douglas Gregorffe14e32009-11-14 01:20:54 +00002003 // Record that this is an instantiation of a member function.
Douglas Gregord801b062009-10-07 23:56:10 +00002004 Method->setInstantiationOfMemberFunction(D, TSK_ImplicitInstantiation);
Douglas Gregorffe14e32009-11-14 01:20:54 +00002005 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002006
Mike Stump11289f42009-09-09 15:08:12 +00002007 // If we are instantiating a member function defined
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002008 // out-of-line, the instantiation will have the same lexical
2009 // context (which will be a namespace scope) as the template.
John McCall2f88d7d2010-03-27 05:57:59 +00002010 if (isFriend) {
John McCalld0e23ec2010-10-19 02:26:41 +00002011 if (NumTempParamLists)
Benjamin Kramer9cc210652015-08-05 09:40:49 +00002012 Method->setTemplateParameterListsInfo(
2013 SemaRef.Context,
2014 llvm::makeArrayRef(TempParamLists.data(), NumTempParamLists));
John McCalld0e23ec2010-10-19 02:26:41 +00002015
John McCall2f88d7d2010-03-27 05:57:59 +00002016 Method->setLexicalDeclContext(Owner);
Richard Smith64017682013-07-17 23:53:16 +00002017 Method->setObjectOfFriendDecl();
John McCall2f88d7d2010-03-27 05:57:59 +00002018 } else if (D->isOutOfLine())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00002019 Method->setLexicalDeclContext(D->getLexicalDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00002020
Douglas Gregor21342092009-03-24 00:38:23 +00002021 // Attach the parameters
2022 for (unsigned P = 0; P < Params.size(); ++P)
2023 Params[P]->setOwningFunction(Method);
David Blaikie9c70e042011-09-21 18:16:56 +00002024 Method->setParams(Params);
Douglas Gregor21342092009-03-24 00:38:23 +00002025
2026 if (InitMethodInstantiation(Method, D))
2027 Method->setInvalidDecl();
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002028
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002029 LookupResult Previous(SemaRef, NameInfo, Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002030 Sema::ForExternalRedeclaration);
Mike Stump11289f42009-09-09 15:08:12 +00002031
John McCall2f88d7d2010-03-27 05:57:59 +00002032 if (!FunctionTemplate || TemplateParams || isFriend) {
2033 SemaRef.LookupQualifiedName(Previous, Record);
Mike Stump11289f42009-09-09 15:08:12 +00002034
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002035 // In C++, the previous declaration we find might be a tag type
2036 // (class or enum). In this case, the new declaration will hide the
2037 // tag type. Note that this does does not apply if we're declaring a
2038 // typedef (C++ [dcl.typedef]p4).
John McCall1f82f242009-11-18 22:49:29 +00002039 if (Previous.isSingleTagDecl())
2040 Previous.clear();
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002041 }
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002042
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002043 if (!IsClassScopeSpecialization)
Craig Topperc3ec1492014-05-26 06:22:03 +00002044 SemaRef.CheckFunctionDeclaration(nullptr, Method, Previous, false);
Douglas Gregor05155d82009-08-21 23:19:43 +00002045
Douglas Gregor21920e372009-12-01 17:24:26 +00002046 if (D->isPure())
2047 SemaRef.CheckPureMethod(Method, SourceRange());
2048
John McCalla0a96892012-08-10 03:15:35 +00002049 // Propagate access. For a non-friend declaration, the access is
2050 // whatever we're propagating from. For a friend, it should be the
2051 // previous declaration we just found.
2052 if (isFriend && Method->getPreviousDecl())
2053 Method->setAccess(Method->getPreviousDecl()->getAccess());
Fangrui Song6907ce22018-07-30 19:24:48 +00002054 else
John McCalla0a96892012-08-10 03:15:35 +00002055 Method->setAccess(D->getAccess());
2056 if (FunctionTemplate)
2057 FunctionTemplate->setAccess(Method->getAccess());
John McCall401982f2010-01-20 21:53:11 +00002058
Anders Carlsson7c812f52011-01-20 06:52:44 +00002059 SemaRef.CheckOverrideControl(Method);
2060
Eli Friedman41340732011-11-15 22:39:08 +00002061 // If a function is defined as defaulted or deleted, mark it as such now.
Richard Smith92f241f2012-12-08 02:53:02 +00002062 if (D->isExplicitlyDefaulted())
2063 SemaRef.SetDeclDefaulted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002064 if (D->isDeletedAsWritten())
Richard Smith92f241f2012-12-08 02:53:02 +00002065 SemaRef.SetDeclDeleted(Method, Method->getLocation());
Eli Friedman41340732011-11-15 22:39:08 +00002066
John McCalla0a96892012-08-10 03:15:35 +00002067 // If there's a function template, let our caller handle it.
John McCall2f88d7d2010-03-27 05:57:59 +00002068 if (FunctionTemplate) {
John McCalla0a96892012-08-10 03:15:35 +00002069 // do nothing
2070
2071 // Don't hide a (potentially) valid declaration with an invalid one.
John McCall2f88d7d2010-03-27 05:57:59 +00002072 } else if (Method->isInvalidDecl() && !Previous.empty()) {
John McCalla0a96892012-08-10 03:15:35 +00002073 // do nothing
2074
2075 // Otherwise, check access to friends and make them visible.
2076 } else if (isFriend) {
2077 // We only need to re-check access for methods which we didn't
2078 // manage to match during parsing.
2079 if (!D->getPreviousDecl())
2080 SemaRef.CheckFriendAccess(Method);
2081
2082 Record->makeDeclVisibleInContext(Method);
2083
2084 // Otherwise, add the declaration. We don't need to do this for
2085 // class-scope specializations because we'll have matched them with
2086 // the appropriate template.
2087 } else if (!IsClassScopeSpecialization) {
2088 Owner->addDecl(Method);
John McCall2f88d7d2010-03-27 05:57:59 +00002089 }
Alexis Hunt1fb4e762011-05-23 21:07:59 +00002090
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002091 return Method;
2092}
2093
Douglas Gregor4044d992009-03-24 16:43:20 +00002094Decl *TemplateDeclInstantiator::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Douglas Gregor5ed5ae42009-08-21 18:42:58 +00002095 return VisitCXXMethodDecl(D);
Douglas Gregor4044d992009-03-24 16:43:20 +00002096}
2097
Douglas Gregor654b07e2009-03-24 00:15:49 +00002098Decl *TemplateDeclInstantiator::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Douglas Gregore8394862009-08-21 22:43:28 +00002099 return VisitCXXMethodDecl(D);
Douglas Gregor654b07e2009-03-24 00:15:49 +00002100}
2101
Douglas Gregor1880ba52009-03-25 00:34:44 +00002102Decl *TemplateDeclInstantiator::VisitCXXConversionDecl(CXXConversionDecl *D) {
Douglas Gregor05155d82009-08-21 23:19:43 +00002103 return VisitCXXMethodDecl(D);
Douglas Gregor1880ba52009-03-25 00:34:44 +00002104}
2105
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002106Decl *TemplateDeclInstantiator::VisitParmVarDecl(ParmVarDecl *D) {
David Blaikie7a30dc52013-02-21 01:47:18 +00002107 return SemaRef.SubstParmVarDecl(D, TemplateArgs, /*indexAdjustment*/ 0, None,
2108 /*ExpectParameterPack=*/ false);
Douglas Gregorf4f296d2009-03-23 23:06:20 +00002109}
2110
John McCall87a44eb2009-08-20 01:44:21 +00002111Decl *TemplateDeclInstantiator::VisitTemplateTypeParmDecl(
2112 TemplateTypeParmDecl *D) {
2113 // TODO: don't always clone when decls are refcounted.
Chandler Carruth08836322011-05-01 00:51:33 +00002114 assert(D->getTypeForDecl()->isTemplateTypeParmType());
Mike Stump11289f42009-09-09 15:08:12 +00002115
Richard Smithb4f96252017-02-21 06:30:38 +00002116 TemplateTypeParmDecl *Inst = TemplateTypeParmDecl::Create(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002117 SemaRef.Context, Owner, D->getBeginLoc(), D->getLocation(),
Richard Smithb4f96252017-02-21 06:30:38 +00002118 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(), D->getIndex(),
2119 D->getIdentifier(), D->wasDeclaredWithTypename(), D->isParameterPack());
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002120 Inst->setAccess(AS_public);
John McCall87a44eb2009-08-20 01:44:21 +00002121
Richard Smith52933792015-06-16 21:57:05 +00002122 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002123 TypeSourceInfo *InstantiatedDefaultArg =
2124 SemaRef.SubstType(D->getDefaultArgumentInfo(), TemplateArgs,
2125 D->getDefaultArgumentLoc(), D->getDeclName());
2126 if (InstantiatedDefaultArg)
Richard Smith1469b912015-06-10 00:29:03 +00002127 Inst->setDefaultArgument(InstantiatedDefaultArg);
David Majnemer89189202013-08-28 23:48:32 +00002128 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002129
2130 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002131 // scope.
2132 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Inst);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002133
John McCall87a44eb2009-08-20 01:44:21 +00002134 return Inst;
2135}
2136
Douglas Gregor6b815c82009-10-23 23:25:44 +00002137Decl *TemplateDeclInstantiator::VisitNonTypeTemplateParmDecl(
2138 NonTypeTemplateParmDecl *D) {
2139 // Substitute into the type of the non-type template parameter.
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002140 TypeLoc TL = D->getTypeSourceInfo()->getTypeLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002141 SmallVector<TypeSourceInfo *, 4> ExpandedParameterPackTypesAsWritten;
2142 SmallVector<QualType, 4> ExpandedParameterPackTypes;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002143 bool IsExpandedParameterPack = false;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002144 TypeSourceInfo *DI;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002145 QualType T;
Douglas Gregor6b815c82009-10-23 23:25:44 +00002146 bool Invalid = false;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002147
2148 if (D->isExpandedParameterPack()) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002149 // The non-type template parameter pack is an already-expanded pack
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002150 // expansion of types. Substitute into each of the expanded types.
2151 ExpandedParameterPackTypes.reserve(D->getNumExpansionTypes());
2152 ExpandedParameterPackTypesAsWritten.reserve(D->getNumExpansionTypes());
2153 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Richard Smith15361a22016-12-28 06:27:18 +00002154 TypeSourceInfo *NewDI =
2155 SemaRef.SubstType(D->getExpansionTypeSourceInfo(I), TemplateArgs,
2156 D->getLocation(), D->getDeclName());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002157 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002158 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002159
Richard Smith15361a22016-12-28 06:27:18 +00002160 QualType NewT =
2161 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002162 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002163 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002164
2165 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002166 ExpandedParameterPackTypes.push_back(NewT);
2167 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002168
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002169 IsExpandedParameterPack = true;
2170 DI = D->getTypeSourceInfo();
2171 T = DI->getType();
Richard Smith1fde8ec2012-09-07 02:06:42 +00002172 } else if (D->isPackExpansion()) {
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002173 // The non-type template parameter pack's type is a pack expansion of types.
2174 // Determine whether we need to expand this parameter pack into separate
2175 // types.
David Blaikie6adc78e2013-02-18 22:06:02 +00002176 PackExpansionTypeLoc Expansion = TL.castAs<PackExpansionTypeLoc>();
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002177 TypeLoc Pattern = Expansion.getPatternLoc();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002178 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002179 SemaRef.collectUnexpandedParameterPacks(Pattern, Unexpanded);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002180
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002181 // Determine whether the set of unexpanded parameter packs can and should
2182 // be expanded.
2183 bool Expand = true;
2184 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002185 Optional<unsigned> OrigNumExpansions
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002186 = Expansion.getTypePtr()->getNumExpansions();
David Blaikie05785d12013-02-20 22:23:23 +00002187 Optional<unsigned> NumExpansions = OrigNumExpansions;
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002188 if (SemaRef.CheckParameterPacksForExpansion(Expansion.getEllipsisLoc(),
2189 Pattern.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00002190 Unexpanded,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002191 TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002192 Expand, RetainExpansion,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002193 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002194 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002195
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002196 if (Expand) {
2197 for (unsigned I = 0; I != *NumExpansions; ++I) {
2198 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2199 TypeSourceInfo *NewDI = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002200 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002201 D->getDeclName());
2202 if (!NewDI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002203 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002204
Richard Smith15361a22016-12-28 06:27:18 +00002205 QualType NewT =
2206 SemaRef.CheckNonTypeTemplateParameterType(NewDI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002207 if (NewT.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00002208 return nullptr;
Richard Smith15361a22016-12-28 06:27:18 +00002209
2210 ExpandedParameterPackTypesAsWritten.push_back(NewDI);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002211 ExpandedParameterPackTypes.push_back(NewT);
2212 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002213
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002214 // Note that we have an expanded parameter pack. The "type" of this
2215 // expanded parameter pack is the original expansion type, but callers
2216 // will end up using the expanded parameter pack types for type-checking.
2217 IsExpandedParameterPack = true;
2218 DI = D->getTypeSourceInfo();
2219 T = DI->getType();
2220 } else {
2221 // We cannot fully expand the pack expansion now, so substitute into the
2222 // pattern and create a new pack expansion type.
2223 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2224 TypeSourceInfo *NewPattern = SemaRef.SubstType(Pattern, TemplateArgs,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002225 D->getLocation(),
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002226 D->getDeclName());
2227 if (!NewPattern)
Craig Topperc3ec1492014-05-26 06:22:03 +00002228 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002229
Richard Smith15361a22016-12-28 06:27:18 +00002230 SemaRef.CheckNonTypeTemplateParameterType(NewPattern, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002231 DI = SemaRef.CheckPackExpansion(NewPattern, Expansion.getEllipsisLoc(),
2232 NumExpansions);
2233 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002234 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002235
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002236 T = DI->getType();
2237 }
2238 } else {
2239 // Simple case: substitution into a parameter that is not a parameter pack.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002240 DI = SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002241 D->getLocation(), D->getDeclName());
2242 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00002243 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002244
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002245 // Check that this type is acceptable for a non-type template parameter.
Richard Smith15361a22016-12-28 06:27:18 +00002246 T = SemaRef.CheckNonTypeTemplateParameterType(DI, D->getLocation());
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002247 if (T.isNull()) {
2248 T = SemaRef.Context.IntTy;
2249 Invalid = true;
2250 }
Douglas Gregor6b815c82009-10-23 23:25:44 +00002251 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002252
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002253 NonTypeTemplateParmDecl *Param;
2254 if (IsExpandedParameterPack)
David Majnemerdfecf1a2016-07-06 04:19:16 +00002255 Param = NonTypeTemplateParmDecl::Create(
2256 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
Richard Smithb4f96252017-02-21 06:30:38 +00002257 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2258 D->getPosition(), D->getIdentifier(), T, DI, ExpandedParameterPackTypes,
David Majnemerdfecf1a2016-07-06 04:19:16 +00002259 ExpandedParameterPackTypesAsWritten);
Douglas Gregor0231d8d2011-01-19 20:10:05 +00002260 else
Richard Smithb4f96252017-02-21 06:30:38 +00002261 Param = NonTypeTemplateParmDecl::Create(
2262 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
2263 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2264 D->getPosition(), D->getIdentifier(), T, D->isParameterPack(), DI);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002265
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002266 Param->setAccess(AS_public);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002267 if (Invalid)
2268 Param->setInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002269
Richard Smith52933792015-06-16 21:57:05 +00002270 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
Faisal Valid143a0c2017-04-01 21:30:49 +00002271 EnterExpressionEvaluationContext ConstantEvaluated(
2272 SemaRef, Sema::ExpressionEvaluationContext::ConstantEvaluated);
David Majnemer89189202013-08-28 23:48:32 +00002273 ExprResult Value = SemaRef.SubstExpr(D->getDefaultArgument(), TemplateArgs);
2274 if (!Value.isInvalid())
Richard Smith1469b912015-06-10 00:29:03 +00002275 Param->setDefaultArgument(Value.get());
David Majnemer89189202013-08-28 23:48:32 +00002276 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002277
2278 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor954de172009-10-31 17:21:17 +00002279 // scope.
2280 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
Douglas Gregor6b815c82009-10-23 23:25:44 +00002281 return Param;
2282}
2283
Richard Smith1fde8ec2012-09-07 02:06:42 +00002284static void collectUnexpandedParameterPacks(
2285 Sema &S,
2286 TemplateParameterList *Params,
2287 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Davide Italiano18960b92015-07-02 19:20:11 +00002288 for (const auto &P : *Params) {
2289 if (P->isTemplateParameterPack())
Richard Smith1fde8ec2012-09-07 02:06:42 +00002290 continue;
Davide Italiano18960b92015-07-02 19:20:11 +00002291 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002292 S.collectUnexpandedParameterPacks(NTTP->getTypeSourceInfo()->getTypeLoc(),
2293 Unexpanded);
Davide Italiano18960b92015-07-02 19:20:11 +00002294 if (TemplateTemplateParmDecl *TTP = dyn_cast<TemplateTemplateParmDecl>(P))
Richard Smith1fde8ec2012-09-07 02:06:42 +00002295 collectUnexpandedParameterPacks(S, TTP->getTemplateParameters(),
2296 Unexpanded);
2297 }
2298}
2299
Anders Carlsson4bd78752009-08-28 15:18:15 +00002300Decl *
Douglas Gregor38fee962009-11-11 16:58:32 +00002301TemplateDeclInstantiator::VisitTemplateTemplateParmDecl(
2302 TemplateTemplateParmDecl *D) {
2303 // Instantiate the template parameter list of the template template parameter.
2304 TemplateParameterList *TempParams = D->getTemplateParameters();
2305 TemplateParameterList *InstParams;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002306 SmallVector<TemplateParameterList*, 8> ExpandedParams;
2307
2308 bool IsExpandedParameterPack = false;
2309
2310 if (D->isExpandedParameterPack()) {
2311 // The template template parameter pack is an already-expanded pack
2312 // expansion of template parameters. Substitute into each of the expanded
2313 // parameters.
2314 ExpandedParams.reserve(D->getNumExpansionTemplateParameters());
2315 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2316 I != N; ++I) {
2317 LocalInstantiationScope Scope(SemaRef);
2318 TemplateParameterList *Expansion =
2319 SubstTemplateParams(D->getExpansionTemplateParameters(I));
2320 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002321 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002322 ExpandedParams.push_back(Expansion);
2323 }
2324
2325 IsExpandedParameterPack = true;
2326 InstParams = TempParams;
2327 } else if (D->isPackExpansion()) {
2328 // The template template parameter pack expands to a pack of template
2329 // template parameters. Determine whether we need to expand this parameter
2330 // pack into separate parameters.
2331 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2332 collectUnexpandedParameterPacks(SemaRef, D->getTemplateParameters(),
2333 Unexpanded);
2334
2335 // Determine whether the set of unexpanded parameter packs can and should
2336 // be expanded.
2337 bool Expand = true;
2338 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00002339 Optional<unsigned> NumExpansions;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002340 if (SemaRef.CheckParameterPacksForExpansion(D->getLocation(),
2341 TempParams->getSourceRange(),
2342 Unexpanded,
2343 TemplateArgs,
2344 Expand, RetainExpansion,
2345 NumExpansions))
Craig Topperc3ec1492014-05-26 06:22:03 +00002346 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002347
2348 if (Expand) {
2349 for (unsigned I = 0; I != *NumExpansions; ++I) {
2350 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2351 LocalInstantiationScope Scope(SemaRef);
2352 TemplateParameterList *Expansion = SubstTemplateParams(TempParams);
2353 if (!Expansion)
Craig Topperc3ec1492014-05-26 06:22:03 +00002354 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002355 ExpandedParams.push_back(Expansion);
2356 }
2357
2358 // Note that we have an expanded parameter pack. The "type" of this
2359 // expanded parameter pack is the original expansion type, but callers
2360 // will end up using the expanded parameter pack types for type-checking.
2361 IsExpandedParameterPack = true;
2362 InstParams = TempParams;
2363 } else {
2364 // We cannot fully expand the pack expansion now, so just substitute
2365 // into the pattern.
2366 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2367
2368 LocalInstantiationScope Scope(SemaRef);
2369 InstParams = SubstTemplateParams(TempParams);
2370 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002371 return nullptr;
Richard Smith1fde8ec2012-09-07 02:06:42 +00002372 }
2373 } else {
Douglas Gregor38fee962009-11-11 16:58:32 +00002374 // Perform the actual substitution of template parameters within a new,
2375 // local instantiation scope.
John McCall19c1bfd2010-08-25 05:32:35 +00002376 LocalInstantiationScope Scope(SemaRef);
Douglas Gregor38fee962009-11-11 16:58:32 +00002377 InstParams = SubstTemplateParams(TempParams);
2378 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00002379 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002380 }
2381
Douglas Gregor38fee962009-11-11 16:58:32 +00002382 // Build the template template parameter.
Richard Smith1fde8ec2012-09-07 02:06:42 +00002383 TemplateTemplateParmDecl *Param;
2384 if (IsExpandedParameterPack)
Richard Smithb4f96252017-02-21 06:30:38 +00002385 Param = TemplateTemplateParmDecl::Create(
2386 SemaRef.Context, Owner, D->getLocation(),
2387 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2388 D->getPosition(), D->getIdentifier(), InstParams, ExpandedParams);
Richard Smith1fde8ec2012-09-07 02:06:42 +00002389 else
Richard Smithb4f96252017-02-21 06:30:38 +00002390 Param = TemplateTemplateParmDecl::Create(
2391 SemaRef.Context, Owner, D->getLocation(),
2392 D->getDepth() - TemplateArgs.getNumSubstitutedLevels(),
2393 D->getPosition(), D->isParameterPack(), D->getIdentifier(), InstParams);
Richard Smith52933792015-06-16 21:57:05 +00002394 if (D->hasDefaultArgument() && !D->defaultArgumentWasInherited()) {
David Majnemer89189202013-08-28 23:48:32 +00002395 NestedNameSpecifierLoc QualifierLoc =
2396 D->getDefaultArgument().getTemplateQualifierLoc();
2397 QualifierLoc =
2398 SemaRef.SubstNestedNameSpecifierLoc(QualifierLoc, TemplateArgs);
2399 TemplateName TName = SemaRef.SubstTemplateName(
2400 QualifierLoc, D->getDefaultArgument().getArgument().getAsTemplate(),
2401 D->getDefaultArgument().getTemplateNameLoc(), TemplateArgs);
2402 if (!TName.isNull())
2403 Param->setDefaultArgument(
Richard Smith1469b912015-06-10 00:29:03 +00002404 SemaRef.Context,
David Majnemer89189202013-08-28 23:48:32 +00002405 TemplateArgumentLoc(TemplateArgument(TName),
2406 D->getDefaultArgument().getTemplateQualifierLoc(),
Richard Smith1469b912015-06-10 00:29:03 +00002407 D->getDefaultArgument().getTemplateNameLoc()));
David Majnemer89189202013-08-28 23:48:32 +00002408 }
Douglas Gregorfd7c2252011-03-04 17:52:15 +00002409 Param->setAccess(AS_public);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002410
2411 // Introduce this template parameter's instantiation into the instantiation
Douglas Gregor38fee962009-11-11 16:58:32 +00002412 // scope.
2413 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, Param);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002414
Douglas Gregor38fee962009-11-11 16:58:32 +00002415 return Param;
2416}
2417
Douglas Gregore0b28662009-11-17 06:07:40 +00002418Decl *TemplateDeclInstantiator::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Douglas Gregor12441b32011-02-25 16:33:46 +00002419 // Using directives are never dependent (and never contain any types or
2420 // expressions), so they require no explicit instantiation work.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002421
Douglas Gregore0b28662009-11-17 06:07:40 +00002422 UsingDirectiveDecl *Inst
2423 = UsingDirectiveDecl::Create(SemaRef.Context, Owner, D->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002424 D->getNamespaceKeyLocation(),
Douglas Gregor12441b32011-02-25 16:33:46 +00002425 D->getQualifierLoc(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002426 D->getIdentLocation(),
2427 D->getNominatedNamespace(),
Douglas Gregore0b28662009-11-17 06:07:40 +00002428 D->getCommonAncestor());
Abramo Bagnara8843f9f2012-09-05 09:55:10 +00002429
2430 // Add the using directive to its declaration context
2431 // only if this is not a function or method.
2432 if (!Owner->isFunctionOrMethod())
2433 Owner->addDecl(Inst);
2434
Douglas Gregore0b28662009-11-17 06:07:40 +00002435 return Inst;
2436}
2437
John McCallb96ec562009-12-04 22:46:56 +00002438Decl *TemplateDeclInstantiator::VisitUsingDecl(UsingDecl *D) {
Douglas Gregorac2e4302010-09-29 17:58:28 +00002439
2440 // The nested name specifier may be dependent, for example
2441 // template <typename T> struct t {
2442 // struct s1 { T f1(); };
2443 // struct s2 : s1 { using s1::f1; };
2444 // };
2445 // template struct t<int>;
2446 // Here, in using s1::f1, s1 refers to t<T>::s1;
2447 // we need to substitute for t<int>::s1.
Douglas Gregor0499ab62011-02-25 15:54:31 +00002448 NestedNameSpecifierLoc QualifierLoc
2449 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
2450 TemplateArgs);
2451 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002452 return nullptr;
Douglas Gregorac2e4302010-09-29 17:58:28 +00002453
Richard Smith5179eb72016-06-28 19:03:57 +00002454 // For an inheriting constructor declaration, the name of the using
2455 // declaration is the name of a constructor in this class, not in the
2456 // base class.
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002457 DeclarationNameInfo NameInfo = D->getNameInfo();
Richard Smith5179eb72016-06-28 19:03:57 +00002458 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
2459 if (auto *RD = dyn_cast<CXXRecordDecl>(SemaRef.CurContext))
2460 NameInfo.setName(SemaRef.Context.DeclarationNames.getCXXConstructorName(
2461 SemaRef.Context.getCanonicalType(SemaRef.Context.getRecordType(RD))));
John McCallb96ec562009-12-04 22:46:56 +00002462
John McCall84d87672009-12-10 09:41:52 +00002463 // We only need to do redeclaration lookups if we're in a class
2464 // scope (in fact, it's not really even possible in non-class
2465 // scopes).
2466 bool CheckRedeclaration = Owner->isRecord();
2467
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002468 LookupResult Prev(SemaRef, NameInfo, Sema::LookupUsingDeclName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002469 Sema::ForVisibleRedeclaration);
John McCall84d87672009-12-10 09:41:52 +00002470
John McCallb96ec562009-12-04 22:46:56 +00002471 UsingDecl *NewUD = UsingDecl::Create(SemaRef.Context, Owner,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002472 D->getUsingLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002473 QualifierLoc,
Abramo Bagnara8de74e92010-08-12 11:46:03 +00002474 NameInfo,
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002475 D->hasTypename());
John McCallb96ec562009-12-04 22:46:56 +00002476
Douglas Gregor0499ab62011-02-25 15:54:31 +00002477 CXXScopeSpec SS;
2478 SS.Adopt(QualifierLoc);
John McCall84d87672009-12-10 09:41:52 +00002479 if (CheckRedeclaration) {
2480 Prev.setHideTags(false);
2481 SemaRef.LookupQualifiedName(Prev, Owner);
2482
2483 // Check for invalid redeclarations.
Enea Zaffanellae05a3cf2013-07-22 10:54:09 +00002484 if (SemaRef.CheckUsingDeclRedeclaration(D->getUsingLoc(),
2485 D->hasTypename(), SS,
John McCall84d87672009-12-10 09:41:52 +00002486 D->getLocation(), Prev))
2487 NewUD->setInvalidDecl();
2488
2489 }
2490
2491 if (!NewUD->isInvalidDecl() &&
Richard Smithd8a9e372016-12-18 21:39:37 +00002492 SemaRef.CheckUsingDeclQualifier(D->getUsingLoc(), D->hasTypename(),
2493 SS, NameInfo, D->getLocation()))
John McCallb96ec562009-12-04 22:46:56 +00002494 NewUD->setInvalidDecl();
John McCall84d87672009-12-10 09:41:52 +00002495
John McCallb96ec562009-12-04 22:46:56 +00002496 SemaRef.Context.setInstantiatedFromUsingDecl(NewUD, D);
2497 NewUD->setAccess(D->getAccess());
2498 Owner->addDecl(NewUD);
2499
John McCall84d87672009-12-10 09:41:52 +00002500 // Don't process the shadow decls for an invalid decl.
2501 if (NewUD->isInvalidDecl())
2502 return NewUD;
2503
Richard Smith5179eb72016-06-28 19:03:57 +00002504 if (NameInfo.getName().getNameKind() == DeclarationName::CXXConstructorName)
Richard Smith09d5b3a2014-05-01 00:35:04 +00002505 SemaRef.CheckInheritingConstructorUsingDecl(NewUD);
Richard Smith23d55872012-04-02 01:30:27 +00002506
John McCalla1d85502009-12-22 22:26:37 +00002507 bool isFunctionScope = Owner->isFunctionOrMethod();
2508
John McCall84d87672009-12-10 09:41:52 +00002509 // Process the shadow decls.
Aaron Ballman91cdc282014-03-13 18:07:29 +00002510 for (auto *Shadow : D->shadows()) {
Richard Smith5179eb72016-06-28 19:03:57 +00002511 // FIXME: UsingShadowDecl doesn't preserve its immediate target, so
2512 // reconstruct it in the case where it matters.
2513 NamedDecl *OldTarget = Shadow->getTargetDecl();
2514 if (auto *CUSD = dyn_cast<ConstructorUsingShadowDecl>(Shadow))
2515 if (auto *BaseShadow = CUSD->getNominatedBaseClassShadowDecl())
2516 OldTarget = BaseShadow;
2517
John McCall84d87672009-12-10 09:41:52 +00002518 NamedDecl *InstTarget =
Richard Smithfd8634a2013-10-23 02:17:46 +00002519 cast_or_null<NamedDecl>(SemaRef.FindInstantiatedDecl(
Richard Smith5179eb72016-06-28 19:03:57 +00002520 Shadow->getLocation(), OldTarget, TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00002521 if (!InstTarget)
Craig Topperc3ec1492014-05-26 06:22:03 +00002522 return nullptr;
John McCall84d87672009-12-10 09:41:52 +00002523
Craig Topperc3ec1492014-05-26 06:22:03 +00002524 UsingShadowDecl *PrevDecl = nullptr;
Richard Smithfd8634a2013-10-23 02:17:46 +00002525 if (CheckRedeclaration) {
2526 if (SemaRef.CheckUsingShadowDecl(NewUD, InstTarget, Prev, PrevDecl))
2527 continue;
Richard Smith41c79d92014-10-11 00:37:16 +00002528 } else if (UsingShadowDecl *OldPrev =
2529 getPreviousDeclForInstantiation(Shadow)) {
Richard Smithfd8634a2013-10-23 02:17:46 +00002530 PrevDecl = cast_or_null<UsingShadowDecl>(SemaRef.FindInstantiatedDecl(
2531 Shadow->getLocation(), OldPrev, TemplateArgs));
2532 }
John McCall84d87672009-12-10 09:41:52 +00002533
Richard Smithfd8634a2013-10-23 02:17:46 +00002534 UsingShadowDecl *InstShadow =
Craig Topperc3ec1492014-05-26 06:22:03 +00002535 SemaRef.BuildUsingShadowDecl(/*Scope*/nullptr, NewUD, InstTarget,
2536 PrevDecl);
John McCall84d87672009-12-10 09:41:52 +00002537 SemaRef.Context.setInstantiatedFromUsingShadowDecl(InstShadow, Shadow);
John McCalla1d85502009-12-22 22:26:37 +00002538
2539 if (isFunctionScope)
2540 SemaRef.CurrentInstantiationScope->InstantiatedLocal(Shadow, InstShadow);
John McCall84d87672009-12-10 09:41:52 +00002541 }
John McCallb96ec562009-12-04 22:46:56 +00002542
2543 return NewUD;
2544}
2545
2546Decl *TemplateDeclInstantiator::VisitUsingShadowDecl(UsingShadowDecl *D) {
John McCall84d87672009-12-10 09:41:52 +00002547 // Ignore these; we handle them in bulk when processing the UsingDecl.
Craig Topperc3ec1492014-05-26 06:22:03 +00002548 return nullptr;
John McCallb96ec562009-12-04 22:46:56 +00002549}
2550
Richard Smith5179eb72016-06-28 19:03:57 +00002551Decl *TemplateDeclInstantiator::VisitConstructorUsingShadowDecl(
2552 ConstructorUsingShadowDecl *D) {
2553 // Ignore these; we handle them in bulk when processing the UsingDecl.
2554 return nullptr;
2555}
2556
Richard Smith151c4562016-12-20 21:35:28 +00002557template <typename T>
2558Decl *TemplateDeclInstantiator::instantiateUnresolvedUsingDecl(
2559 T *D, bool InstantiatingPackElement) {
2560 // If this is a pack expansion, expand it now.
2561 if (D->isPackExpansion() && !InstantiatingPackElement) {
2562 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
2563 SemaRef.collectUnexpandedParameterPacks(D->getQualifierLoc(), Unexpanded);
2564 SemaRef.collectUnexpandedParameterPacks(D->getNameInfo(), Unexpanded);
2565
2566 // Determine whether the set of unexpanded parameter packs can and should
2567 // be expanded.
2568 bool Expand = true;
2569 bool RetainExpansion = false;
2570 Optional<unsigned> NumExpansions;
2571 if (SemaRef.CheckParameterPacksForExpansion(
2572 D->getEllipsisLoc(), D->getSourceRange(), Unexpanded, TemplateArgs,
2573 Expand, RetainExpansion, NumExpansions))
2574 return nullptr;
2575
2576 // This declaration cannot appear within a function template signature,
2577 // so we can't have a partial argument list for a parameter pack.
2578 assert(!RetainExpansion &&
2579 "should never need to retain an expansion for UsingPackDecl");
2580
2581 if (!Expand) {
2582 // We cannot fully expand the pack expansion now, so substitute into the
2583 // pattern and create a new pack expansion.
2584 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, -1);
2585 return instantiateUnresolvedUsingDecl(D, true);
2586 }
2587
2588 // Within a function, we don't have any normal way to check for conflicts
2589 // between shadow declarations from different using declarations in the
2590 // same pack expansion, but this is always ill-formed because all expansions
2591 // must produce (conflicting) enumerators.
2592 //
2593 // Sadly we can't just reject this in the template definition because it
2594 // could be valid if the pack is empty or has exactly one expansion.
2595 if (D->getDeclContext()->isFunctionOrMethod() && *NumExpansions > 1) {
2596 SemaRef.Diag(D->getEllipsisLoc(),
2597 diag::err_using_decl_redeclaration_expansion);
2598 return nullptr;
2599 }
2600
2601 // Instantiate the slices of this pack and build a UsingPackDecl.
2602 SmallVector<NamedDecl*, 8> Expansions;
2603 for (unsigned I = 0; I != *NumExpansions; ++I) {
2604 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(SemaRef, I);
2605 Decl *Slice = instantiateUnresolvedUsingDecl(D, true);
2606 if (!Slice)
2607 return nullptr;
2608 // Note that we can still get unresolved using declarations here, if we
2609 // had arguments for all packs but the pattern also contained other
2610 // template arguments (this only happens during partial substitution, eg
2611 // into the body of a generic lambda in a function template).
2612 Expansions.push_back(cast<NamedDecl>(Slice));
2613 }
2614
2615 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2616 if (isDeclWithinFunction(D))
2617 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2618 return NewD;
2619 }
2620
2621 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D);
2622 SourceLocation TypenameLoc = TD ? TD->getTypenameLoc() : SourceLocation();
2623
Douglas Gregor0499ab62011-02-25 15:54:31 +00002624 NestedNameSpecifierLoc QualifierLoc
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00002625 = SemaRef.SubstNestedNameSpecifierLoc(D->getQualifierLoc(),
Douglas Gregor0499ab62011-02-25 15:54:31 +00002626 TemplateArgs);
2627 if (!QualifierLoc)
Craig Topperc3ec1492014-05-26 06:22:03 +00002628 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00002629
Anders Carlsson4bd78752009-08-28 15:18:15 +00002630 CXXScopeSpec SS;
Douglas Gregor0499ab62011-02-25 15:54:31 +00002631 SS.Adopt(QualifierLoc);
Mike Stump11289f42009-09-09 15:08:12 +00002632
Daniel Jasper9949ead2016-12-19 10:09:25 +00002633 DeclarationNameInfo NameInfo
2634 = SemaRef.SubstDeclarationNameInfo(D->getNameInfo(), TemplateArgs);
2635
Richard Smith151c4562016-12-20 21:35:28 +00002636 // Produce a pack expansion only if we're not instantiating a particular
2637 // slice of a pack expansion.
2638 bool InstantiatingSlice = D->getEllipsisLoc().isValid() &&
2639 SemaRef.ArgumentPackSubstitutionIndex != -1;
2640 SourceLocation EllipsisLoc =
2641 InstantiatingSlice ? SourceLocation() : D->getEllipsisLoc();
2642
2643 NamedDecl *UD = SemaRef.BuildUsingDeclaration(
2644 /*Scope*/ nullptr, D->getAccess(), D->getUsingLoc(),
Erich Keanec480f302018-07-12 21:09:05 +00002645 /*HasTypename*/ TD, TypenameLoc, SS, NameInfo, EllipsisLoc,
2646 ParsedAttributesView(),
Richard Smith151c4562016-12-20 21:35:28 +00002647 /*IsInstantiation*/ true);
Daniel Jasper9949ead2016-12-19 10:09:25 +00002648 if (UD)
2649 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
2650
2651 return UD;
Richard Smith22a250c2016-12-19 04:08:53 +00002652}
2653
Richard Smith151c4562016-12-20 21:35:28 +00002654Decl *TemplateDeclInstantiator::VisitUnresolvedUsingTypenameDecl(
2655 UnresolvedUsingTypenameDecl *D) {
2656 return instantiateUnresolvedUsingDecl(D);
2657}
2658
2659Decl *TemplateDeclInstantiator::VisitUnresolvedUsingValueDecl(
2660 UnresolvedUsingValueDecl *D) {
2661 return instantiateUnresolvedUsingDecl(D);
2662}
2663
2664Decl *TemplateDeclInstantiator::VisitUsingPackDecl(UsingPackDecl *D) {
2665 SmallVector<NamedDecl*, 8> Expansions;
2666 for (auto *UD : D->expansions()) {
George Burgess IV00f70bd2018-03-01 05:43:23 +00002667 if (NamedDecl *NewUD =
Richard Smith151c4562016-12-20 21:35:28 +00002668 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs))
George Burgess IV00f70bd2018-03-01 05:43:23 +00002669 Expansions.push_back(NewUD);
Richard Smith151c4562016-12-20 21:35:28 +00002670 else
2671 return nullptr;
2672 }
2673
2674 auto *NewD = SemaRef.BuildUsingPackDecl(D, Expansions);
2675 if (isDeclWithinFunction(D))
2676 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewD);
2677 return NewD;
2678}
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002679
2680Decl *TemplateDeclInstantiator::VisitClassScopeFunctionSpecializationDecl(
2681 ClassScopeFunctionSpecializationDecl *Decl) {
2682 CXXMethodDecl *OldFD = Decl->getSpecialization();
Nick Lewycky0b727732015-01-02 01:33:12 +00002683 CXXMethodDecl *NewFD =
2684 cast_or_null<CXXMethodDecl>(VisitCXXMethodDecl(OldFD, nullptr, true));
2685 if (!NewFD)
2686 return nullptr;
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002687
2688 LookupResult Previous(SemaRef, NewFD->getNameInfo(), Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00002689 Sema::ForExternalRedeclaration);
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002690
Nico Weber7b5a7162012-06-25 17:21:05 +00002691 TemplateArgumentListInfo TemplateArgs;
Craig Topperc3ec1492014-05-26 06:22:03 +00002692 TemplateArgumentListInfo *TemplateArgsPtr = nullptr;
Nico Weber7b5a7162012-06-25 17:21:05 +00002693 if (Decl->hasExplicitTemplateArgs()) {
2694 TemplateArgs = Decl->templateArgs();
2695 TemplateArgsPtr = &TemplateArgs;
2696 }
2697
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002698 SemaRef.LookupQualifiedName(Previous, SemaRef.CurContext);
Nico Weber7b5a7162012-06-25 17:21:05 +00002699 if (SemaRef.CheckFunctionTemplateSpecialization(NewFD, TemplateArgsPtr,
2700 Previous)) {
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002701 NewFD->setInvalidDecl();
2702 return NewFD;
2703 }
2704
2705 // Associate the specialization with the pattern.
2706 FunctionDecl *Specialization = cast<FunctionDecl>(Previous.getFoundDecl());
2707 assert(Specialization && "Class scope Specialization is null");
2708 SemaRef.Context.setClassScopeSpecializationPattern(Specialization, OldFD);
2709
Richard Smithc660c8f2018-03-16 13:36:56 +00002710 // FIXME: If this is a definition, check for redefinition errors!
2711
Francois Pichet00c7e6c2011-08-14 03:52:19 +00002712 return NewFD;
2713}
2714
Alexey Bataeva769e072013-03-22 06:34:35 +00002715Decl *TemplateDeclInstantiator::VisitOMPThreadPrivateDecl(
2716 OMPThreadPrivateDecl *D) {
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002717 SmallVector<Expr *, 5> Vars;
Aaron Ballman2205d2a2014-03-14 15:55:35 +00002718 for (auto *I : D->varlists()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002719 Expr *Var = SemaRef.SubstExpr(I, TemplateArgs).get();
Alexey Bataeva769e072013-03-22 06:34:35 +00002720 assert(isa<DeclRefExpr>(Var) && "threadprivate arg is not a DeclRefExpr");
Alexey Bataev6f6f3b42013-05-13 04:18:18 +00002721 Vars.push_back(Var);
Alexey Bataeva769e072013-03-22 06:34:35 +00002722 }
2723
2724 OMPThreadPrivateDecl *TD =
2725 SemaRef.CheckOMPThreadPrivateDecl(D->getLocation(), Vars);
2726
Alexey Bataevd3db6ac2014-03-07 09:46:29 +00002727 TD->setAccess(AS_public);
2728 Owner->addDecl(TD);
2729
Alexey Bataeva769e072013-03-22 06:34:35 +00002730 return TD;
2731}
2732
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002733Decl *TemplateDeclInstantiator::VisitOMPDeclareReductionDecl(
2734 OMPDeclareReductionDecl *D) {
2735 // Instantiate type and check if it is allowed.
2736 QualType SubstReductionType = SemaRef.ActOnOpenMPDeclareReductionType(
2737 D->getLocation(),
2738 ParsedType::make(SemaRef.SubstType(D->getType(), TemplateArgs,
2739 D->getLocation(), DeclarationName())));
2740 if (SubstReductionType.isNull())
2741 return nullptr;
2742 bool IsCorrect = !SubstReductionType.isNull();
2743 // Create instantiated copy.
2744 std::pair<QualType, SourceLocation> ReductionTypes[] = {
2745 std::make_pair(SubstReductionType, D->getLocation())};
2746 auto *PrevDeclInScope = D->getPrevDeclInScope();
2747 if (PrevDeclInScope && !PrevDeclInScope->isInvalidDecl()) {
2748 PrevDeclInScope = cast<OMPDeclareReductionDecl>(
2749 SemaRef.CurrentInstantiationScope->findInstantiationOf(PrevDeclInScope)
2750 ->get<Decl *>());
2751 }
2752 auto DRD = SemaRef.ActOnOpenMPDeclareReductionDirectiveStart(
2753 /*S=*/nullptr, Owner, D->getDeclName(), ReductionTypes, D->getAccess(),
2754 PrevDeclInScope);
2755 auto *NewDRD = cast<OMPDeclareReductionDecl>(DRD.get().getSingleDecl());
2756 if (isDeclWithinFunction(NewDRD))
2757 SemaRef.CurrentInstantiationScope->InstantiatedLocal(D, NewDRD);
2758 Expr *SubstCombiner = nullptr;
2759 Expr *SubstInitializer = nullptr;
2760 // Combiners instantiation sequence.
2761 if (D->getCombiner()) {
2762 SemaRef.ActOnOpenMPDeclareReductionCombinerStart(
2763 /*S=*/nullptr, NewDRD);
2764 const char *Names[] = {"omp_in", "omp_out"};
2765 for (auto &Name : Names) {
2766 DeclarationName DN(&SemaRef.Context.Idents.get(Name));
2767 auto OldLookup = D->lookup(DN);
2768 auto Lookup = NewDRD->lookup(DN);
2769 if (!OldLookup.empty() && !Lookup.empty()) {
2770 assert(Lookup.size() == 1 && OldLookup.size() == 1);
2771 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldLookup.front(),
2772 Lookup.front());
2773 }
2774 }
2775 SubstCombiner = SemaRef.SubstExpr(D->getCombiner(), TemplateArgs).get();
2776 SemaRef.ActOnOpenMPDeclareReductionCombinerEnd(NewDRD, SubstCombiner);
2777 // Initializers instantiation sequence.
2778 if (D->getInitializer()) {
Alexey Bataev070f43a2017-09-06 14:49:58 +00002779 VarDecl *OmpPrivParm =
2780 SemaRef.ActOnOpenMPDeclareReductionInitializerStart(
2781 /*S=*/nullptr, NewDRD);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002782 const char *Names[] = {"omp_orig", "omp_priv"};
2783 for (auto &Name : Names) {
2784 DeclarationName DN(&SemaRef.Context.Idents.get(Name));
2785 auto OldLookup = D->lookup(DN);
2786 auto Lookup = NewDRD->lookup(DN);
2787 if (!OldLookup.empty() && !Lookup.empty()) {
2788 assert(Lookup.size() == 1 && OldLookup.size() == 1);
Alexey Bataev070f43a2017-09-06 14:49:58 +00002789 auto *OldVD = cast<VarDecl>(OldLookup.front());
2790 auto *NewVD = cast<VarDecl>(Lookup.front());
2791 SemaRef.InstantiateVariableInitializer(NewVD, OldVD, TemplateArgs);
2792 SemaRef.CurrentInstantiationScope->InstantiatedLocal(OldVD, NewVD);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002793 }
2794 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002795 if (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit) {
2796 SubstInitializer =
2797 SemaRef.SubstExpr(D->getInitializer(), TemplateArgs).get();
2798 } else {
2799 IsCorrect = IsCorrect && OmpPrivParm->hasInit();
2800 }
2801 SemaRef.ActOnOpenMPDeclareReductionInitializerEnd(
2802 NewDRD, SubstInitializer, OmpPrivParm);
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002803 }
Alexey Bataev070f43a2017-09-06 14:49:58 +00002804 IsCorrect =
2805 IsCorrect && SubstCombiner &&
2806 (!D->getInitializer() ||
2807 (D->getInitializerKind() == OMPDeclareReductionDecl::CallInit &&
2808 SubstInitializer) ||
2809 (D->getInitializerKind() != OMPDeclareReductionDecl::CallInit &&
2810 !SubstInitializer && !SubstInitializer));
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002811 } else
2812 IsCorrect = false;
2813
2814 (void)SemaRef.ActOnOpenMPDeclareReductionDirectiveEnd(/*S=*/nullptr, DRD,
2815 IsCorrect);
2816
2817 return NewDRD;
2818}
2819
Alexey Bataev4244be22016-02-11 05:35:55 +00002820Decl *TemplateDeclInstantiator::VisitOMPCapturedExprDecl(
2821 OMPCapturedExprDecl * /*D*/) {
Alexey Bataev90c228f2016-02-08 09:29:13 +00002822 llvm_unreachable("Should not be met in templates");
2823}
2824
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002825Decl *TemplateDeclInstantiator::VisitFunctionDecl(FunctionDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002826 return VisitFunctionDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002827}
2828
Richard Smithbc491202017-02-17 20:05:37 +00002829Decl *
2830TemplateDeclInstantiator::VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *D) {
Richard Smith2600c632018-05-30 20:24:10 +00002831 Decl *Inst = VisitFunctionDecl(D, nullptr);
2832 if (Inst && !D->getDescribedFunctionTemplate())
2833 Owner->addDecl(Inst);
2834 return Inst;
Richard Smithbc491202017-02-17 20:05:37 +00002835}
2836
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002837Decl *TemplateDeclInstantiator::VisitCXXMethodDecl(CXXMethodDecl *D) {
Craig Topperc3ec1492014-05-26 06:22:03 +00002838 return VisitCXXMethodDecl(D, nullptr);
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002839}
2840
2841Decl *TemplateDeclInstantiator::VisitRecordDecl(RecordDecl *D) {
2842 llvm_unreachable("There are only CXXRecordDecls in C++");
2843}
2844
2845Decl *
2846TemplateDeclInstantiator::VisitClassTemplateSpecializationDecl(
2847 ClassTemplateSpecializationDecl *D) {
Richard Smith8a0dde72013-12-14 01:04:22 +00002848 // As a MS extension, we permit class-scope explicit specialization
2849 // of member class templates.
2850 ClassTemplateDecl *ClassTemplate = D->getSpecializedTemplate();
2851 assert(ClassTemplate->getDeclContext()->isRecord() &&
2852 D->getTemplateSpecializationKind() == TSK_ExplicitSpecialization &&
2853 "can only instantiate an explicit specialization "
2854 "for a member class template");
2855
2856 // Lookup the already-instantiated declaration in the instantiation
2857 // of the class template. FIXME: Diagnose or assert if this fails?
2858 DeclContext::lookup_result Found
2859 = Owner->lookup(ClassTemplate->getDeclName());
2860 if (Found.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00002861 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002862 ClassTemplateDecl *InstClassTemplate
2863 = dyn_cast<ClassTemplateDecl>(Found.front());
2864 if (!InstClassTemplate)
Craig Topperc3ec1492014-05-26 06:22:03 +00002865 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002866
2867 // Substitute into the template arguments of the class template explicit
2868 // specialization.
2869 TemplateSpecializationTypeLoc Loc = D->getTypeAsWritten()->getTypeLoc().
2870 castAs<TemplateSpecializationTypeLoc>();
2871 TemplateArgumentListInfo InstTemplateArgs(Loc.getLAngleLoc(),
2872 Loc.getRAngleLoc());
2873 SmallVector<TemplateArgumentLoc, 4> ArgLocs;
2874 for (unsigned I = 0; I != Loc.getNumArgs(); ++I)
2875 ArgLocs.push_back(Loc.getArgLoc(I));
2876 if (SemaRef.Subst(ArgLocs.data(), ArgLocs.size(),
2877 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002878 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002879
2880 // Check that the template argument list is well-formed for this
2881 // class template.
2882 SmallVector<TemplateArgument, 4> Converted;
2883 if (SemaRef.CheckTemplateArgumentList(InstClassTemplate,
2884 D->getLocation(),
2885 InstTemplateArgs,
2886 false,
2887 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00002888 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002889
2890 // Figure out where to insert this class template explicit specialization
2891 // in the member template's set of class template explicit specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00002892 void *InsertPos = nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002893 ClassTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00002894 InstClassTemplate->findSpecialization(Converted, InsertPos);
Richard Smith8a0dde72013-12-14 01:04:22 +00002895
2896 // Check whether we've already seen a conflicting instantiation of this
2897 // declaration (for instance, if there was a prior implicit instantiation).
2898 bool Ignored;
2899 if (PrevDecl &&
2900 SemaRef.CheckSpecializationInstantiationRedecl(D->getLocation(),
2901 D->getSpecializationKind(),
2902 PrevDecl,
2903 PrevDecl->getSpecializationKind(),
2904 PrevDecl->getPointOfInstantiation(),
2905 Ignored))
Craig Topperc3ec1492014-05-26 06:22:03 +00002906 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002907
2908 // If PrevDecl was a definition and D is also a definition, diagnose.
2909 // This happens in cases like:
2910 //
2911 // template<typename T, typename U>
2912 // struct Outer {
2913 // template<typename X> struct Inner;
2914 // template<> struct Inner<T> {};
2915 // template<> struct Inner<U> {};
2916 // };
2917 //
2918 // Outer<int, int> outer; // error: the explicit specializations of Inner
2919 // // have the same signature.
2920 if (PrevDecl && PrevDecl->getDefinition() &&
2921 D->isThisDeclarationADefinition()) {
2922 SemaRef.Diag(D->getLocation(), diag::err_redefinition) << PrevDecl;
2923 SemaRef.Diag(PrevDecl->getDefinition()->getLocation(),
2924 diag::note_previous_definition);
Craig Topperc3ec1492014-05-26 06:22:03 +00002925 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002926 }
2927
2928 // Create the class template partial specialization declaration.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00002929 ClassTemplateSpecializationDecl *InstD =
2930 ClassTemplateSpecializationDecl::Create(
2931 SemaRef.Context, D->getTagKind(), Owner, D->getBeginLoc(),
2932 D->getLocation(), InstClassTemplate, Converted, PrevDecl);
Richard Smith8a0dde72013-12-14 01:04:22 +00002933
2934 // Add this partial specialization to the set of class template partial
2935 // specializations.
2936 if (!PrevDecl)
2937 InstClassTemplate->AddSpecialization(InstD, InsertPos);
2938
2939 // Substitute the nested name specifier, if any.
2940 if (SubstQualifier(D, InstD))
Craig Topperc3ec1492014-05-26 06:22:03 +00002941 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002942
2943 // Build the canonical type that describes the converted template
2944 // arguments of the class template explicit specialization.
2945 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00002946 TemplateName(InstClassTemplate), Converted,
Richard Smith8a0dde72013-12-14 01:04:22 +00002947 SemaRef.Context.getRecordType(InstD));
2948
2949 // Build the fully-sugared type for this class template
2950 // specialization as the user wrote in the specialization
2951 // itself. This means that we'll pretty-print the type retrieved
2952 // from the specialization's declaration the way that the user
2953 // actually wrote the specialization, rather than formatting the
2954 // name based on the "canonical" representation used to store the
2955 // template arguments in the specialization.
2956 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
2957 TemplateName(InstClassTemplate), D->getLocation(), InstTemplateArgs,
2958 CanonType);
2959
2960 InstD->setAccess(D->getAccess());
2961 InstD->setInstantiationOfMemberClass(D, TSK_ImplicitInstantiation);
2962 InstD->setSpecializationKind(D->getSpecializationKind());
2963 InstD->setTypeAsWritten(WrittenTy);
2964 InstD->setExternLoc(D->getExternLoc());
2965 InstD->setTemplateKeywordLoc(D->getTemplateKeywordLoc());
2966
2967 Owner->addDecl(InstD);
2968
2969 // Instantiate the members of the class-scope explicit specialization eagerly.
2970 // We don't have support for lazy instantiation of an explicit specialization
2971 // yet, and MSVC eagerly instantiates in this case.
2972 if (D->isThisDeclarationADefinition() &&
2973 SemaRef.InstantiateClass(D->getLocation(), InstD, D, TemplateArgs,
2974 TSK_ImplicitInstantiation,
2975 /*Complain=*/true))
Craig Topperc3ec1492014-05-26 06:22:03 +00002976 return nullptr;
Richard Smith8a0dde72013-12-14 01:04:22 +00002977
2978 return InstD;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00002979}
2980
Larisse Voufo39a1e502013-08-06 01:03:05 +00002981Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
2982 VarTemplateSpecializationDecl *D) {
2983
2984 TemplateArgumentListInfo VarTemplateArgsInfo;
2985 VarTemplateDecl *VarTemplate = D->getSpecializedTemplate();
2986 assert(VarTemplate &&
2987 "A template specialization without specialized template?");
2988
2989 // Substitute the current template arguments.
2990 const TemplateArgumentListInfo &TemplateArgsInfo = D->getTemplateArgsInfo();
2991 VarTemplateArgsInfo.setLAngleLoc(TemplateArgsInfo.getLAngleLoc());
2992 VarTemplateArgsInfo.setRAngleLoc(TemplateArgsInfo.getRAngleLoc());
2993
2994 if (SemaRef.Subst(TemplateArgsInfo.getArgumentArray(),
2995 TemplateArgsInfo.size(), VarTemplateArgsInfo, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00002996 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00002997
2998 // Check that the template argument list is well-formed for this template.
2999 SmallVector<TemplateArgument, 4> Converted;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003000 if (SemaRef.CheckTemplateArgumentList(
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003001 VarTemplate, VarTemplate->getBeginLoc(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00003002 const_cast<TemplateArgumentListInfo &>(VarTemplateArgsInfo), false,
Richard Smith83b11aa2014-01-09 02:22:22 +00003003 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003004 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003005
3006 // Find the variable template specialization declaration that
3007 // corresponds to these arguments.
Craig Topperc3ec1492014-05-26 06:22:03 +00003008 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003009 if (VarTemplateSpecializationDecl *VarSpec = VarTemplate->findSpecialization(
Craig Topper7e0daca2014-06-26 04:58:53 +00003010 Converted, InsertPos))
Larisse Voufo39a1e502013-08-06 01:03:05 +00003011 // If we already have a variable template specialization, return it.
3012 return VarSpec;
3013
3014 return VisitVarTemplateSpecializationDecl(VarTemplate, D, InsertPos,
3015 VarTemplateArgsInfo, Converted);
3016}
3017
3018Decl *TemplateDeclInstantiator::VisitVarTemplateSpecializationDecl(
3019 VarTemplateDecl *VarTemplate, VarDecl *D, void *InsertPos,
3020 const TemplateArgumentListInfo &TemplateArgsInfo,
Craig Topper00bbdcf2014-06-28 23:22:23 +00003021 ArrayRef<TemplateArgument> Converted) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00003022
Larisse Voufo39a1e502013-08-06 01:03:05 +00003023 // Do substitution on the type of the declaration
3024 TypeSourceInfo *DI =
3025 SemaRef.SubstType(D->getTypeSourceInfo(), TemplateArgs,
3026 D->getTypeSpecStartLoc(), D->getDeclName());
3027 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003028 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003029
3030 if (DI->getType()->isFunctionType()) {
3031 SemaRef.Diag(D->getLocation(), diag::err_variable_instantiates_to_function)
3032 << D->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003033 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003034 }
3035
3036 // Build the instantiated declaration
3037 VarTemplateSpecializationDecl *Var = VarTemplateSpecializationDecl::Create(
3038 SemaRef.Context, Owner, D->getInnerLocStart(), D->getLocation(),
David Majnemer8b622692016-07-03 21:17:51 +00003039 VarTemplate, DI->getType(), DI, D->getStorageClass(), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003040 Var->setTemplateArgsInfo(TemplateArgsInfo);
Richard Smith8809a0c2013-09-27 20:14:12 +00003041 if (InsertPos)
3042 VarTemplate->AddSpecialization(Var, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003043
3044 // Substitute the nested name specifier, if any.
3045 if (SubstQualifier(D, Var))
Craig Topperc3ec1492014-05-26 06:22:03 +00003046 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003047
3048 SemaRef.BuildVariableInstantiation(Var, D, TemplateArgs, LateAttrs,
Richard Smith541b38b2013-09-20 01:15:31 +00003049 Owner, StartingScope);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003050
3051 return Var;
3052}
3053
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003054Decl *TemplateDeclInstantiator::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) {
3055 llvm_unreachable("@defs is not supported in Objective-C++");
3056}
3057
3058Decl *TemplateDeclInstantiator::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
3059 // FIXME: We need to be able to instantiate FriendTemplateDecls.
3060 unsigned DiagID = SemaRef.getDiagnostics().getCustomDiagID(
3061 DiagnosticsEngine::Error,
3062 "cannot instantiate %0 yet");
3063 SemaRef.Diag(D->getLocation(), DiagID)
3064 << D->getDeclKindName();
3065
Craig Topperc3ec1492014-05-26 06:22:03 +00003066 return nullptr;
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003067}
3068
3069Decl *TemplateDeclInstantiator::VisitDecl(Decl *D) {
3070 llvm_unreachable("Unexpected decl");
3071}
3072
John McCall76d824f2009-08-25 22:02:44 +00003073Decl *Sema::SubstDecl(Decl *D, DeclContext *Owner,
Douglas Gregor01afeef2009-08-28 20:31:08 +00003074 const MultiLevelTemplateArgumentList &TemplateArgs) {
Douglas Gregord002c7b2009-05-11 23:53:27 +00003075 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
Douglas Gregor71ad4772010-02-16 19:28:15 +00003076 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00003077 return nullptr;
Douglas Gregor71ad4772010-02-16 19:28:15 +00003078
Douglas Gregord7e7a512009-03-17 21:15:40 +00003079 return Instantiator.Visit(D);
3080}
3081
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003082/// Instantiates a nested template parameter list in the current
John McCall87a44eb2009-08-20 01:44:21 +00003083/// instantiation context.
3084///
3085/// \param L The parameter list to instantiate
3086///
3087/// \returns NULL if there was an error
3088TemplateParameterList *
John McCall76d824f2009-08-25 22:02:44 +00003089TemplateDeclInstantiator::SubstTemplateParams(TemplateParameterList *L) {
John McCall87a44eb2009-08-20 01:44:21 +00003090 // Get errors for all the parameters before bailing out.
3091 bool Invalid = false;
3092
3093 unsigned N = L->size();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003094 typedef SmallVector<NamedDecl *, 8> ParamVector;
John McCall87a44eb2009-08-20 01:44:21 +00003095 ParamVector Params;
3096 Params.reserve(N);
Davide Italiano18960b92015-07-02 19:20:11 +00003097 for (auto &P : *L) {
3098 NamedDecl *D = cast_or_null<NamedDecl>(Visit(P));
John McCall87a44eb2009-08-20 01:44:21 +00003099 Params.push_back(D);
Douglas Gregore62e6a02009-11-11 19:13:48 +00003100 Invalid = Invalid || !D || D->isInvalidDecl();
John McCall87a44eb2009-08-20 01:44:21 +00003101 }
3102
3103 // Clean up if we had an error.
Douglas Gregorb412e172010-07-25 18:17:45 +00003104 if (Invalid)
Craig Topperc3ec1492014-05-26 06:22:03 +00003105 return nullptr;
John McCall87a44eb2009-08-20 01:44:21 +00003106
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003107 // Note: we substitute into associated constraints later
3108 Expr *const UninstantiatedRequiresClause = L->getRequiresClause();
3109
John McCall87a44eb2009-08-20 01:44:21 +00003110 TemplateParameterList *InstL
3111 = TemplateParameterList::Create(SemaRef.Context, L->getTemplateLoc(),
David Majnemer902f8c62015-12-27 07:16:27 +00003112 L->getLAngleLoc(), Params,
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00003113 L->getRAngleLoc(),
3114 UninstantiatedRequiresClause);
John McCall87a44eb2009-08-20 01:44:21 +00003115 return InstL;
Mike Stump11289f42009-09-09 15:08:12 +00003116}
John McCall87a44eb2009-08-20 01:44:21 +00003117
Richard Smith5d331022018-03-08 01:07:33 +00003118TemplateParameterList *
3119Sema::SubstTemplateParams(TemplateParameterList *Params, DeclContext *Owner,
3120 const MultiLevelTemplateArgumentList &TemplateArgs) {
3121 TemplateDeclInstantiator Instantiator(*this, Owner, TemplateArgs);
3122 return Instantiator.SubstTemplateParams(Params);
3123}
3124
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003125/// Instantiate the declaration of a class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003126/// specialization.
3127///
3128/// \param ClassTemplate the (instantiated) class template that is partially
3129// specialized by the instantiation of \p PartialSpec.
3130///
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003131/// \param PartialSpec the (uninstantiated) class template partial
Douglas Gregor21610382009-10-29 00:04:11 +00003132/// specialization that we are instantiating.
3133///
Douglas Gregor869853e2010-11-10 19:44:59 +00003134/// \returns The instantiated partial specialization, if successful; otherwise,
3135/// NULL to indicate an error.
3136ClassTemplatePartialSpecializationDecl *
Douglas Gregor21610382009-10-29 00:04:11 +00003137TemplateDeclInstantiator::InstantiateClassTemplatePartialSpecialization(
3138 ClassTemplateDecl *ClassTemplate,
3139 ClassTemplatePartialSpecializationDecl *PartialSpec) {
Douglas Gregor954de172009-10-31 17:21:17 +00003140 // Create a local instantiation scope for this class template partial
3141 // specialization, which will contain the instantiations of the template
3142 // parameters.
John McCall19c1bfd2010-08-25 05:32:35 +00003143 LocalInstantiationScope Scope(SemaRef);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003144
Douglas Gregor21610382009-10-29 00:04:11 +00003145 // Substitute into the template parameters of the class template partial
3146 // specialization.
3147 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3148 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3149 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003150 return nullptr;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003151
Douglas Gregor21610382009-10-29 00:04:11 +00003152 // Substitute into the template arguments of the class template partial
3153 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003154 const ASTTemplateArgumentListInfo *TemplArgInfo
3155 = PartialSpec->getTemplateArgsAsWritten();
3156 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3157 TemplArgInfo->RAngleLoc);
3158 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3159 TemplArgInfo->NumTemplateArgs,
Douglas Gregor0f3feb42010-12-22 21:19:48 +00003160 InstTemplateArgs, TemplateArgs))
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 // Check that the template argument list is well-formed for this
3164 // class template.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003165 SmallVector<TemplateArgument, 4> Converted;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003166 if (SemaRef.CheckTemplateArgumentList(ClassTemplate,
Douglas Gregor21610382009-10-29 00:04:11 +00003167 PartialSpec->getLocation(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003168 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003169 false,
3170 Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003171 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003172
Richard Smith57aae072016-12-28 02:37:25 +00003173 // Check these arguments are valid for a template partial specialization.
3174 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3175 PartialSpec->getLocation(), ClassTemplate, InstTemplateArgs.size(),
3176 Converted))
3177 return nullptr;
3178
Douglas Gregor21610382009-10-29 00:04:11 +00003179 // Figure out where to insert this class template partial specialization
3180 // in the member template's set of class template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003181 void *InsertPos = nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003182 ClassTemplateSpecializationDecl *PrevDecl
Craig Topper7e0daca2014-06-26 04:58:53 +00003183 = ClassTemplate->findPartialSpecialization(Converted, InsertPos);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003184
Douglas Gregor21610382009-10-29 00:04:11 +00003185 // Build the canonical type that describes the converted template
3186 // arguments of the class template partial specialization.
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003187 QualType CanonType
Douglas Gregor21610382009-10-29 00:04:11 +00003188 = SemaRef.Context.getTemplateSpecializationType(TemplateName(ClassTemplate),
David Majnemer6fbeee32016-07-07 04:43:07 +00003189 Converted);
Douglas Gregor21610382009-10-29 00:04:11 +00003190
3191 // Build the fully-sugared type for this class template
3192 // specialization as the user wrote in the specialization
3193 // itself. This means that we'll pretty-print the type retrieved
3194 // from the specialization's declaration the way that the user
3195 // actually wrote the specialization, rather than formatting the
3196 // name based on the "canonical" representation used to store the
3197 // template arguments in the specialization.
John McCalle78aac42010-03-10 03:28:59 +00003198 TypeSourceInfo *WrittenTy
3199 = SemaRef.Context.getTemplateSpecializationTypeInfo(
3200 TemplateName(ClassTemplate),
3201 PartialSpec->getLocation(),
John McCall6b51f282009-11-23 01:53:49 +00003202 InstTemplateArgs,
Douglas Gregor21610382009-10-29 00:04:11 +00003203 CanonType);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003204
Douglas Gregor21610382009-10-29 00:04:11 +00003205 if (PrevDecl) {
3206 // We've already seen a partial specialization with the same template
3207 // parameters and template arguments. This can happen, for example, when
3208 // substituting the outer template arguments ends up causing two
3209 // class template partial specializations of a member class template
3210 // to have identical forms, e.g.,
3211 //
3212 // template<typename T, typename U>
3213 // struct Outer {
3214 // template<typename X, typename Y> struct Inner;
3215 // template<typename Y> struct Inner<T, Y>;
3216 // template<typename Y> struct Inner<U, Y>;
3217 // };
3218 //
3219 // Outer<int, int> outer; // error: the partial specializations of Inner
3220 // // have the same signature.
3221 SemaRef.Diag(PartialSpec->getLocation(), diag::err_partial_spec_redeclared)
Douglas Gregor869853e2010-11-10 19:44:59 +00003222 << WrittenTy->getType();
Douglas Gregor21610382009-10-29 00:04:11 +00003223 SemaRef.Diag(PrevDecl->getLocation(), diag::note_prev_partial_spec_here)
3224 << SemaRef.Context.getTypeDeclType(PrevDecl);
Craig Topperc3ec1492014-05-26 06:22:03 +00003225 return nullptr;
Douglas Gregor21610382009-10-29 00:04:11 +00003226 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003227
3228
Douglas Gregor21610382009-10-29 00:04:11 +00003229 // Create the class template partial specialization declaration.
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003230 ClassTemplatePartialSpecializationDecl *InstPartialSpec =
3231 ClassTemplatePartialSpecializationDecl::Create(
3232 SemaRef.Context, PartialSpec->getTagKind(), Owner,
3233 PartialSpec->getBeginLoc(), PartialSpec->getLocation(), InstParams,
3234 ClassTemplate, Converted, InstTemplateArgs, CanonType, nullptr);
John McCall3e11ebe2010-03-15 10:12:16 +00003235 // Substitute the nested name specifier, if any.
3236 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003237 return nullptr;
John McCall3e11ebe2010-03-15 10:12:16 +00003238
Douglas Gregor21610382009-10-29 00:04:11 +00003239 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
Douglas Gregor6044d692010-05-19 17:02:24 +00003240 InstPartialSpec->setTypeAsWritten(WrittenTy);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003241
Richard Smith57aae072016-12-28 02:37:25 +00003242 // Check the completed partial specialization.
3243 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3244
Douglas Gregor21610382009-10-29 00:04:11 +00003245 // Add this partial specialization to the set of class template partial
3246 // specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003247 ClassTemplate->AddPartialSpecialization(InstPartialSpec,
3248 /*InsertPos=*/nullptr);
Douglas Gregor869853e2010-11-10 19:44:59 +00003249 return InstPartialSpec;
Douglas Gregor21610382009-10-29 00:04:11 +00003250}
3251
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003252/// Instantiate the declaration of a variable template partial
Larisse Voufo39a1e502013-08-06 01:03:05 +00003253/// specialization.
3254///
3255/// \param VarTemplate the (instantiated) variable template that is partially
3256/// specialized by the instantiation of \p PartialSpec.
3257///
3258/// \param PartialSpec the (uninstantiated) variable template partial
3259/// specialization that we are instantiating.
3260///
3261/// \returns The instantiated partial specialization, if successful; otherwise,
3262/// NULL to indicate an error.
3263VarTemplatePartialSpecializationDecl *
3264TemplateDeclInstantiator::InstantiateVarTemplatePartialSpecialization(
3265 VarTemplateDecl *VarTemplate,
3266 VarTemplatePartialSpecializationDecl *PartialSpec) {
3267 // Create a local instantiation scope for this variable template partial
3268 // specialization, which will contain the instantiations of the template
3269 // parameters.
3270 LocalInstantiationScope Scope(SemaRef);
3271
3272 // Substitute into the template parameters of the variable template partial
3273 // specialization.
3274 TemplateParameterList *TempParams = PartialSpec->getTemplateParameters();
3275 TemplateParameterList *InstParams = SubstTemplateParams(TempParams);
3276 if (!InstParams)
Craig Topperc3ec1492014-05-26 06:22:03 +00003277 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003278
3279 // Substitute into the template arguments of the variable template partial
3280 // specialization.
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00003281 const ASTTemplateArgumentListInfo *TemplArgInfo
3282 = PartialSpec->getTemplateArgsAsWritten();
3283 TemplateArgumentListInfo InstTemplateArgs(TemplArgInfo->LAngleLoc,
3284 TemplArgInfo->RAngleLoc);
3285 if (SemaRef.Subst(TemplArgInfo->getTemplateArgs(),
3286 TemplArgInfo->NumTemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00003287 InstTemplateArgs, TemplateArgs))
Craig Topperc3ec1492014-05-26 06:22:03 +00003288 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003289
3290 // Check that the template argument list is well-formed for this
3291 // class template.
3292 SmallVector<TemplateArgument, 4> Converted;
3293 if (SemaRef.CheckTemplateArgumentList(VarTemplate, PartialSpec->getLocation(),
3294 InstTemplateArgs, false, Converted))
Craig Topperc3ec1492014-05-26 06:22:03 +00003295 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003296
Richard Smith57aae072016-12-28 02:37:25 +00003297 // Check these arguments are valid for a template partial specialization.
3298 if (SemaRef.CheckTemplatePartialSpecializationArgs(
3299 PartialSpec->getLocation(), VarTemplate, InstTemplateArgs.size(),
3300 Converted))
3301 return nullptr;
3302
Larisse Voufo39a1e502013-08-06 01:03:05 +00003303 // Figure out where to insert this variable template partial specialization
3304 // in the member template's set of variable template partial specializations.
Craig Topperc3ec1492014-05-26 06:22:03 +00003305 void *InsertPos = nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003306 VarTemplateSpecializationDecl *PrevDecl =
Craig Topper7e0daca2014-06-26 04:58:53 +00003307 VarTemplate->findPartialSpecialization(Converted, InsertPos);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003308
3309 // Build the canonical type that describes the converted template
3310 // arguments of the variable template partial specialization.
3311 QualType CanonType = SemaRef.Context.getTemplateSpecializationType(
David Majnemer6fbeee32016-07-07 04:43:07 +00003312 TemplateName(VarTemplate), Converted);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003313
3314 // Build the fully-sugared type for this variable template
3315 // specialization as the user wrote in the specialization
3316 // itself. This means that we'll pretty-print the type retrieved
3317 // from the specialization's declaration the way that the user
3318 // actually wrote the specialization, rather than formatting the
3319 // name based on the "canonical" representation used to store the
3320 // template arguments in the specialization.
3321 TypeSourceInfo *WrittenTy = SemaRef.Context.getTemplateSpecializationTypeInfo(
3322 TemplateName(VarTemplate), PartialSpec->getLocation(), InstTemplateArgs,
3323 CanonType);
3324
3325 if (PrevDecl) {
3326 // We've already seen a partial specialization with the same template
3327 // parameters and template arguments. This can happen, for example, when
3328 // substituting the outer template arguments ends up causing two
3329 // variable template partial specializations of a member variable template
3330 // to have identical forms, e.g.,
3331 //
3332 // template<typename T, typename U>
3333 // struct Outer {
3334 // template<typename X, typename Y> pair<X,Y> p;
3335 // template<typename Y> pair<T, Y> p;
3336 // template<typename Y> pair<U, Y> p;
3337 // };
3338 //
3339 // Outer<int, int> outer; // error: the partial specializations of Inner
3340 // // have the same signature.
3341 SemaRef.Diag(PartialSpec->getLocation(),
3342 diag::err_var_partial_spec_redeclared)
3343 << WrittenTy->getType();
3344 SemaRef.Diag(PrevDecl->getLocation(),
3345 diag::note_var_prev_partial_spec_here);
Craig Topperc3ec1492014-05-26 06:22:03 +00003346 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003347 }
3348
3349 // Do substitution on the type of the declaration
3350 TypeSourceInfo *DI = SemaRef.SubstType(
3351 PartialSpec->getTypeSourceInfo(), TemplateArgs,
3352 PartialSpec->getTypeSpecStartLoc(), PartialSpec->getDeclName());
3353 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00003354 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003355
3356 if (DI->getType()->isFunctionType()) {
3357 SemaRef.Diag(PartialSpec->getLocation(),
3358 diag::err_variable_instantiates_to_function)
3359 << PartialSpec->isStaticDataMember() << DI->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +00003360 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003361 }
3362
3363 // Create the variable template partial specialization declaration.
3364 VarTemplatePartialSpecializationDecl *InstPartialSpec =
3365 VarTemplatePartialSpecializationDecl::Create(
3366 SemaRef.Context, Owner, PartialSpec->getInnerLocStart(),
3367 PartialSpec->getLocation(), InstParams, VarTemplate, DI->getType(),
David Majnemer8b622692016-07-03 21:17:51 +00003368 DI, PartialSpec->getStorageClass(), Converted, InstTemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00003369
3370 // Substitute the nested name specifier, if any.
3371 if (SubstQualifier(PartialSpec, InstPartialSpec))
Craig Topperc3ec1492014-05-26 06:22:03 +00003372 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003373
3374 InstPartialSpec->setInstantiatedFromMember(PartialSpec);
3375 InstPartialSpec->setTypeAsWritten(WrittenTy);
3376
Richard Smith57aae072016-12-28 02:37:25 +00003377 // Check the completed partial specialization.
3378 SemaRef.CheckTemplatePartialSpecialization(InstPartialSpec);
3379
Larisse Voufo39a1e502013-08-06 01:03:05 +00003380 // Add this partial specialization to the set of variable template partial
3381 // specializations. The instantiation of the initializer is not necessary.
Craig Topperc3ec1492014-05-26 06:22:03 +00003382 VarTemplate->AddPartialSpecialization(InstPartialSpec, /*InsertPos=*/nullptr);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003383
Larisse Voufo4cda4612013-08-22 00:28:27 +00003384 SemaRef.BuildVariableInstantiation(InstPartialSpec, PartialSpec, TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00003385 LateAttrs, Owner, StartingScope);
Larisse Voufo4cda4612013-08-22 00:28:27 +00003386
Larisse Voufo39a1e502013-08-06 01:03:05 +00003387 return InstPartialSpec;
3388}
3389
John McCall58f10c32010-03-11 09:03:00 +00003390TypeSourceInfo*
John McCall76d824f2009-08-25 22:02:44 +00003391TemplateDeclInstantiator::SubstFunctionType(FunctionDecl *D,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003392 SmallVectorImpl<ParmVarDecl *> &Params) {
John McCall58f10c32010-03-11 09:03:00 +00003393 TypeSourceInfo *OldTInfo = D->getTypeSourceInfo();
3394 assert(OldTInfo && "substituting function without type source info");
3395 assert(Params.empty() && "parameter vector is non-empty at start");
Craig Topperc3ec1492014-05-26 06:22:03 +00003396
3397 CXXRecordDecl *ThisContext = nullptr;
Douglas Gregor3024f072012-04-16 07:05:22 +00003398 unsigned ThisTypeQuals = 0;
3399 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
Richard Smithc3d2ebb2013-06-07 02:33:37 +00003400 ThisContext = cast<CXXRecordDecl>(Owner);
Douglas Gregor3024f072012-04-16 07:05:22 +00003401 ThisTypeQuals = Method->getTypeQualifiers();
3402 }
Fangrui Song6907ce22018-07-30 19:24:48 +00003403
John McCallb29f78f2010-04-09 17:38:44 +00003404 TypeSourceInfo *NewTInfo
3405 = SemaRef.SubstFunctionDeclType(OldTInfo, TemplateArgs,
3406 D->getTypeSpecStartLoc(),
Douglas Gregor3024f072012-04-16 07:05:22 +00003407 D->getDeclName(),
3408 ThisContext, ThisTypeQuals);
John McCall58f10c32010-03-11 09:03:00 +00003409 if (!NewTInfo)
Craig Topperc3ec1492014-05-26 06:22:03 +00003410 return nullptr;
Douglas Gregor21342092009-03-24 00:38:23 +00003411
Reid Klecknera09e44c2013-07-31 21:00:18 +00003412 TypeLoc OldTL = OldTInfo->getTypeLoc().IgnoreParens();
3413 if (FunctionProtoTypeLoc OldProtoLoc = OldTL.getAs<FunctionProtoTypeLoc>()) {
3414 if (NewTInfo != OldTInfo) {
3415 // Get parameters from the new type info.
Abramo Bagnaraa44c9022010-12-13 22:27:55 +00003416 TypeLoc NewTL = NewTInfo->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +00003417 FunctionProtoTypeLoc NewProtoLoc = NewTL.castAs<FunctionProtoTypeLoc>();
Richard Smith198223b2012-07-18 01:29:05 +00003418 unsigned NewIdx = 0;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003419 for (unsigned OldIdx = 0, NumOldParams = OldProtoLoc.getNumParams();
Douglas Gregorf3010112011-01-07 16:43:16 +00003420 OldIdx != NumOldParams; ++OldIdx) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003421 ParmVarDecl *OldParam = OldProtoLoc.getParam(OldIdx);
Richard Smith198223b2012-07-18 01:29:05 +00003422 LocalInstantiationScope *Scope = SemaRef.CurrentInstantiationScope;
3423
David Blaikie05785d12013-02-20 22:23:23 +00003424 Optional<unsigned> NumArgumentsInExpansion;
Richard Smith198223b2012-07-18 01:29:05 +00003425 if (OldParam->isParameterPack())
3426 NumArgumentsInExpansion =
3427 SemaRef.getNumArgumentsInExpansion(OldParam->getType(),
3428 TemplateArgs);
3429 if (!NumArgumentsInExpansion) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003430 // Simple case: normal parameter, or a parameter pack that's
Douglas Gregorf3010112011-01-07 16:43:16 +00003431 // instantiated to a (still-dependent) parameter pack.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003432 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Douglas Gregorf3010112011-01-07 16:43:16 +00003433 Params.push_back(NewParam);
Richard Smith198223b2012-07-18 01:29:05 +00003434 Scope->InstantiatedLocal(OldParam, NewParam);
3435 } else {
3436 // Parameter pack expansion: make the instantiation an argument pack.
3437 Scope->MakeInstantiatedLocalArgPack(OldParam);
3438 for (unsigned I = 0; I != *NumArgumentsInExpansion; ++I) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003439 ParmVarDecl *NewParam = NewProtoLoc.getParam(NewIdx++);
Richard Smith198223b2012-07-18 01:29:05 +00003440 Params.push_back(NewParam);
3441 Scope->InstantiatedLocalPackArg(OldParam, NewParam);
3442 }
Douglas Gregorf3010112011-01-07 16:43:16 +00003443 }
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003444 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003445 } else {
3446 // The function type itself was not dependent and therefore no
3447 // substitution occurred. However, we still need to instantiate
3448 // the function parameters themselves.
3449 const FunctionProtoType *OldProto =
3450 cast<FunctionProtoType>(OldProtoLoc.getType());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00003451 for (unsigned i = 0, i_end = OldProtoLoc.getNumParams(); i != i_end;
3452 ++i) {
3453 ParmVarDecl *OldParam = OldProtoLoc.getParam(i);
Reid Klecknera09e44c2013-07-31 21:00:18 +00003454 if (!OldParam) {
3455 Params.push_back(SemaRef.BuildParmVarDeclForTypedef(
Alp Toker9cacbab2014-01-20 20:26:09 +00003456 D, D->getLocation(), OldProto->getParamType(i)));
Reid Klecknera09e44c2013-07-31 21:00:18 +00003457 continue;
3458 }
3459
Eli Friedmancb9cd6c2013-06-27 23:21:55 +00003460 ParmVarDecl *Parm =
Reid Klecknera09e44c2013-07-31 21:00:18 +00003461 cast_or_null<ParmVarDecl>(VisitParmVarDecl(OldParam));
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003462 if (!Parm)
Craig Topperc3ec1492014-05-26 06:22:03 +00003463 return nullptr;
Douglas Gregor95c70ec2010-05-03 15:32:18 +00003464 Params.push_back(Parm);
3465 }
Douglas Gregor940bca72010-04-12 07:48:19 +00003466 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003467 } else {
3468 // If the type of this function, after ignoring parentheses, is not
3469 // *directly* a function type, then we're instantiating a function that
3470 // was declared via a typedef or with attributes, e.g.,
3471 //
3472 // typedef int functype(int, int);
3473 // functype func;
3474 // int __cdecl meth(int, int);
3475 //
3476 // In this case, we'll just go instantiate the ParmVarDecls that we
3477 // synthesized in the method declaration.
3478 SmallVector<QualType, 4> ParamTypes;
John McCallc8e321d2016-03-01 02:09:25 +00003479 Sema::ExtParameterInfoBuilder ExtParamInfos;
David Majnemer59f77922016-06-24 04:05:48 +00003480 if (SemaRef.SubstParmTypes(D->getLocation(), D->parameters(), nullptr,
3481 TemplateArgs, ParamTypes, &Params,
3482 ExtParamInfos))
Craig Topperc3ec1492014-05-26 06:22:03 +00003483 return nullptr;
Douglas Gregor940bca72010-04-12 07:48:19 +00003484 }
Reid Klecknera09e44c2013-07-31 21:00:18 +00003485
John McCall58f10c32010-03-11 09:03:00 +00003486 return NewTInfo;
Douglas Gregor21342092009-03-24 00:38:23 +00003487}
3488
Richard Smithf623c962012-04-17 00:58:00 +00003489/// Introduce the instantiated function parameters into the local
3490/// instantiation scope, and set the parameter names to those used
3491/// in the template.
Richard Smith2e321552014-11-12 02:00:47 +00003492static bool addInstantiatedParametersToScope(Sema &S, FunctionDecl *Function,
Richard Smithf623c962012-04-17 00:58:00 +00003493 const FunctionDecl *PatternDecl,
3494 LocalInstantiationScope &Scope,
3495 const MultiLevelTemplateArgumentList &TemplateArgs) {
3496 unsigned FParamIdx = 0;
3497 for (unsigned I = 0, N = PatternDecl->getNumParams(); I != N; ++I) {
3498 const ParmVarDecl *PatternParam = PatternDecl->getParamDecl(I);
3499 if (!PatternParam->isParameterPack()) {
3500 // Simple case: not a parameter pack.
3501 assert(FParamIdx < Function->getNumParams());
3502 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
Richard Smith2e321552014-11-12 02:00:47 +00003503 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smithaae40582014-03-13 00:28:45 +00003504 // If the parameter's type is not dependent, update it to match the type
3505 // in the pattern. They can differ in top-level cv-qualifiers, and we want
3506 // the pattern's type here. If the type is dependent, they can't differ,
Richard Smith2e321552014-11-12 02:00:47 +00003507 // per core issue 1668. Substitute into the type from the pattern, in case
3508 // it's instantiation-dependent.
Richard Smithaae40582014-03-13 00:28:45 +00003509 // FIXME: Updating the type to work around this is at best fragile.
Richard Smith2e321552014-11-12 02:00:47 +00003510 if (!PatternDecl->getType()->isDependentType()) {
3511 QualType T = S.SubstType(PatternParam->getType(), TemplateArgs,
3512 FunctionParam->getLocation(),
3513 FunctionParam->getDeclName());
3514 if (T.isNull())
3515 return true;
3516 FunctionParam->setType(T);
3517 }
Richard Smithaae40582014-03-13 00:28:45 +00003518
Richard Smithf623c962012-04-17 00:58:00 +00003519 Scope.InstantiatedLocal(PatternParam, FunctionParam);
3520 ++FParamIdx;
3521 continue;
3522 }
3523
3524 // Expand the parameter pack.
3525 Scope.MakeInstantiatedLocalArgPack(PatternParam);
David Blaikie05785d12013-02-20 22:23:23 +00003526 Optional<unsigned> NumArgumentsInExpansion
Richard Smithf623c962012-04-17 00:58:00 +00003527 = S.getNumArgumentsInExpansion(PatternParam->getType(), TemplateArgs);
Richard Smith198223b2012-07-18 01:29:05 +00003528 assert(NumArgumentsInExpansion &&
3529 "should only be called when all template arguments are known");
Richard Smith2e321552014-11-12 02:00:47 +00003530 QualType PatternType =
3531 PatternParam->getType()->castAs<PackExpansionType>()->getPattern();
Richard Smith198223b2012-07-18 01:29:05 +00003532 for (unsigned Arg = 0; Arg < *NumArgumentsInExpansion; ++Arg) {
Richard Smithf623c962012-04-17 00:58:00 +00003533 ParmVarDecl *FunctionParam = Function->getParamDecl(FParamIdx);
NAKAMURA Takumi23224152014-10-17 12:48:37 +00003534 FunctionParam->setDeclName(PatternParam->getDeclName());
Richard Smith2e321552014-11-12 02:00:47 +00003535 if (!PatternDecl->getType()->isDependentType()) {
3536 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(S, Arg);
3537 QualType T = S.SubstType(PatternType, TemplateArgs,
3538 FunctionParam->getLocation(),
3539 FunctionParam->getDeclName());
3540 if (T.isNull())
3541 return true;
3542 FunctionParam->setType(T);
3543 }
3544
Richard Smithf623c962012-04-17 00:58:00 +00003545 Scope.InstantiatedLocalPackArg(PatternParam, FunctionParam);
3546 ++FParamIdx;
3547 }
3548 }
Richard Smithf623c962012-04-17 00:58:00 +00003549
Richard Smith2e321552014-11-12 02:00:47 +00003550 return false;
Richard Smithf623c962012-04-17 00:58:00 +00003551}
3552
3553void Sema::InstantiateExceptionSpec(SourceLocation PointOfInstantiation,
3554 FunctionDecl *Decl) {
Richard Smithd3729422012-04-19 00:08:28 +00003555 const FunctionProtoType *Proto = Decl->getType()->castAs<FunctionProtoType>();
3556 if (Proto->getExceptionSpecType() != EST_Uninstantiated)
Richard Smithf623c962012-04-17 00:58:00 +00003557 return;
3558
3559 InstantiatingTemplate Inst(*this, PointOfInstantiation, Decl,
3560 InstantiatingTemplate::ExceptionSpecification());
Alp Tokerd4a72d52013-10-08 08:09:04 +00003561 if (Inst.isInvalid()) {
Richard Smithd3b5c9082012-07-27 04:22:15 +00003562 // We hit the instantiation depth limit. Clear the exception specification
3563 // so that our callers don't have to cope with EST_Uninstantiated.
Richard Smith8acb4282014-07-31 21:57:55 +00003564 UpdateExceptionSpec(Decl, EST_None);
Richard Smithf623c962012-04-17 00:58:00 +00003565 return;
Richard Smithd3b5c9082012-07-27 04:22:15 +00003566 }
Richard Smith54f18e82016-08-31 02:15:21 +00003567 if (Inst.isAlreadyInstantiating()) {
3568 // This exception specification indirectly depends on itself. Reject.
3569 // FIXME: Corresponding rule in the standard?
3570 Diag(PointOfInstantiation, diag::err_exception_spec_cycle) << Decl;
3571 UpdateExceptionSpec(Decl, EST_None);
3572 return;
3573 }
Richard Smithf623c962012-04-17 00:58:00 +00003574
3575 // Enter the scope of this instantiation. We don't use
3576 // PushDeclContext because we don't have a scope.
3577 Sema::ContextRAII savedContext(*this, Decl);
3578 LocalInstantiationScope Scope(*this);
3579
3580 MultiLevelTemplateArgumentList TemplateArgs =
Craig Topperc3ec1492014-05-26 06:22:03 +00003581 getTemplateInstantiationArgs(Decl, nullptr, /*RelativeToPrimary*/true);
Richard Smithf623c962012-04-17 00:58:00 +00003582
Richard Smithd3729422012-04-19 00:08:28 +00003583 FunctionDecl *Template = Proto->getExceptionSpecTemplate();
Richard Smith2e321552014-11-12 02:00:47 +00003584 if (addInstantiatedParametersToScope(*this, Decl, Template, Scope,
3585 TemplateArgs)) {
3586 UpdateExceptionSpec(Decl, EST_None);
3587 return;
3588 }
Richard Smithf623c962012-04-17 00:58:00 +00003589
Richard Smith2e321552014-11-12 02:00:47 +00003590 SubstExceptionSpec(Decl, Template->getType()->castAs<FunctionProtoType>(),
3591 TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003592}
3593
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003594/// Initializes the common fields of an instantiation function
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003595/// declaration (New) from the corresponding fields of its template (Tmpl).
3596///
3597/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003598bool
3599TemplateDeclInstantiator::InitFunctionInstantiation(FunctionDecl *New,
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003600 FunctionDecl *Tmpl) {
David Blaikie5a0956e2012-07-16 18:50:45 +00003601 if (Tmpl->isDeleted())
Alexis Hunt4a8ea102011-05-06 20:44:56 +00003602 New->setDeletedAsWritten();
Mike Stump11289f42009-09-09 15:08:12 +00003603
Richard Smith32918772017-02-14 00:25:28 +00003604 New->setImplicit(Tmpl->isImplicit());
3605
David Majnemerdbc0c8f2013-12-04 09:01:55 +00003606 // Forward the mangling number from the template to the instantiated decl.
3607 SemaRef.Context.setManglingNumber(New,
3608 SemaRef.Context.getManglingNumber(Tmpl));
3609
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003610 // If we are performing substituting explicitly-specified template arguments
3611 // or deduced template arguments into a function template and we reach this
3612 // point, we are now past the point where SFINAE applies and have committed
Mike Stump11289f42009-09-09 15:08:12 +00003613 // to keeping the new function template specialization. We therefore
3614 // convert the active template instantiation for the function template
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003615 // into a template instantiation for this specific function template
3616 // specialization, which is not a SFINAE context, so that we diagnose any
3617 // further errors in the declaration itself.
Richard Smith696e3122017-02-23 01:43:54 +00003618 typedef Sema::CodeSynthesisContext ActiveInstType;
3619 ActiveInstType &ActiveInst = SemaRef.CodeSynthesisContexts.back();
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003620 if (ActiveInst.Kind == ActiveInstType::ExplicitTemplateArgumentSubstitution ||
3621 ActiveInst.Kind == ActiveInstType::DeducedTemplateArgumentSubstitution) {
Mike Stump11289f42009-09-09 15:08:12 +00003622 if (FunctionTemplateDecl *FunTmpl
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003623 = dyn_cast<FunctionTemplateDecl>(ActiveInst.Entity)) {
Mike Stump11289f42009-09-09 15:08:12 +00003624 assert(FunTmpl->getTemplatedDecl() == Tmpl &&
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003625 "Deduction from the wrong function template?");
Daniel Dunbar54c59642009-07-16 22:10:11 +00003626 (void) FunTmpl;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003627 atTemplateEnd(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003628 ActiveInst.Kind = ActiveInstType::TemplateInstantiation;
Nick Lewyckycc8990f2012-11-16 08:40:59 +00003629 ActiveInst.Entity = New;
Gabor Horvath207e7b12018-02-10 14:04:45 +00003630 atTemplateBegin(SemaRef.TemplateInstCallbacks, SemaRef, ActiveInst);
Douglas Gregorff6cbdf2009-07-01 22:01:06 +00003631 }
3632 }
Mike Stump11289f42009-09-09 15:08:12 +00003633
Douglas Gregor049bdca2009-12-08 17:45:32 +00003634 const FunctionProtoType *Proto = Tmpl->getType()->getAs<FunctionProtoType>();
3635 assert(Proto && "Function template without prototype?");
3636
Sebastian Redlfa453cf2011-03-12 11:50:43 +00003637 if (Proto->hasExceptionSpec() || Proto->getNoReturnAttr()) {
John McCalldb40c7f2010-12-14 08:05:40 +00003638 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
John McCalldb40c7f2010-12-14 08:05:40 +00003639
Richard Smithf623c962012-04-17 00:58:00 +00003640 // DR1330: In C++11, defer instantiation of a non-trivial
3641 // exception specification.
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003642 // DR1484: Local classes and their members are instantiated along with the
3643 // containing function.
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003644 if (SemaRef.getLangOpts().CPlusPlus11 &&
Richard Smith8acb4282014-07-31 21:57:55 +00003645 EPI.ExceptionSpec.Type != EST_None &&
3646 EPI.ExceptionSpec.Type != EST_DynamicNone &&
Serge Pavlov3739f5e72015-06-29 17:50:19 +00003647 EPI.ExceptionSpec.Type != EST_BasicNoexcept &&
Serge Pavlov73c6a242015-08-23 10:22:28 +00003648 !Tmpl->isLexicallyWithinFunctionOrMethod()) {
Richard Smithd3729422012-04-19 00:08:28 +00003649 FunctionDecl *ExceptionSpecTemplate = Tmpl;
Richard Smith8acb4282014-07-31 21:57:55 +00003650 if (EPI.ExceptionSpec.Type == EST_Uninstantiated)
3651 ExceptionSpecTemplate = EPI.ExceptionSpec.SourceTemplate;
Richard Smith185be182013-04-10 05:48:59 +00003652 ExceptionSpecificationType NewEST = EST_Uninstantiated;
Richard Smith8acb4282014-07-31 21:57:55 +00003653 if (EPI.ExceptionSpec.Type == EST_Unevaluated)
Richard Smith185be182013-04-10 05:48:59 +00003654 NewEST = EST_Unevaluated;
Richard Smithd3729422012-04-19 00:08:28 +00003655
Richard Smithf623c962012-04-17 00:58:00 +00003656 // Mark the function has having an uninstantiated exception specification.
3657 const FunctionProtoType *NewProto
3658 = New->getType()->getAs<FunctionProtoType>();
3659 assert(NewProto && "Template instantiation without function prototype?");
3660 EPI = NewProto->getExtProtoInfo();
Richard Smith8acb4282014-07-31 21:57:55 +00003661 EPI.ExceptionSpec.Type = NewEST;
3662 EPI.ExceptionSpec.SourceDecl = New;
3663 EPI.ExceptionSpec.SourceTemplate = ExceptionSpecTemplate;
Reid Kleckner896b32f2013-06-10 20:51:09 +00003664 New->setType(SemaRef.Context.getFunctionType(
Alp Toker314cc812014-01-25 16:55:45 +00003665 NewProto->getReturnType(), NewProto->getParamTypes(), EPI));
Richard Smithf623c962012-04-17 00:58:00 +00003666 } else {
Faisal Vali40fd4ce2017-05-09 04:17:15 +00003667 Sema::ContextRAII SwitchContext(SemaRef, New);
Richard Smith2e321552014-11-12 02:00:47 +00003668 SemaRef.SubstExceptionSpec(New, Proto, TemplateArgs);
Richard Smithf623c962012-04-17 00:58:00 +00003669 }
Douglas Gregor049bdca2009-12-08 17:45:32 +00003670 }
3671
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003672 // Get the definition. Leaves the variable unchanged if undefined.
Richard Smithf623c962012-04-17 00:58:00 +00003673 const FunctionDecl *Definition = Tmpl;
Rafael Espindolaba195cf2011-07-06 15:46:09 +00003674 Tmpl->isDefined(Definition);
3675
DeLesley Hutchins30398dd2012-01-20 22:50:54 +00003676 SemaRef.InstantiateAttrs(TemplateArgs, Definition, New,
3677 LateAttrs, StartingScope);
Douglas Gregor08329632010-06-15 17:05:35 +00003678
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003679 return false;
3680}
3681
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003682/// Initializes common fields of an instantiated method
Douglas Gregor21342092009-03-24 00:38:23 +00003683/// declaration (New) from the corresponding fields of its template
3684/// (Tmpl).
3685///
3686/// \returns true if there was an error
Mike Stump11289f42009-09-09 15:08:12 +00003687bool
3688TemplateDeclInstantiator::InitMethodInstantiation(CXXMethodDecl *New,
Douglas Gregor21342092009-03-24 00:38:23 +00003689 CXXMethodDecl *Tmpl) {
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003690 if (InitFunctionInstantiation(New, Tmpl))
3691 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003692
Richard Smith5159bbad2018-09-05 22:30:37 +00003693 if (isa<CXXDestructorDecl>(New) && SemaRef.getLangOpts().CPlusPlus11)
3694 SemaRef.AdjustDestructorExceptionSpec(cast<CXXDestructorDecl>(New));
3695
Douglas Gregor21342092009-03-24 00:38:23 +00003696 New->setAccess(Tmpl->getAccess());
Fariborz Jahanian6dfc1972009-12-03 18:44:40 +00003697 if (Tmpl->isVirtualAsWritten())
Douglas Gregor11c024b2010-09-28 20:50:54 +00003698 New->setVirtualAsWritten(true);
Douglas Gregor21342092009-03-24 00:38:23 +00003699
Douglas Gregor21342092009-03-24 00:38:23 +00003700 // FIXME: New needs a pointer to Tmpl
3701 return false;
3702}
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003703
Richard Smith50e291e2018-01-02 23:52:42 +00003704/// Instantiate (or find existing instantiation of) a function template with a
3705/// given set of template arguments.
3706///
3707/// Usually this should not be used, and template argument deduction should be
3708/// used in its place.
3709FunctionDecl *
3710Sema::InstantiateFunctionDeclaration(FunctionTemplateDecl *FTD,
3711 const TemplateArgumentList *Args,
3712 SourceLocation Loc) {
3713 FunctionDecl *FD = FTD->getTemplatedDecl();
3714
3715 sema::TemplateDeductionInfo Info(Loc);
3716 InstantiatingTemplate Inst(
3717 *this, Loc, FTD, Args->asArray(),
3718 CodeSynthesisContext::ExplicitTemplateArgumentSubstitution, Info);
3719 if (Inst.isInvalid())
3720 return nullptr;
3721
3722 ContextRAII SavedContext(*this, FD);
3723 MultiLevelTemplateArgumentList MArgs(*Args);
3724
3725 return cast_or_null<FunctionDecl>(SubstDecl(FD, FD->getParent(), MArgs));
3726}
3727
Reid Kleckner61195e12017-01-05 01:08:22 +00003728/// In the MS ABI, we need to instantiate default arguments of dllexported
3729/// default constructors along with the constructor definition. This allows IR
3730/// gen to emit a constructor closure which calls the default constructor with
3731/// its default arguments.
3732static void InstantiateDefaultCtorDefaultArgs(Sema &S,
3733 CXXConstructorDecl *Ctor) {
3734 assert(S.Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3735 Ctor->isDefaultConstructor());
3736 unsigned NumParams = Ctor->getNumParams();
3737 if (NumParams == 0)
3738 return;
3739 DLLExportAttr *Attr = Ctor->getAttr<DLLExportAttr>();
3740 if (!Attr)
3741 return;
3742 for (unsigned I = 0; I != NumParams; ++I) {
3743 (void)S.CheckCXXDefaultArgExpr(Attr->getLocation(), Ctor,
3744 Ctor->getParamDecl(I));
3745 S.DiscardCleanupsInEvaluationContext();
3746 }
3747}
3748
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00003749/// Instantiate the definition of the given function from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003750/// template.
3751///
Douglas Gregordda7ced2009-06-30 17:20:14 +00003752/// \param PointOfInstantiation the point at which the instantiation was
3753/// required. Note that this is not precisely a "point of instantiation"
3754/// for the function, but it's close.
3755///
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003756/// \param Function the already-instantiated declaration of a
Douglas Gregordda7ced2009-06-30 17:20:14 +00003757/// function template specialization or member function of a class template
3758/// specialization.
3759///
3760/// \param Recursive if true, recursively instantiates any functions that
3761/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00003762///
3763/// \param DefinitionRequired if true, then we are performing an explicit
3764/// instantiation where the body of the function is required. Complain if
3765/// there is no such body.
Douglas Gregor85673582009-05-18 17:01:57 +00003766void Sema::InstantiateFunctionDefinition(SourceLocation PointOfInstantiation,
Douglas Gregordda7ced2009-06-30 17:20:14 +00003767 FunctionDecl *Function,
Douglas Gregora8b89d22009-10-15 14:05:49 +00003768 bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00003769 bool DefinitionRequired,
3770 bool AtEndOfTU) {
Richard Smithcb189572017-10-28 01:15:00 +00003771 if (Function->isInvalidDecl() || Function->isDefined() ||
3772 isa<CXXDeductionGuideDecl>(Function))
Douglas Gregorb4850462009-05-14 23:26:13 +00003773 return;
3774
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003775 // Never instantiate an explicit specialization except if it is a class scope
3776 // explicit specialization.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003777 TemplateSpecializationKind TSK = Function->getTemplateSpecializationKind();
3778 if (TSK == TSK_ExplicitSpecialization &&
Francois Pichet00c7e6c2011-08-14 03:52:19 +00003779 !Function->getClassScopeSpecializationPattern())
Douglas Gregor86d142a2009-10-08 07:24:58 +00003780 return;
Douglas Gregor69f6a362010-05-17 17:34:56 +00003781
Douglas Gregor24c332b2009-05-14 21:06:31 +00003782 // Find the function body that we'll be substituting.
Douglas Gregorafca3b42009-10-27 20:53:28 +00003783 const FunctionDecl *PatternDecl = Function->getTemplateInstantiationPattern();
Alexis Hunt23f6b832011-05-27 20:00:14 +00003784 assert(PatternDecl && "instantiating a non-template");
3785
Richard Smith6f4e2e02016-08-23 19:41:39 +00003786 const FunctionDecl *PatternDef = PatternDecl->getDefinition();
Richard Smith3f6865a82016-08-23 21:12:54 +00003787 Stmt *Pattern = nullptr;
3788 if (PatternDef) {
3789 Pattern = PatternDef->getBody(PatternDef);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003790 PatternDecl = PatternDef;
Richard Smith6c7161162017-08-12 01:46:03 +00003791 if (PatternDef->willHaveBody())
3792 PatternDef = nullptr;
Richard Smith3f6865a82016-08-23 21:12:54 +00003793 }
Douglas Gregor24c332b2009-05-14 21:06:31 +00003794
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003795 // FIXME: We need to track the instantiation stack in order to know which
3796 // definitions should be visible within this instantiation.
3797 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Function,
3798 Function->getInstantiatedFromMemberFunction(),
Richard Smith6f4e2e02016-08-23 19:41:39 +00003799 PatternDecl, PatternDef, TSK,
3800 /*Complain*/DefinitionRequired)) {
3801 if (DefinitionRequired)
3802 Function->setInvalidDecl();
3803 else if (TSK == TSK_ExplicitInstantiationDefinition) {
3804 // Try again at the end of the translation unit (at which point a
3805 // definition will be required).
3806 assert(!Recursive);
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003807 Function->setInstantiationIsPending(true);
Richard Smith6f4e2e02016-08-23 19:41:39 +00003808 PendingInstantiations.push_back(
3809 std::make_pair(Function, PointOfInstantiation));
3810 } else if (TSK == TSK_ImplicitInstantiation) {
Nick Lewycky2adab1b2018-01-02 19:10:12 +00003811 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +00003812 !getSourceManager().isInSystemHeader(PatternDecl->getBeginLoc())) {
Richard Smith6f4e2e02016-08-23 19:41:39 +00003813 Diag(PointOfInstantiation, diag::warn_func_template_missing)
3814 << Function;
3815 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
3816 if (getLangOpts().CPlusPlus11)
3817 Diag(PointOfInstantiation, diag::note_inst_declaration_hint)
3818 << Function;
3819 }
3820 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003821
Richard Smith6f4e2e02016-08-23 19:41:39 +00003822 return;
3823 }
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003824
Francois Pichet1c229c02011-04-22 22:18:13 +00003825 // Postpone late parsed template instantiations.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003826 if (PatternDecl->isLateTemplateParsed() &&
Nick Lewycky610128e2011-05-12 03:51:24 +00003827 !LateTemplateParser) {
Sunil Srivastava15ed2922017-06-20 22:08:44 +00003828 Function->setInstantiationIsPending(true);
Reid Kleckner24bd88c2018-03-26 18:22:47 +00003829 LateParsedInstantiations.push_back(
3830 std::make_pair(Function, PointOfInstantiation));
Francois Pichet1c229c02011-04-22 22:18:13 +00003831 return;
3832 }
3833
Nico Weberae4bb8c2014-08-15 23:21:41 +00003834 // If we're performing recursive template instantiation, create our own
3835 // queue of pending implicit instantiations that we will instantiate later,
3836 // while we're still within our own instantiation context.
3837 // This has to happen before LateTemplateParser below is called, so that
3838 // it marks vtables used in late parsed templates as used.
Richard Smith4f3e3812017-05-20 01:36:41 +00003839 GlobalEagerInstantiationScope GlobalInstantiations(*this,
3840 /*Enabled=*/Recursive);
3841 LocalEagerInstantiationScope LocalInstantiations(*this);
Nico Weberae4bb8c2014-08-15 23:21:41 +00003842
David Majnemerf0a84f22013-08-16 08:29:13 +00003843 // Call the LateTemplateParser callback if there is a need to late parse
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003844 // a templated function definition.
Alexis Hunt23f6b832011-05-27 20:00:14 +00003845 if (!Pattern && PatternDecl->isLateTemplateParsed() &&
Francois Pichet1c229c02011-04-22 22:18:13 +00003846 LateTemplateParser) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00003847 // FIXME: Optimize to allow individual templates to be deserialized.
3848 if (PatternDecl->isFromASTFile())
3849 ExternalSource->ReadLateParsedTemplates(LateParsedTemplateMap);
3850
Justin Lebar28f09c52016-10-10 16:26:08 +00003851 auto LPTIter = LateParsedTemplateMap.find(PatternDecl);
3852 assert(LPTIter != LateParsedTemplateMap.end() &&
3853 "missing LateParsedTemplate");
3854 LateTemplateParser(OpaqueParser, *LPTIter->second);
Francois Pichet1c229c02011-04-22 22:18:13 +00003855 Pattern = PatternDecl->getBody(PatternDecl);
3856 }
3857
Richard Smith6f4e2e02016-08-23 19:41:39 +00003858 // Note, we should never try to instantiate a deleted function template.
Ilya Biryukova27eca22017-12-20 14:32:38 +00003859 assert((Pattern || PatternDecl->isDefaulted() ||
3860 PatternDecl->hasSkippedBody()) &&
Richard Smith6f4e2e02016-08-23 19:41:39 +00003861 "unexpected kind of function template definition");
Douglas Gregor24c332b2009-05-14 21:06:31 +00003862
Richard Smith2a7d4812013-05-04 07:00:32 +00003863 // C++1y [temp.explicit]p10:
3864 // Except for inline functions, declarations with types deduced from their
3865 // initializer or return value, and class template specializations, other
3866 // explicit instantiation declarations have the effect of suppressing the
3867 // implicit instantiation of the entity to which they refer.
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003868 if (TSK == TSK_ExplicitInstantiationDeclaration &&
Richard Smith2a7d4812013-05-04 07:00:32 +00003869 !PatternDecl->isInlined() &&
Alp Toker314cc812014-01-25 16:55:45 +00003870 !PatternDecl->getReturnType()->getContainedAutoType())
Douglas Gregor34ec2ef2009-09-04 22:48:11 +00003871 return;
Mike Stump11289f42009-09-09 15:08:12 +00003872
Richard Smith195d8ef2014-05-29 03:15:31 +00003873 if (PatternDecl->isInlined()) {
3874 // Function, and all later redeclarations of it (from imported modules,
3875 // for instance), are now implicitly inline.
3876 for (auto *D = Function->getMostRecentDecl(); /**/;
3877 D = D->getPreviousDecl()) {
3878 D->setImplicitlyInline();
3879 if (D == Function)
3880 break;
3881 }
3882 }
Richard Smithf3814ad2013-01-25 00:08:28 +00003883
Douglas Gregor85673582009-05-18 17:01:57 +00003884 InstantiatingTemplate Inst(*this, PointOfInstantiation, Function);
Richard Smith54f18e82016-08-31 02:15:21 +00003885 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003886 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00003887 PrettyDeclStackTraceEntry CrashInfo(Context, Function, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00003888 "instantiating function definition");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00003889
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003890 // The instantiation is visible here, even if it was first declared in an
3891 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00003892 Function->setVisibleDespiteOwningModule();
Vassil Vassilevb21ee082016-08-18 22:01:25 +00003893
Abramo Bagnara12dcbf32011-11-18 08:08:52 +00003894 // Copy the inner loc start from the pattern.
3895 Function->setInnerLocStart(PatternDecl->getInnerLocStart());
3896
Faisal Valid143a0c2017-04-01 21:30:49 +00003897 EnterExpressionEvaluationContext EvalContext(
3898 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated);
Douglas Gregor67da0d92009-05-15 17:59:04 +00003899
Douglas Gregorb4850462009-05-14 23:26:13 +00003900 // Introduce a new scope where local variable instantiations will be
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003901 // recorded, unless we're actually a member function within a local
3902 // class, in which case we need to merge our results with the parent
3903 // scope (of the enclosing function).
3904 bool MergeWithParentScope = false;
3905 if (CXXRecordDecl *Rec = dyn_cast<CXXRecordDecl>(Function->getDeclContext()))
3906 MergeWithParentScope = Rec->isLocalClass();
3907
3908 LocalInstantiationScope Scope(*this, MergeWithParentScope);
Mike Stump11289f42009-09-09 15:08:12 +00003909
Richard Smithbd305122012-12-11 01:14:52 +00003910 if (PatternDecl->isDefaulted())
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003911 SetDeclDefaulted(Function, PatternDecl->getLocation());
Richard Smithbd305122012-12-11 01:14:52 +00003912 else {
Richard Smithcc928662014-10-17 20:37:29 +00003913 MultiLevelTemplateArgumentList TemplateArgs =
3914 getTemplateInstantiationArgs(Function, nullptr, false, PatternDecl);
3915
3916 // Substitute into the qualifier; we can get a substitution failure here
3917 // through evil use of alias templates.
3918 // FIXME: Is CurContext correct for this? Should we go to the (instantiation
3919 // of the) lexical context of the pattern?
3920 SubstQualifier(*this, PatternDecl, Function, TemplateArgs);
3921
Craig Topperc3ec1492014-05-26 06:22:03 +00003922 ActOnStartOfFunctionDef(nullptr, Function);
Richard Smithbd305122012-12-11 01:14:52 +00003923
3924 // Enter the scope of this instantiation. We don't use
3925 // PushDeclContext because we don't have a scope.
3926 Sema::ContextRAII savedContext(*this, Function);
3927
Richard Smith2e321552014-11-12 02:00:47 +00003928 if (addInstantiatedParametersToScope(*this, Function, PatternDecl, Scope,
3929 TemplateArgs))
3930 return;
Richard Smithbd305122012-12-11 01:14:52 +00003931
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003932 StmtResult Body;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003933 if (PatternDecl->hasSkippedBody()) {
3934 ActOnSkippedFunctionBody(Function);
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003935 Body = nullptr;
Ilya Biryukova27eca22017-12-20 14:32:38 +00003936 } else {
Ilya Biryukov95f0d322017-12-28 13:05:46 +00003937 if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Function)) {
3938 // If this is a constructor, instantiate the member initializers.
3939 InstantiateMemInitializers(Ctor, cast<CXXConstructorDecl>(PatternDecl),
3940 TemplateArgs);
3941
3942 // If this is an MS ABI dllexport default constructor, instantiate any
3943 // default arguments.
3944 if (Context.getTargetInfo().getCXXABI().isMicrosoft() &&
3945 Ctor->isDefaultConstructor()) {
3946 InstantiateDefaultCtorDefaultArgs(*this, Ctor);
3947 }
3948 }
3949
Ilya Biryukova27eca22017-12-20 14:32:38 +00003950 // Instantiate the function body.
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003951 Body = SubstStmt(Pattern, TemplateArgs);
Alexis Hunt61ae8d32011-05-23 23:14:04 +00003952
Ilya Biryukova27eca22017-12-20 14:32:38 +00003953 if (Body.isInvalid())
3954 Function->setInvalidDecl();
Ilya Biryukova27eca22017-12-20 14:32:38 +00003955 }
Ilya Biryukov0ee4a082018-03-14 13:18:30 +00003956 // FIXME: finishing the function body while in an expression evaluation
3957 // context seems wrong. Investigate more.
3958 ActOnFinishFunctionBody(Function, Body.get(), /*IsInstantiation=*/true);
Richard Smithbd305122012-12-11 01:14:52 +00003959
3960 PerformDependentDiagnostics(PatternDecl, TemplateArgs);
3961
Richard Smithd28ac5b2014-03-22 23:33:22 +00003962 if (auto *Listener = getASTMutationListener())
3963 Listener->FunctionDefinitionInstantiated(Function);
Richard Smith0ac1b8f2014-03-22 01:43:32 +00003964
Richard Smithbd305122012-12-11 01:14:52 +00003965 savedContext.pop();
Mike Stump11289f42009-09-09 15:08:12 +00003966 }
3967
Douglas Gregor28ad4b52009-05-26 20:50:29 +00003968 DeclGroupRef DG(Function);
3969 Consumer.HandleTopLevelDecl(DG);
Mike Stump11289f42009-09-09 15:08:12 +00003970
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003971 // This class may have local implicit instantiations that need to be
3972 // instantiation within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00003973 LocalInstantiations.perform();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00003974 Scope.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00003975 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00003976}
3977
Larisse Voufo39a1e502013-08-06 01:03:05 +00003978VarTemplateSpecializationDecl *Sema::BuildVarTemplateInstantiation(
3979 VarTemplateDecl *VarTemplate, VarDecl *FromVar,
3980 const TemplateArgumentList &TemplateArgList,
3981 const TemplateArgumentListInfo &TemplateArgsInfo,
3982 SmallVectorImpl<TemplateArgument> &Converted,
3983 SourceLocation PointOfInstantiation, void *InsertPos,
3984 LateInstantiatedAttrVec *LateAttrs,
3985 LocalInstantiationScope *StartingScope) {
3986 if (FromVar->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00003987 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003988
3989 InstantiatingTemplate Inst(*this, PointOfInstantiation, FromVar);
Alp Tokerd4a72d52013-10-08 08:09:04 +00003990 if (Inst.isInvalid())
Craig Topperc3ec1492014-05-26 06:22:03 +00003991 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00003992
3993 MultiLevelTemplateArgumentList TemplateArgLists;
3994 TemplateArgLists.addOuterTemplateArguments(&TemplateArgList);
3995
Richard Smith8809a0c2013-09-27 20:14:12 +00003996 // Instantiate the first declaration of the variable template: for a partial
3997 // specialization of a static data member template, the first declaration may
3998 // or may not be the declaration in the class; if it's in the class, we want
3999 // to instantiate a member in the class (a declaration), and if it's outside,
4000 // we want to instantiate a definition.
Richard Smithbeef3452014-01-16 23:39:20 +00004001 //
4002 // If we're instantiating an explicitly-specialized member template or member
4003 // partial specialization, don't do this. The member specialization completely
4004 // replaces the original declaration in this case.
4005 bool IsMemberSpec = false;
4006 if (VarTemplatePartialSpecializationDecl *PartialSpec =
4007 dyn_cast<VarTemplatePartialSpecializationDecl>(FromVar))
4008 IsMemberSpec = PartialSpec->isMemberSpecialization();
4009 else if (VarTemplateDecl *FromTemplate = FromVar->getDescribedVarTemplate())
4010 IsMemberSpec = FromTemplate->isMemberSpecialization();
4011 if (!IsMemberSpec)
4012 FromVar = FromVar->getFirstDecl();
Richard Smith8809a0c2013-09-27 20:14:12 +00004013
Manuel Klimek5843add2013-09-30 13:29:01 +00004014 MultiLevelTemplateArgumentList MultiLevelList(TemplateArgList);
4015 TemplateDeclInstantiator Instantiator(*this, FromVar->getDeclContext(),
4016 MultiLevelList);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004017
4018 // TODO: Set LateAttrs and StartingScope ...
4019
4020 return cast_or_null<VarTemplateSpecializationDecl>(
4021 Instantiator.VisitVarTemplateSpecializationDecl(
4022 VarTemplate, FromVar, InsertPos, TemplateArgsInfo, Converted));
4023}
4024
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004025/// Instantiates a variable template specialization by completing it
Larisse Voufo39a1e502013-08-06 01:03:05 +00004026/// with appropriate type information and initializer.
4027VarTemplateSpecializationDecl *Sema::CompleteVarTemplateSpecializationDecl(
4028 VarTemplateSpecializationDecl *VarSpec, VarDecl *PatternDecl,
4029 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith435e6472017-12-02 02:48:42 +00004030 assert(PatternDecl->isThisDeclarationADefinition() &&
4031 "don't have a definition to instantiate from");
Larisse Voufo39a1e502013-08-06 01:03:05 +00004032
4033 // Do substitution on the type of the declaration
4034 TypeSourceInfo *DI =
Richard Smith8809a0c2013-09-27 20:14:12 +00004035 SubstType(PatternDecl->getTypeSourceInfo(), TemplateArgs,
Larisse Voufo39a1e502013-08-06 01:03:05 +00004036 PatternDecl->getTypeSpecStartLoc(), PatternDecl->getDeclName());
4037 if (!DI)
Craig Topperc3ec1492014-05-26 06:22:03 +00004038 return nullptr;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004039
4040 // Update the type of this variable template specialization.
4041 VarSpec->setType(DI->getType());
4042
Richard Smith435e6472017-12-02 02:48:42 +00004043 // Convert the declaration into a definition now.
4044 VarSpec->setCompleteDefinition();
4045
Larisse Voufo39a1e502013-08-06 01:03:05 +00004046 // Instantiate the initializer.
4047 InstantiateVariableInitializer(VarSpec, PatternDecl, TemplateArgs);
4048
4049 return VarSpec;
4050}
4051
4052/// BuildVariableInstantiation - Used after a new variable has been created.
4053/// Sets basic variable data and decides whether to postpone the
4054/// variable instantiation.
4055void Sema::BuildVariableInstantiation(
4056 VarDecl *NewVar, VarDecl *OldVar,
4057 const MultiLevelTemplateArgumentList &TemplateArgs,
Richard Smith541b38b2013-09-20 01:15:31 +00004058 LateInstantiatedAttrVec *LateAttrs, DeclContext *Owner,
4059 LocalInstantiationScope *StartingScope,
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004060 bool InstantiatingVarTemplate) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004061
Richard Smith541b38b2013-09-20 01:15:31 +00004062 // If we are instantiating a local extern declaration, the
4063 // instantiation belongs lexically to the containing function.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004064 // If we are instantiating a static data member defined
4065 // out-of-line, the instantiation will have the same lexical
4066 // context (which will be a namespace scope) as the template.
Richard Smith541b38b2013-09-20 01:15:31 +00004067 if (OldVar->isLocalExternDecl()) {
4068 NewVar->setLocalExternDecl();
4069 NewVar->setLexicalDeclContext(Owner);
4070 } else if (OldVar->isOutOfLine())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004071 NewVar->setLexicalDeclContext(OldVar->getLexicalDeclContext());
4072 NewVar->setTSCSpec(OldVar->getTSCSpec());
4073 NewVar->setInitStyle(OldVar->getInitStyle());
4074 NewVar->setCXXForRangeDecl(OldVar->isCXXForRangeDecl());
George Karpenkovec38cf72018-03-29 00:56:24 +00004075 NewVar->setObjCForDecl(OldVar->isObjCForDecl());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004076 NewVar->setConstexpr(OldVar->isConstexpr());
Richard Smithbb13c9a2013-09-28 04:02:39 +00004077 NewVar->setInitCapture(OldVar->isInitCapture());
Richard Smith1c34fb72013-08-13 18:18:50 +00004078 NewVar->setPreviousDeclInSameBlockScope(
4079 OldVar->isPreviousDeclInSameBlockScope());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004080 NewVar->setAccess(OldVar->getAccess());
4081
Richard Smith0b551192013-09-23 23:12:22 +00004082 if (!OldVar->isStaticDataMember()) {
Rafael Espindolae4865d22013-10-23 16:46:34 +00004083 if (OldVar->isUsed(false))
4084 NewVar->setIsUsed();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004085 NewVar->setReferenced(OldVar->isReferenced());
4086 }
4087
4088 InstantiateAttrs(TemplateArgs, OldVar, NewVar, LateAttrs, StartingScope);
4089
Richard Smith541b38b2013-09-20 01:15:31 +00004090 LookupResult Previous(
4091 *this, NewVar->getDeclName(), NewVar->getLocation(),
4092 NewVar->isLocalExternDecl() ? Sema::LookupRedeclarationWithLinkage
4093 : Sema::LookupOrdinaryName,
Richard Smithbecb92d2017-10-10 22:33:17 +00004094 NewVar->isLocalExternDecl() ? Sema::ForExternalRedeclaration
4095 : forRedeclarationInCurContext());
Larisse Voufo39a1e502013-08-06 01:03:05 +00004096
Argyrios Kyrtzidis91486222013-11-27 08:34:14 +00004097 if (NewVar->isLocalExternDecl() && OldVar->getPreviousDecl() &&
4098 (!OldVar->getPreviousDecl()->getDeclContext()->isDependentContext() ||
4099 OldVar->getPreviousDecl()->getDeclContext()==OldVar->getDeclContext())) {
Richard Smith1c34fb72013-08-13 18:18:50 +00004100 // We have a previous declaration. Use that one, so we merge with the
4101 // right type.
4102 if (NamedDecl *NewPrev = FindInstantiatedDecl(
4103 NewVar->getLocation(), OldVar->getPreviousDecl(), TemplateArgs))
4104 Previous.addDecl(NewPrev);
4105 } else if (!isa<VarTemplateSpecializationDecl>(NewVar) &&
4106 OldVar->hasLinkage())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004107 LookupQualifiedName(Previous, NewVar->getDeclContext(), false);
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004108 CheckVariableDeclaration(NewVar, Previous);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004109
Richard Smith541b38b2013-09-20 01:15:31 +00004110 if (!InstantiatingVarTemplate) {
4111 NewVar->getLexicalDeclContext()->addHiddenDecl(NewVar);
4112 if (!NewVar->isLocalExternDecl() || !NewVar->getPreviousDecl())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004113 NewVar->getDeclContext()->makeDeclVisibleInContext(NewVar);
Richard Smith541b38b2013-09-20 01:15:31 +00004114 }
4115
4116 if (!OldVar->isOutOfLine()) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004117 if (NewVar->getDeclContext()->isFunctionOrMethod())
4118 CurrentInstantiationScope->InstantiatedLocal(OldVar, NewVar);
4119 }
4120
4121 // Link instantiations of static data members back to the template from
4122 // which they were instantiated.
Larisse Voufo72caf2b2013-08-22 00:59:14 +00004123 if (NewVar->isStaticDataMember() && !InstantiatingVarTemplate)
Larisse Voufo39a1e502013-08-06 01:03:05 +00004124 NewVar->setInstantiationOfStaticDataMember(OldVar,
4125 TSK_ImplicitInstantiation);
4126
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004127 // Forward the mangling number from the template to the instantiated decl.
4128 Context.setManglingNumber(NewVar, Context.getManglingNumber(OldVar));
David Majnemer2206bf52014-03-05 08:57:59 +00004129 Context.setStaticLocalNumber(NewVar, Context.getStaticLocalNumber(OldVar));
David Majnemerdbc0c8f2013-12-04 09:01:55 +00004130
Richard Smith62f19e72016-06-25 00:15:56 +00004131 // Delay instantiation of the initializer for variable templates or inline
4132 // static data members until a definition of the variable is needed. We need
4133 // it right away if the type contains 'auto'.
Richard Smithd292b242014-03-16 01:00:40 +00004134 if ((!isa<VarTemplateSpecializationDecl>(NewVar) &&
Richard Smith62f19e72016-06-25 00:15:56 +00004135 !InstantiatingVarTemplate &&
Richard Smith93ee9ca2018-01-10 23:08:26 +00004136 !(OldVar->isInline() && OldVar->isThisDeclarationADefinition() &&
4137 !NewVar->isThisDeclarationADefinition())) ||
Richard Smithd292b242014-03-16 01:00:40 +00004138 NewVar->getType()->isUndeducedType())
Larisse Voufo39a1e502013-08-06 01:03:05 +00004139 InstantiateVariableInitializer(NewVar, OldVar, TemplateArgs);
4140
4141 // Diagnose unused local variables with dependent types, where the diagnostic
4142 // will have been deferred.
4143 if (!NewVar->isInvalidDecl() &&
Nico Weber72889432014-09-06 01:25:55 +00004144 NewVar->getDeclContext()->isFunctionOrMethod() &&
Larisse Voufo39a1e502013-08-06 01:03:05 +00004145 OldVar->getType()->isDependentType())
4146 DiagnoseUnusedDecl(NewVar);
4147}
4148
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004149/// Instantiate the initializer of a variable.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004150void Sema::InstantiateVariableInitializer(
4151 VarDecl *Var, VarDecl *OldVar,
4152 const MultiLevelTemplateArgumentList &TemplateArgs) {
Richard Smith891fc7f2017-12-05 01:31:47 +00004153 if (ASTMutationListener *L = getASTContext().getASTMutationListener())
4154 L->VariableDefinitionInstantiated(Var);
4155
Richard Smith62f19e72016-06-25 00:15:56 +00004156 // We propagate the 'inline' flag with the initializer, because it
4157 // would otherwise imply that the variable is a definition for a
4158 // non-static data member.
4159 if (OldVar->isInlineSpecified())
4160 Var->setInlineSpecified();
4161 else if (OldVar->isInline())
4162 Var->setImplicitlyInline();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004163
Larisse Voufo39a1e502013-08-06 01:03:05 +00004164 if (OldVar->getInit()) {
Richard Smithc95d2c52017-09-22 04:25:05 +00004165 EnterExpressionEvaluationContext Evaluated(
4166 *this, Sema::ExpressionEvaluationContext::PotentiallyEvaluated, Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004167
4168 // Instantiate the initializer.
Akira Hatanakab87faff2016-04-28 23:50:12 +00004169 ExprResult Init;
4170
4171 {
4172 ContextRAII SwitchContext(*this, Var->getDeclContext());
4173 Init = SubstInitializer(OldVar->getInit(), TemplateArgs,
4174 OldVar->getInitStyle() == VarDecl::CallInit);
4175 }
4176
Larisse Voufo39a1e502013-08-06 01:03:05 +00004177 if (!Init.isInvalid()) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004178 Expr *InitExpr = Init.get();
4179
Richard Smith95b83e92014-07-10 20:53:43 +00004180 if (Var->hasAttr<DLLImportAttr>() &&
4181 (!InitExpr ||
4182 !InitExpr->isConstantInitializer(getASTContext(), false))) {
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004183 // Do not dynamically initialize dllimport variables.
Hans Wennborg91ebe6e2014-06-10 00:55:51 +00004184 } else if (InitExpr) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004185 bool DirectInit = OldVar->isDirectInit();
Richard Smith3beb7c62017-01-12 02:27:38 +00004186 AddInitializerToDecl(Var, InitExpr, DirectInit);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004187 } else
Richard Smith3beb7c62017-01-12 02:27:38 +00004188 ActOnUninitializedDecl(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004189 } else {
4190 // FIXME: Not too happy about invalidating the declaration
4191 // because of a bogus initializer.
4192 Var->setInvalidDecl();
4193 }
Richard Smith54f18e82016-08-31 02:15:21 +00004194 } else {
George Burgess IV18b28a82018-03-20 03:27:44 +00004195 // `inline` variables are a definition and declaration all in one; we won't
4196 // pick up an initializer from anywhere else.
4197 if (Var->isStaticDataMember() && !Var->isInline()) {
Richard Smith54f18e82016-08-31 02:15:21 +00004198 if (!Var->isOutOfLine())
4199 return;
4200
4201 // If the declaration inside the class had an initializer, don't add
4202 // another one to the out-of-line definition.
4203 if (OldVar->getFirstDecl()->hasInit())
4204 return;
4205 }
4206
4207 // We'll add an initializer to a for-range declaration later.
George Karpenkovec38cf72018-03-29 00:56:24 +00004208 if (Var->isCXXForRangeDecl() || Var->isObjCForDecl())
Richard Smith54f18e82016-08-31 02:15:21 +00004209 return;
4210
Richard Smith3beb7c62017-01-12 02:27:38 +00004211 ActOnUninitializedDecl(Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004212 }
Artem Beleviche9fa53a2018-06-06 22:37:25 +00004213
4214 if (getLangOpts().CUDA)
4215 checkAllowedCUDAInitializer(Var);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004216}
4217
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004218/// Instantiate the definition of the given variable from its
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004219/// template.
4220///
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004221/// \param PointOfInstantiation the point at which the instantiation was
4222/// required. Note that this is not precisely a "point of instantiation"
Richard Smith891fc7f2017-12-05 01:31:47 +00004223/// for the variable, but it's close.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004224///
Richard Smith891fc7f2017-12-05 01:31:47 +00004225/// \param Var the already-instantiated declaration of a templated variable.
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004226///
4227/// \param Recursive if true, recursively instantiates any functions that
4228/// are required by this instantiation.
Douglas Gregora8b89d22009-10-15 14:05:49 +00004229///
4230/// \param DefinitionRequired if true, then we are performing an explicit
Richard Smith891fc7f2017-12-05 01:31:47 +00004231/// instantiation where a definition of the variable is required. Complain
4232/// if there is no such definition.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004233void Sema::InstantiateVariableDefinition(SourceLocation PointOfInstantiation,
4234 VarDecl *Var, bool Recursive,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004235 bool DefinitionRequired, bool AtEndOfTU) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004236 if (Var->isInvalidDecl())
4237 return;
Mike Stump11289f42009-09-09 15:08:12 +00004238
Larisse Voufo39a1e502013-08-06 01:03:05 +00004239 VarTemplateSpecializationDecl *VarSpec =
4240 dyn_cast<VarTemplateSpecializationDecl>(Var);
Craig Topperc3ec1492014-05-26 06:22:03 +00004241 VarDecl *PatternDecl = nullptr, *Def = nullptr;
Richard Smith8809a0c2013-09-27 20:14:12 +00004242 MultiLevelTemplateArgumentList TemplateArgs =
4243 getTemplateInstantiationArgs(Var);
Mike Stump11289f42009-09-09 15:08:12 +00004244
Larisse Voufo39a1e502013-08-06 01:03:05 +00004245 if (VarSpec) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004246 // If this is a variable template specialization, make sure that it is
4247 // non-dependent, then find its instantiation pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004248 bool InstantiationDependent = false;
4249 assert(!TemplateSpecializationType::anyDependentTemplateArguments(
4250 VarSpec->getTemplateArgsInfo(), InstantiationDependent) &&
4251 "Only instantiate variable template specializations that are "
4252 "not type-dependent");
Larisse Voufo4154f462013-08-06 03:57:41 +00004253 (void)InstantiationDependent;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004254
Richard Smith8809a0c2013-09-27 20:14:12 +00004255 // Find the variable initialization that we'll be substituting. If the
4256 // pattern was instantiated from a member template, look back further to
4257 // find the real pattern.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004258 assert(VarSpec->getSpecializedTemplate() &&
4259 "Specialization without specialized template?");
4260 llvm::PointerUnion<VarTemplateDecl *,
4261 VarTemplatePartialSpecializationDecl *> PatternPtr =
4262 VarSpec->getSpecializedTemplateOrPartial();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004263 if (PatternPtr.is<VarTemplatePartialSpecializationDecl *>()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004264 VarTemplatePartialSpecializationDecl *Tmpl =
4265 PatternPtr.get<VarTemplatePartialSpecializationDecl *>();
4266 while (VarTemplatePartialSpecializationDecl *From =
4267 Tmpl->getInstantiatedFromMember()) {
4268 if (Tmpl->isMemberSpecialization())
4269 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004270
Richard Smith8809a0c2013-09-27 20:14:12 +00004271 Tmpl = From;
4272 }
4273 PatternDecl = Tmpl;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004274 } else {
Richard Smith8809a0c2013-09-27 20:14:12 +00004275 VarTemplateDecl *Tmpl = PatternPtr.get<VarTemplateDecl *>();
4276 while (VarTemplateDecl *From =
4277 Tmpl->getInstantiatedFromMemberTemplate()) {
4278 if (Tmpl->isMemberSpecialization())
4279 break;
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004280
Richard Smith8809a0c2013-09-27 20:14:12 +00004281 Tmpl = From;
4282 }
4283 PatternDecl = Tmpl->getTemplatedDecl();
Larisse Voufoa11bd8a2013-08-13 02:02:26 +00004284 }
Richard Smith8809a0c2013-09-27 20:14:12 +00004285
4286 // If this is a static data member template, there might be an
4287 // uninstantiated initializer on the declaration. If so, instantiate
4288 // it now.
Richard Smith891fc7f2017-12-05 01:31:47 +00004289 //
4290 // FIXME: This largely duplicates what we would do below. The difference
4291 // is that along this path we may instantiate an initializer from an
4292 // in-class declaration of the template and instantiate the definition
4293 // from a separate out-of-class definition.
Richard Smith8809a0c2013-09-27 20:14:12 +00004294 if (PatternDecl->isStaticDataMember() &&
Rafael Espindola8db352d2013-10-17 15:37:26 +00004295 (PatternDecl = PatternDecl->getFirstDecl())->hasInit() &&
Richard Smith8809a0c2013-09-27 20:14:12 +00004296 !Var->hasInit()) {
4297 // FIXME: Factor out the duplicated instantiation context setup/tear down
4298 // code here.
4299 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004300 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Richard Smith8809a0c2013-09-27 20:14:12 +00004301 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004302 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004303 "instantiating variable initializer");
Richard Smith8809a0c2013-09-27 20:14:12 +00004304
Richard Smithedbc6e92016-10-14 21:41:24 +00004305 // The instantiation is visible here, even if it was first declared in an
4306 // unimported module.
Richard Smith90dc5252017-06-23 01:04:34 +00004307 Var->setVisibleDespiteOwningModule();
Richard Smithedbc6e92016-10-14 21:41:24 +00004308
Richard Smith8809a0c2013-09-27 20:14:12 +00004309 // If we're performing recursive template instantiation, create our own
4310 // queue of pending implicit instantiations that we will instantiate
4311 // later, while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004312 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4313 /*Enabled=*/Recursive);
Richard Smith8809a0c2013-09-27 20:14:12 +00004314 LocalInstantiationScope Local(*this);
Richard Smith4f3e3812017-05-20 01:36:41 +00004315 LocalEagerInstantiationScope LocalInstantiations(*this);
Richard Smith8809a0c2013-09-27 20:14:12 +00004316
4317 // Enter the scope of this instantiation. We don't use
4318 // PushDeclContext because we don't have a scope.
4319 ContextRAII PreviousContext(*this, Var->getDeclContext());
4320 InstantiateVariableInitializer(Var, PatternDecl, TemplateArgs);
4321 PreviousContext.pop();
4322
Richard Smith8809a0c2013-09-27 20:14:12 +00004323 // This variable may have local implicit instantiations that need to be
4324 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004325 LocalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004326 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004327 GlobalInstantiations.perform();
Richard Smith8809a0c2013-09-27 20:14:12 +00004328 }
4329
4330 // Find actual definition
4331 Def = PatternDecl->getDefinition(getASTContext());
4332 } else {
4333 // If this is a static data member, find its out-of-line definition.
4334 assert(Var->isStaticDataMember() && "not a static data member?");
4335 PatternDecl = Var->getInstantiatedFromStaticDataMember();
4336
4337 assert(PatternDecl && "data member was not instantiated from a template?");
4338 assert(PatternDecl->isStaticDataMember() && "not a static data member?");
Richard Smith62f19e72016-06-25 00:15:56 +00004339 Def = PatternDecl->getDefinition();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004340 }
4341
Richard Smithedbc6e92016-10-14 21:41:24 +00004342 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
Richard Smith6739a102016-05-05 00:56:12 +00004343
Richard Smith8809a0c2013-09-27 20:14:12 +00004344 // If we don't have a definition of the variable template, we won't perform
4345 // any instantiation. Rather, we rely on the user to instantiate this
4346 // definition (or provide a specialization for it) in another translation
4347 // unit.
Richard Smithedbc6e92016-10-14 21:41:24 +00004348 if (!Def && !DefinitionRequired) {
4349 if (TSK == TSK_ExplicitInstantiationDefinition) {
Chandler Carruth54080172010-08-25 08:44:16 +00004350 PendingInstantiations.push_back(
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004351 std::make_pair(Var, PointOfInstantiation));
Richard Smithedbc6e92016-10-14 21:41:24 +00004352 } else if (TSK == TSK_ImplicitInstantiation) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004353 // Warn about missing definition at the end of translation unit.
Nick Lewycky2adab1b2018-01-02 19:10:12 +00004354 if (AtEndOfTU && !getDiagnostics().hasErrorOccurred() &&
Stephen Kellyf2ceec42018-08-09 21:08:08 +00004355 !getSourceManager().isInSystemHeader(PatternDecl->getBeginLoc())) {
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00004356 Diag(PointOfInstantiation, diag::warn_var_template_missing)
4357 << Var;
4358 Diag(PatternDecl->getLocation(), diag::note_forward_template_decl);
4359 if (getLangOpts().CPlusPlus11)
4360 Diag(PointOfInstantiation, diag::note_inst_declaration_hint) << Var;
4361 }
Richard Smithedbc6e92016-10-14 21:41:24 +00004362 return;
Chandler Carruthcfe41db2010-08-25 08:27:02 +00004363 }
4364
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004365 }
4366
Richard Smithedbc6e92016-10-14 21:41:24 +00004367 // FIXME: We need to track the instantiation stack in order to know which
4368 // definitions should be visible within this instantiation.
4369 // FIXME: Produce diagnostics when Var->getInstantiatedFromStaticDataMember().
4370 if (DiagnoseUninstantiableTemplate(PointOfInstantiation, Var,
4371 /*InstantiatedFromMember*/false,
4372 PatternDecl, Def, TSK,
4373 /*Complain*/DefinitionRequired))
4374 return;
4375
Rafael Espindola189fa742012-03-05 10:54:55 +00004376
Douglas Gregor86d142a2009-10-08 07:24:58 +00004377 // Never instantiate an explicit specialization.
Rafael Espindola189fa742012-03-05 10:54:55 +00004378 if (TSK == TSK_ExplicitSpecialization)
Douglas Gregor86d142a2009-10-08 07:24:58 +00004379 return;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004380
Larisse Voufo39a1e502013-08-06 01:03:05 +00004381 // C++11 [temp.explicit]p10:
Richard Smith4309b662017-10-18 22:45:01 +00004382 // Except for inline functions, const variables of literal types, variables
4383 // of reference types, [...] explicit instantiation declarations
Larisse Voufo39a1e502013-08-06 01:03:05 +00004384 // have the effect of suppressing the implicit instantiation of the entity
4385 // to which they refer.
Richard Smith4309b662017-10-18 22:45:01 +00004386 if (TSK == TSK_ExplicitInstantiationDeclaration &&
4387 !Var->isUsableInConstantExpressions(getASTContext()))
Douglas Gregor86d142a2009-10-08 07:24:58 +00004388 return;
Mike Stump11289f42009-09-09 15:08:12 +00004389
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004390 // Make sure to pass the instantiated variable to the consumer at the end.
4391 struct PassToConsumerRAII {
4392 ASTConsumer &Consumer;
4393 VarDecl *Var;
4394
4395 PassToConsumerRAII(ASTConsumer &Consumer, VarDecl *Var)
4396 : Consumer(Consumer), Var(Var) { }
4397
4398 ~PassToConsumerRAII() {
Richard Smith8809a0c2013-09-27 20:14:12 +00004399 Consumer.HandleCXXStaticMemberVarInstantiation(Var);
Argyrios Kyrtzidis8a27b2b2013-02-24 00:05:01 +00004400 }
4401 } PassToConsumerRAII(Consumer, Var);
Rafael Espindoladf88f6f2012-03-08 15:51:03 +00004402
Reid Klecknere07140e2015-04-15 01:08:06 +00004403 // If we already have a definition, we're done.
4404 if (VarDecl *Def = Var->getDefinition()) {
4405 // We may be explicitly instantiating something we've already implicitly
4406 // instantiated.
4407 Def->setTemplateSpecializationKind(Var->getTemplateSpecializationKind(),
4408 PointOfInstantiation);
Richard Smith8809a0c2013-09-27 20:14:12 +00004409 return;
Reid Klecknere07140e2015-04-15 01:08:06 +00004410 }
Douglas Gregor57d4f972011-06-03 03:35:07 +00004411
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004412 InstantiatingTemplate Inst(*this, PointOfInstantiation, Var);
Richard Smith54f18e82016-08-31 02:15:21 +00004413 if (Inst.isInvalid() || Inst.isAlreadyInstantiating())
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004414 return;
Jordan Rose1e879d82018-03-23 00:07:18 +00004415 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Richard Smithe19b95d2016-05-26 20:23:13 +00004416 "instantiating variable definition");
Mike Stump11289f42009-09-09 15:08:12 +00004417
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004418 // If we're performing recursive template instantiation, create our own
4419 // queue of pending implicit instantiations that we will instantiate later,
4420 // while we're still within our own instantiation context.
Richard Smith4f3e3812017-05-20 01:36:41 +00004421 GlobalEagerInstantiationScope GlobalInstantiations(*this,
4422 /*Enabled=*/Recursive);
Mike Stump11289f42009-09-09 15:08:12 +00004423
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004424 // Enter the scope of this instantiation. We don't use
4425 // PushDeclContext because we don't have a scope.
Larisse Voufo39a1e502013-08-06 01:03:05 +00004426 ContextRAII PreviousContext(*this, Var->getDeclContext());
Douglas Gregora86bc002012-02-16 21:36:18 +00004427 LocalInstantiationScope Local(*this);
John McCall2957e3e2011-02-14 20:37:25 +00004428
Richard Smith4f3e3812017-05-20 01:36:41 +00004429 LocalEagerInstantiationScope LocalInstantiations(*this);
4430
Larisse Voufo39a1e502013-08-06 01:03:05 +00004431 VarDecl *OldVar = Var;
Richard Smith62f19e72016-06-25 00:15:56 +00004432 if (Def->isStaticDataMember() && !Def->isOutOfLine()) {
4433 // We're instantiating an inline static data member whose definition was
4434 // provided inside the class.
Richard Smith62f19e72016-06-25 00:15:56 +00004435 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4436 } else if (!VarSpec) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004437 Var = cast_or_null<VarDecl>(SubstDecl(Def, Var->getDeclContext(),
Richard Smith8809a0c2013-09-27 20:14:12 +00004438 TemplateArgs));
Richard Smith62f19e72016-06-25 00:15:56 +00004439 } else if (Var->isStaticDataMember() &&
4440 Var->getLexicalDeclContext()->isRecord()) {
Richard Smith8809a0c2013-09-27 20:14:12 +00004441 // We need to instantiate the definition of a static data member template,
4442 // and all we have is the in-class declaration of it. Instantiate a separate
4443 // declaration of the definition.
4444 TemplateDeclInstantiator Instantiator(*this, Var->getDeclContext(),
4445 TemplateArgs);
4446 Var = cast_or_null<VarDecl>(Instantiator.VisitVarTemplateSpecializationDecl(
Craig Topperc3ec1492014-05-26 06:22:03 +00004447 VarSpec->getSpecializedTemplate(), Def, nullptr,
Richard Smith8809a0c2013-09-27 20:14:12 +00004448 VarSpec->getTemplateArgsInfo(), VarSpec->getTemplateArgs().asArray()));
4449 if (Var) {
4450 llvm::PointerUnion<VarTemplateDecl *,
4451 VarTemplatePartialSpecializationDecl *> PatternPtr =
4452 VarSpec->getSpecializedTemplateOrPartial();
4453 if (VarTemplatePartialSpecializationDecl *Partial =
4454 PatternPtr.dyn_cast<VarTemplatePartialSpecializationDecl *>())
4455 cast<VarTemplateSpecializationDecl>(Var)->setInstantiationOf(
4456 Partial, &VarSpec->getTemplateInstantiationArgs());
4457
4458 // Merge the definition with the declaration.
4459 LookupResult R(*this, Var->getDeclName(), Var->getLocation(),
Richard Smithbecb92d2017-10-10 22:33:17 +00004460 LookupOrdinaryName, forRedeclarationInCurContext());
Richard Smith8809a0c2013-09-27 20:14:12 +00004461 R.addDecl(OldVar);
4462 MergeVarDecl(Var, R);
4463
4464 // Attach the initializer.
4465 InstantiateVariableInitializer(Var, Def, TemplateArgs);
4466 }
4467 } else
4468 // Complete the existing variable's definition with an appropriately
4469 // substituted type and initializer.
4470 Var = CompleteVarTemplateSpecializationDecl(VarSpec, Def, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00004471
4472 PreviousContext.pop();
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004473
4474 if (Var) {
Larisse Voufo39a1e502013-08-06 01:03:05 +00004475 PassToConsumerRAII.Var = Var;
Richard Smith8809a0c2013-09-27 20:14:12 +00004476 Var->setTemplateSpecializationKind(OldVar->getTemplateSpecializationKind(),
4477 OldVar->getPointOfInstantiation());
Douglas Gregora6ef8f02009-07-24 20:34:43 +00004478 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00004479
4480 // This variable may have local implicit instantiations that need to be
4481 // instantiated within this scope.
Richard Smith4f3e3812017-05-20 01:36:41 +00004482 LocalInstantiations.perform();
Douglas Gregora86bc002012-02-16 21:36:18 +00004483 Local.Exit();
Richard Smith4f3e3812017-05-20 01:36:41 +00004484 GlobalInstantiations.perform();
Douglas Gregorbbbb02d2009-05-13 20:28:22 +00004485}
Douglas Gregor51783312009-05-27 05:35:12 +00004486
Anders Carlsson70553942009-08-29 05:16:22 +00004487void
4488Sema::InstantiateMemInitializers(CXXConstructorDecl *New,
4489 const CXXConstructorDecl *Tmpl,
4490 const MultiLevelTemplateArgumentList &TemplateArgs) {
Mike Stump11289f42009-09-09 15:08:12 +00004491
Richard Trieu9becef62011-09-09 03:18:59 +00004492 SmallVector<CXXCtorInitializer*, 4> NewInits;
Richard Smith60f2e1e2012-09-25 00:23:05 +00004493 bool AnyErrors = Tmpl->isInvalidDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004494
Anders Carlsson70553942009-08-29 05:16:22 +00004495 // Instantiate all the initializers.
Aaron Ballman0ad78302014-03-13 17:34:31 +00004496 for (const auto *Init : Tmpl->inits()) {
Chandler Carruthf92bd8c2010-09-03 21:54:20 +00004497 // Only instantiate written initializers, let Sema re-construct implicit
4498 // ones.
4499 if (!Init->isWritten())
4500 continue;
4501
Douglas Gregor44e7df62011-01-04 00:32:56 +00004502 SourceLocation EllipsisLoc;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004503
Douglas Gregor44e7df62011-01-04 00:32:56 +00004504 if (Init->isPackExpansion()) {
4505 // This is a pack expansion. We should expand it now.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004506 TypeLoc BaseTL = Init->getTypeSourceInfo()->getTypeLoc();
Nick Lewycky2c308502013-06-13 00:45:47 +00004507 SmallVector<UnexpandedParameterPack, 4> Unexpanded;
Douglas Gregor44e7df62011-01-04 00:32:56 +00004508 collectUnexpandedParameterPacks(BaseTL, Unexpanded);
Nick Lewycky2c308502013-06-13 00:45:47 +00004509 collectUnexpandedParameterPacks(Init->getInit(), Unexpanded);
Douglas Gregor44e7df62011-01-04 00:32:56 +00004510 bool ShouldExpand = false;
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004511 bool RetainExpansion = false;
David Blaikie05785d12013-02-20 22:23:23 +00004512 Optional<unsigned> NumExpansions;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004513 if (CheckParameterPacksForExpansion(Init->getEllipsisLoc(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004514 BaseTL.getSourceRange(),
David Blaikieb9c168a2011-09-22 02:34:54 +00004515 Unexpanded,
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004516 TemplateArgs, ShouldExpand,
Douglas Gregora8bac7f2011-01-10 07:32:04 +00004517 RetainExpansion,
Douglas Gregor44e7df62011-01-04 00:32:56 +00004518 NumExpansions)) {
4519 AnyErrors = true;
4520 New->setInvalidDecl();
4521 continue;
4522 }
4523 assert(ShouldExpand && "Partial instantiation of base initializer?");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004524
4525 // Loop over all of the arguments in the argument pack(s),
Douglas Gregor0dca5fd2011-01-14 17:04:44 +00004526 for (unsigned I = 0; I != *NumExpansions; ++I) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004527 Sema::ArgumentPackSubstitutionIndexRAII SubstIndex(*this, I);
4528
4529 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004530 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4531 /*CXXDirectInit=*/true);
4532 if (TempInit.isInvalid()) {
Douglas Gregor44e7df62011-01-04 00:32:56 +00004533 AnyErrors = true;
4534 break;
4535 }
4536
4537 // Instantiate the base type.
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004538 TypeSourceInfo *BaseTInfo = SubstType(Init->getTypeSourceInfo(),
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004539 TemplateArgs,
4540 Init->getSourceLocation(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004541 New->getDeclName());
4542 if (!BaseTInfo) {
4543 AnyErrors = true;
4544 break;
4545 }
4546
4547 // Build the initializer.
Sebastian Redla74948d2011-09-24 17:48:25 +00004548 MemInitResult NewInit = BuildBaseInitializer(BaseTInfo->getType(),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004549 BaseTInfo, TempInit.get(),
Douglas Gregor44e7df62011-01-04 00:32:56 +00004550 New->getParent(),
4551 SourceLocation());
4552 if (NewInit.isInvalid()) {
4553 AnyErrors = true;
4554 break;
4555 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004556
Douglas Gregor44e7df62011-01-04 00:32:56 +00004557 NewInits.push_back(NewInit.get());
Douglas Gregor44e7df62011-01-04 00:32:56 +00004558 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004559
Douglas Gregor44e7df62011-01-04 00:32:56 +00004560 continue;
4561 }
4562
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004563 // Instantiate the initializer.
Sebastian Redla9351792012-02-11 23:51:47 +00004564 ExprResult TempInit = SubstInitializer(Init->getInit(), TemplateArgs,
4565 /*CXXDirectInit=*/true);
4566 if (TempInit.isInvalid()) {
Douglas Gregorb30f22b2010-03-02 07:38:39 +00004567 AnyErrors = true;
4568 continue;
Anders Carlsson70553942009-08-29 05:16:22 +00004569 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004570
Anders Carlsson70553942009-08-29 05:16:22 +00004571 MemInitResult NewInit;
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004572 if (Init->isDelegatingInitializer() || Init->isBaseInitializer()) {
4573 TypeSourceInfo *TInfo = SubstType(Init->getTypeSourceInfo(),
4574 TemplateArgs,
4575 Init->getSourceLocation(),
4576 New->getDeclName());
4577 if (!TInfo) {
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004578 AnyErrors = true;
Douglas Gregorc8c44b5d2009-12-02 22:36:29 +00004579 New->setInvalidDecl();
4580 continue;
4581 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004582
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004583 if (Init->isBaseInitializer())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004584 NewInit = BuildBaseInitializer(TInfo->getType(), TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004585 New->getParent(), EllipsisLoc);
4586 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004587 NewInit = BuildDelegatingInitializer(TInfo, TempInit.get(),
Douglas Gregord73f3dd2011-11-01 01:16:03 +00004588 cast<CXXRecordDecl>(CurContext->getParent()));
Anders Carlsson70553942009-08-29 05:16:22 +00004589 } else if (Init->isMemberInitializer()) {
Douglas Gregor55e6b312011-03-04 19:46:35 +00004590 FieldDecl *Member = cast_or_null<FieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004591 Init->getMemberLocation(),
4592 Init->getMember(),
4593 TemplateArgs));
Douglas Gregor55e6b312011-03-04 19:46:35 +00004594 if (!Member) {
4595 AnyErrors = true;
4596 New->setInvalidDecl();
4597 continue;
4598 }
Mike Stump11289f42009-09-09 15:08:12 +00004599
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004600 NewInit = BuildMemberInitializer(Member, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004601 Init->getSourceLocation());
Francois Pichetd583da02010-12-04 09:14:42 +00004602 } else if (Init->isIndirectMemberInitializer()) {
4603 IndirectFieldDecl *IndirectMember =
Douglas Gregor55e6b312011-03-04 19:46:35 +00004604 cast_or_null<IndirectFieldDecl>(FindInstantiatedDecl(
Francois Pichetd583da02010-12-04 09:14:42 +00004605 Init->getMemberLocation(),
4606 Init->getIndirectMember(), TemplateArgs));
4607
Douglas Gregor55e6b312011-03-04 19:46:35 +00004608 if (!IndirectMember) {
4609 AnyErrors = true;
4610 New->setInvalidDecl();
Sebastian Redla74948d2011-09-24 17:48:25 +00004611 continue;
Douglas Gregor55e6b312011-03-04 19:46:35 +00004612 }
Sebastian Redla74948d2011-09-24 17:48:25 +00004613
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004614 NewInit = BuildMemberInitializer(IndirectMember, TempInit.get(),
Sebastian Redla74948d2011-09-24 17:48:25 +00004615 Init->getSourceLocation());
Anders Carlsson70553942009-08-29 05:16:22 +00004616 }
4617
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004618 if (NewInit.isInvalid()) {
4619 AnyErrors = true;
Anders Carlsson70553942009-08-29 05:16:22 +00004620 New->setInvalidDecl();
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004621 } else {
Richard Trieu9becef62011-09-09 03:18:59 +00004622 NewInits.push_back(NewInit.get());
Anders Carlsson70553942009-08-29 05:16:22 +00004623 }
4624 }
Mike Stump11289f42009-09-09 15:08:12 +00004625
Anders Carlsson70553942009-08-29 05:16:22 +00004626 // Assign all the initializers to the new constructor.
John McCall48871652010-08-21 09:40:31 +00004627 ActOnMemInitializers(New,
Anders Carlsson70553942009-08-29 05:16:22 +00004628 /*FIXME: ColonLoc */
4629 SourceLocation(),
David Blaikie3fc2f912013-01-17 05:26:25 +00004630 NewInits,
Douglas Gregor7ae2d772010-01-31 09:12:51 +00004631 AnyErrors);
Anders Carlsson70553942009-08-29 05:16:22 +00004632}
4633
John McCall59660882009-08-29 08:11:13 +00004634// TODO: this could be templated if the various decl types used the
4635// same method name.
4636static bool isInstantiationOf(ClassTemplateDecl *Pattern,
4637 ClassTemplateDecl *Instance) {
4638 Pattern = Pattern->getCanonicalDecl();
4639
4640 do {
4641 Instance = Instance->getCanonicalDecl();
4642 if (Pattern == Instance) return true;
4643 Instance = Instance->getInstantiatedFromMemberTemplate();
4644 } while (Instance);
4645
4646 return false;
4647}
4648
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004649static bool isInstantiationOf(FunctionTemplateDecl *Pattern,
4650 FunctionTemplateDecl *Instance) {
4651 Pattern = Pattern->getCanonicalDecl();
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004652
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004653 do {
4654 Instance = Instance->getCanonicalDecl();
4655 if (Pattern == Instance) return true;
4656 Instance = Instance->getInstantiatedFromMemberTemplate();
4657 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004658
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004659 return false;
4660}
4661
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004662static bool
Douglas Gregor21610382009-10-29 00:04:11 +00004663isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern,
4664 ClassTemplatePartialSpecializationDecl *Instance) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004665 Pattern
Douglas Gregor21610382009-10-29 00:04:11 +00004666 = cast<ClassTemplatePartialSpecializationDecl>(Pattern->getCanonicalDecl());
4667 do {
4668 Instance = cast<ClassTemplatePartialSpecializationDecl>(
4669 Instance->getCanonicalDecl());
4670 if (Pattern == Instance)
4671 return true;
4672 Instance = Instance->getInstantiatedFromMember();
4673 } while (Instance);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004674
Douglas Gregor21610382009-10-29 00:04:11 +00004675 return false;
4676}
4677
John McCall59660882009-08-29 08:11:13 +00004678static bool isInstantiationOf(CXXRecordDecl *Pattern,
4679 CXXRecordDecl *Instance) {
4680 Pattern = Pattern->getCanonicalDecl();
4681
4682 do {
4683 Instance = Instance->getCanonicalDecl();
4684 if (Pattern == Instance) return true;
4685 Instance = Instance->getInstantiatedFromMemberClass();
4686 } while (Instance);
4687
4688 return false;
4689}
4690
4691static bool isInstantiationOf(FunctionDecl *Pattern,
4692 FunctionDecl *Instance) {
4693 Pattern = Pattern->getCanonicalDecl();
4694
4695 do {
4696 Instance = Instance->getCanonicalDecl();
4697 if (Pattern == Instance) return true;
4698 Instance = Instance->getInstantiatedFromMemberFunction();
4699 } while (Instance);
4700
4701 return false;
4702}
4703
4704static bool isInstantiationOf(EnumDecl *Pattern,
4705 EnumDecl *Instance) {
4706 Pattern = Pattern->getCanonicalDecl();
4707
4708 do {
4709 Instance = Instance->getCanonicalDecl();
4710 if (Pattern == Instance) return true;
4711 Instance = Instance->getInstantiatedFromMemberEnum();
4712 } while (Instance);
4713
4714 return false;
4715}
4716
John McCallb96ec562009-12-04 22:46:56 +00004717static bool isInstantiationOf(UsingShadowDecl *Pattern,
4718 UsingShadowDecl *Instance,
4719 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004720 return declaresSameEntity(C.getInstantiatedFromUsingShadowDecl(Instance),
4721 Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004722}
4723
Richard Smith151c4562016-12-20 21:35:28 +00004724static bool isInstantiationOf(UsingDecl *Pattern, UsingDecl *Instance,
John McCallb96ec562009-12-04 22:46:56 +00004725 ASTContext &C) {
Richard Smith32952e12014-10-14 02:00:47 +00004726 return declaresSameEntity(C.getInstantiatedFromUsingDecl(Instance), Pattern);
John McCallb96ec562009-12-04 22:46:56 +00004727}
4728
Richard Smith151c4562016-12-20 21:35:28 +00004729template<typename T>
4730static bool isInstantiationOfUnresolvedUsingDecl(T *Pattern, Decl *Other,
4731 ASTContext &Ctx) {
4732 // An unresolved using declaration can instantiate to an unresolved using
4733 // declaration, or to a using declaration or a using declaration pack.
4734 //
4735 // Multiple declarations can claim to be instantiated from an unresolved
4736 // using declaration if it's a pack expansion. We want the UsingPackDecl
4737 // in that case, not the individual UsingDecls within the pack.
4738 bool OtherIsPackExpansion;
4739 NamedDecl *OtherFrom;
4740 if (auto *OtherUUD = dyn_cast<T>(Other)) {
4741 OtherIsPackExpansion = OtherUUD->isPackExpansion();
4742 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUUD);
4743 } else if (auto *OtherUPD = dyn_cast<UsingPackDecl>(Other)) {
4744 OtherIsPackExpansion = true;
4745 OtherFrom = OtherUPD->getInstantiatedFromUsingDecl();
4746 } else if (auto *OtherUD = dyn_cast<UsingDecl>(Other)) {
4747 OtherIsPackExpansion = false;
4748 OtherFrom = Ctx.getInstantiatedFromUsingDecl(OtherUD);
4749 } else {
4750 return false;
4751 }
4752 return Pattern->isPackExpansion() == OtherIsPackExpansion &&
4753 declaresSameEntity(OtherFrom, Pattern);
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004754}
4755
John McCall59660882009-08-29 08:11:13 +00004756static bool isInstantiationOfStaticDataMember(VarDecl *Pattern,
4757 VarDecl *Instance) {
4758 assert(Instance->isStaticDataMember());
4759
4760 Pattern = Pattern->getCanonicalDecl();
4761
4762 do {
4763 Instance = Instance->getCanonicalDecl();
4764 if (Pattern == Instance) return true;
4765 Instance = Instance->getInstantiatedFromStaticDataMember();
4766 } while (Instance);
4767
4768 return false;
4769}
4770
John McCallb96ec562009-12-04 22:46:56 +00004771// Other is the prospective instantiation
4772// D is the prospective pattern
Douglas Gregor51783312009-05-27 05:35:12 +00004773static bool isInstantiationOf(ASTContext &Ctx, NamedDecl *D, Decl *Other) {
Richard Smith151c4562016-12-20 21:35:28 +00004774 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
4775 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
John McCalle61f2ba2009-11-18 02:36:19 +00004776
Richard Smith151c4562016-12-20 21:35:28 +00004777 if (auto *UUD = dyn_cast<UnresolvedUsingValueDecl>(D))
4778 return isInstantiationOfUnresolvedUsingDecl(UUD, Other, Ctx);
Douglas Gregor51783312009-05-27 05:35:12 +00004779
Richard Smith151c4562016-12-20 21:35:28 +00004780 if (D->getKind() != Other->getKind())
Anders Carlsson4bb87ce2009-08-29 19:37:28 +00004781 return false;
Mike Stump11289f42009-09-09 15:08:12 +00004782
Richard Smithd8a9e372016-12-18 21:39:37 +00004783 if (auto *Record = dyn_cast<CXXRecordDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004784 return isInstantiationOf(cast<CXXRecordDecl>(D), Record);
Mike Stump11289f42009-09-09 15:08:12 +00004785
Richard Smithd8a9e372016-12-18 21:39:37 +00004786 if (auto *Function = dyn_cast<FunctionDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004787 return isInstantiationOf(cast<FunctionDecl>(D), Function);
Douglas Gregor51783312009-05-27 05:35:12 +00004788
Richard Smithd8a9e372016-12-18 21:39:37 +00004789 if (auto *Enum = dyn_cast<EnumDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004790 return isInstantiationOf(cast<EnumDecl>(D), Enum);
Douglas Gregor51783312009-05-27 05:35:12 +00004791
Richard Smithd8a9e372016-12-18 21:39:37 +00004792 if (auto *Var = dyn_cast<VarDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004793 if (Var->isStaticDataMember())
4794 return isInstantiationOfStaticDataMember(cast<VarDecl>(D), Var);
4795
Richard Smithd8a9e372016-12-18 21:39:37 +00004796 if (auto *Temp = dyn_cast<ClassTemplateDecl>(Other))
John McCall59660882009-08-29 08:11:13 +00004797 return isInstantiationOf(cast<ClassTemplateDecl>(D), Temp);
Douglas Gregorf3db0032009-08-28 22:03:51 +00004798
Richard Smithd8a9e372016-12-18 21:39:37 +00004799 if (auto *Temp = dyn_cast<FunctionTemplateDecl>(Other))
Douglas Gregor14d1bf42009-09-28 06:34:35 +00004800 return isInstantiationOf(cast<FunctionTemplateDecl>(D), Temp);
4801
Richard Smithd8a9e372016-12-18 21:39:37 +00004802 if (auto *PartialSpec =
4803 dyn_cast<ClassTemplatePartialSpecializationDecl>(Other))
Douglas Gregor21610382009-10-29 00:04:11 +00004804 return isInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(D),
4805 PartialSpec);
4806
Richard Smithd8a9e372016-12-18 21:39:37 +00004807 if (auto *Field = dyn_cast<FieldDecl>(Other)) {
Anders Carlsson5da84842009-09-01 04:26:58 +00004808 if (!Field->getDeclName()) {
4809 // This is an unnamed field.
Richard Smith32952e12014-10-14 02:00:47 +00004810 return declaresSameEntity(Ctx.getInstantiatedFromUnnamedFieldDecl(Field),
4811 cast<FieldDecl>(D));
Anders Carlsson5da84842009-09-01 04:26:58 +00004812 }
4813 }
Mike Stump11289f42009-09-09 15:08:12 +00004814
Richard Smithd8a9e372016-12-18 21:39:37 +00004815 if (auto *Using = dyn_cast<UsingDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004816 return isInstantiationOf(cast<UsingDecl>(D), Using, Ctx);
4817
Richard Smithd8a9e372016-12-18 21:39:37 +00004818 if (auto *Shadow = dyn_cast<UsingShadowDecl>(Other))
John McCallb96ec562009-12-04 22:46:56 +00004819 return isInstantiationOf(cast<UsingShadowDecl>(D), Shadow, Ctx);
4820
Richard Smithd8a9e372016-12-18 21:39:37 +00004821 return D->getDeclName() &&
4822 D->getDeclName() == cast<NamedDecl>(Other)->getDeclName();
Douglas Gregor51783312009-05-27 05:35:12 +00004823}
4824
4825template<typename ForwardIterator>
Mike Stump11289f42009-09-09 15:08:12 +00004826static NamedDecl *findInstantiationOf(ASTContext &Ctx,
Douglas Gregor51783312009-05-27 05:35:12 +00004827 NamedDecl *D,
4828 ForwardIterator first,
4829 ForwardIterator last) {
4830 for (; first != last; ++first)
4831 if (isInstantiationOf(Ctx, D, *first))
4832 return cast<NamedDecl>(*first);
4833
Craig Topperc3ec1492014-05-26 06:22:03 +00004834 return nullptr;
Douglas Gregor51783312009-05-27 05:35:12 +00004835}
4836
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004837/// Finds the instantiation of the given declaration context
John McCallaa74a0c2009-08-28 07:59:38 +00004838/// within the current instantiation.
4839///
4840/// \returns NULL if there was an error
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004841DeclContext *Sema::FindInstantiatedContext(SourceLocation Loc, DeclContext* DC,
Douglas Gregor64621e62009-09-16 18:34:49 +00004842 const MultiLevelTemplateArgumentList &TemplateArgs) {
John McCallaa74a0c2009-08-28 07:59:38 +00004843 if (NamedDecl *D = dyn_cast<NamedDecl>(DC)) {
Richard Smith4f440e32017-06-08 01:08:50 +00004844 Decl* ID = FindInstantiatedDecl(Loc, D, TemplateArgs, true);
John McCallaa74a0c2009-08-28 07:59:38 +00004845 return cast_or_null<DeclContext>(ID);
4846 } else return DC;
4847}
4848
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00004849/// Find the instantiation of the given declaration within the
Douglas Gregorcd3a0972009-05-27 17:54:46 +00004850/// current instantiation.
Douglas Gregor51783312009-05-27 05:35:12 +00004851///
4852/// This routine is intended to be used when \p D is a declaration
4853/// referenced from within a template, that needs to mapped into the
4854/// corresponding declaration within an instantiation. For example,
4855/// given:
4856///
4857/// \code
4858/// template<typename T>
4859/// struct X {
4860/// enum Kind {
4861/// KnownValue = sizeof(T)
4862/// };
4863///
4864/// bool getKind() const { return KnownValue; }
4865/// };
4866///
4867/// template struct X<int>;
4868/// \endcode
4869///
Serge Pavloved5fe902013-07-10 04:59:14 +00004870/// In the instantiation of <tt>X<int>::getKind()</tt>, we need to map the
4871/// \p EnumConstantDecl for \p KnownValue (which refers to
4872/// <tt>X<T>::<Kind>::KnownValue</tt>) to its instantiation
4873/// (<tt>X<int>::<Kind>::KnownValue</tt>). \p FindInstantiatedDecl performs
4874/// this mapping from within the instantiation of <tt>X<int></tt>.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00004875NamedDecl *Sema::FindInstantiatedDecl(SourceLocation Loc, NamedDecl *D,
Richard Smith4f440e32017-06-08 01:08:50 +00004876 const MultiLevelTemplateArgumentList &TemplateArgs,
4877 bool FindingInstantiatedContext) {
Douglas Gregor51783312009-05-27 05:35:12 +00004878 DeclContext *ParentDC = D->getDeclContext();
Fangrui Song6907ce22018-07-30 19:24:48 +00004879 // FIXME: Parmeters of pointer to functions (y below) that are themselves
Faisal Vali2cba1332013-10-23 06:44:28 +00004880 // parameters (p below) can have their ParentDC set to the translation-unit
Fangrui Song6907ce22018-07-30 19:24:48 +00004881 // - thus we can not consistently check if the ParentDC of such a parameter
Faisal Vali2cba1332013-10-23 06:44:28 +00004882 // is Dependent or/and a FunctionOrMethod.
Fangrui Song6907ce22018-07-30 19:24:48 +00004883 // For e.g. this code, during Template argument deduction tries to
Faisal Vali2cba1332013-10-23 06:44:28 +00004884 // find an instantiated decl for (T y) when the ParentDC for y is
Fangrui Song6907ce22018-07-30 19:24:48 +00004885 // the translation unit.
4886 // e.g. template <class T> void Foo(auto (*p)(T y) -> decltype(y())) {}
Aaron Ballman36a53502014-01-16 13:03:14 +00004887 // float baz(float(*)()) { return 0.0; }
Faisal Vali2cba1332013-10-23 06:44:28 +00004888 // Foo(baz);
4889 // The better fix here is perhaps to ensure that a ParmVarDecl, by the time
4890 // it gets here, always has a FunctionOrMethod as its ParentDC??
4891 // For now:
4892 // - as long as we have a ParmVarDecl whose parent is non-dependent and
4893 // whose type is not instantiation dependent, do nothing to the decl
4894 // - otherwise find its instantiated decl.
4895 if (isa<ParmVarDecl>(D) && !ParentDC->isDependentContext() &&
4896 !cast<ParmVarDecl>(D)->getType()->isInstantiationDependentType())
4897 return D;
Rafael Espindola09b00e32013-10-23 04:12:23 +00004898 if (isa<ParmVarDecl>(D) || isa<NonTypeTemplateParmDecl>(D) ||
Douglas Gregorb93971082010-02-05 19:54:12 +00004899 isa<TemplateTypeParmDecl>(D) || isa<TemplateTemplateParmDecl>(D) ||
Douglas Gregora86bc002012-02-16 21:36:18 +00004900 (ParentDC->isFunctionOrMethod() && ParentDC->isDependentContext()) ||
4901 (isa<CXXRecordDecl>(D) && cast<CXXRecordDecl>(D)->isLambda())) {
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004902 // D is a local of some kind. Look into the map of local
4903 // declarations to their instantiations.
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004904 if (CurrentInstantiationScope) {
4905 if (auto Found = CurrentInstantiationScope->findInstantiationOf(D)) {
4906 if (Decl *FD = Found->dyn_cast<Decl *>())
4907 return cast<NamedDecl>(FD);
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004908
Alexey Samsonov2c0aac22014-09-03 18:45:45 +00004909 int PackIdx = ArgumentPackSubstitutionIndex;
4910 assert(PackIdx != -1 &&
4911 "found declaration pack but not pack expanding");
4912 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
4913 return cast<NamedDecl>((*Found->get<DeclArgumentPack *>())[PackIdx]);
4914 }
Chris Lattnercab02a62011-02-17 20:34:02 +00004915 }
4916
Serge Pavlov7cd8f602013-07-15 06:14:07 +00004917 // If we're performing a partial substitution during template argument
4918 // deduction, we may not have values for template parameters yet. They
4919 // just map to themselves.
4920 if (isa<NonTypeTemplateParmDecl>(D) || isa<TemplateTypeParmDecl>(D) ||
4921 isa<TemplateTemplateParmDecl>(D))
4922 return D;
4923
Serge Pavlov074a5182013-08-10 12:00:21 +00004924 if (D->isInvalidDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00004925 return nullptr;
Serge Pavlov074a5182013-08-10 12:00:21 +00004926
Serge Pavlove7ad8312015-05-15 10:10:28 +00004927 // Normally this function only searches for already instantiated declaration
4928 // however we have to make an exclusion for local types used before
4929 // definition as in the code:
4930 //
4931 // template<typename T> void f1() {
4932 // void g1(struct x1);
4933 // struct x1 {};
4934 // }
4935 //
4936 // In this case instantiation of the type of 'g1' requires definition of
4937 // 'x1', which is defined later. Error recovery may produce an enum used
4938 // before definition. In these cases we need to instantiate relevant
4939 // declarations here.
4940 bool NeedInstantiate = false;
4941 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D))
4942 NeedInstantiate = RD->isLocalClass();
4943 else
4944 NeedInstantiate = isa<EnumDecl>(D);
4945 if (NeedInstantiate) {
Serge Pavlov4c511742015-05-04 16:44:39 +00004946 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4947 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4948 return cast<TypeDecl>(Inst);
4949 }
4950
Chris Lattnercab02a62011-02-17 20:34:02 +00004951 // If we didn't find the decl, then we must have a label decl that hasn't
4952 // been found yet. Lazily instantiate it and return it now.
4953 assert(isa<LabelDecl>(D));
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004954
Chris Lattnercab02a62011-02-17 20:34:02 +00004955 Decl *Inst = SubstDecl(D, CurContext, TemplateArgs);
4956 assert(Inst && "Failed to instantiate label??");
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004957
Chris Lattnercab02a62011-02-17 20:34:02 +00004958 CurrentInstantiationScope->InstantiatedLocal(D, Inst);
4959 return cast<LabelDecl>(Inst);
Douglas Gregorf98d9b62009-05-27 17:07:49 +00004960 }
Douglas Gregor51783312009-05-27 05:35:12 +00004961
Larisse Voufo39a1e502013-08-06 01:03:05 +00004962 // For variable template specializations, update those that are still
4963 // type-dependent.
4964 if (VarTemplateSpecializationDecl *VarSpec =
4965 dyn_cast<VarTemplateSpecializationDecl>(D)) {
4966 bool InstantiationDependent = false;
4967 const TemplateArgumentListInfo &VarTemplateArgs =
4968 VarSpec->getTemplateArgsInfo();
4969 if (TemplateSpecializationType::anyDependentTemplateArguments(
4970 VarTemplateArgs, InstantiationDependent))
4971 D = cast<NamedDecl>(
4972 SubstDecl(D, VarSpec->getDeclContext(), TemplateArgs));
4973 return D;
4974 }
4975
Douglas Gregor64621e62009-09-16 18:34:49 +00004976 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(D)) {
4977 if (!Record->isDependentContext())
4978 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00004979
Douglas Gregor4109afa2011-11-07 17:43:18 +00004980 // Determine whether this record is the "templated" declaration describing
4981 // a class template or class template partial specialization.
Douglas Gregor64621e62009-09-16 18:34:49 +00004982 ClassTemplateDecl *ClassTemplate = Record->getDescribedClassTemplate();
Douglas Gregor4109afa2011-11-07 17:43:18 +00004983 if (ClassTemplate)
4984 ClassTemplate = ClassTemplate->getCanonicalDecl();
4985 else if (ClassTemplatePartialSpecializationDecl *PartialSpec
4986 = dyn_cast<ClassTemplatePartialSpecializationDecl>(Record))
4987 ClassTemplate = PartialSpec->getSpecializedTemplate()->getCanonicalDecl();
Larisse Voufo39a1e502013-08-06 01:03:05 +00004988
Douglas Gregor4109afa2011-11-07 17:43:18 +00004989 // Walk the current context to find either the record or an instantiation of
4990 // it.
4991 DeclContext *DC = CurContext;
4992 while (!DC->isFileContext()) {
4993 // If we're performing substitution while we're inside the template
4994 // definition, we'll find our own context. We're done.
4995 if (DC->Equals(Record))
4996 return Record;
Larisse Voufo39a1e502013-08-06 01:03:05 +00004997
Douglas Gregor4109afa2011-11-07 17:43:18 +00004998 if (CXXRecordDecl *InstRecord = dyn_cast<CXXRecordDecl>(DC)) {
4999 // Check whether we're in the process of instantiating a class template
5000 // specialization of the template we're mapping.
5001 if (ClassTemplateSpecializationDecl *InstSpec
5002 = dyn_cast<ClassTemplateSpecializationDecl>(InstRecord)){
5003 ClassTemplateDecl *SpecTemplate = InstSpec->getSpecializedTemplate();
5004 if (ClassTemplate && isInstantiationOf(ClassTemplate, SpecTemplate))
5005 return InstRecord;
5006 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005007
Douglas Gregor4109afa2011-11-07 17:43:18 +00005008 // Check whether we're in the process of instantiating a member class.
5009 if (isInstantiationOf(Record, InstRecord))
5010 return InstRecord;
Douglas Gregor64621e62009-09-16 18:34:49 +00005011 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005012
Douglas Gregor4109afa2011-11-07 17:43:18 +00005013 // Move to the outer template scope.
5014 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC)) {
5015 if (FD->getFriendObjectKind() && FD->getDeclContext()->isFileContext()){
5016 DC = FD->getLexicalDeclContext();
5017 continue;
5018 }
Richard Smith32918772017-02-14 00:25:28 +00005019 // An implicit deduction guide acts as if it's within the class template
5020 // specialization described by its name and first N template params.
Richard Smithbc491202017-02-17 20:05:37 +00005021 auto *Guide = dyn_cast<CXXDeductionGuideDecl>(FD);
5022 if (Guide && Guide->isImplicit()) {
5023 TemplateDecl *TD = Guide->getDeducedTemplate();
Richard Smith0cd9c042017-02-21 08:42:39 +00005024 // Convert the arguments to an "as-written" list.
Richard Smith32918772017-02-14 00:25:28 +00005025 TemplateArgumentListInfo Args(Loc, Loc);
Richard Smith0cd9c042017-02-21 08:42:39 +00005026 for (TemplateArgument Arg : TemplateArgs.getInnermost().take_front(
5027 TD->getTemplateParameters()->size())) {
5028 ArrayRef<TemplateArgument> Unpacked(Arg);
5029 if (Arg.getKind() == TemplateArgument::Pack)
5030 Unpacked = Arg.pack_elements();
5031 for (TemplateArgument UnpackedArg : Unpacked)
5032 Args.addArgument(
5033 getTrivialTemplateArgumentLoc(UnpackedArg, QualType(), Loc));
5034 }
Richard Smith32918772017-02-14 00:25:28 +00005035 QualType T = CheckTemplateIdType(TemplateName(TD), Loc, Args);
5036 if (T.isNull())
5037 return nullptr;
Richard Smithe6d4b772017-06-07 02:42:27 +00005038 auto *SubstRecord = T->getAsCXXRecordDecl();
5039 assert(SubstRecord && "class template id not a class type?");
5040 // Check that this template-id names the primary template and not a
5041 // partial or explicit specialization. (In the latter cases, it's
5042 // meaningless to attempt to find an instantiation of D within the
5043 // specialization.)
5044 // FIXME: The standard doesn't say what should happen here.
Richard Smith4f440e32017-06-08 01:08:50 +00005045 if (FindingInstantiatedContext &&
5046 usesPartialOrExplicitSpecialization(
5047 Loc, cast<ClassTemplateSpecializationDecl>(SubstRecord))) {
Richard Smithe6d4b772017-06-07 02:42:27 +00005048 Diag(Loc, diag::err_specialization_not_primary_template)
5049 << T << (SubstRecord->getTemplateSpecializationKind() ==
5050 TSK_ExplicitSpecialization);
5051 return nullptr;
5052 }
5053 DC = SubstRecord;
Richard Smith32918772017-02-14 00:25:28 +00005054 continue;
5055 }
John McCall59660882009-08-29 08:11:13 +00005056 }
Larisse Voufo39a1e502013-08-06 01:03:05 +00005057
Douglas Gregor4109afa2011-11-07 17:43:18 +00005058 DC = DC->getParent();
John McCall59660882009-08-29 08:11:13 +00005059 }
Douglas Gregord225fa02010-02-05 22:40:03 +00005060
Douglas Gregor64621e62009-09-16 18:34:49 +00005061 // Fall through to deal with other dependent record types (e.g.,
5062 // anonymous unions in class templates).
5063 }
John McCall59660882009-08-29 08:11:13 +00005064
Douglas Gregor64621e62009-09-16 18:34:49 +00005065 if (!ParentDC->isDependentContext())
5066 return D;
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005067
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005068 ParentDC = FindInstantiatedContext(Loc, ParentDC, TemplateArgs);
Mike Stump11289f42009-09-09 15:08:12 +00005069 if (!ParentDC)
Craig Topperc3ec1492014-05-26 06:22:03 +00005070 return nullptr;
Mike Stump11289f42009-09-09 15:08:12 +00005071
Douglas Gregor51783312009-05-27 05:35:12 +00005072 if (ParentDC != D->getDeclContext()) {
5073 // We performed some kind of instantiation in the parent context,
5074 // so now we need to look into the instantiated parent context to
5075 // find the instantiation of the declaration D.
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005076
John McCalle78aac42010-03-10 03:28:59 +00005077 // If our context used to be dependent, we may need to instantiate
5078 // it before performing lookup into that context.
Douglas Gregor528ad932011-03-06 20:12:45 +00005079 bool IsBeingInstantiated = false;
John McCalle78aac42010-03-10 03:28:59 +00005080 if (CXXRecordDecl *Spec = dyn_cast<CXXRecordDecl>(ParentDC)) {
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005081 if (!Spec->isDependentContext()) {
5082 QualType T = Context.getTypeDeclType(Spec);
John McCalle78aac42010-03-10 03:28:59 +00005083 const RecordType *Tag = T->getAs<RecordType>();
5084 assert(Tag && "type of non-dependent record is not a RecordType");
Douglas Gregor528ad932011-03-06 20:12:45 +00005085 if (Tag->isBeingDefined())
5086 IsBeingInstantiated = true;
John McCalle78aac42010-03-10 03:28:59 +00005087 if (!Tag->isBeingDefined() &&
5088 RequireCompleteType(Loc, T, diag::err_incomplete_type))
Craig Topperc3ec1492014-05-26 06:22:03 +00005089 return nullptr;
Douglas Gregor25edf432010-11-05 23:22:45 +00005090
5091 ParentDC = Tag->getDecl();
Douglas Gregora04f2ca2010-03-01 15:56:25 +00005092 }
5093 }
5094
Craig Topperc3ec1492014-05-26 06:22:03 +00005095 NamedDecl *Result = nullptr;
Richard Smith151c4562016-12-20 21:35:28 +00005096 // FIXME: If the name is a dependent name, this lookup won't necessarily
5097 // find it. Does that ever matter?
Akira Hatanaka59e3b432017-01-31 19:53:32 +00005098 if (auto Name = D->getDeclName()) {
5099 DeclarationNameInfo NameInfo(Name, D->getLocation());
5100 Name = SubstDeclarationNameInfo(NameInfo, TemplateArgs).getName();
5101 if (!Name)
5102 return nullptr;
5103 DeclContext::lookup_result Found = ParentDC->lookup(Name);
David Blaikieff7d47a2012-12-19 00:45:41 +00005104 Result = findInstantiationOf(Context, D, Found.begin(), Found.end());
Douglas Gregor51783312009-05-27 05:35:12 +00005105 } else {
5106 // Since we don't have a name for the entity we're looking for,
5107 // our only option is to walk through all of the declarations to
5108 // find that name. This will occur in a few cases:
5109 //
5110 // - anonymous struct/union within a template
5111 // - unnamed class/struct/union/enum within a template
5112 //
5113 // FIXME: Find a better way to find these instantiations!
Mike Stump11289f42009-09-09 15:08:12 +00005114 Result = findInstantiationOf(Context, D,
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00005115 ParentDC->decls_begin(),
5116 ParentDC->decls_end());
Douglas Gregor51783312009-05-27 05:35:12 +00005117 }
Mike Stump11289f42009-09-09 15:08:12 +00005118
Douglas Gregor528ad932011-03-06 20:12:45 +00005119 if (!Result) {
5120 if (isa<UsingShadowDecl>(D)) {
5121 // UsingShadowDecls can instantiate to nothing because of using hiding.
5122 } else if (Diags.hasErrorOccurred()) {
5123 // We've already complained about something, so most likely this
5124 // declaration failed to instantiate. There's no point in complaining
5125 // further, since this is normal in invalid code.
5126 } else if (IsBeingInstantiated) {
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005127 // The class in which this member exists is currently being
Douglas Gregor528ad932011-03-06 20:12:45 +00005128 // instantiated, and we haven't gotten around to instantiating this
5129 // member yet. This can happen when the code uses forward declarations
5130 // of member classes, and introduces ordering dependencies via
5131 // template instantiation.
5132 Diag(Loc, diag::err_member_not_yet_instantiated)
5133 << D->getDeclName()
5134 << Context.getTypeDeclType(cast<CXXRecordDecl>(ParentDC));
5135 Diag(D->getLocation(), diag::note_non_instantiated_member_here);
Richard Smith169f2192012-03-26 20:28:16 +00005136 } else if (EnumConstantDecl *ED = dyn_cast<EnumConstantDecl>(D)) {
5137 // This enumeration constant was found when the template was defined,
5138 // but can't be found in the instantiation. This can happen if an
5139 // unscoped enumeration member is explicitly specialized.
5140 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext());
5141 EnumDecl *Spec = cast<EnumDecl>(FindInstantiatedDecl(Loc, Enum,
5142 TemplateArgs));
5143 assert(Spec->getTemplateSpecializationKind() ==
5144 TSK_ExplicitSpecialization);
5145 Diag(Loc, diag::err_enumerator_does_not_exist)
5146 << D->getDeclName()
5147 << Context.getTypeDeclType(cast<TypeDecl>(Spec->getDeclContext()));
5148 Diag(Spec->getLocation(), diag::note_enum_specialized_here)
5149 << Context.getTypeDeclType(Spec);
Douglas Gregor528ad932011-03-06 20:12:45 +00005150 } else {
5151 // We should have found something, but didn't.
5152 llvm_unreachable("Unable to find instantiation of declaration!");
5153 }
5154 }
NAKAMURA Takumi82a35112011-10-08 11:31:46 +00005155
Douglas Gregor51783312009-05-27 05:35:12 +00005156 D = Result;
5157 }
5158
Douglas Gregor51783312009-05-27 05:35:12 +00005159 return D;
5160}
Douglas Gregor77b50e12009-06-22 23:06:13 +00005161
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00005162/// Performs template instantiation for all implicit template
Douglas Gregor77b50e12009-06-22 23:06:13 +00005163/// instantiations we have seen until this point.
Nick Lewycky67c4d0f2011-05-31 07:58:42 +00005164void Sema::PerformPendingInstantiations(bool LocalOnly) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005165 while (!PendingLocalImplicitInstantiations.empty() ||
Chandler Carruth54080172010-08-25 08:44:16 +00005166 (!LocalOnly && !PendingInstantiations.empty())) {
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005167 PendingImplicitInstantiation Inst;
5168
5169 if (PendingLocalImplicitInstantiations.empty()) {
Chandler Carruth54080172010-08-25 08:44:16 +00005170 Inst = PendingInstantiations.front();
5171 PendingInstantiations.pop_front();
Douglas Gregor7f792cf2010-01-16 22:29:39 +00005172 } else {
5173 Inst = PendingLocalImplicitInstantiations.front();
5174 PendingLocalImplicitInstantiations.pop_front();
5175 }
Mike Stump11289f42009-09-09 15:08:12 +00005176
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005177 // Instantiate function definitions
5178 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(Inst.first)) {
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005179 bool DefinitionRequired = Function->getTemplateSpecializationKind() ==
5180 TSK_ExplicitInstantiationDefinition;
Erich Keane0fb16482018-08-13 18:33:20 +00005181 if (Function->isMultiVersion()) {
5182 getASTContext().forEachMultiversionedFunctionVersion(
5183 Function, [this, Inst, DefinitionRequired](FunctionDecl *CurFD) {
5184 InstantiateFunctionDefinition(/*FIXME:*/ Inst.second, CurFD, true,
5185 DefinitionRequired, true);
5186 if (CurFD->isDefined())
5187 CurFD->setInstantiationIsPending(false);
5188 });
5189 } else {
5190 InstantiateFunctionDefinition(/*FIXME:*/ Inst.second, Function, true,
5191 DefinitionRequired, true);
5192 if (Function->isDefined())
5193 Function->setInstantiationIsPending(false);
5194 }
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005195 continue;
5196 }
Mike Stump11289f42009-09-09 15:08:12 +00005197
Larisse Voufo39a1e502013-08-06 01:03:05 +00005198 // Instantiate variable definitions
Douglas Gregora6ef8f02009-07-24 20:34:43 +00005199 VarDecl *Var = cast<VarDecl>(Inst.first);
Larisse Voufo39a1e502013-08-06 01:03:05 +00005200
5201 assert((Var->isStaticDataMember() ||
5202 isa<VarTemplateSpecializationDecl>(Var)) &&
5203 "Not a static data member, nor a variable template"
5204 " specialization?");
Anders Carlsson62215c42009-09-01 05:12:24 +00005205
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005206 // Don't try to instantiate declarations if the most recent redeclaration
5207 // is invalid.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005208 if (Var->getMostRecentDecl()->isInvalidDecl())
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005209 continue;
5210
5211 // Check if the most recent declaration has changed the specialization kind
5212 // and removed the need for implicit instantiation.
Douglas Gregorec9fd132012-01-14 16:38:05 +00005213 switch (Var->getMostRecentDecl()->getTemplateSpecializationKind()) {
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005214 case TSK_Undeclared:
David Blaikie83d382b2011-09-23 05:06:16 +00005215 llvm_unreachable("Cannot instantitiate an undeclared specialization.");
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005216 case TSK_ExplicitInstantiationDeclaration:
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005217 case TSK_ExplicitSpecialization:
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005218 continue; // No longer need to instantiate this type.
5219 case TSK_ExplicitInstantiationDefinition:
5220 // We only need an instantiation if the pending instantiation *is* the
5221 // explicit instantiation.
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00005222 if (Var != Var->getMostRecentDecl())
5223 continue;
5224 break;
Chandler Carruth6b4756a2010-02-13 10:17:50 +00005225 case TSK_ImplicitInstantiation:
5226 break;
5227 }
5228
Jordan Rose1e879d82018-03-23 00:07:18 +00005229 PrettyDeclStackTraceEntry CrashInfo(Context, Var, SourceLocation(),
Larisse Voufo39a1e502013-08-06 01:03:05 +00005230 "instantiating variable definition");
Chandler Carruthcfe41db2010-08-25 08:27:02 +00005231 bool DefinitionRequired = Var->getTemplateSpecializationKind() ==
5232 TSK_ExplicitInstantiationDefinition;
Larisse Voufo39a1e502013-08-06 01:03:05 +00005233
5234 // Instantiate static data member definitions or variable template
5235 // specializations.
5236 InstantiateVariableDefinition(/*FIXME:*/ Inst.second, Var, true,
Serge Pavlov7dcc97e2016-04-19 06:19:52 +00005237 DefinitionRequired, true);
Douglas Gregor77b50e12009-06-22 23:06:13 +00005238 }
5239}
John McCallc62bb642010-03-24 05:22:00 +00005240
5241void Sema::PerformDependentDiagnostics(const DeclContext *Pattern,
5242 const MultiLevelTemplateArgumentList &TemplateArgs) {
Aaron Ballmanb105e492014-03-07 14:09:15 +00005243 for (auto DD : Pattern->ddiags()) {
John McCallc62bb642010-03-24 05:22:00 +00005244 switch (DD->getKind()) {
5245 case DependentDiagnostic::Access:
5246 HandleDependentAccessCheck(*DD, TemplateArgs);
5247 break;
5248 }
5249 }
5250}