blob: d81837dad5085fac3a118051826e0be92a8e7bdc [file] [log] [blame]
Douglas Gregorb55fdf82010-12-15 17:38:57 +00001//===------- SemaTemplateVariadic.cpp - C++ Variadic Templates ------------===/
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 semantic analysis for C++0x variadic templates.
10//===----------------------------------------------------------------------===/
11
12#include "clang/Sema/Sema.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000013#include "TypeLocBuilder.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000014#include "clang/AST/Expr.h"
15#include "clang/AST/RecursiveASTVisitor.h"
16#include "clang/AST/TypeLoc.h"
Douglas Gregor820ba7b2011-01-04 17:33:58 +000017#include "clang/Sema/Lookup.h"
Douglas Gregord2fa7662010-12-20 02:24:11 +000018#include "clang/Sema/ParsedTemplate.h"
Richard Smith2589b9802012-07-25 03:56:55 +000019#include "clang/Sema/ScopeInfo.h"
Douglas Gregorb55fdf82010-12-15 17:38:57 +000020#include "clang/Sema/SemaInternal.h"
Douglas Gregor840bd6c2010-12-20 22:05:00 +000021#include "clang/Sema/Template.h"
Douglas Gregorb55fdf82010-12-15 17:38:57 +000022
23using namespace clang;
24
Douglas Gregor1da294a2010-12-15 19:43:21 +000025//----------------------------------------------------------------------------
26// Visitor that collects unexpanded parameter packs
27//----------------------------------------------------------------------------
28
Richard Smith78a07ba2017-08-15 19:11:21 +000029/// \brief Retrieve the depth and index of a parameter pack.
30static std::pair<unsigned, unsigned>
31getDepthAndIndex(NamedDecl *ND) {
32 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ND))
33 return std::make_pair(TTP->getDepth(), TTP->getIndex());
34
35 if (NonTypeTemplateParmDecl *NTTP = dyn_cast<NonTypeTemplateParmDecl>(ND))
36 return std::make_pair(NTTP->getDepth(), NTTP->getIndex());
37
38 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(ND);
39 return std::make_pair(TTP->getDepth(), TTP->getIndex());
40}
41
Douglas Gregor1da294a2010-12-15 19:43:21 +000042namespace {
43 /// \brief A class that collects unexpanded parameter packs.
44 class CollectUnexpandedParameterPacksVisitor :
45 public RecursiveASTVisitor<CollectUnexpandedParameterPacksVisitor>
46 {
47 typedef RecursiveASTVisitor<CollectUnexpandedParameterPacksVisitor>
48 inherited;
49
Chris Lattner0e62c1c2011-07-23 10:55:15 +000050 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded;
Douglas Gregor1da294a2010-12-15 19:43:21 +000051
Richard Smith78a07ba2017-08-15 19:11:21 +000052 bool InLambda = false;
53 unsigned DepthLimit = (unsigned)-1;
Richard Smith2589b9802012-07-25 03:56:55 +000054
Richard Smith78a07ba2017-08-15 19:11:21 +000055 void addUnexpanded(NamedDecl *ND, SourceLocation Loc = SourceLocation()) {
56 if (auto *PVD = dyn_cast<ParmVarDecl>(ND)) {
57 // For now, the only problematic case is a generic lambda's templated
58 // call operator, so we don't need to look for all the other ways we
59 // could have reached a dependent parameter pack.
60 auto *FD = dyn_cast<FunctionDecl>(PVD->getDeclContext());
61 auto *FTD = FD ? FD->getDescribedFunctionTemplate() : nullptr;
62 if (FTD && FTD->getTemplateParameters()->getDepth() >= DepthLimit)
63 return;
64 } else if (getDepthAndIndex(ND).first >= DepthLimit)
65 return;
66
67 Unexpanded.push_back({ND, Loc});
68 }
69 void addUnexpanded(const TemplateTypeParmType *T,
70 SourceLocation Loc = SourceLocation()) {
71 if (T->getDepth() < DepthLimit)
72 Unexpanded.push_back({T, Loc});
73 }
74
Douglas Gregor1da294a2010-12-15 19:43:21 +000075 public:
76 explicit CollectUnexpandedParameterPacksVisitor(
Richard Smith78a07ba2017-08-15 19:11:21 +000077 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded)
78 : Unexpanded(Unexpanded) {}
Douglas Gregor1da294a2010-12-15 19:43:21 +000079
Douglas Gregor15b4ec22010-12-20 23:07:20 +000080 bool shouldWalkTypesOfTypeLocs() const { return false; }
Richard Smith78a07ba2017-08-15 19:11:21 +000081
Douglas Gregor1da294a2010-12-15 19:43:21 +000082 //------------------------------------------------------------------------
83 // Recording occurrences of (unexpanded) parameter packs.
84 //------------------------------------------------------------------------
85
86 /// \brief Record occurrences of template type parameter packs.
87 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
88 if (TL.getTypePtr()->isParameterPack())
Richard Smith78a07ba2017-08-15 19:11:21 +000089 addUnexpanded(TL.getTypePtr(), TL.getNameLoc());
Douglas Gregor1da294a2010-12-15 19:43:21 +000090 return true;
91 }
92
93 /// \brief Record occurrences of template type parameter packs
94 /// when we don't have proper source-location information for
95 /// them.
96 ///
97 /// Ideally, this routine would never be used.
98 bool VisitTemplateTypeParmType(TemplateTypeParmType *T) {
99 if (T->isParameterPack())
Richard Smith78a07ba2017-08-15 19:11:21 +0000100 addUnexpanded(T);
Douglas Gregor1da294a2010-12-15 19:43:21 +0000101
102 return true;
103 }
104
Douglas Gregor476e3022011-01-19 21:32:01 +0000105 /// \brief Record occurrences of function and non-type template
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000106 /// parameter packs in an expression.
107 bool VisitDeclRefExpr(DeclRefExpr *E) {
Douglas Gregorf3010112011-01-07 16:43:16 +0000108 if (E->getDecl()->isParameterPack())
Richard Smith78a07ba2017-08-15 19:11:21 +0000109 addUnexpanded(E->getDecl(), E->getLocation());
Douglas Gregorda3cc0d2010-12-23 23:51:58 +0000110
111 return true;
112 }
113
Douglas Gregorf5500772011-01-05 15:48:55 +0000114 /// \brief Record occurrences of template template parameter packs.
115 bool TraverseTemplateName(TemplateName Template) {
Richard Smith78a07ba2017-08-15 19:11:21 +0000116 if (auto *TTP = dyn_cast_or_null<TemplateTemplateParmDecl>(
117 Template.getAsTemplateDecl())) {
Douglas Gregorf5500772011-01-05 15:48:55 +0000118 if (TTP->isParameterPack())
Richard Smith78a07ba2017-08-15 19:11:21 +0000119 addUnexpanded(TTP);
120 }
Douglas Gregorf5500772011-01-05 15:48:55 +0000121
122 return inherited::TraverseTemplateName(Template);
123 }
Douglas Gregor1da294a2010-12-15 19:43:21 +0000124
Ted Kremeneke65b0862012-03-06 20:05:56 +0000125 /// \brief Suppress traversal into Objective-C container literal
126 /// elements that are pack expansions.
127 bool TraverseObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
128 if (!E->containsUnexpandedParameterPack())
129 return true;
130
131 for (unsigned I = 0, N = E->getNumElements(); I != N; ++I) {
132 ObjCDictionaryElement Element = E->getKeyValueElement(I);
133 if (Element.isPackExpansion())
134 continue;
135
136 TraverseStmt(Element.Key);
137 TraverseStmt(Element.Value);
138 }
139 return true;
140 }
Douglas Gregor1da294a2010-12-15 19:43:21 +0000141 //------------------------------------------------------------------------
142 // Pruning the search for unexpanded parameter packs.
143 //------------------------------------------------------------------------
144
145 /// \brief Suppress traversal into statements and expressions that
146 /// do not contain unexpanded parameter packs.
147 bool TraverseStmt(Stmt *S) {
Richard Smith2589b9802012-07-25 03:56:55 +0000148 Expr *E = dyn_cast_or_null<Expr>(S);
149 if ((E && E->containsUnexpandedParameterPack()) || InLambda)
150 return inherited::TraverseStmt(S);
Douglas Gregor1da294a2010-12-15 19:43:21 +0000151
Richard Smith2589b9802012-07-25 03:56:55 +0000152 return true;
Douglas Gregor1da294a2010-12-15 19:43:21 +0000153 }
154
155 /// \brief Suppress traversal into types that do not contain
156 /// unexpanded parameter packs.
157 bool TraverseType(QualType T) {
Richard Smith2589b9802012-07-25 03:56:55 +0000158 if ((!T.isNull() && T->containsUnexpandedParameterPack()) || InLambda)
Douglas Gregor1da294a2010-12-15 19:43:21 +0000159 return inherited::TraverseType(T);
160
161 return true;
162 }
163
Richard Smithf26d5512017-08-15 22:58:45 +0000164 /// \brief Suppress traversal into types with location information
Douglas Gregor1da294a2010-12-15 19:43:21 +0000165 /// that do not contain unexpanded parameter packs.
166 bool TraverseTypeLoc(TypeLoc TL) {
Richard Smith2589b9802012-07-25 03:56:55 +0000167 if ((!TL.getType().isNull() &&
168 TL.getType()->containsUnexpandedParameterPack()) ||
169 InLambda)
Douglas Gregor1da294a2010-12-15 19:43:21 +0000170 return inherited::TraverseTypeLoc(TL);
171
172 return true;
173 }
174
Richard Smithf26d5512017-08-15 22:58:45 +0000175 /// \brief Suppress traversal of parameter packs.
Douglas Gregora8461bb2010-12-15 21:57:59 +0000176 bool TraverseDecl(Decl *D) {
Richard Smith78a07ba2017-08-15 19:11:21 +0000177 // A function parameter pack is a pack expansion, so cannot contain
Richard Smithf26d5512017-08-15 22:58:45 +0000178 // an unexpanded parameter pack. Likewise for a template parameter
179 // pack that contains any references to other packs.
180 if (D->isParameterPack())
Richard Smith78a07ba2017-08-15 19:11:21 +0000181 return true;
182
Richard Smithf26d5512017-08-15 22:58:45 +0000183 return inherited::TraverseDecl(D);
184 }
Douglas Gregora8461bb2010-12-15 21:57:59 +0000185
Richard Smithf26d5512017-08-15 22:58:45 +0000186 /// \brief Suppress traversal of pack-expanded attributes.
187 bool TraverseAttr(Attr *A) {
188 if (A->isPackExpansion())
189 return true;
190
191 return inherited::TraverseAttr(A);
192 }
193
194 /// \brief Suppress traversal of pack expansion expressions and types.
195 ///@{
196 bool TraversePackExpansionType(PackExpansionType *T) { return true; }
197 bool TraversePackExpansionTypeLoc(PackExpansionTypeLoc TL) { return true; }
198 bool TraversePackExpansionExpr(PackExpansionExpr *E) { return true; }
199 bool TraverseCXXFoldExpr(CXXFoldExpr *E) { return true; }
200
201 ///@}
202
203 /// \brief Suppress traversal of using-declaration pack expansion.
204 bool TraverseUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
205 if (D->isPackExpansion())
206 return true;
207
208 return inherited::TraverseUnresolvedUsingValueDecl(D);
209 }
210
211 /// \brief Suppress traversal of using-declaration pack expansion.
212 bool TraverseUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
213 if (D->isPackExpansion())
214 return true;
215
216 return inherited::TraverseUnresolvedUsingTypenameDecl(D);
Douglas Gregora8461bb2010-12-15 21:57:59 +0000217 }
Douglas Gregoreb29d182011-01-05 17:40:24 +0000218
219 /// \brief Suppress traversal of template argument pack expansions.
220 bool TraverseTemplateArgument(const TemplateArgument &Arg) {
221 if (Arg.isPackExpansion())
222 return true;
223
224 return inherited::TraverseTemplateArgument(Arg);
225 }
226
227 /// \brief Suppress traversal of template argument pack expansions.
228 bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc) {
229 if (ArgLoc.getArgument().isPackExpansion())
230 return true;
231
232 return inherited::TraverseTemplateArgumentLoc(ArgLoc);
233 }
Richard Smith2589b9802012-07-25 03:56:55 +0000234
Richard Smithf26d5512017-08-15 22:58:45 +0000235 /// \brief Suppress traversal of base specifier pack expansions.
236 bool TraverseCXXBaseSpecifier(const CXXBaseSpecifier &Base) {
237 if (Base.isPackExpansion())
238 return true;
239
240 return inherited::TraverseCXXBaseSpecifier(Base);
241 }
242
243 /// \brief Suppress traversal of mem-initializer pack expansions.
244 bool TraverseConstructorInitializer(CXXCtorInitializer *Init) {
245 if (Init->isPackExpansion())
246 return true;
247
248 return inherited::TraverseConstructorInitializer(Init);
249 }
250
Richard Smith2589b9802012-07-25 03:56:55 +0000251 /// \brief Note whether we're traversing a lambda containing an unexpanded
252 /// parameter pack. In this case, the unexpanded pack can occur anywhere,
253 /// including all the places where we normally wouldn't look. Within a
254 /// lambda, we don't propagate the 'contains unexpanded parameter pack' bit
255 /// outside an expression.
256 bool TraverseLambdaExpr(LambdaExpr *Lambda) {
257 // The ContainsUnexpandedParameterPack bit on a lambda is always correct,
258 // even if it's contained within another lambda.
259 if (!Lambda->containsUnexpandedParameterPack())
260 return true;
261
262 bool WasInLambda = InLambda;
Richard Smith78a07ba2017-08-15 19:11:21 +0000263 unsigned OldDepthLimit = DepthLimit;
Richard Smith2589b9802012-07-25 03:56:55 +0000264
Richard Smith78a07ba2017-08-15 19:11:21 +0000265 InLambda = true;
266 if (auto *TPL = Lambda->getTemplateParameterList())
267 DepthLimit = TPL->getDepth();
Richard Smith2589b9802012-07-25 03:56:55 +0000268
269 inherited::TraverseLambdaExpr(Lambda);
270
271 InLambda = WasInLambda;
Richard Smith78a07ba2017-08-15 19:11:21 +0000272 DepthLimit = OldDepthLimit;
Richard Smith2589b9802012-07-25 03:56:55 +0000273 return true;
274 }
Richard Smith78a07ba2017-08-15 19:11:21 +0000275
276 /// Suppress traversal within pack expansions in lambda captures.
277 bool TraverseLambdaCapture(LambdaExpr *Lambda, const LambdaCapture *C,
278 Expr *Init) {
279 if (C->isPackExpansion())
280 return true;
Richard Smithf26d5512017-08-15 22:58:45 +0000281
Richard Smith78a07ba2017-08-15 19:11:21 +0000282 return inherited::TraverseLambdaCapture(Lambda, C, Init);
283 }
Douglas Gregor1da294a2010-12-15 19:43:21 +0000284 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000285}
Douglas Gregor1da294a2010-12-15 19:43:21 +0000286
Richard Smith36ee9fb2014-08-11 23:30:23 +0000287/// \brief Determine whether it's possible for an unexpanded parameter pack to
288/// be valid in this location. This only happens when we're in a declaration
289/// that is nested within an expression that could be expanded, such as a
290/// lambda-expression within a function call.
291///
292/// This is conservatively correct, but may claim that some unexpanded packs are
293/// permitted when they are not.
294bool Sema::isUnexpandedParameterPackPermitted() {
295 for (auto *SI : FunctionScopes)
296 if (isa<sema::LambdaScopeInfo>(SI))
297 return true;
298 return false;
299}
300
Douglas Gregor1da294a2010-12-15 19:43:21 +0000301/// \brief Diagnose all of the unexpanded parameter packs in the given
302/// vector.
Richard Smith2589b9802012-07-25 03:56:55 +0000303bool
Douglas Gregor4a2a8f72011-10-25 03:44:56 +0000304Sema::DiagnoseUnexpandedParameterPacks(SourceLocation Loc,
305 UnexpandedParameterPackContext UPPC,
Bill Wendling8ac06af2012-02-22 09:38:11 +0000306 ArrayRef<UnexpandedParameterPack> Unexpanded) {
Douglas Gregor4a2a8f72011-10-25 03:44:56 +0000307 if (Unexpanded.empty())
Richard Smith2589b9802012-07-25 03:56:55 +0000308 return false;
309
Richard Smith78a07ba2017-08-15 19:11:21 +0000310 // If we are within a lambda expression and referencing a pack that is not
311 // a parameter of the lambda itself, that lambda contains an unexpanded
Richard Smith2589b9802012-07-25 03:56:55 +0000312 // parameter pack, and we are done.
313 // FIXME: Store 'Unexpanded' on the lambda so we don't need to recompute it
314 // later.
Richard Smithf26d5512017-08-15 22:58:45 +0000315 SmallVector<UnexpandedParameterPack, 4> LambdaParamPackReferences;
Richard Smith2589b9802012-07-25 03:56:55 +0000316 for (unsigned N = FunctionScopes.size(); N; --N) {
317 if (sema::LambdaScopeInfo *LSI =
318 dyn_cast<sema::LambdaScopeInfo>(FunctionScopes[N-1])) {
Richard Smithf26d5512017-08-15 22:58:45 +0000319 if (N == FunctionScopes.size()) {
Richard Smith78a07ba2017-08-15 19:11:21 +0000320 for (auto &Param : Unexpanded) {
321 auto *PD = dyn_cast_or_null<ParmVarDecl>(
322 Param.first.dyn_cast<NamedDecl *>());
323 if (PD && PD->getDeclContext() == LSI->CallOperator)
Richard Smithf26d5512017-08-15 22:58:45 +0000324 LambdaParamPackReferences.push_back(Param);
Richard Smith78a07ba2017-08-15 19:11:21 +0000325 }
326 }
327
Richard Smithf26d5512017-08-15 22:58:45 +0000328 // If we have references to a parameter pack of the innermost enclosing
329 // lambda, only diagnose those ones. We don't know whether any other
330 // unexpanded parameters referenced herein are actually unexpanded;
331 // they might be expanded at an outer level.
332 if (!LambdaParamPackReferences.empty()) {
333 Unexpanded = LambdaParamPackReferences;
Richard Smith78a07ba2017-08-15 19:11:21 +0000334 break;
335 }
336
Richard Smith2589b9802012-07-25 03:56:55 +0000337 LSI->ContainsUnexpandedParameterPack = true;
338 return false;
339 }
340 }
Douglas Gregor4a2a8f72011-10-25 03:44:56 +0000341
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000342 SmallVector<SourceLocation, 4> Locations;
343 SmallVector<IdentifierInfo *, 4> Names;
Douglas Gregor1da294a2010-12-15 19:43:21 +0000344 llvm::SmallPtrSet<IdentifierInfo *, 4> NamesKnown;
345
346 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000347 IdentifierInfo *Name = nullptr;
Douglas Gregor1da294a2010-12-15 19:43:21 +0000348 if (const TemplateTypeParmType *TTP
349 = Unexpanded[I].first.dyn_cast<const TemplateTypeParmType *>())
Chandler Carruthdde65ea2011-05-01 01:05:51 +0000350 Name = TTP->getIdentifier();
Douglas Gregor1da294a2010-12-15 19:43:21 +0000351 else
352 Name = Unexpanded[I].first.get<NamedDecl *>()->getIdentifier();
353
David Blaikie82e95a32014-11-19 07:49:47 +0000354 if (Name && NamesKnown.insert(Name).second)
Douglas Gregor1da294a2010-12-15 19:43:21 +0000355 Names.push_back(Name);
356
357 if (Unexpanded[I].second.isValid())
358 Locations.push_back(Unexpanded[I].second);
359 }
360
Benjamin Kramer3a8650a2015-03-27 17:23:14 +0000361 DiagnosticBuilder DB = Diag(Loc, diag::err_unexpanded_parameter_pack)
362 << (int)UPPC << (int)Names.size();
363 for (size_t I = 0, E = std::min(Names.size(), (size_t)2); I != E; ++I)
364 DB << Names[I];
Douglas Gregor1da294a2010-12-15 19:43:21 +0000365
366 for (unsigned I = 0, N = Locations.size(); I != N; ++I)
367 DB << SourceRange(Locations[I]);
Richard Smith2589b9802012-07-25 03:56:55 +0000368 return true;
Douglas Gregor1da294a2010-12-15 19:43:21 +0000369}
370
Douglas Gregorb55fdf82010-12-15 17:38:57 +0000371bool Sema::DiagnoseUnexpandedParameterPack(SourceLocation Loc,
372 TypeSourceInfo *T,
373 UnexpandedParameterPackContext UPPC) {
374 // C++0x [temp.variadic]p5:
375 // An appearance of a name of a parameter pack that is not expanded is
376 // ill-formed.
377 if (!T->getType()->containsUnexpandedParameterPack())
378 return false;
379
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000380 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor1da294a2010-12-15 19:43:21 +0000381 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(
382 T->getTypeLoc());
383 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs");
Richard Smith2589b9802012-07-25 03:56:55 +0000384 return DiagnoseUnexpandedParameterPacks(Loc, UPPC, Unexpanded);
Douglas Gregorb55fdf82010-12-15 17:38:57 +0000385}
386
387bool Sema::DiagnoseUnexpandedParameterPack(Expr *E,
Douglas Gregorc4356532010-12-16 00:46:58 +0000388 UnexpandedParameterPackContext UPPC) {
Douglas Gregorb55fdf82010-12-15 17:38:57 +0000389 // C++0x [temp.variadic]p5:
390 // An appearance of a name of a parameter pack that is not expanded is
391 // ill-formed.
392 if (!E->containsUnexpandedParameterPack())
393 return false;
394
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000395 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor1da294a2010-12-15 19:43:21 +0000396 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseStmt(E);
397 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs");
Richard Smith2589b9802012-07-25 03:56:55 +0000398 return DiagnoseUnexpandedParameterPacks(E->getLocStart(), UPPC, Unexpanded);
Douglas Gregorb55fdf82010-12-15 17:38:57 +0000399}
Douglas Gregorc4356532010-12-16 00:46:58 +0000400
401bool Sema::DiagnoseUnexpandedParameterPack(const CXXScopeSpec &SS,
402 UnexpandedParameterPackContext UPPC) {
403 // C++0x [temp.variadic]p5:
404 // An appearance of a name of a parameter pack that is not expanded is
405 // ill-formed.
406 if (!SS.getScopeRep() ||
407 !SS.getScopeRep()->containsUnexpandedParameterPack())
408 return false;
409
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000410 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorc4356532010-12-16 00:46:58 +0000411 CollectUnexpandedParameterPacksVisitor(Unexpanded)
412 .TraverseNestedNameSpecifier(SS.getScopeRep());
413 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs");
Richard Smith2589b9802012-07-25 03:56:55 +0000414 return DiagnoseUnexpandedParameterPacks(SS.getRange().getBegin(),
415 UPPC, Unexpanded);
Douglas Gregorc4356532010-12-16 00:46:58 +0000416}
417
418bool Sema::DiagnoseUnexpandedParameterPack(const DeclarationNameInfo &NameInfo,
419 UnexpandedParameterPackContext UPPC) {
420 // C++0x [temp.variadic]p5:
421 // An appearance of a name of a parameter pack that is not expanded is
422 // ill-formed.
423 switch (NameInfo.getName().getNameKind()) {
424 case DeclarationName::Identifier:
425 case DeclarationName::ObjCZeroArgSelector:
426 case DeclarationName::ObjCOneArgSelector:
427 case DeclarationName::ObjCMultiArgSelector:
428 case DeclarationName::CXXOperatorName:
429 case DeclarationName::CXXLiteralOperatorName:
430 case DeclarationName::CXXUsingDirective:
Richard Smith35845152017-02-07 01:37:30 +0000431 case DeclarationName::CXXDeductionGuideName:
Douglas Gregorc4356532010-12-16 00:46:58 +0000432 return false;
433
434 case DeclarationName::CXXConstructorName:
435 case DeclarationName::CXXDestructorName:
436 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor062ecac2010-12-16 17:19:19 +0000437 // FIXME: We shouldn't need this null check!
Douglas Gregor6ab34af2010-12-16 01:40:04 +0000438 if (TypeSourceInfo *TSInfo = NameInfo.getNamedTypeInfo())
439 return DiagnoseUnexpandedParameterPack(NameInfo.getLoc(), TSInfo, UPPC);
440
441 if (!NameInfo.getName().getCXXNameType()->containsUnexpandedParameterPack())
Douglas Gregorc4356532010-12-16 00:46:58 +0000442 return false;
Douglas Gregor6ab34af2010-12-16 01:40:04 +0000443
Douglas Gregorc4356532010-12-16 00:46:58 +0000444 break;
445 }
446
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000447 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregorc4356532010-12-16 00:46:58 +0000448 CollectUnexpandedParameterPacksVisitor(Unexpanded)
Douglas Gregor6ab34af2010-12-16 01:40:04 +0000449 .TraverseType(NameInfo.getName().getCXXNameType());
Douglas Gregorc4356532010-12-16 00:46:58 +0000450 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs");
Richard Smith2589b9802012-07-25 03:56:55 +0000451 return DiagnoseUnexpandedParameterPacks(NameInfo.getLoc(), UPPC, Unexpanded);
Douglas Gregorc4356532010-12-16 00:46:58 +0000452}
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000453
454bool Sema::DiagnoseUnexpandedParameterPack(SourceLocation Loc,
455 TemplateName Template,
456 UnexpandedParameterPackContext UPPC) {
457
458 if (Template.isNull() || !Template.containsUnexpandedParameterPack())
459 return false;
460
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000461 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000462 CollectUnexpandedParameterPacksVisitor(Unexpanded)
463 .TraverseTemplateName(Template);
464 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs");
Richard Smith2589b9802012-07-25 03:56:55 +0000465 return DiagnoseUnexpandedParameterPacks(Loc, UPPC, Unexpanded);
Douglas Gregor6ff1fbf2010-12-16 08:48:57 +0000466}
467
Douglas Gregor14406932011-01-03 20:35:03 +0000468bool Sema::DiagnoseUnexpandedParameterPack(TemplateArgumentLoc Arg,
469 UnexpandedParameterPackContext UPPC) {
470 if (Arg.getArgument().isNull() ||
471 !Arg.getArgument().containsUnexpandedParameterPack())
472 return false;
473
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000474 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor14406932011-01-03 20:35:03 +0000475 CollectUnexpandedParameterPacksVisitor(Unexpanded)
476 .TraverseTemplateArgumentLoc(Arg);
477 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs");
Richard Smith2589b9802012-07-25 03:56:55 +0000478 return DiagnoseUnexpandedParameterPacks(Arg.getLocation(), UPPC, Unexpanded);
Douglas Gregor14406932011-01-03 20:35:03 +0000479}
480
Douglas Gregor0f3feb42010-12-22 21:19:48 +0000481void Sema::collectUnexpandedParameterPacks(TemplateArgument Arg,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000482 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Douglas Gregor0f3feb42010-12-22 21:19:48 +0000483 CollectUnexpandedParameterPacksVisitor(Unexpanded)
484 .TraverseTemplateArgument(Arg);
485}
486
Douglas Gregor840bd6c2010-12-20 22:05:00 +0000487void Sema::collectUnexpandedParameterPacks(TemplateArgumentLoc Arg,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000488 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Douglas Gregor840bd6c2010-12-20 22:05:00 +0000489 CollectUnexpandedParameterPacksVisitor(Unexpanded)
490 .TraverseTemplateArgumentLoc(Arg);
491}
492
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000493void Sema::collectUnexpandedParameterPacks(QualType T,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000494 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000495 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseType(T);
496}
497
Douglas Gregor752a5952011-01-03 22:36:02 +0000498void Sema::collectUnexpandedParameterPacks(TypeLoc TL,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000499 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Douglas Gregor752a5952011-01-03 22:36:02 +0000500 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL);
Richard Smith22a250c2016-12-19 04:08:53 +0000501}
502
Richard Smith151c4562016-12-20 21:35:28 +0000503void Sema::collectUnexpandedParameterPacks(
504 NestedNameSpecifierLoc NNS,
505 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
506 CollectUnexpandedParameterPacksVisitor(Unexpanded)
507 .TraverseNestedNameSpecifierLoc(NNS);
508}
509
510void Sema::collectUnexpandedParameterPacks(
511 const DeclarationNameInfo &NameInfo,
512 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
Douglas Gregor4a2a8f72011-10-25 03:44:56 +0000513 CollectUnexpandedParameterPacksVisitor(Unexpanded)
514 .TraverseDeclarationNameInfo(NameInfo);
515}
516
517
Douglas Gregord2fa7662010-12-20 02:24:11 +0000518ParsedTemplateArgument
519Sema::ActOnPackExpansion(const ParsedTemplateArgument &Arg,
520 SourceLocation EllipsisLoc) {
521 if (Arg.isInvalid())
522 return Arg;
523
524 switch (Arg.getKind()) {
525 case ParsedTemplateArgument::Type: {
526 TypeResult Result = ActOnPackExpansion(Arg.getAsType(), EllipsisLoc);
527 if (Result.isInvalid())
528 return ParsedTemplateArgument();
529
530 return ParsedTemplateArgument(Arg.getKind(), Result.get().getAsOpaquePtr(),
531 Arg.getLocation());
532 }
533
Douglas Gregore8e9dd62011-01-03 17:17:50 +0000534 case ParsedTemplateArgument::NonType: {
535 ExprResult Result = ActOnPackExpansion(Arg.getAsExpr(), EllipsisLoc);
536 if (Result.isInvalid())
537 return ParsedTemplateArgument();
538
539 return ParsedTemplateArgument(Arg.getKind(), Result.get(),
540 Arg.getLocation());
541 }
542
Douglas Gregord2fa7662010-12-20 02:24:11 +0000543 case ParsedTemplateArgument::Template:
Douglas Gregoreb29d182011-01-05 17:40:24 +0000544 if (!Arg.getAsTemplate().get().containsUnexpandedParameterPack()) {
545 SourceRange R(Arg.getLocation());
546 if (Arg.getScopeSpec().isValid())
547 R.setBegin(Arg.getScopeSpec().getBeginLoc());
548 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
549 << R;
550 return ParsedTemplateArgument();
551 }
552
553 return Arg.getTemplatePackExpansion(EllipsisLoc);
Douglas Gregord2fa7662010-12-20 02:24:11 +0000554 }
555 llvm_unreachable("Unhandled template argument kind?");
Douglas Gregord2fa7662010-12-20 02:24:11 +0000556}
557
558TypeResult Sema::ActOnPackExpansion(ParsedType Type,
559 SourceLocation EllipsisLoc) {
560 TypeSourceInfo *TSInfo;
561 GetTypeFromParser(Type, &TSInfo);
562 if (!TSInfo)
563 return true;
564
David Blaikie7a30dc52013-02-21 01:47:18 +0000565 TypeSourceInfo *TSResult = CheckPackExpansion(TSInfo, EllipsisLoc, None);
Douglas Gregor840bd6c2010-12-20 22:05:00 +0000566 if (!TSResult)
567 return true;
568
569 return CreateParsedType(TSResult->getType(), TSResult);
570}
571
David Blaikie05785d12013-02-20 22:23:23 +0000572TypeSourceInfo *
573Sema::CheckPackExpansion(TypeSourceInfo *Pattern, SourceLocation EllipsisLoc,
574 Optional<unsigned> NumExpansions) {
Douglas Gregord2fa7662010-12-20 02:24:11 +0000575 // Create the pack expansion type and source-location information.
Douglas Gregor822d0302011-01-12 17:07:58 +0000576 QualType Result = CheckPackExpansion(Pattern->getType(),
577 Pattern->getTypeLoc().getSourceRange(),
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000578 EllipsisLoc, NumExpansions);
Douglas Gregor822d0302011-01-12 17:07:58 +0000579 if (Result.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +0000580 return nullptr;
Eli Friedman7152fbe2013-06-07 20:31:48 +0000581
582 TypeLocBuilder TLB;
583 TLB.pushFullCopy(Pattern->getTypeLoc());
584 PackExpansionTypeLoc TL = TLB.push<PackExpansionTypeLoc>(Result);
Douglas Gregord2fa7662010-12-20 02:24:11 +0000585 TL.setEllipsisLoc(EllipsisLoc);
Eli Friedman7152fbe2013-06-07 20:31:48 +0000586
587 return TLB.getTypeSourceInfo(Context, Result);
Douglas Gregord2fa7662010-12-20 02:24:11 +0000588}
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000589
David Blaikie05785d12013-02-20 22:23:23 +0000590QualType Sema::CheckPackExpansion(QualType Pattern, SourceRange PatternRange,
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000591 SourceLocation EllipsisLoc,
David Blaikie05785d12013-02-20 22:23:23 +0000592 Optional<unsigned> NumExpansions) {
Douglas Gregor822d0302011-01-12 17:07:58 +0000593 // C++0x [temp.variadic]p5:
594 // The pattern of a pack expansion shall name one or more
595 // parameter packs that are not expanded by a nested pack
596 // expansion.
597 if (!Pattern->containsUnexpandedParameterPack()) {
598 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
599 << PatternRange;
600 return QualType();
601 }
602
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000603 return Context.getPackExpansionType(Pattern, NumExpansions);
Douglas Gregor822d0302011-01-12 17:07:58 +0000604}
605
Douglas Gregore8e9dd62011-01-03 17:17:50 +0000606ExprResult Sema::ActOnPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc) {
David Blaikie7a30dc52013-02-21 01:47:18 +0000607 return CheckPackExpansion(Pattern, EllipsisLoc, None);
Douglas Gregorb8840002011-01-14 21:20:45 +0000608}
609
610ExprResult Sema::CheckPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc,
David Blaikie05785d12013-02-20 22:23:23 +0000611 Optional<unsigned> NumExpansions) {
Douglas Gregore8e9dd62011-01-03 17:17:50 +0000612 if (!Pattern)
613 return ExprError();
614
615 // C++0x [temp.variadic]p5:
616 // The pattern of a pack expansion shall name one or more
617 // parameter packs that are not expanded by a nested pack
618 // expansion.
619 if (!Pattern->containsUnexpandedParameterPack()) {
620 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
621 << Pattern->getSourceRange();
622 return ExprError();
623 }
624
625 // Create the pack expansion expression and source-location information.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000626 return new (Context)
627 PackExpansionExpr(Context.DependentTy, Pattern, EllipsisLoc, NumExpansions);
Douglas Gregore8e9dd62011-01-03 17:17:50 +0000628}
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000629
David Blaikie05785d12013-02-20 22:23:23 +0000630bool Sema::CheckParameterPacksForExpansion(
631 SourceLocation EllipsisLoc, SourceRange PatternRange,
632 ArrayRef<UnexpandedParameterPack> Unexpanded,
633 const MultiLevelTemplateArgumentList &TemplateArgs, bool &ShouldExpand,
634 bool &RetainExpansion, Optional<unsigned> &NumExpansions) {
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000635 ShouldExpand = true;
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000636 RetainExpansion = false;
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000637 std::pair<IdentifierInfo *, SourceLocation> FirstPack;
638 bool HaveFirstPack = false;
639
David Blaikieb9c168a2011-09-22 02:34:54 +0000640 for (ArrayRef<UnexpandedParameterPack>::iterator i = Unexpanded.begin(),
641 end = Unexpanded.end();
642 i != end; ++i) {
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000643 // Compute the depth and index for this parameter pack.
Ted Kremenek582a0992011-01-23 17:04:59 +0000644 unsigned Depth = 0, Index = 0;
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000645 IdentifierInfo *Name;
Douglas Gregorf3010112011-01-07 16:43:16 +0000646 bool IsFunctionParameterPack = false;
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000647
648 if (const TemplateTypeParmType *TTP
David Blaikieb9c168a2011-09-22 02:34:54 +0000649 = i->first.dyn_cast<const TemplateTypeParmType *>()) {
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000650 Depth = TTP->getDepth();
651 Index = TTP->getIndex();
Chandler Carruthdde65ea2011-05-01 01:05:51 +0000652 Name = TTP->getIdentifier();
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000653 } else {
David Blaikieb9c168a2011-09-22 02:34:54 +0000654 NamedDecl *ND = i->first.get<NamedDecl *>();
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000655 if (isa<ParmVarDecl>(ND))
Douglas Gregorf3010112011-01-07 16:43:16 +0000656 IsFunctionParameterPack = true;
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000657 else
Benjamin Kramer867ea1d2014-03-02 13:01:17 +0000658 std::tie(Depth, Index) = getDepthAndIndex(ND);
659
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000660 Name = ND->getIdentifier();
661 }
662
Douglas Gregorf3010112011-01-07 16:43:16 +0000663 // Determine the size of this argument pack.
664 unsigned NewPackSize;
665 if (IsFunctionParameterPack) {
666 // Figure out whether we're instantiating to an argument pack or not.
667 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
668
669 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation
670 = CurrentInstantiationScope->findInstantiationOf(
David Blaikieb9c168a2011-09-22 02:34:54 +0000671 i->first.get<NamedDecl *>());
Chris Lattner15a776f2011-02-17 19:38:27 +0000672 if (Instantiation->is<DeclArgumentPack *>()) {
Douglas Gregorf3010112011-01-07 16:43:16 +0000673 // We could expand this function parameter pack.
674 NewPackSize = Instantiation->get<DeclArgumentPack *>()->size();
675 } else {
676 // We can't expand this function parameter pack, so we can't expand
677 // the pack expansion.
678 ShouldExpand = false;
679 continue;
680 }
681 } else {
682 // If we don't have a template argument at this depth/index, then we
683 // cannot expand the pack expansion. Make a note of this, but we still
684 // want to check any parameter packs we *do* have arguments for.
685 if (Depth >= TemplateArgs.getNumLevels() ||
686 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
687 ShouldExpand = false;
688 continue;
689 }
690
691 // Determine the size of the argument pack.
692 NewPackSize = TemplateArgs(Depth, Index).pack_size();
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000693 }
694
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000695 // C++0x [temp.arg.explicit]p9:
696 // Template argument deduction can extend the sequence of template
697 // arguments corresponding to a template parameter pack, even when the
698 // sequence contains explicitly specified template arguments.
Olivier Goffarteeba9e42016-05-26 12:55:34 +0000699 if (!IsFunctionParameterPack && CurrentInstantiationScope) {
Douglas Gregor63dad4d2011-01-20 23:15:49 +0000700 if (NamedDecl *PartialPack
701 = CurrentInstantiationScope->getPartiallySubstitutedPack()){
702 unsigned PartialDepth, PartialIndex;
Benjamin Kramer867ea1d2014-03-02 13:01:17 +0000703 std::tie(PartialDepth, PartialIndex) = getDepthAndIndex(PartialPack);
Douglas Gregor63dad4d2011-01-20 23:15:49 +0000704 if (PartialDepth == Depth && PartialIndex == Index)
705 RetainExpansion = true;
706 }
Douglas Gregora8bac7f2011-01-10 07:32:04 +0000707 }
Douglas Gregor63dad4d2011-01-20 23:15:49 +0000708
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000709 if (!NumExpansions) {
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000710 // The is the first pack we've seen for which we have an argument.
711 // Record it.
712 NumExpansions = NewPackSize;
713 FirstPack.first = Name;
David Blaikieb9c168a2011-09-22 02:34:54 +0000714 FirstPack.second = i->second;
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000715 HaveFirstPack = true;
716 continue;
717 }
718
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000719 if (NewPackSize != *NumExpansions) {
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000720 // C++0x [temp.variadic]p5:
721 // All of the parameter packs expanded by a pack expansion shall have
722 // the same number of arguments specified.
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000723 if (HaveFirstPack)
724 Diag(EllipsisLoc, diag::err_pack_expansion_length_conflict)
725 << FirstPack.first << Name << *NumExpansions << NewPackSize
David Blaikieb9c168a2011-09-22 02:34:54 +0000726 << SourceRange(FirstPack.second) << SourceRange(i->second);
Douglas Gregor0dca5fd2011-01-14 17:04:44 +0000727 else
728 Diag(EllipsisLoc, diag::err_pack_expansion_length_conflict_multilevel)
729 << Name << *NumExpansions << NewPackSize
David Blaikieb9c168a2011-09-22 02:34:54 +0000730 << SourceRange(i->second);
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000731 return true;
732 }
733 }
Richard Smithc5452ed2016-10-19 22:18:42 +0000734
Douglas Gregor76aca7b2010-12-21 00:52:54 +0000735 return false;
736}
Douglas Gregor27b4c162010-12-23 22:44:42 +0000737
David Blaikie05785d12013-02-20 22:23:23 +0000738Optional<unsigned> Sema::getNumArgumentsInExpansion(QualType T,
Douglas Gregor5cde3862011-01-11 03:14:20 +0000739 const MultiLevelTemplateArgumentList &TemplateArgs) {
740 QualType Pattern = cast<PackExpansionType>(T)->getPattern();
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000741 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
Douglas Gregor5cde3862011-01-11 03:14:20 +0000742 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseType(Pattern);
743
David Blaikie05785d12013-02-20 22:23:23 +0000744 Optional<unsigned> Result;
Douglas Gregor5cde3862011-01-11 03:14:20 +0000745 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
746 // Compute the depth and index for this parameter pack.
747 unsigned Depth;
748 unsigned Index;
749
750 if (const TemplateTypeParmType *TTP
751 = Unexpanded[I].first.dyn_cast<const TemplateTypeParmType *>()) {
752 Depth = TTP->getDepth();
753 Index = TTP->getIndex();
754 } else {
755 NamedDecl *ND = Unexpanded[I].first.get<NamedDecl *>();
756 if (isa<ParmVarDecl>(ND)) {
757 // Function parameter pack.
758 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack;
759
760 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation
761 = CurrentInstantiationScope->findInstantiationOf(
762 Unexpanded[I].first.get<NamedDecl *>());
Richard Smith198223b2012-07-18 01:29:05 +0000763 if (Instantiation->is<Decl*>())
764 // The pattern refers to an unexpanded pack. We're not ready to expand
765 // this pack yet.
David Blaikie7a30dc52013-02-21 01:47:18 +0000766 return None;
Richard Smith198223b2012-07-18 01:29:05 +0000767
768 unsigned Size = Instantiation->get<DeclArgumentPack *>()->size();
769 assert((!Result || *Result == Size) && "inconsistent pack sizes");
770 Result = Size;
Douglas Gregor5cde3862011-01-11 03:14:20 +0000771 continue;
772 }
Benjamin Kramer867ea1d2014-03-02 13:01:17 +0000773
774 std::tie(Depth, Index) = getDepthAndIndex(ND);
Douglas Gregor5cde3862011-01-11 03:14:20 +0000775 }
776 if (Depth >= TemplateArgs.getNumLevels() ||
777 !TemplateArgs.hasTemplateArgument(Depth, Index))
Richard Smith198223b2012-07-18 01:29:05 +0000778 // The pattern refers to an unknown template argument. We're not ready to
779 // expand this pack yet.
David Blaikie7a30dc52013-02-21 01:47:18 +0000780 return None;
Douglas Gregor5cde3862011-01-11 03:14:20 +0000781
782 // Determine the size of the argument pack.
Richard Smith198223b2012-07-18 01:29:05 +0000783 unsigned Size = TemplateArgs(Depth, Index).pack_size();
784 assert((!Result || *Result == Size) && "inconsistent pack sizes");
785 Result = Size;
Douglas Gregor5cde3862011-01-11 03:14:20 +0000786 }
787
Richard Smith198223b2012-07-18 01:29:05 +0000788 return Result;
Douglas Gregor5cde3862011-01-11 03:14:20 +0000789}
790
Douglas Gregor27b4c162010-12-23 22:44:42 +0000791bool Sema::containsUnexpandedParameterPacks(Declarator &D) {
792 const DeclSpec &DS = D.getDeclSpec();
793 switch (DS.getTypeSpecType()) {
Faisal Vali090da2d2018-01-01 18:23:28 +0000794 case TST_typename:
795 case TST_typeofType:
796 case TST_underlyingType:
797 case TST_atomic: {
Douglas Gregor27b4c162010-12-23 22:44:42 +0000798 QualType T = DS.getRepAsType().get();
799 if (!T.isNull() && T->containsUnexpandedParameterPack())
800 return true;
801 break;
802 }
803
Faisal Vali090da2d2018-01-01 18:23:28 +0000804 case TST_typeofExpr:
805 case TST_decltype:
Douglas Gregor27b4c162010-12-23 22:44:42 +0000806 if (DS.getRepAsExpr() &&
807 DS.getRepAsExpr()->containsUnexpandedParameterPack())
808 return true;
809 break;
810
Faisal Vali090da2d2018-01-01 18:23:28 +0000811 case TST_unspecified:
812 case TST_void:
813 case TST_char:
814 case TST_wchar:
815 case TST_char16:
816 case TST_char32:
817 case TST_int:
818 case TST_int128:
819 case TST_half:
820 case TST_float:
821 case TST_double:
822 case TST_Float16:
823 case TST_float128:
824 case TST_bool:
825 case TST_decimal32:
826 case TST_decimal64:
827 case TST_decimal128:
828 case TST_enum:
829 case TST_union:
830 case TST_struct:
831 case TST_interface:
832 case TST_class:
833 case TST_auto:
834 case TST_auto_type:
835 case TST_decltype_auto:
836#define GENERIC_IMAGE_TYPE(ImgType, Id) case TST_##ImgType##_t:
Alexey Baderb62f1442016-04-13 08:33:41 +0000837#include "clang/Basic/OpenCLImageTypes.def"
Faisal Vali090da2d2018-01-01 18:23:28 +0000838 case TST_unknown_anytype:
839 case TST_error:
Douglas Gregor27b4c162010-12-23 22:44:42 +0000840 break;
841 }
Larisse Voufo2e846502014-08-29 21:08:16 +0000842
Douglas Gregor27b4c162010-12-23 22:44:42 +0000843 for (unsigned I = 0, N = D.getNumTypeObjects(); I != N; ++I) {
844 const DeclaratorChunk &Chunk = D.getTypeObject(I);
845 switch (Chunk.Kind) {
846 case DeclaratorChunk::Pointer:
847 case DeclaratorChunk::Reference:
848 case DeclaratorChunk::Paren:
Xiuli Pan9c14e282016-01-09 12:53:17 +0000849 case DeclaratorChunk::Pipe:
Larisse Voufo2e846502014-08-29 21:08:16 +0000850 case DeclaratorChunk::BlockPointer:
Douglas Gregor27b4c162010-12-23 22:44:42 +0000851 // These declarator chunks cannot contain any parameter packs.
852 break;
853
854 case DeclaratorChunk::Array:
Larisse Voufo2e846502014-08-29 21:08:16 +0000855 if (Chunk.Arr.NumElts &&
856 Chunk.Arr.NumElts->containsUnexpandedParameterPack())
857 return true;
858 break;
Douglas Gregor27b4c162010-12-23 22:44:42 +0000859 case DeclaratorChunk::Function:
Larisse Voufo2e846502014-08-29 21:08:16 +0000860 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) {
861 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param);
862 QualType ParamTy = Param->getType();
863 assert(!ParamTy.isNull() && "Couldn't parse type?");
864 if (ParamTy->containsUnexpandedParameterPack()) return true;
865 }
866
867 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) {
Reid Kleckner078aea92016-12-09 17:14:05 +0000868 for (unsigned i = 0; i != Chunk.Fun.getNumExceptions(); ++i) {
Larisse Voufo2e846502014-08-29 21:08:16 +0000869 if (Chunk.Fun.Exceptions[i]
870 .Ty.get()
871 ->containsUnexpandedParameterPack())
872 return true;
873 }
874 } else if (Chunk.Fun.getExceptionSpecType() == EST_ComputedNoexcept &&
875 Chunk.Fun.NoexceptExpr->containsUnexpandedParameterPack())
876 return true;
877
Nico Weber8d26b722014-12-30 02:06:40 +0000878 if (Chunk.Fun.hasTrailingReturnType()) {
879 QualType T = Chunk.Fun.getTrailingReturnType().get();
880 if (!T.isNull() && T->containsUnexpandedParameterPack())
881 return true;
882 }
Larisse Voufo2e846502014-08-29 21:08:16 +0000883 break;
884
Douglas Gregor27b4c162010-12-23 22:44:42 +0000885 case DeclaratorChunk::MemberPointer:
886 if (Chunk.Mem.Scope().getScopeRep() &&
887 Chunk.Mem.Scope().getScopeRep()->containsUnexpandedParameterPack())
888 return true;
889 break;
890 }
891 }
892
893 return false;
894}
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000895
Kaelyn Uhrain637b5b32012-01-13 23:10:36 +0000896namespace {
897
898// Callback to only accept typo corrections that refer to parameter packs.
899class ParameterPackValidatorCCC : public CorrectionCandidateCallback {
900 public:
Craig Toppere14c0f82014-03-12 04:55:44 +0000901 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrain637b5b32012-01-13 23:10:36 +0000902 NamedDecl *ND = candidate.getCorrectionDecl();
903 return ND && ND->isParameterPack();
904 }
905};
906
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000907}
Kaelyn Uhrain637b5b32012-01-13 23:10:36 +0000908
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000909/// \brief Called when an expression computing the size of a parameter pack
910/// is parsed.
911///
912/// \code
913/// template<typename ...Types> struct count {
914/// static const unsigned value = sizeof...(Types);
915/// };
916/// \endcode
917///
918//
919/// \param OpLoc The location of the "sizeof" keyword.
920/// \param Name The name of the parameter pack whose size will be determined.
921/// \param NameLoc The source location of the name of the parameter pack.
922/// \param RParenLoc The location of the closing parentheses.
923ExprResult Sema::ActOnSizeofParameterPackExpr(Scope *S,
924 SourceLocation OpLoc,
925 IdentifierInfo &Name,
926 SourceLocation NameLoc,
927 SourceLocation RParenLoc) {
928 // C++0x [expr.sizeof]p5:
929 // The identifier in a sizeof... expression shall name a parameter pack.
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000930 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName);
931 LookupName(R, S);
Craig Topperc3ec1492014-05-26 06:22:03 +0000932
933 NamedDecl *ParameterPack = nullptr;
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000934 switch (R.getResultKind()) {
935 case LookupResult::Found:
936 ParameterPack = R.getFoundDecl();
937 break;
938
939 case LookupResult::NotFound:
940 case LookupResult::NotFoundInCurrentInstantiation:
Kaelyn Takata89c881b2014-10-27 18:07:29 +0000941 if (TypoCorrection Corrected =
942 CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, nullptr,
943 llvm::make_unique<ParameterPackValidatorCCC>(),
944 CTK_ErrorRecovery)) {
Richard Smithf9b15102013-08-17 00:46:16 +0000945 diagnoseTypo(Corrected,
946 PDiag(diag::err_sizeof_pack_no_pack_name_suggest) << &Name,
947 PDiag(diag::note_parameter_pack_here));
Kaelyn Uhrain637b5b32012-01-13 23:10:36 +0000948 ParameterPack = Corrected.getCorrectionDecl();
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000949 }
Richard Smithf9b15102013-08-17 00:46:16 +0000950
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000951 case LookupResult::FoundOverloaded:
952 case LookupResult::FoundUnresolvedValue:
953 break;
954
955 case LookupResult::Ambiguous:
956 DiagnoseAmbiguousLookup(R);
957 return ExprError();
958 }
959
Douglas Gregor3c6bd2a2011-01-05 21:11:38 +0000960 if (!ParameterPack || !ParameterPack->isParameterPack()) {
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000961 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name)
962 << &Name;
963 return ExprError();
964 }
965
Nick Lewycky45b50522013-02-02 00:25:55 +0000966 MarkAnyDeclReferenced(OpLoc, ParameterPack, true);
Eli Friedman23b1be92012-03-01 21:32:56 +0000967
Richard Smithd784e682015-09-23 21:41:42 +0000968 return SizeOfPackExpr::Create(Context, OpLoc, ParameterPack, NameLoc,
969 RParenLoc);
Douglas Gregor820ba7b2011-01-04 17:33:58 +0000970}
Eli Friedman94e9eaa2013-06-20 04:11:21 +0000971
972TemplateArgumentLoc
973Sema::getTemplateArgumentPackExpansionPattern(
974 TemplateArgumentLoc OrigLoc,
975 SourceLocation &Ellipsis, Optional<unsigned> &NumExpansions) const {
976 const TemplateArgument &Argument = OrigLoc.getArgument();
977 assert(Argument.isPackExpansion());
978 switch (Argument.getKind()) {
979 case TemplateArgument::Type: {
980 // FIXME: We shouldn't ever have to worry about missing
981 // type-source info!
982 TypeSourceInfo *ExpansionTSInfo = OrigLoc.getTypeSourceInfo();
983 if (!ExpansionTSInfo)
984 ExpansionTSInfo = Context.getTrivialTypeSourceInfo(Argument.getAsType(),
985 Ellipsis);
986 PackExpansionTypeLoc Expansion =
987 ExpansionTSInfo->getTypeLoc().castAs<PackExpansionTypeLoc>();
988 Ellipsis = Expansion.getEllipsisLoc();
989
990 TypeLoc Pattern = Expansion.getPatternLoc();
991 NumExpansions = Expansion.getTypePtr()->getNumExpansions();
992
993 // We need to copy the TypeLoc because TemplateArgumentLocs store a
994 // TypeSourceInfo.
995 // FIXME: Find some way to avoid the copy?
996 TypeLocBuilder TLB;
997 TLB.pushFullCopy(Pattern);
998 TypeSourceInfo *PatternTSInfo =
999 TLB.getTypeSourceInfo(Context, Pattern.getType());
1000 return TemplateArgumentLoc(TemplateArgument(Pattern.getType()),
1001 PatternTSInfo);
1002 }
1003
1004 case TemplateArgument::Expression: {
1005 PackExpansionExpr *Expansion
1006 = cast<PackExpansionExpr>(Argument.getAsExpr());
1007 Expr *Pattern = Expansion->getPattern();
1008 Ellipsis = Expansion->getEllipsisLoc();
1009 NumExpansions = Expansion->getNumExpansions();
1010 return TemplateArgumentLoc(Pattern, Pattern);
1011 }
1012
1013 case TemplateArgument::TemplateExpansion:
1014 Ellipsis = OrigLoc.getTemplateEllipsisLoc();
1015 NumExpansions = Argument.getNumTemplateExpansions();
1016 return TemplateArgumentLoc(Argument.getPackExpansionPattern(),
1017 OrigLoc.getTemplateQualifierLoc(),
1018 OrigLoc.getTemplateNameLoc());
1019
1020 case TemplateArgument::Declaration:
1021 case TemplateArgument::NullPtr:
1022 case TemplateArgument::Template:
1023 case TemplateArgument::Integral:
1024 case TemplateArgument::Pack:
1025 case TemplateArgument::Null:
1026 return TemplateArgumentLoc();
1027 }
1028
1029 llvm_unreachable("Invalid TemplateArgument Kind!");
1030}
Richard Smith0f0af192014-11-08 05:07:16 +00001031
Richard Smithc5452ed2016-10-19 22:18:42 +00001032Optional<unsigned> Sema::getFullyPackExpandedSize(TemplateArgument Arg) {
1033 assert(Arg.containsUnexpandedParameterPack());
1034
1035 // If this is a substituted pack, grab that pack. If not, we don't know
1036 // the size yet.
1037 // FIXME: We could find a size in more cases by looking for a substituted
1038 // pack anywhere within this argument, but that's not necessary in the common
1039 // case for 'sizeof...(A)' handling.
1040 TemplateArgument Pack;
1041 switch (Arg.getKind()) {
1042 case TemplateArgument::Type:
1043 if (auto *Subst = Arg.getAsType()->getAs<SubstTemplateTypeParmPackType>())
1044 Pack = Subst->getArgumentPack();
1045 else
1046 return None;
1047 break;
1048
1049 case TemplateArgument::Expression:
1050 if (auto *Subst =
1051 dyn_cast<SubstNonTypeTemplateParmPackExpr>(Arg.getAsExpr()))
1052 Pack = Subst->getArgumentPack();
1053 else if (auto *Subst = dyn_cast<FunctionParmPackExpr>(Arg.getAsExpr())) {
1054 for (ParmVarDecl *PD : *Subst)
1055 if (PD->isParameterPack())
1056 return None;
1057 return Subst->getNumExpansions();
1058 } else
1059 return None;
1060 break;
1061
1062 case TemplateArgument::Template:
1063 if (SubstTemplateTemplateParmPackStorage *Subst =
1064 Arg.getAsTemplate().getAsSubstTemplateTemplateParmPack())
1065 Pack = Subst->getArgumentPack();
1066 else
1067 return None;
1068 break;
1069
1070 case TemplateArgument::Declaration:
1071 case TemplateArgument::NullPtr:
1072 case TemplateArgument::TemplateExpansion:
1073 case TemplateArgument::Integral:
1074 case TemplateArgument::Pack:
1075 case TemplateArgument::Null:
1076 return None;
1077 }
1078
1079 // Check that no argument in the pack is itself a pack expansion.
1080 for (TemplateArgument Elem : Pack.pack_elements()) {
1081 // There's no point recursing in this case; we would have already
1082 // expanded this pack expansion into the enclosing pack if we could.
1083 if (Elem.isPackExpansion())
1084 return None;
1085 }
1086 return Pack.pack_size();
1087}
1088
Richard Smith0f0af192014-11-08 05:07:16 +00001089static void CheckFoldOperand(Sema &S, Expr *E) {
1090 if (!E)
1091 return;
1092
1093 E = E->IgnoreImpCasts();
Richard Smith66094432016-10-20 00:55:15 +00001094 auto *OCE = dyn_cast<CXXOperatorCallExpr>(E);
1095 if ((OCE && OCE->isInfixBinaryOp()) || isa<BinaryOperator>(E) ||
1096 isa<AbstractConditionalOperator>(E)) {
Richard Smith0f0af192014-11-08 05:07:16 +00001097 S.Diag(E->getExprLoc(), diag::err_fold_expression_bad_operand)
1098 << E->getSourceRange()
1099 << FixItHint::CreateInsertion(E->getLocStart(), "(")
1100 << FixItHint::CreateInsertion(E->getLocEnd(), ")");
1101 }
1102}
1103
1104ExprResult Sema::ActOnCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS,
1105 tok::TokenKind Operator,
1106 SourceLocation EllipsisLoc, Expr *RHS,
1107 SourceLocation RParenLoc) {
1108 // LHS and RHS must be cast-expressions. We allow an arbitrary expression
1109 // in the parser and reduce down to just cast-expressions here.
1110 CheckFoldOperand(*this, LHS);
1111 CheckFoldOperand(*this, RHS);
1112
Richard Smith90e043d2017-02-15 19:57:10 +00001113 auto DiscardOperands = [&] {
1114 CorrectDelayedTyposInExpr(LHS);
1115 CorrectDelayedTyposInExpr(RHS);
1116 };
1117
Richard Smith0f0af192014-11-08 05:07:16 +00001118 // [expr.prim.fold]p3:
1119 // In a binary fold, op1 and op2 shall be the same fold-operator, and
1120 // either e1 shall contain an unexpanded parameter pack or e2 shall contain
1121 // an unexpanded parameter pack, but not both.
1122 if (LHS && RHS &&
1123 LHS->containsUnexpandedParameterPack() ==
1124 RHS->containsUnexpandedParameterPack()) {
Richard Smith90e043d2017-02-15 19:57:10 +00001125 DiscardOperands();
Richard Smith0f0af192014-11-08 05:07:16 +00001126 return Diag(EllipsisLoc,
1127 LHS->containsUnexpandedParameterPack()
1128 ? diag::err_fold_expression_packs_both_sides
1129 : diag::err_pack_expansion_without_parameter_packs)
1130 << LHS->getSourceRange() << RHS->getSourceRange();
1131 }
1132
1133 // [expr.prim.fold]p2:
1134 // In a unary fold, the cast-expression shall contain an unexpanded
1135 // parameter pack.
1136 if (!LHS || !RHS) {
1137 Expr *Pack = LHS ? LHS : RHS;
1138 assert(Pack && "fold expression with neither LHS nor RHS");
Richard Smith90e043d2017-02-15 19:57:10 +00001139 DiscardOperands();
Richard Smith0f0af192014-11-08 05:07:16 +00001140 if (!Pack->containsUnexpandedParameterPack())
1141 return Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
1142 << Pack->getSourceRange();
1143 }
1144
1145 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator);
1146 return BuildCXXFoldExpr(LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc);
1147}
1148
1149ExprResult Sema::BuildCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS,
1150 BinaryOperatorKind Operator,
1151 SourceLocation EllipsisLoc, Expr *RHS,
1152 SourceLocation RParenLoc) {
1153 return new (Context) CXXFoldExpr(Context.DependentTy, LParenLoc, LHS,
1154 Operator, EllipsisLoc, RHS, RParenLoc);
1155}
1156
1157ExprResult Sema::BuildEmptyCXXFoldExpr(SourceLocation EllipsisLoc,
1158 BinaryOperatorKind Operator) {
1159 // [temp.variadic]p9:
1160 // If N is zero for a unary fold-expression, the value of the expression is
Richard Smith0f0af192014-11-08 05:07:16 +00001161 // && -> true
1162 // || -> false
1163 // , -> void()
1164 // if the operator is not listed [above], the instantiation is ill-formed.
1165 //
1166 // Note that we need to use something like int() here, not merely 0, to
1167 // prevent the result from being a null pointer constant.
1168 QualType ScalarType;
1169 switch (Operator) {
Richard Smith0f0af192014-11-08 05:07:16 +00001170 case BO_LOr:
1171 return ActOnCXXBoolLiteral(EllipsisLoc, tok::kw_false);
1172 case BO_LAnd:
1173 return ActOnCXXBoolLiteral(EllipsisLoc, tok::kw_true);
1174 case BO_Comma:
1175 ScalarType = Context.VoidTy;
1176 break;
1177
1178 default:
1179 return Diag(EllipsisLoc, diag::err_fold_expression_empty)
1180 << BinaryOperator::getOpcodeStr(Operator);
1181 }
1182
1183 return new (Context) CXXScalarValueInitExpr(
1184 ScalarType, Context.getTrivialTypeSourceInfo(ScalarType, EllipsisLoc),
1185 EllipsisLoc);
1186}