Bug Summary

File:build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/clang/lib/Sema/SemaTemplateVariadic.cpp
Warning:line 710, column 11
Called C++ object pointer is null

Annotated Source Code

Press '?' to see keyboard shortcuts

clang -cc1 -cc1 -triple x86_64-pc-linux-gnu -analyze -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name SemaTemplateVariadic.cpp -analyzer-store=region -analyzer-opt-analyze-nested-blocks -analyzer-checker=core -analyzer-checker=apiModeling -analyzer-checker=unix -analyzer-checker=deadcode -analyzer-checker=cplusplus -analyzer-checker=security.insecureAPI.UncheckedReturn -analyzer-checker=security.insecureAPI.getpw -analyzer-checker=security.insecureAPI.gets -analyzer-checker=security.insecureAPI.mktemp -analyzer-checker=security.insecureAPI.mkstemp -analyzer-checker=security.insecureAPI.vfork -analyzer-checker=nullability.NullPassedToNonnull -analyzer-checker=nullability.NullReturnedFromNonnull -analyzer-output plist -w -setup-static-analyzer -analyzer-config-compatibility-mode=true -mrelocation-model pic -pic-level 2 -mframe-pointer=none -relaxed-aliasing -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -debugger-tuning=gdb -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/build-llvm -resource-dir /usr/lib/llvm-15/lib/clang/15.0.0 -D _DEBUG -D _GNU_SOURCE -D __STDC_CONSTANT_MACROS -D __STDC_FORMAT_MACROS -D __STDC_LIMIT_MACROS -I tools/clang/lib/Sema -I /build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/clang/lib/Sema -I /build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/clang/include -I tools/clang/include -I include -I /build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/llvm/include -D _FORTIFY_SOURCE=2 -D NDEBUG -U NDEBUG -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward -internal-isystem /usr/lib/llvm-15/lib/clang/15.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/10/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fmacro-prefix-map=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/build-llvm=build-llvm -fmacro-prefix-map=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/= -fcoverage-prefix-map=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/build-llvm=build-llvm -fcoverage-prefix-map=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/= -O3 -Wno-unused-command-line-argument -Wno-unused-parameter -Wwrite-strings -Wno-missing-field-initializers -Wno-long-long -Wno-maybe-uninitialized -Wno-class-memaccess -Wno-redundant-move -Wno-pessimizing-move -Wno-noexcept-type -Wno-comment -std=c++14 -fdeprecated-macro -fdebug-compilation-dir=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/build-llvm -fdebug-prefix-map=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/build-llvm=build-llvm -fdebug-prefix-map=/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/= -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 2 -fgnuc-version=4.2.1 -fcolor-diagnostics -vectorize-loops -vectorize-slp -analyzer-output=html -analyzer-config stable-report-filename=true -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o /tmp/scan-build-2022-04-20-140412-16051-1 -x c++ /build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/clang/lib/Sema/SemaTemplateVariadic.cpp

/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/clang/lib/Sema/SemaTemplateVariadic.cpp

1//===------- SemaTemplateVariadic.cpp - C++ Variadic Templates ------------===/
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//===----------------------------------------------------------------------===/
7//
8// This file implements semantic analysis for C++0x variadic templates.
9//===----------------------------------------------------------------------===/
10
11#include "clang/Sema/Sema.h"
12#include "TypeLocBuilder.h"
13#include "clang/AST/Expr.h"
14#include "clang/AST/RecursiveASTVisitor.h"
15#include "clang/AST/TypeLoc.h"
16#include "clang/Sema/Lookup.h"
17#include "clang/Sema/ParsedTemplate.h"
18#include "clang/Sema/ScopeInfo.h"
19#include "clang/Sema/SemaInternal.h"
20#include "clang/Sema/Template.h"
21
22using namespace clang;
23
24//----------------------------------------------------------------------------
25// Visitor that collects unexpanded parameter packs
26//----------------------------------------------------------------------------
27
28namespace {
29 /// A class that collects unexpanded parameter packs.
30 class CollectUnexpandedParameterPacksVisitor :
31 public RecursiveASTVisitor<CollectUnexpandedParameterPacksVisitor>
32 {
33 typedef RecursiveASTVisitor<CollectUnexpandedParameterPacksVisitor>
34 inherited;
35
36 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded;
37
38 bool InLambda = false;
39 unsigned DepthLimit = (unsigned)-1;
40
41 void addUnexpanded(NamedDecl *ND, SourceLocation Loc = SourceLocation()) {
42 if (auto *VD = dyn_cast<VarDecl>(ND)) {
43 // For now, the only problematic case is a generic lambda's templated
44 // call operator, so we don't need to look for all the other ways we
45 // could have reached a dependent parameter pack.
46 auto *FD = dyn_cast<FunctionDecl>(VD->getDeclContext());
47 auto *FTD = FD ? FD->getDescribedFunctionTemplate() : nullptr;
48 if (FTD && FTD->getTemplateParameters()->getDepth() >= DepthLimit)
49 return;
50 } else if (getDepthAndIndex(ND).first >= DepthLimit)
51 return;
52
53 Unexpanded.push_back({ND, Loc});
54 }
55 void addUnexpanded(const TemplateTypeParmType *T,
56 SourceLocation Loc = SourceLocation()) {
57 if (T->getDepth() < DepthLimit)
58 Unexpanded.push_back({T, Loc});
59 }
60
61 public:
62 explicit CollectUnexpandedParameterPacksVisitor(
63 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded)
64 : Unexpanded(Unexpanded) {}
65
66 bool shouldWalkTypesOfTypeLocs() const { return false; }
67
68 //------------------------------------------------------------------------
69 // Recording occurrences of (unexpanded) parameter packs.
70 //------------------------------------------------------------------------
71
72 /// Record occurrences of template type parameter packs.
73 bool VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
74 if (TL.getTypePtr()->isParameterPack())
75 addUnexpanded(TL.getTypePtr(), TL.getNameLoc());
76 return true;
77 }
78
79 /// Record occurrences of template type parameter packs
80 /// when we don't have proper source-location information for
81 /// them.
82 ///
83 /// Ideally, this routine would never be used.
84 bool VisitTemplateTypeParmType(TemplateTypeParmType *T) {
85 if (T->isParameterPack())
86 addUnexpanded(T);
87
88 return true;
89 }
90
91 /// Record occurrences of function and non-type template
92 /// parameter packs in an expression.
93 bool VisitDeclRefExpr(DeclRefExpr *E) {
94 if (E->getDecl()->isParameterPack())
95 addUnexpanded(E->getDecl(), E->getLocation());
96
97 return true;
98 }
99
100 /// Record occurrences of template template parameter packs.
101 bool TraverseTemplateName(TemplateName Template) {
102 if (auto *TTP = dyn_cast_or_null<TemplateTemplateParmDecl>(
103 Template.getAsTemplateDecl())) {
104 if (TTP->isParameterPack())
105 addUnexpanded(TTP);
106 }
107
108 return inherited::TraverseTemplateName(Template);
109 }
110
111 /// Suppress traversal into Objective-C container literal
112 /// elements that are pack expansions.
113 bool TraverseObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
114 if (!E->containsUnexpandedParameterPack())
115 return true;
116
117 for (unsigned I = 0, N = E->getNumElements(); I != N; ++I) {
118 ObjCDictionaryElement Element = E->getKeyValueElement(I);
119 if (Element.isPackExpansion())
120 continue;
121
122 TraverseStmt(Element.Key);
123 TraverseStmt(Element.Value);
124 }
125 return true;
126 }
127 //------------------------------------------------------------------------
128 // Pruning the search for unexpanded parameter packs.
129 //------------------------------------------------------------------------
130
131 /// Suppress traversal into statements and expressions that
132 /// do not contain unexpanded parameter packs.
133 bool TraverseStmt(Stmt *S) {
134 Expr *E = dyn_cast_or_null<Expr>(S);
135 if ((E && E->containsUnexpandedParameterPack()) || InLambda)
136 return inherited::TraverseStmt(S);
137
138 return true;
139 }
140
141 /// Suppress traversal into types that do not contain
142 /// unexpanded parameter packs.
143 bool TraverseType(QualType T) {
144 if ((!T.isNull() && T->containsUnexpandedParameterPack()) || InLambda)
145 return inherited::TraverseType(T);
146
147 return true;
148 }
149
150 /// Suppress traversal into types with location information
151 /// that do not contain unexpanded parameter packs.
152 bool TraverseTypeLoc(TypeLoc TL) {
153 if ((!TL.getType().isNull() &&
154 TL.getType()->containsUnexpandedParameterPack()) ||
155 InLambda)
156 return inherited::TraverseTypeLoc(TL);
157
158 return true;
159 }
160
161 /// Suppress traversal of parameter packs.
162 bool TraverseDecl(Decl *D) {
163 // A function parameter pack is a pack expansion, so cannot contain
164 // an unexpanded parameter pack. Likewise for a template parameter
165 // pack that contains any references to other packs.
166 if (D && D->isParameterPack())
167 return true;
168
169 return inherited::TraverseDecl(D);
170 }
171
172 /// Suppress traversal of pack-expanded attributes.
173 bool TraverseAttr(Attr *A) {
174 if (A->isPackExpansion())
175 return true;
176
177 return inherited::TraverseAttr(A);
178 }
179
180 /// Suppress traversal of pack expansion expressions and types.
181 ///@{
182 bool TraversePackExpansionType(PackExpansionType *T) { return true; }
183 bool TraversePackExpansionTypeLoc(PackExpansionTypeLoc TL) { return true; }
184 bool TraversePackExpansionExpr(PackExpansionExpr *E) { return true; }
185 bool TraverseCXXFoldExpr(CXXFoldExpr *E) { return true; }
186
187 ///@}
188
189 /// Suppress traversal of using-declaration pack expansion.
190 bool TraverseUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
191 if (D->isPackExpansion())
192 return true;
193
194 return inherited::TraverseUnresolvedUsingValueDecl(D);
195 }
196
197 /// Suppress traversal of using-declaration pack expansion.
198 bool TraverseUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
199 if (D->isPackExpansion())
200 return true;
201
202 return inherited::TraverseUnresolvedUsingTypenameDecl(D);
203 }
204
205 /// Suppress traversal of template argument pack expansions.
206 bool TraverseTemplateArgument(const TemplateArgument &Arg) {
207 if (Arg.isPackExpansion())
208 return true;
209
210 return inherited::TraverseTemplateArgument(Arg);
211 }
212
213 /// Suppress traversal of template argument pack expansions.
214 bool TraverseTemplateArgumentLoc(const TemplateArgumentLoc &ArgLoc) {
215 if (ArgLoc.getArgument().isPackExpansion())
216 return true;
217
218 return inherited::TraverseTemplateArgumentLoc(ArgLoc);
219 }
220
221 /// Suppress traversal of base specifier pack expansions.
222 bool TraverseCXXBaseSpecifier(const CXXBaseSpecifier &Base) {
223 if (Base.isPackExpansion())
224 return true;
225
226 return inherited::TraverseCXXBaseSpecifier(Base);
227 }
228
229 /// Suppress traversal of mem-initializer pack expansions.
230 bool TraverseConstructorInitializer(CXXCtorInitializer *Init) {
231 if (Init->isPackExpansion())
232 return true;
233
234 return inherited::TraverseConstructorInitializer(Init);
235 }
236
237 /// Note whether we're traversing a lambda containing an unexpanded
238 /// parameter pack. In this case, the unexpanded pack can occur anywhere,
239 /// including all the places where we normally wouldn't look. Within a
240 /// lambda, we don't propagate the 'contains unexpanded parameter pack' bit
241 /// outside an expression.
242 bool TraverseLambdaExpr(LambdaExpr *Lambda) {
243 // The ContainsUnexpandedParameterPack bit on a lambda is always correct,
244 // even if it's contained within another lambda.
245 if (!Lambda->containsUnexpandedParameterPack())
246 return true;
247
248 bool WasInLambda = InLambda;
249 unsigned OldDepthLimit = DepthLimit;
250
251 InLambda = true;
252 if (auto *TPL = Lambda->getTemplateParameterList())
253 DepthLimit = TPL->getDepth();
254
255 inherited::TraverseLambdaExpr(Lambda);
256
257 InLambda = WasInLambda;
258 DepthLimit = OldDepthLimit;
259 return true;
260 }
261
262 /// Suppress traversal within pack expansions in lambda captures.
263 bool TraverseLambdaCapture(LambdaExpr *Lambda, const LambdaCapture *C,
264 Expr *Init) {
265 if (C->isPackExpansion())
266 return true;
267
268 return inherited::TraverseLambdaCapture(Lambda, C, Init);
269 }
270 };
271}
272
273/// Determine whether it's possible for an unexpanded parameter pack to
274/// be valid in this location. This only happens when we're in a declaration
275/// that is nested within an expression that could be expanded, such as a
276/// lambda-expression within a function call.
277///
278/// This is conservatively correct, but may claim that some unexpanded packs are
279/// permitted when they are not.
280bool Sema::isUnexpandedParameterPackPermitted() {
281 for (auto *SI : FunctionScopes)
282 if (isa<sema::LambdaScopeInfo>(SI))
283 return true;
284 return false;
285}
286
287/// Diagnose all of the unexpanded parameter packs in the given
288/// vector.
289bool
290Sema::DiagnoseUnexpandedParameterPacks(SourceLocation Loc,
291 UnexpandedParameterPackContext UPPC,
292 ArrayRef<UnexpandedParameterPack> Unexpanded) {
293 if (Unexpanded.empty())
294 return false;
295
296 // If we are within a lambda expression and referencing a pack that is not
297 // declared within the lambda itself, that lambda contains an unexpanded
298 // parameter pack, and we are done.
299 // FIXME: Store 'Unexpanded' on the lambda so we don't need to recompute it
300 // later.
301 SmallVector<UnexpandedParameterPack, 4> LambdaParamPackReferences;
302 if (auto *LSI = getEnclosingLambda()) {
303 for (auto &Pack : Unexpanded) {
304 auto DeclaresThisPack = [&](NamedDecl *LocalPack) {
305 if (auto *TTPT = Pack.first.dyn_cast<const TemplateTypeParmType *>()) {
306 auto *TTPD = dyn_cast<TemplateTypeParmDecl>(LocalPack);
307 return TTPD && TTPD->getTypeForDecl() == TTPT;
308 }
309 return declaresSameEntity(Pack.first.get<NamedDecl *>(), LocalPack);
310 };
311 if (llvm::any_of(LSI->LocalPacks, DeclaresThisPack))
312 LambdaParamPackReferences.push_back(Pack);
313 }
314
315 if (LambdaParamPackReferences.empty()) {
316 // Construct in lambda only references packs declared outside the lambda.
317 // That's OK for now, but the lambda itself is considered to contain an
318 // unexpanded pack in this case, which will require expansion outside the
319 // lambda.
320
321 // We do not permit pack expansion that would duplicate a statement
322 // expression, not even within a lambda.
323 // FIXME: We could probably support this for statement expressions that
324 // do not contain labels.
325 // FIXME: This is insufficient to detect this problem; consider
326 // f( ({ bad: 0; }) + pack ... );
327 bool EnclosingStmtExpr = false;
328 for (unsigned N = FunctionScopes.size(); N; --N) {
329 sema::FunctionScopeInfo *Func = FunctionScopes[N-1];
330 if (llvm::any_of(
331 Func->CompoundScopes,
332 [](sema::CompoundScopeInfo &CSI) { return CSI.IsStmtExpr; })) {
333 EnclosingStmtExpr = true;
334 break;
335 }
336 // Coumpound-statements outside the lambda are OK for now; we'll check
337 // for those when we finish handling the lambda.
338 if (Func == LSI)
339 break;
340 }
341
342 if (!EnclosingStmtExpr) {
343 LSI->ContainsUnexpandedParameterPack = true;
344 return false;
345 }
346 } else {
347 Unexpanded = LambdaParamPackReferences;
348 }
349 }
350
351 SmallVector<SourceLocation, 4> Locations;
352 SmallVector<IdentifierInfo *, 4> Names;
353 llvm::SmallPtrSet<IdentifierInfo *, 4> NamesKnown;
354
355 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) {
356 IdentifierInfo *Name = nullptr;
357 if (const TemplateTypeParmType *TTP
358 = Unexpanded[I].first.dyn_cast<const TemplateTypeParmType *>())
359 Name = TTP->getIdentifier();
360 else
361 Name = Unexpanded[I].first.get<NamedDecl *>()->getIdentifier();
362
363 if (Name && NamesKnown.insert(Name).second)
364 Names.push_back(Name);
365
366 if (Unexpanded[I].second.isValid())
367 Locations.push_back(Unexpanded[I].second);
368 }
369
370 auto DB = Diag(Loc, diag::err_unexpanded_parameter_pack)
371 << (int)UPPC << (int)Names.size();
372 for (size_t I = 0, E = std::min(Names.size(), (size_t)2); I != E; ++I)
373 DB << Names[I];
374
375 for (unsigned I = 0, N = Locations.size(); I != N; ++I)
376 DB << SourceRange(Locations[I]);
377 return true;
378}
379
380bool Sema::DiagnoseUnexpandedParameterPack(SourceLocation Loc,
381 TypeSourceInfo *T,
382 UnexpandedParameterPackContext UPPC) {
383 // C++0x [temp.variadic]p5:
384 // An appearance of a name of a parameter pack that is not expanded is
385 // ill-formed.
386 if (!T->getType()->containsUnexpandedParameterPack())
387 return false;
388
389 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
390 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(
391 T->getTypeLoc());
392 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 392, __extension__
__PRETTY_FUNCTION__))
;
393 return DiagnoseUnexpandedParameterPacks(Loc, UPPC, Unexpanded);
394}
395
396bool Sema::DiagnoseUnexpandedParameterPack(Expr *E,
397 UnexpandedParameterPackContext UPPC) {
398 // C++0x [temp.variadic]p5:
399 // An appearance of a name of a parameter pack that is not expanded is
400 // ill-formed.
401 if (!E->containsUnexpandedParameterPack())
402 return false;
403
404 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
405 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseStmt(E);
406 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 406, __extension__
__PRETTY_FUNCTION__))
;
407 return DiagnoseUnexpandedParameterPacks(E->getBeginLoc(), UPPC, Unexpanded);
408}
409
410bool Sema::DiagnoseUnexpandedParameterPackInRequiresExpr(RequiresExpr *RE) {
411 if (!RE->containsUnexpandedParameterPack())
412 return false;
413
414 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
415 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseStmt(RE);
416 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 416, __extension__
__PRETTY_FUNCTION__))
;
417
418 // We only care about unexpanded references to the RequiresExpr's own
419 // parameter packs.
420 auto Parms = RE->getLocalParameters();
421 llvm::SmallPtrSet<NamedDecl*, 8> ParmSet(Parms.begin(), Parms.end());
422 SmallVector<UnexpandedParameterPack, 2> UnexpandedParms;
423 for (auto Parm : Unexpanded)
424 if (ParmSet.contains(Parm.first.dyn_cast<NamedDecl*>()))
425 UnexpandedParms.push_back(Parm);
426 if (UnexpandedParms.empty())
427 return false;
428
429 return DiagnoseUnexpandedParameterPacks(RE->getBeginLoc(), UPPC_Requirement,
430 UnexpandedParms);
431}
432
433bool Sema::DiagnoseUnexpandedParameterPack(const CXXScopeSpec &SS,
434 UnexpandedParameterPackContext UPPC) {
435 // C++0x [temp.variadic]p5:
436 // An appearance of a name of a parameter pack that is not expanded is
437 // ill-formed.
438 if (!SS.getScopeRep() ||
439 !SS.getScopeRep()->containsUnexpandedParameterPack())
440 return false;
441
442 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
443 CollectUnexpandedParameterPacksVisitor(Unexpanded)
444 .TraverseNestedNameSpecifier(SS.getScopeRep());
445 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 445, __extension__
__PRETTY_FUNCTION__))
;
446 return DiagnoseUnexpandedParameterPacks(SS.getRange().getBegin(),
447 UPPC, Unexpanded);
448}
449
450bool Sema::DiagnoseUnexpandedParameterPack(const DeclarationNameInfo &NameInfo,
451 UnexpandedParameterPackContext UPPC) {
452 // C++0x [temp.variadic]p5:
453 // An appearance of a name of a parameter pack that is not expanded is
454 // ill-formed.
455 switch (NameInfo.getName().getNameKind()) {
456 case DeclarationName::Identifier:
457 case DeclarationName::ObjCZeroArgSelector:
458 case DeclarationName::ObjCOneArgSelector:
459 case DeclarationName::ObjCMultiArgSelector:
460 case DeclarationName::CXXOperatorName:
461 case DeclarationName::CXXLiteralOperatorName:
462 case DeclarationName::CXXUsingDirective:
463 case DeclarationName::CXXDeductionGuideName:
464 return false;
465
466 case DeclarationName::CXXConstructorName:
467 case DeclarationName::CXXDestructorName:
468 case DeclarationName::CXXConversionFunctionName:
469 // FIXME: We shouldn't need this null check!
470 if (TypeSourceInfo *TSInfo = NameInfo.getNamedTypeInfo())
471 return DiagnoseUnexpandedParameterPack(NameInfo.getLoc(), TSInfo, UPPC);
472
473 if (!NameInfo.getName().getCXXNameType()->containsUnexpandedParameterPack())
474 return false;
475
476 break;
477 }
478
479 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
480 CollectUnexpandedParameterPacksVisitor(Unexpanded)
481 .TraverseType(NameInfo.getName().getCXXNameType());
482 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 482, __extension__
__PRETTY_FUNCTION__))
;
483 return DiagnoseUnexpandedParameterPacks(NameInfo.getLoc(), UPPC, Unexpanded);
484}
485
486bool Sema::DiagnoseUnexpandedParameterPack(SourceLocation Loc,
487 TemplateName Template,
488 UnexpandedParameterPackContext UPPC) {
489
490 if (Template.isNull() || !Template.containsUnexpandedParameterPack())
491 return false;
492
493 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
494 CollectUnexpandedParameterPacksVisitor(Unexpanded)
495 .TraverseTemplateName(Template);
496 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 496, __extension__
__PRETTY_FUNCTION__))
;
497 return DiagnoseUnexpandedParameterPacks(Loc, UPPC, Unexpanded);
498}
499
500bool Sema::DiagnoseUnexpandedParameterPack(TemplateArgumentLoc Arg,
501 UnexpandedParameterPackContext UPPC) {
502 if (Arg.getArgument().isNull() ||
503 !Arg.getArgument().containsUnexpandedParameterPack())
504 return false;
505
506 SmallVector<UnexpandedParameterPack, 2> Unexpanded;
507 CollectUnexpandedParameterPacksVisitor(Unexpanded)
508 .TraverseTemplateArgumentLoc(Arg);
509 assert(!Unexpanded.empty() && "Unable to find unexpanded parameter packs")(static_cast <bool> (!Unexpanded.empty() && "Unable to find unexpanded parameter packs"
) ? void (0) : __assert_fail ("!Unexpanded.empty() && \"Unable to find unexpanded parameter packs\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 509, __extension__
__PRETTY_FUNCTION__))
;
510 return DiagnoseUnexpandedParameterPacks(Arg.getLocation(), UPPC, Unexpanded);
511}
512
513void Sema::collectUnexpandedParameterPacks(TemplateArgument Arg,
514 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
515 CollectUnexpandedParameterPacksVisitor(Unexpanded)
516 .TraverseTemplateArgument(Arg);
517}
518
519void Sema::collectUnexpandedParameterPacks(TemplateArgumentLoc Arg,
520 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
521 CollectUnexpandedParameterPacksVisitor(Unexpanded)
522 .TraverseTemplateArgumentLoc(Arg);
523}
524
525void Sema::collectUnexpandedParameterPacks(QualType T,
526 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
527 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseType(T);
528}
529
530void Sema::collectUnexpandedParameterPacks(TypeLoc TL,
531 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
532 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseTypeLoc(TL);
533}
534
535void Sema::collectUnexpandedParameterPacks(
536 NestedNameSpecifierLoc NNS,
537 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
538 CollectUnexpandedParameterPacksVisitor(Unexpanded)
539 .TraverseNestedNameSpecifierLoc(NNS);
540}
541
542void Sema::collectUnexpandedParameterPacks(
543 const DeclarationNameInfo &NameInfo,
544 SmallVectorImpl<UnexpandedParameterPack> &Unexpanded) {
545 CollectUnexpandedParameterPacksVisitor(Unexpanded)
546 .TraverseDeclarationNameInfo(NameInfo);
547}
548
549
550ParsedTemplateArgument
551Sema::ActOnPackExpansion(const ParsedTemplateArgument &Arg,
552 SourceLocation EllipsisLoc) {
553 if (Arg.isInvalid())
554 return Arg;
555
556 switch (Arg.getKind()) {
557 case ParsedTemplateArgument::Type: {
558 TypeResult Result = ActOnPackExpansion(Arg.getAsType(), EllipsisLoc);
559 if (Result.isInvalid())
560 return ParsedTemplateArgument();
561
562 return ParsedTemplateArgument(Arg.getKind(), Result.get().getAsOpaquePtr(),
563 Arg.getLocation());
564 }
565
566 case ParsedTemplateArgument::NonType: {
567 ExprResult Result = ActOnPackExpansion(Arg.getAsExpr(), EllipsisLoc);
568 if (Result.isInvalid())
569 return ParsedTemplateArgument();
570
571 return ParsedTemplateArgument(Arg.getKind(), Result.get(),
572 Arg.getLocation());
573 }
574
575 case ParsedTemplateArgument::Template:
576 if (!Arg.getAsTemplate().get().containsUnexpandedParameterPack()) {
577 SourceRange R(Arg.getLocation());
578 if (Arg.getScopeSpec().isValid())
579 R.setBegin(Arg.getScopeSpec().getBeginLoc());
580 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
581 << R;
582 return ParsedTemplateArgument();
583 }
584
585 return Arg.getTemplatePackExpansion(EllipsisLoc);
586 }
587 llvm_unreachable("Unhandled template argument kind?")::llvm::llvm_unreachable_internal("Unhandled template argument kind?"
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 587)
;
588}
589
590TypeResult Sema::ActOnPackExpansion(ParsedType Type,
591 SourceLocation EllipsisLoc) {
592 TypeSourceInfo *TSInfo;
593 GetTypeFromParser(Type, &TSInfo);
594 if (!TSInfo)
595 return true;
596
597 TypeSourceInfo *TSResult = CheckPackExpansion(TSInfo, EllipsisLoc, None);
598 if (!TSResult)
599 return true;
600
601 return CreateParsedType(TSResult->getType(), TSResult);
602}
603
604TypeSourceInfo *
605Sema::CheckPackExpansion(TypeSourceInfo *Pattern, SourceLocation EllipsisLoc,
606 Optional<unsigned> NumExpansions) {
607 // Create the pack expansion type and source-location information.
608 QualType Result = CheckPackExpansion(Pattern->getType(),
609 Pattern->getTypeLoc().getSourceRange(),
610 EllipsisLoc, NumExpansions);
611 if (Result.isNull())
612 return nullptr;
613
614 TypeLocBuilder TLB;
615 TLB.pushFullCopy(Pattern->getTypeLoc());
616 PackExpansionTypeLoc TL = TLB.push<PackExpansionTypeLoc>(Result);
617 TL.setEllipsisLoc(EllipsisLoc);
618
619 return TLB.getTypeSourceInfo(Context, Result);
620}
621
622QualType Sema::CheckPackExpansion(QualType Pattern, SourceRange PatternRange,
623 SourceLocation EllipsisLoc,
624 Optional<unsigned> NumExpansions) {
625 // C++11 [temp.variadic]p5:
626 // The pattern of a pack expansion shall name one or more
627 // parameter packs that are not expanded by a nested pack
628 // expansion.
629 //
630 // A pattern containing a deduced type can't occur "naturally" but arises in
631 // the desugaring of an init-capture pack.
632 if (!Pattern->containsUnexpandedParameterPack() &&
633 !Pattern->getContainedDeducedType()) {
634 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
635 << PatternRange;
636 return QualType();
637 }
638
639 return Context.getPackExpansionType(Pattern, NumExpansions,
640 /*ExpectPackInType=*/false);
641}
642
643ExprResult Sema::ActOnPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc) {
644 return CheckPackExpansion(Pattern, EllipsisLoc, None);
645}
646
647ExprResult Sema::CheckPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc,
648 Optional<unsigned> NumExpansions) {
649 if (!Pattern)
650 return ExprError();
651
652 // C++0x [temp.variadic]p5:
653 // The pattern of a pack expansion shall name one or more
654 // parameter packs that are not expanded by a nested pack
655 // expansion.
656 if (!Pattern->containsUnexpandedParameterPack()) {
657 Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs)
658 << Pattern->getSourceRange();
659 CorrectDelayedTyposInExpr(Pattern);
660 return ExprError();
661 }
662
663 // Create the pack expansion expression and source-location information.
664 return new (Context)
665 PackExpansionExpr(Context.DependentTy, Pattern, EllipsisLoc, NumExpansions);
666}
667
668bool Sema::CheckParameterPacksForExpansion(
669 SourceLocation EllipsisLoc, SourceRange PatternRange,
670 ArrayRef<UnexpandedParameterPack> Unexpanded,
671 const MultiLevelTemplateArgumentList &TemplateArgs, bool &ShouldExpand,
672 bool &RetainExpansion, Optional<unsigned> &NumExpansions) {
673 ShouldExpand = true;
674 RetainExpansion = false;
675 std::pair<IdentifierInfo *, SourceLocation> FirstPack;
676 bool HaveFirstPack = false;
677 Optional<unsigned> NumPartialExpansions;
678 SourceLocation PartiallySubstitutedPackLoc;
679
680 for (ArrayRef<UnexpandedParameterPack>::iterator i = Unexpanded.begin(),
2
Loop condition is true. Entering loop body
14
Loop condition is true. Entering loop body
681 end = Unexpanded.end();
682 i != end; ++i) {
1
Assuming 'i' is not equal to 'end'
683 // Compute the depth and index for this parameter pack.
684 unsigned Depth = 0, Index = 0;
685 IdentifierInfo *Name;
686 bool IsVarDeclPack = false;
687
688 if (const TemplateTypeParmType *TTP
18.1
'TTP' is null
18.1
'TTP' is null
3
Assuming 'TTP' is non-null
4
Taking true branch
19
Taking false branch
689 = i->first.dyn_cast<const TemplateTypeParmType *>()) {
15
Calling 'PointerUnion::dyn_cast'
18
Returning from 'PointerUnion::dyn_cast'
690 Depth = TTP->getDepth(); 691 Index = TTP->getIndex(); 692 Name = TTP->getIdentifier(); 693 } else { 694 NamedDecl *ND = i->first.get<NamedDecl *>(); 695 if (isa<VarDecl>(ND))
20
Assuming 'ND' is a 'VarDecl'
21
Taking true branch
696 IsVarDeclPack = true; 697 else 698 std::tie(Depth, Index) = getDepthAndIndex(ND); 699 700 Name = ND->getIdentifier(); 701 } 702 703 // Determine the size of this argument pack. 704 unsigned NewPackSize; 705 if (IsVarDeclPack
4.1
'IsVarDeclPack' is false
21.1
'IsVarDeclPack' is true
4.1
'IsVarDeclPack' is false
21.1
'IsVarDeclPack' is true
) {
22
Taking true branch
706 // Figure out whether we're instantiating to an argument pack or not. 707 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack; 708 709 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation 710 = CurrentInstantiationScope->findInstantiationOf(
23
Called C++ object pointer is null
711 i->first.get<NamedDecl *>()); 712 if (Instantiation->is<DeclArgumentPack *>()) { 713 // We could expand this function parameter pack. 714 NewPackSize = Instantiation->get<DeclArgumentPack *>()->size(); 715 } else { 716 // We can't expand this function parameter pack, so we can't expand 717 // the pack expansion. 718 ShouldExpand = false; 719 continue; 720 } 721 } else { 722 // If we don't have a template argument at this depth/index, then we 723 // cannot expand the pack expansion. Make a note of this, but we still 724 // want to check any parameter packs we *do* have arguments for. 725 if (Depth >= TemplateArgs.getNumLevels() ||
5
Assuming the condition is false
6
Taking false branch
726 !TemplateArgs.hasTemplateArgument(Depth, Index)) { 727 ShouldExpand = false; 728 continue; 729 } 730 731 // Determine the size of the argument pack. 732 NewPackSize = TemplateArgs(Depth, Index).pack_size(); 733 } 734 735 // C++0x [temp.arg.explicit]p9: 736 // Template argument deduction can extend the sequence of template 737 // arguments corresponding to a template parameter pack, even when the 738 // sequence contains explicitly specified template arguments. 739 if (!IsVarDeclPack
6.1
'IsVarDeclPack' is false
6.1
'IsVarDeclPack' is false
&& CurrentInstantiationScope
) {
7
Assuming field 'CurrentInstantiationScope' is null
8
Assuming pointer value is null
9
Taking false branch
740 if (NamedDecl *PartialPack 741 = CurrentInstantiationScope->getPartiallySubstitutedPack()){ 742 unsigned PartialDepth, PartialIndex; 743 std::tie(PartialDepth, PartialIndex) = getDepthAndIndex(PartialPack); 744 if (PartialDepth == Depth && PartialIndex == Index) { 745 RetainExpansion = true; 746 // We don't actually know the new pack size yet. 747 NumPartialExpansions = NewPackSize; 748 PartiallySubstitutedPackLoc = i->second; 749 continue; 750 } 751 } 752 } 753 754 if (!NumExpansions) {
10
Assuming the condition is false
11
Taking false branch
755 // The is the first pack we've seen for which we have an argument. 756 // Record it. 757 NumExpansions = NewPackSize; 758 FirstPack.first = Name; 759 FirstPack.second = i->second; 760 HaveFirstPack = true; 761 continue; 762 } 763 764 if (NewPackSize != *NumExpansions) {
12
Assuming the condition is false
13
Taking false branch
765 // C++0x [temp.variadic]p5: 766 // All of the parameter packs expanded by a pack expansion shall have 767 // the same number of arguments specified. 768 if (HaveFirstPack) 769 Diag(EllipsisLoc, diag::err_pack_expansion_length_conflict) 770 << FirstPack.first << Name << *NumExpansions << NewPackSize 771 << SourceRange(FirstPack.second) << SourceRange(i->second); 772 else 773 Diag(EllipsisLoc, diag::err_pack_expansion_length_conflict_multilevel) 774 << Name << *NumExpansions << NewPackSize 775 << SourceRange(i->second); 776 return true; 777 } 778 } 779 780 // If we're performing a partial expansion but we also have a full expansion, 781 // expand to the number of common arguments. For example, given: 782 // 783 // template<typename ...T> struct A { 784 // template<typename ...U> void f(pair<T, U>...); 785 // }; 786 // 787 // ... a call to 'A<int, int>().f<int>' should expand the pack once and 788 // retain an expansion. 789 if (NumPartialExpansions) { 790 if (NumExpansions && *NumExpansions < *NumPartialExpansions) { 791 NamedDecl *PartialPack = 792 CurrentInstantiationScope->getPartiallySubstitutedPack(); 793 Diag(EllipsisLoc, diag::err_pack_expansion_length_conflict_partial) 794 << PartialPack << *NumPartialExpansions << *NumExpansions 795 << SourceRange(PartiallySubstitutedPackLoc); 796 return true; 797 } 798 799 NumExpansions = NumPartialExpansions; 800 } 801 802 return false; 803} 804 805Optional<unsigned> Sema::getNumArgumentsInExpansion(QualType T, 806 const MultiLevelTemplateArgumentList &TemplateArgs) { 807 QualType Pattern = cast<PackExpansionType>(T)->getPattern(); 808 SmallVector<UnexpandedParameterPack, 2> Unexpanded; 809 CollectUnexpandedParameterPacksVisitor(Unexpanded).TraverseType(Pattern); 810 811 Optional<unsigned> Result; 812 for (unsigned I = 0, N = Unexpanded.size(); I != N; ++I) { 813 // Compute the depth and index for this parameter pack. 814 unsigned Depth; 815 unsigned Index; 816 817 if (const TemplateTypeParmType *TTP 818 = Unexpanded[I].first.dyn_cast<const TemplateTypeParmType *>()) { 819 Depth = TTP->getDepth(); 820 Index = TTP->getIndex(); 821 } else { 822 NamedDecl *ND = Unexpanded[I].first.get<NamedDecl *>(); 823 if (isa<VarDecl>(ND)) { 824 // Function parameter pack or init-capture pack. 825 typedef LocalInstantiationScope::DeclArgumentPack DeclArgumentPack; 826 827 llvm::PointerUnion<Decl *, DeclArgumentPack *> *Instantiation 828 = CurrentInstantiationScope->findInstantiationOf( 829 Unexpanded[I].first.get<NamedDecl *>()); 830 if (Instantiation->is<Decl*>()) 831 // The pattern refers to an unexpanded pack. We're not ready to expand 832 // this pack yet. 833 return None; 834 835 unsigned Size = Instantiation->get<DeclArgumentPack *>()->size(); 836 assert((!Result || *Result == Size) && "inconsistent pack sizes")(static_cast <bool> ((!Result || *Result == Size) &&
"inconsistent pack sizes") ? void (0) : __assert_fail ("(!Result || *Result == Size) && \"inconsistent pack sizes\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 836, __extension__
__PRETTY_FUNCTION__))
; 837 Result = Size; 838 continue; 839 } 840 841 std::tie(Depth, Index) = getDepthAndIndex(ND); 842 } 843 if (Depth >= TemplateArgs.getNumLevels() || 844 !TemplateArgs.hasTemplateArgument(Depth, Index)) 845 // The pattern refers to an unknown template argument. We're not ready to 846 // expand this pack yet. 847 return None; 848 849 // Determine the size of the argument pack. 850 unsigned Size = TemplateArgs(Depth, Index).pack_size(); 851 assert((!Result || *Result == Size) && "inconsistent pack sizes")(static_cast <bool> ((!Result || *Result == Size) &&
"inconsistent pack sizes") ? void (0) : __assert_fail ("(!Result || *Result == Size) && \"inconsistent pack sizes\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 851, __extension__
__PRETTY_FUNCTION__))
; 852 Result = Size; 853 } 854 855 return Result; 856} 857 858bool Sema::containsUnexpandedParameterPacks(Declarator &D) { 859 const DeclSpec &DS = D.getDeclSpec(); 860 switch (DS.getTypeSpecType()) { 861 case TST_typename: 862 case TST_typeofType: 863 case TST_underlyingType: 864 case TST_atomic: { 865 QualType T = DS.getRepAsType().get(); 866 if (!T.isNull() && T->containsUnexpandedParameterPack()) 867 return true; 868 break; 869 } 870 871 case TST_typeofExpr: 872 case TST_decltype: 873 case TST_bitint: 874 if (DS.getRepAsExpr() && 875 DS.getRepAsExpr()->containsUnexpandedParameterPack()) 876 return true; 877 break; 878 879 case TST_unspecified: 880 case TST_void: 881 case TST_char: 882 case TST_wchar: 883 case TST_char8: 884 case TST_char16: 885 case TST_char32: 886 case TST_int: 887 case TST_int128: 888 case TST_half: 889 case TST_float: 890 case TST_double: 891 case TST_Accum: 892 case TST_Fract: 893 case TST_Float16: 894 case TST_float128: 895 case TST_ibm128: 896 case TST_bool: 897 case TST_decimal32: 898 case TST_decimal64: 899 case TST_decimal128: 900 case TST_enum: 901 case TST_union: 902 case TST_struct: 903 case TST_interface: 904 case TST_class: 905 case TST_auto: 906 case TST_auto_type: 907 case TST_decltype_auto: 908 case TST_BFloat16: 909#define GENERIC_IMAGE_TYPE(ImgType, Id) case TST_##ImgType##_t: 910#include "clang/Basic/OpenCLImageTypes.def" 911 case TST_unknown_anytype: 912 case TST_error: 913 break; 914 } 915 916 for (unsigned I = 0, N = D.getNumTypeObjects(); I != N; ++I) { 917 const DeclaratorChunk &Chunk = D.getTypeObject(I); 918 switch (Chunk.Kind) { 919 case DeclaratorChunk::Pointer: 920 case DeclaratorChunk::Reference: 921 case DeclaratorChunk::Paren: 922 case DeclaratorChunk::Pipe: 923 case DeclaratorChunk::BlockPointer: 924 // These declarator chunks cannot contain any parameter packs. 925 break; 926 927 case DeclaratorChunk::Array: 928 if (Chunk.Arr.NumElts && 929 Chunk.Arr.NumElts->containsUnexpandedParameterPack()) 930 return true; 931 break; 932 case DeclaratorChunk::Function: 933 for (unsigned i = 0, e = Chunk.Fun.NumParams; i != e; ++i) { 934 ParmVarDecl *Param = cast<ParmVarDecl>(Chunk.Fun.Params[i].Param); 935 QualType ParamTy = Param->getType(); 936 assert(!ParamTy.isNull() && "Couldn't parse type?")(static_cast <bool> (!ParamTy.isNull() && "Couldn't parse type?"
) ? void (0) : __assert_fail ("!ParamTy.isNull() && \"Couldn't parse type?\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 936, __extension__
__PRETTY_FUNCTION__))
; 937 if (ParamTy->containsUnexpandedParameterPack()) return true; 938 } 939 940 if (Chunk.Fun.getExceptionSpecType() == EST_Dynamic) { 941 for (unsigned i = 0; i != Chunk.Fun.getNumExceptions(); ++i) { 942 if (Chunk.Fun.Exceptions[i] 943 .Ty.get() 944 ->containsUnexpandedParameterPack()) 945 return true; 946 } 947 } else if (isComputedNoexcept(Chunk.Fun.getExceptionSpecType()) && 948 Chunk.Fun.NoexceptExpr->containsUnexpandedParameterPack()) 949 return true; 950 951 if (Chunk.Fun.hasTrailingReturnType()) { 952 QualType T = Chunk.Fun.getTrailingReturnType().get(); 953 if (!T.isNull() && T->containsUnexpandedParameterPack()) 954 return true; 955 } 956 break; 957 958 case DeclaratorChunk::MemberPointer: 959 if (Chunk.Mem.Scope().getScopeRep() && 960 Chunk.Mem.Scope().getScopeRep()->containsUnexpandedParameterPack()) 961 return true; 962 break; 963 } 964 } 965 966 if (Expr *TRC = D.getTrailingRequiresClause()) 967 if (TRC->containsUnexpandedParameterPack()) 968 return true; 969 970 return false; 971} 972 973namespace { 974 975// Callback to only accept typo corrections that refer to parameter packs. 976class ParameterPackValidatorCCC final : public CorrectionCandidateCallback { 977 public: 978 bool ValidateCandidate(const TypoCorrection &candidate) override { 979 NamedDecl *ND = candidate.getCorrectionDecl(); 980 return ND && ND->isParameterPack(); 981 } 982 983 std::unique_ptr<CorrectionCandidateCallback> clone() override { 984 return std::make_unique<ParameterPackValidatorCCC>(*this); 985 } 986}; 987 988} 989 990/// Called when an expression computing the size of a parameter pack 991/// is parsed. 992/// 993/// \code 994/// template<typename ...Types> struct count { 995/// static const unsigned value = sizeof...(Types); 996/// }; 997/// \endcode 998/// 999// 1000/// \param OpLoc The location of the "sizeof" keyword. 1001/// \param Name The name of the parameter pack whose size will be determined. 1002/// \param NameLoc The source location of the name of the parameter pack. 1003/// \param RParenLoc The location of the closing parentheses. 1004ExprResult Sema::ActOnSizeofParameterPackExpr(Scope *S, 1005 SourceLocation OpLoc, 1006 IdentifierInfo &Name, 1007 SourceLocation NameLoc, 1008 SourceLocation RParenLoc) { 1009 // C++0x [expr.sizeof]p5: 1010 // The identifier in a sizeof... expression shall name a parameter pack. 1011 LookupResult R(*this, &Name, NameLoc, LookupOrdinaryName); 1012 LookupName(R, S); 1013 1014 NamedDecl *ParameterPack = nullptr; 1015 switch (R.getResultKind()) { 1016 case LookupResult::Found: 1017 ParameterPack = R.getFoundDecl(); 1018 break; 1019 1020 case LookupResult::NotFound: 1021 case LookupResult::NotFoundInCurrentInstantiation: { 1022 ParameterPackValidatorCCC CCC{}; 1023 if (TypoCorrection Corrected = 1024 CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S, nullptr, 1025 CCC, CTK_ErrorRecovery)) { 1026 diagnoseTypo(Corrected, 1027 PDiag(diag::err_sizeof_pack_no_pack_name_suggest) << &Name, 1028 PDiag(diag::note_parameter_pack_here)); 1029 ParameterPack = Corrected.getCorrectionDecl(); 1030 } 1031 break; 1032 } 1033 case LookupResult::FoundOverloaded: 1034 case LookupResult::FoundUnresolvedValue: 1035 break; 1036 1037 case LookupResult::Ambiguous: 1038 DiagnoseAmbiguousLookup(R); 1039 return ExprError(); 1040 } 1041 1042 if (!ParameterPack || !ParameterPack->isParameterPack()) { 1043 Diag(NameLoc, diag::err_sizeof_pack_no_pack_name) 1044 << &Name; 1045 return ExprError(); 1046 } 1047 1048 MarkAnyDeclReferenced(OpLoc, ParameterPack, true); 1049 1050 return SizeOfPackExpr::Create(Context, OpLoc, ParameterPack, NameLoc, 1051 RParenLoc); 1052} 1053 1054TemplateArgumentLoc 1055Sema::getTemplateArgumentPackExpansionPattern( 1056 TemplateArgumentLoc OrigLoc, 1057 SourceLocation &Ellipsis, Optional<unsigned> &NumExpansions) const { 1058 const TemplateArgument &Argument = OrigLoc.getArgument(); 1059 assert(Argument.isPackExpansion())(static_cast <bool> (Argument.isPackExpansion()) ? void
(0) : __assert_fail ("Argument.isPackExpansion()", "clang/lib/Sema/SemaTemplateVariadic.cpp"
, 1059, __extension__ __PRETTY_FUNCTION__))
; 1060 switch (Argument.getKind()) { 1061 case TemplateArgument::Type: { 1062 // FIXME: We shouldn't ever have to worry about missing 1063 // type-source info! 1064 TypeSourceInfo *ExpansionTSInfo = OrigLoc.getTypeSourceInfo(); 1065 if (!ExpansionTSInfo) 1066 ExpansionTSInfo = Context.getTrivialTypeSourceInfo(Argument.getAsType(), 1067 Ellipsis); 1068 PackExpansionTypeLoc Expansion = 1069 ExpansionTSInfo->getTypeLoc().castAs<PackExpansionTypeLoc>(); 1070 Ellipsis = Expansion.getEllipsisLoc(); 1071 1072 TypeLoc Pattern = Expansion.getPatternLoc(); 1073 NumExpansions = Expansion.getTypePtr()->getNumExpansions(); 1074 1075 // We need to copy the TypeLoc because TemplateArgumentLocs store a 1076 // TypeSourceInfo. 1077 // FIXME: Find some way to avoid the copy? 1078 TypeLocBuilder TLB; 1079 TLB.pushFullCopy(Pattern); 1080 TypeSourceInfo *PatternTSInfo = 1081 TLB.getTypeSourceInfo(Context, Pattern.getType()); 1082 return TemplateArgumentLoc(TemplateArgument(Pattern.getType()), 1083 PatternTSInfo); 1084 } 1085 1086 case TemplateArgument::Expression: { 1087 PackExpansionExpr *Expansion 1088 = cast<PackExpansionExpr>(Argument.getAsExpr()); 1089 Expr *Pattern = Expansion->getPattern(); 1090 Ellipsis = Expansion->getEllipsisLoc(); 1091 NumExpansions = Expansion->getNumExpansions(); 1092 return TemplateArgumentLoc(Pattern, Pattern); 1093 } 1094 1095 case TemplateArgument::TemplateExpansion: 1096 Ellipsis = OrigLoc.getTemplateEllipsisLoc(); 1097 NumExpansions = Argument.getNumTemplateExpansions(); 1098 return TemplateArgumentLoc(Context, Argument.getPackExpansionPattern(), 1099 OrigLoc.getTemplateQualifierLoc(), 1100 OrigLoc.getTemplateNameLoc()); 1101 1102 case TemplateArgument::Declaration: 1103 case TemplateArgument::NullPtr: 1104 case TemplateArgument::Template: 1105 case TemplateArgument::Integral: 1106 case TemplateArgument::Pack: 1107 case TemplateArgument::Null: 1108 return TemplateArgumentLoc(); 1109 } 1110 1111 llvm_unreachable("Invalid TemplateArgument Kind!")::llvm::llvm_unreachable_internal("Invalid TemplateArgument Kind!"
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 1111)
; 1112} 1113 1114Optional<unsigned> Sema::getFullyPackExpandedSize(TemplateArgument Arg) { 1115 assert(Arg.containsUnexpandedParameterPack())(static_cast <bool> (Arg.containsUnexpandedParameterPack
()) ? void (0) : __assert_fail ("Arg.containsUnexpandedParameterPack()"
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 1115, __extension__
__PRETTY_FUNCTION__))
; 1116 1117 // If this is a substituted pack, grab that pack. If not, we don't know 1118 // the size yet. 1119 // FIXME: We could find a size in more cases by looking for a substituted 1120 // pack anywhere within this argument, but that's not necessary in the common 1121 // case for 'sizeof...(A)' handling. 1122 TemplateArgument Pack; 1123 switch (Arg.getKind()) { 1124 case TemplateArgument::Type: 1125 if (auto *Subst = Arg.getAsType()->getAs<SubstTemplateTypeParmPackType>()) 1126 Pack = Subst->getArgumentPack(); 1127 else 1128 return None; 1129 break; 1130 1131 case TemplateArgument::Expression: 1132 if (auto *Subst = 1133 dyn_cast<SubstNonTypeTemplateParmPackExpr>(Arg.getAsExpr())) 1134 Pack = Subst->getArgumentPack(); 1135 else if (auto *Subst = dyn_cast<FunctionParmPackExpr>(Arg.getAsExpr())) { 1136 for (VarDecl *PD : *Subst) 1137 if (PD->isParameterPack()) 1138 return None; 1139 return Subst->getNumExpansions(); 1140 } else 1141 return None; 1142 break; 1143 1144 case TemplateArgument::Template: 1145 if (SubstTemplateTemplateParmPackStorage *Subst = 1146 Arg.getAsTemplate().getAsSubstTemplateTemplateParmPack()) 1147 Pack = Subst->getArgumentPack(); 1148 else 1149 return None; 1150 break; 1151 1152 case TemplateArgument::Declaration: 1153 case TemplateArgument::NullPtr: 1154 case TemplateArgument::TemplateExpansion: 1155 case TemplateArgument::Integral: 1156 case TemplateArgument::Pack: 1157 case TemplateArgument::Null: 1158 return None; 1159 } 1160 1161 // Check that no argument in the pack is itself a pack expansion. 1162 for (TemplateArgument Elem : Pack.pack_elements()) { 1163 // There's no point recursing in this case; we would have already 1164 // expanded this pack expansion into the enclosing pack if we could. 1165 if (Elem.isPackExpansion()) 1166 return None; 1167 } 1168 return Pack.pack_size(); 1169} 1170 1171static void CheckFoldOperand(Sema &S, Expr *E) { 1172 if (!E) 1173 return; 1174 1175 E = E->IgnoreImpCasts(); 1176 auto *OCE = dyn_cast<CXXOperatorCallExpr>(E); 1177 if ((OCE && OCE->isInfixBinaryOp()) || isa<BinaryOperator>(E) || 1178 isa<AbstractConditionalOperator>(E)) { 1179 S.Diag(E->getExprLoc(), diag::err_fold_expression_bad_operand) 1180 << E->getSourceRange() 1181 << FixItHint::CreateInsertion(E->getBeginLoc(), "(") 1182 << FixItHint::CreateInsertion(E->getEndLoc(), ")"); 1183 } 1184} 1185 1186ExprResult Sema::ActOnCXXFoldExpr(Scope *S, SourceLocation LParenLoc, Expr *LHS, 1187 tok::TokenKind Operator, 1188 SourceLocation EllipsisLoc, Expr *RHS, 1189 SourceLocation RParenLoc) { 1190 // LHS and RHS must be cast-expressions. We allow an arbitrary expression 1191 // in the parser and reduce down to just cast-expressions here. 1192 CheckFoldOperand(*this, LHS); 1193 CheckFoldOperand(*this, RHS); 1194 1195 auto DiscardOperands = [&] { 1196 CorrectDelayedTyposInExpr(LHS); 1197 CorrectDelayedTyposInExpr(RHS); 1198 }; 1199 1200 // [expr.prim.fold]p3: 1201 // In a binary fold, op1 and op2 shall be the same fold-operator, and 1202 // either e1 shall contain an unexpanded parameter pack or e2 shall contain 1203 // an unexpanded parameter pack, but not both. 1204 if (LHS && RHS && 1205 LHS->containsUnexpandedParameterPack() == 1206 RHS->containsUnexpandedParameterPack()) { 1207 DiscardOperands(); 1208 return Diag(EllipsisLoc, 1209 LHS->containsUnexpandedParameterPack() 1210 ? diag::err_fold_expression_packs_both_sides 1211 : diag::err_pack_expansion_without_parameter_packs) 1212 << LHS->getSourceRange() << RHS->getSourceRange(); 1213 } 1214 1215 // [expr.prim.fold]p2: 1216 // In a unary fold, the cast-expression shall contain an unexpanded 1217 // parameter pack. 1218 if (!LHS || !RHS) { 1219 Expr *Pack = LHS ? LHS : RHS; 1220 assert(Pack && "fold expression with neither LHS nor RHS")(static_cast <bool> (Pack && "fold expression with neither LHS nor RHS"
) ? void (0) : __assert_fail ("Pack && \"fold expression with neither LHS nor RHS\""
, "clang/lib/Sema/SemaTemplateVariadic.cpp", 1220, __extension__
__PRETTY_FUNCTION__))
; 1221 DiscardOperands(); 1222 if (!Pack->containsUnexpandedParameterPack()) 1223 return Diag(EllipsisLoc, diag::err_pack_expansion_without_parameter_packs) 1224 << Pack->getSourceRange(); 1225 } 1226 1227 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator); 1228 1229 // Perform first-phase name lookup now. 1230 UnresolvedLookupExpr *ULE = nullptr; 1231 { 1232 UnresolvedSet<16> Functions; 1233 LookupBinOp(S, EllipsisLoc, Opc, Functions); 1234 if (!Functions.empty()) { 1235 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName( 1236 BinaryOperator::getOverloadedOperator(Opc)); 1237 ExprResult Callee = CreateUnresolvedLookupExpr( 1238 /*NamingClass*/ nullptr, NestedNameSpecifierLoc(), 1239 DeclarationNameInfo(OpName, EllipsisLoc), Functions); 1240 if (Callee.isInvalid()) 1241 return ExprError(); 1242 ULE = cast<UnresolvedLookupExpr>(Callee.get()); 1243 } 1244 } 1245 1246 return BuildCXXFoldExpr(ULE, LParenLoc, LHS, Opc, EllipsisLoc, RHS, RParenLoc, 1247 None); 1248} 1249 1250ExprResult Sema::BuildCXXFoldExpr(UnresolvedLookupExpr *Callee, 1251 SourceLocation LParenLoc, Expr *LHS, 1252 BinaryOperatorKind Operator, 1253 SourceLocation EllipsisLoc, Expr *RHS, 1254 SourceLocation RParenLoc, 1255 Optional<unsigned> NumExpansions) { 1256 return new (Context) 1257 CXXFoldExpr(Context.DependentTy, Callee, LParenLoc, LHS, Operator, 1258 EllipsisLoc, RHS, RParenLoc, NumExpansions); 1259} 1260 1261ExprResult Sema::BuildEmptyCXXFoldExpr(SourceLocation EllipsisLoc, 1262 BinaryOperatorKind Operator) { 1263 // [temp.variadic]p9: 1264 // If N is zero for a unary fold-expression, the value of the expression is 1265 // && -> true 1266 // || -> false 1267 // , -> void() 1268 // if the operator is not listed [above], the instantiation is ill-formed. 1269 // 1270 // Note that we need to use something like int() here, not merely 0, to 1271 // prevent the result from being a null pointer constant. 1272 QualType ScalarType; 1273 switch (Operator) { 1274 case BO_LOr: 1275 return ActOnCXXBoolLiteral(EllipsisLoc, tok::kw_false); 1276 case BO_LAnd: 1277 return ActOnCXXBoolLiteral(EllipsisLoc, tok::kw_true); 1278 case BO_Comma: 1279 ScalarType = Context.VoidTy; 1280 break; 1281 1282 default: 1283 return Diag(EllipsisLoc, diag::err_fold_expression_empty) 1284 << BinaryOperator::getOpcodeStr(Operator); 1285 } 1286 1287 return new (Context) CXXScalarValueInitExpr( 1288 ScalarType, Context.getTrivialTypeSourceInfo(ScalarType, EllipsisLoc), 1289 EllipsisLoc); 1290}

/build/llvm-toolchain-snapshot-15~++20220420111733+e13d2efed663/llvm/include/llvm/ADT/PointerUnion.h

1//===- llvm/ADT/PointerUnion.h - Discriminated Union of 2 Ptrs --*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file defines the PointerUnion class, which is a discriminated union of
11/// pointer types.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_ADT_POINTERUNION_H
16#define LLVM_ADT_POINTERUNION_H
17
18#include "llvm/ADT/DenseMapInfo.h"
19#include "llvm/ADT/PointerIntPair.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/Support/PointerLikeTypeTraits.h"
22#include <algorithm>
23#include <cassert>
24#include <cstddef>
25#include <cstdint>
26
27namespace llvm {
28
29namespace pointer_union_detail {
30 /// Determine the number of bits required to store integers with values < n.
31 /// This is ceil(log2(n)).
32 constexpr int bitsRequired(unsigned n) {
33 return n > 1 ? 1 + bitsRequired((n + 1) / 2) : 0;
34 }
35
36 template <typename... Ts> constexpr int lowBitsAvailable() {
37 return std::min<int>({PointerLikeTypeTraits<Ts>::NumLowBitsAvailable...});
38 }
39
40 /// Find the first type in a list of types.
41 template <typename T, typename...> struct GetFirstType {
42 using type = T;
43 };
44
45 /// Provide PointerLikeTypeTraits for void* that is used by PointerUnion
46 /// for the template arguments.
47 template <typename ...PTs> class PointerUnionUIntTraits {
48 public:
49 static inline void *getAsVoidPointer(void *P) { return P; }
50 static inline void *getFromVoidPointer(void *P) { return P; }
51 static constexpr int NumLowBitsAvailable = lowBitsAvailable<PTs...>();
52 };
53
54 template <typename Derived, typename ValTy, int I, typename ...Types>
55 class PointerUnionMembers;
56
57 template <typename Derived, typename ValTy, int I>
58 class PointerUnionMembers<Derived, ValTy, I> {
59 protected:
60 ValTy Val;
61 PointerUnionMembers() = default;
62 PointerUnionMembers(ValTy Val) : Val(Val) {}
63
64 friend struct PointerLikeTypeTraits<Derived>;
65 };
66
67 template <typename Derived, typename ValTy, int I, typename Type,
68 typename ...Types>
69 class PointerUnionMembers<Derived, ValTy, I, Type, Types...>
70 : public PointerUnionMembers<Derived, ValTy, I + 1, Types...> {
71 using Base = PointerUnionMembers<Derived, ValTy, I + 1, Types...>;
72 public:
73 using Base::Base;
74 PointerUnionMembers() = default;
75 PointerUnionMembers(Type V)
76 : Base(ValTy(const_cast<void *>(
77 PointerLikeTypeTraits<Type>::getAsVoidPointer(V)),
78 I)) {}
79
80 using Base::operator=;
81 Derived &operator=(Type V) {
82 this->Val = ValTy(
83 const_cast<void *>(PointerLikeTypeTraits<Type>::getAsVoidPointer(V)),
84 I);
85 return static_cast<Derived &>(*this);
86 };
87 };
88}
89
90/// A discriminated union of two or more pointer types, with the discriminator
91/// in the low bit of the pointer.
92///
93/// This implementation is extremely efficient in space due to leveraging the
94/// low bits of the pointer, while exposing a natural and type-safe API.
95///
96/// Common use patterns would be something like this:
97/// PointerUnion<int*, float*> P;
98/// P = (int*)0;
99/// printf("%d %d", P.is<int*>(), P.is<float*>()); // prints "1 0"
100/// X = P.get<int*>(); // ok.
101/// Y = P.get<float*>(); // runtime assertion failure.
102/// Z = P.get<double*>(); // compile time failure.
103/// P = (float*)0;
104/// Y = P.get<float*>(); // ok.
105/// X = P.get<int*>(); // runtime assertion failure.
106/// PointerUnion<int*, int*> Q; // compile time failure.
107template <typename... PTs>
108class PointerUnion
109 : public pointer_union_detail::PointerUnionMembers<
110 PointerUnion<PTs...>,
111 PointerIntPair<
112 void *, pointer_union_detail::bitsRequired(sizeof...(PTs)), int,
113 pointer_union_detail::PointerUnionUIntTraits<PTs...>>,
114 0, PTs...> {
115 static_assert(TypesAreDistinct<PTs...>::value,
116 "PointerUnion alternative types cannot be repeated");
117 // The first type is special because we want to directly cast a pointer to a
118 // default-initialized union to a pointer to the first type. But we don't
119 // want PointerUnion to be a 'template <typename First, typename ...Rest>'
120 // because it's much more convenient to have a name for the whole pack. So
121 // split off the first type here.
122 using First = TypeAtIndex<0, PTs...>;
123 using Base = typename PointerUnion::PointerUnionMembers;
124
125public:
126 PointerUnion() = default;
127
128 PointerUnion(std::nullptr_t) : PointerUnion() {}
129 using Base::Base;
130
131 /// Test if the pointer held in the union is null, regardless of
132 /// which type it is.
133 bool isNull() const { return !this->Val.getPointer(); }
134
135 explicit operator bool() const { return !isNull(); }
136
137 /// Test if the Union currently holds the type matching T.
138 template <typename T> bool is() const {
139 return this->Val.getInt() == FirstIndexOfType<T, PTs...>::value;
140 }
141
142 /// Returns the value of the specified pointer type.
143 ///
144 /// If the specified pointer type is incorrect, assert.
145 template <typename T> T get() const {
146 assert(is<T>() && "Invalid accessor called")(static_cast <bool> (is<T>() && "Invalid accessor called"
) ? void (0) : __assert_fail ("is<T>() && \"Invalid accessor called\""
, "llvm/include/llvm/ADT/PointerUnion.h", 146, __extension__ __PRETTY_FUNCTION__
))
;
147 return PointerLikeTypeTraits<T>::getFromVoidPointer(this->Val.getPointer());
148 }
149
150 /// Returns the current pointer if it is of the specified pointer type,
151 /// otherwise returns null.
152 template <typename T> T dyn_cast() const {
153 if (is<T>())
16
Taking false branch
154 return get<T>();
155 return T();
17
Returning null pointer, which participates in a condition later
156 }
157
158 /// If the union is set to the first pointer type get an address pointing to
159 /// it.
160 First const *getAddrOfPtr1() const {
161 return const_cast<PointerUnion *>(this)->getAddrOfPtr1();
162 }
163
164 /// If the union is set to the first pointer type get an address pointing to
165 /// it.
166 First *getAddrOfPtr1() {
167 assert(is<First>() && "Val is not the first pointer")(static_cast <bool> (is<First>() && "Val is not the first pointer"
) ? void (0) : __assert_fail ("is<First>() && \"Val is not the first pointer\""
, "llvm/include/llvm/ADT/PointerUnion.h", 167, __extension__ __PRETTY_FUNCTION__
))
;
168 assert((static_cast <bool> (PointerLikeTypeTraits<First>
::getAsVoidPointer(get<First>()) == this->Val.getPointer
() && "Can't get the address because PointerLikeTypeTraits changes the ptr"
) ? void (0) : __assert_fail ("PointerLikeTypeTraits<First>::getAsVoidPointer(get<First>()) == this->Val.getPointer() && \"Can't get the address because PointerLikeTypeTraits changes the ptr\""
, "llvm/include/llvm/ADT/PointerUnion.h", 171, __extension__ __PRETTY_FUNCTION__
))
169 PointerLikeTypeTraits<First>::getAsVoidPointer(get<First>()) ==(static_cast <bool> (PointerLikeTypeTraits<First>
::getAsVoidPointer(get<First>()) == this->Val.getPointer
() && "Can't get the address because PointerLikeTypeTraits changes the ptr"
) ? void (0) : __assert_fail ("PointerLikeTypeTraits<First>::getAsVoidPointer(get<First>()) == this->Val.getPointer() && \"Can't get the address because PointerLikeTypeTraits changes the ptr\""
, "llvm/include/llvm/ADT/PointerUnion.h", 171, __extension__ __PRETTY_FUNCTION__
))
170 this->Val.getPointer() &&(static_cast <bool> (PointerLikeTypeTraits<First>
::getAsVoidPointer(get<First>()) == this->Val.getPointer
() && "Can't get the address because PointerLikeTypeTraits changes the ptr"
) ? void (0) : __assert_fail ("PointerLikeTypeTraits<First>::getAsVoidPointer(get<First>()) == this->Val.getPointer() && \"Can't get the address because PointerLikeTypeTraits changes the ptr\""
, "llvm/include/llvm/ADT/PointerUnion.h", 171, __extension__ __PRETTY_FUNCTION__
))
171 "Can't get the address because PointerLikeTypeTraits changes the ptr")(static_cast <bool> (PointerLikeTypeTraits<First>
::getAsVoidPointer(get<First>()) == this->Val.getPointer
() && "Can't get the address because PointerLikeTypeTraits changes the ptr"
) ? void (0) : __assert_fail ("PointerLikeTypeTraits<First>::getAsVoidPointer(get<First>()) == this->Val.getPointer() && \"Can't get the address because PointerLikeTypeTraits changes the ptr\""
, "llvm/include/llvm/ADT/PointerUnion.h", 171, __extension__ __PRETTY_FUNCTION__
))
;
172 return const_cast<First *>(
173 reinterpret_cast<const First *>(this->Val.getAddrOfPointer()));
174 }
175
176 /// Assignment from nullptr which just clears the union.
177 const PointerUnion &operator=(std::nullptr_t) {
178 this->Val.initWithPointer(nullptr);
179 return *this;
180 }
181
182 /// Assignment from elements of the union.
183 using Base::operator=;
184
185 void *getOpaqueValue() const { return this->Val.getOpaqueValue(); }
186 static inline PointerUnion getFromOpaqueValue(void *VP) {
187 PointerUnion V;
188 V.Val = decltype(V.Val)::getFromOpaqueValue(VP);
189 return V;
190 }
191};
192
193template <typename ...PTs>
194bool operator==(PointerUnion<PTs...> lhs, PointerUnion<PTs...> rhs) {
195 return lhs.getOpaqueValue() == rhs.getOpaqueValue();
196}
197
198template <typename ...PTs>
199bool operator!=(PointerUnion<PTs...> lhs, PointerUnion<PTs...> rhs) {
200 return lhs.getOpaqueValue() != rhs.getOpaqueValue();
201}
202
203template <typename ...PTs>
204bool operator<(PointerUnion<PTs...> lhs, PointerUnion<PTs...> rhs) {
205 return lhs.getOpaqueValue() < rhs.getOpaqueValue();
206}
207
208// Teach SmallPtrSet that PointerUnion is "basically a pointer", that has
209// # low bits available = min(PT1bits,PT2bits)-1.
210template <typename ...PTs>
211struct PointerLikeTypeTraits<PointerUnion<PTs...>> {
212 static inline void *getAsVoidPointer(const PointerUnion<PTs...> &P) {
213 return P.getOpaqueValue();
214 }
215
216 static inline PointerUnion<PTs...> getFromVoidPointer(void *P) {
217 return PointerUnion<PTs...>::getFromOpaqueValue(P);
218 }
219
220 // The number of bits available are the min of the pointer types minus the
221 // bits needed for the discriminator.
222 static constexpr int NumLowBitsAvailable = PointerLikeTypeTraits<decltype(
223 PointerUnion<PTs...>::Val)>::NumLowBitsAvailable;
224};
225
226// Teach DenseMap how to use PointerUnions as keys.
227template <typename ...PTs> struct DenseMapInfo<PointerUnion<PTs...>> {
228 using Union = PointerUnion<PTs...>;
229 using FirstInfo =
230 DenseMapInfo<typename pointer_union_detail::GetFirstType<PTs...>::type>;
231
232 static inline Union getEmptyKey() { return Union(FirstInfo::getEmptyKey()); }
233
234 static inline Union getTombstoneKey() {
235 return Union(FirstInfo::getTombstoneKey());
236 }
237
238 static unsigned getHashValue(const Union &UnionVal) {
239 intptr_t key = (intptr_t)UnionVal.getOpaqueValue();
240 return DenseMapInfo<intptr_t>::getHashValue(key);
241 }
242
243 static bool isEqual(const Union &LHS, const Union &RHS) {
244 return LHS == RHS;
245 }
246};
247
248} // end namespace llvm
249
250#endif // LLVM_ADT_POINTERUNION_H