clang 19.0.0git
ComputeDependence.cpp
Go to the documentation of this file.
1//===- ComputeDependence.cpp ----------------------------------------------===//
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
10#include "clang/AST/Attr.h"
11#include "clang/AST/DeclCXX.h"
14#include "clang/AST/Expr.h"
15#include "clang/AST/ExprCXX.h"
17#include "clang/AST/ExprObjC.h"
20#include "llvm/ADT/ArrayRef.h"
21
22using namespace clang;
23
25 return E->getSubExpr()->getDependence();
26}
27
30 if (auto *S = E->getSourceExpr())
31 D |= S->getDependence();
32 assert(!(D & ExprDependence::UnexpandedPack));
33 return D;
34}
35
37 return E->getSubExpr()->getDependence();
38}
39
41 const ASTContext &Ctx) {
42 ExprDependence Dep =
43 // FIXME: Do we need to look at the type?
46
47 // C++ [temp.dep.constexpr]p5:
48 // An expression of the form & qualified-id where the qualified-id names a
49 // dependent member of the current instantiation is value-dependent. An
50 // expression of the form & cast-expression is also value-dependent if
51 // evaluating cast-expression as a core constant expression succeeds and
52 // the result of the evaluation refers to a templated entity that is an
53 // object with static or thread storage duration or a member function.
54 //
55 // What this amounts to is: constant-evaluate the operand and check whether it
56 // refers to a templated entity other than a variable with local storage.
57 if (Ctx.getLangOpts().CPlusPlus && E->getOpcode() == UO_AddrOf &&
58 !(Dep & ExprDependence::Value)) {
59 Expr::EvalResult Result;
61 Result.Diag = &Diag;
62 // FIXME: This doesn't enforce the C++98 constant expression rules.
63 if (E->getSubExpr()->EvaluateAsConstantExpr(Result, Ctx) && Diag.empty() &&
64 Result.Val.isLValue()) {
65 auto *VD = Result.Val.getLValueBase().dyn_cast<const ValueDecl *>();
66 if (VD && VD->isTemplated()) {
67 auto *VarD = dyn_cast<VarDecl>(VD);
68 if (!VarD || !VarD->hasLocalStorage())
69 Dep |= ExprDependence::Value;
70 }
71 }
72 }
73
74 return Dep;
75}
76
78 // Never type-dependent (C++ [temp.dep.expr]p3).
79 // Value-dependent if the argument is type-dependent.
80 if (E->isArgumentType())
83
84 auto ArgDeps = E->getArgumentExpr()->getDependence();
85 auto Deps = ArgDeps & ~ExprDependence::TypeValue;
86 // Value-dependent if the argument is type-dependent.
87 if (ArgDeps & ExprDependence::Type)
88 Deps |= ExprDependence::Value;
89 // Check to see if we are in the situation where alignof(decl) should be
90 // dependent because decl's alignment is dependent.
91 auto ExprKind = E->getKind();
92 if (ExprKind != UETT_AlignOf && ExprKind != UETT_PreferredAlignOf)
93 return Deps;
94 if ((Deps & ExprDependence::Value) && (Deps & ExprDependence::Instantiation))
95 return Deps;
96
97 auto *NoParens = E->getArgumentExpr()->IgnoreParens();
98 const ValueDecl *D = nullptr;
99 if (const auto *DRE = dyn_cast<DeclRefExpr>(NoParens))
100 D = DRE->getDecl();
101 else if (const auto *ME = dyn_cast<MemberExpr>(NoParens))
102 D = ME->getMemberDecl();
103 if (!D)
104 return Deps;
105 for (const auto *I : D->specific_attrs<AlignedAttr>()) {
106 if (I->isAlignmentErrorDependent())
107 Deps |= ExprDependence::Error;
108 if (I->isAlignmentDependent())
109 Deps |= ExprDependence::ValueInstantiation;
110 }
111 return Deps;
112}
113
115 return E->getLHS()->getDependence() | E->getRHS()->getDependence();
116}
117
119 return E->getBase()->getDependence() | E->getRowIdx()->getDependence() |
121 : ExprDependence::None);
122}
123
129}
130
132 // We model implicit conversions as combining the dependence of their
133 // subexpression, apart from its type, with the semantic portion of the
134 // target type.
137 if (auto *S = E->getSubExpr())
138 D |= S->getDependence() & ~ExprDependence::Type;
139 return D;
140}
141
143 // Cast expressions are type-dependent if the type is
144 // dependent (C++ [temp.dep.expr]p3).
145 // Cast expressions are value-dependent if the type is
146 // dependent or if the subexpression is value-dependent.
147 //
148 // Note that we also need to consider the dependence of the actual type here,
149 // because when the type as written is a deduced type, that type is not
150 // dependent, but it may be deduced as a dependent type.
153 cast<ExplicitCastExpr>(E)->getTypeAsWritten()->getDependence()) |
155 if (auto *S = E->getSubExpr())
156 D |= S->getDependence() & ~ExprDependence::Type;
157 return D;
158}
159
161 return E->getLHS()->getDependence() | E->getRHS()->getDependence();
162}
163
165 // The type of the conditional operator depends on the type of the conditional
166 // to support the GCC vector conditional extension. Additionally,
167 // [temp.dep.expr] does specify state that this should be dependent on ALL sub
168 // expressions.
169 return E->getCond()->getDependence() | E->getLHS()->getDependence() |
170 E->getRHS()->getDependence();
171}
172
174 return E->getCommon()->getDependence() | E->getFalseExpr()->getDependence();
175}
176
179 // Propagate dependence of the result.
180 if (const auto *CompoundExprResult =
181 dyn_cast_or_null<ValueStmt>(E->getSubStmt()->getStmtExprResult()))
182 if (const Expr *ResultExpr = CompoundExprResult->getExprStmt())
183 D |= ResultExpr->getDependence();
184 // Note: we treat a statement-expression in a dependent context as always
185 // being value- and instantiation-dependent. This matches the behavior of
186 // lambda-expressions and GCC.
187 if (TemplateDepth)
188 D |= ExprDependence::ValueInstantiation;
189 // A param pack cannot be expanded over stmtexpr boundaries.
190 return D & ~ExprDependence::UnexpandedPack;
191}
192
197 if (!E->getType()->isDependentType())
199 return D;
200}
201
203 if (E->isConditionDependent())
204 return ExprDependence::TypeValueInstantiation |
205 E->getCond()->getDependence() | E->getLHS()->getDependence() |
206 E->getRHS()->getDependence();
207
208 auto Cond = E->getCond()->getDependence();
209 auto Active = E->getLHS()->getDependence();
210 auto Inactive = E->getRHS()->getDependence();
211 if (!E->isConditionTrue())
212 std::swap(Active, Inactive);
213 // Take type- and value- dependency from the active branch. Propagate all
214 // other flags from all branches.
215 return (Active & ExprDependence::TypeValue) |
216 ((Cond | Active | Inactive) & ~ExprDependence::TypeValue);
217}
218
220 auto D = ExprDependence::None;
221 for (auto *E : P->exprs())
222 D |= E->getDependence();
223 return D;
224}
225
230 return D;
231}
232
235 (ExprDependence::Instantiation | ExprDependence::Error);
236}
237
239 auto D = E->getCommonExpr()->getDependence() |
240 E->getSubExpr()->getDependence() | ExprDependence::Instantiation;
242 D &= ~ExprDependence::Instantiation;
244}
245
248 ExprDependence::Instantiation;
249}
250
252 return E->getBase()->getDependence();
253}
254
258 D |= ExprDependence::Instantiation;
259 return D;
260}
261
263 // FIXME: AsTypeExpr doesn't store the type as written. Assume the expression
264 // type has identical sugar for now, so is a type-as-written.
267 if (!E->getType()->isDependentType())
269 return D;
270}
271
273 return E->getSemanticForm()->getDependence();
274}
275
279 return D;
280}
281
283 auto D = ExprDependence::None;
284 if (E->isTypeOperand())
287 else
289 // typeid is never type-dependent (C++ [temp.dep.expr]p4)
290 return D & ~ExprDependence::Type;
291}
292
295}
296
298 return E->getIdx()->getDependence();
299}
300
302 if (E->isTypeOperand())
305
307}
308
310 // 'this' is type-dependent if the class type of the enclosing
311 // member function is dependent (C++ [temp.dep.expr]p2)
313
314 // If a lambda with an explicit object parameter captures '*this', then
315 // 'this' now refers to the captured copy of lambda, and if the lambda
316 // is type-dependent, so is the object and thus 'this'.
317 //
318 // Note: The standard does not mention this case explicitly, but we need
319 // to do this so we can mark NSDM accesses as dependent.
321 D |= ExprDependence::Type;
322
323 assert(!(D & ExprDependence::UnexpandedPack));
324 return D;
325}
326
328 auto *Op = E->getSubExpr();
329 if (!Op)
330 return ExprDependence::None;
331 return Op->getDependence() & ~ExprDependence::TypeValue;
332}
333
335 return E->getSubExpr()->getDependence();
336}
337
340 if (auto *TSI = E->getTypeSourceInfo())
341 D |= toExprDependenceAsWritten(TSI->getType()->getDependence());
342 return D;
343}
344
347}
348
351 if (auto *Dim = E->getDimensionExpression())
352 D |= Dim->getDependence();
354}
355
357 // Never type-dependent.
359 // Value-dependent if the argument is type-dependent.
361 D |= ExprDependence::Value;
362 return D;
363}
364
366 auto D = E->getOperand()->getDependence() & ~ExprDependence::TypeValue;
367 if (CT == CT_Dependent)
368 D |= ExprDependence::ValueInstantiation;
369 return D;
370}
371
373 return (E->getPattern()->getDependence() & ~ExprDependence::UnexpandedPack) |
374 ExprDependence::TypeValueInstantiation;
375}
376
378
380 ~ExprDependence::UnexpandedPack;
381
383 if (D & ExprDependence::TypeValueInstantiation)
384 D |= E->getIndexExpr()->getDependence() | PatternDep |
385 ExprDependence::Instantiation;
386
387 ArrayRef<Expr *> Exprs = E->getExpressions();
388 if (Exprs.empty())
389 D |= PatternDep | ExprDependence::Instantiation;
390
391 else if (!E->getIndexExpr()->isInstantiationDependent()) {
392 std::optional<unsigned> Index = E->getSelectedIndex();
393 assert(Index && *Index < Exprs.size() && "pack index out of bound");
394 D |= Exprs[*Index]->getDependence();
395 }
396 return D;
397}
398
400 return E->getReplacement()->getDependence();
401}
402
404 if (auto *Resume = E->getResumeExpr())
405 return (Resume->getDependence() &
406 (ExprDependence::TypeValue | ExprDependence::Error)) |
407 (E->getCommonExpr()->getDependence() & ~ExprDependence::TypeValue);
408 return E->getCommonExpr()->getDependence() |
409 ExprDependence::TypeValueInstantiation;
410}
411
413 return E->getOperand()->getDependence() |
414 ExprDependence::TypeValueInstantiation;
415}
416
418 return E->getSubExpr()->getDependence();
419}
420
423}
424
427}
428
430 if (E->isObjectReceiver())
432 if (E->isSuperReceiver())
435 ~ExprDependence::TypeValue;
436 assert(E->isClassReceiver());
437 return ExprDependence::None;
438}
439
441 return E->getBaseExpr()->getDependence() | E->getKeyExpr()->getDependence();
442}
443
446 ~ExprDependence::UnexpandedPack;
447}
448
450 return E->getSubExpr()->getDependence();
451}
452
454 auto D = E->getBase()->getDependence();
455 if (auto *LB = E->getLowerBound())
456 D |= LB->getDependence();
457 if (auto *Len = E->getLength())
458 D |= Len->getDependence();
459
460 if (E->isOMPArraySection()) {
461 if (auto *Stride = E->getStride())
462 D |= Stride->getDependence();
463 }
464 return D;
465}
466
468 auto D = E->getBase()->getDependence();
469 for (Expr *Dim: E->getDimensions())
470 if (Dim)
471 D |= turnValueToTypeDependence(Dim->getDependence());
472 return D;
473}
474
477 for (unsigned I = 0, End = E->numOfIterators(); I < End; ++I) {
478 if (auto *DD = cast_or_null<DeclaratorDecl>(E->getIteratorDecl(I))) {
479 // If the type is omitted, it's 'int', and is not dependent in any way.
480 if (auto *TSI = DD->getTypeSourceInfo()) {
481 D |= toExprDependenceAsWritten(TSI->getType()->getDependence());
482 }
483 }
485 if (Expr *BE = IR.Begin)
486 D |= BE->getDependence();
487 if (Expr *EE = IR.End)
488 D |= EE->getDependence();
489 if (Expr *SE = IR.Step)
490 D |= SE->getDependence();
491 }
492 return D;
493}
494
495/// Compute the type-, value-, and instantiation-dependence of a
496/// declaration reference
497/// based on the declaration being referenced.
499 auto Deps = ExprDependence::None;
500
501 if (auto *NNS = E->getQualifier())
502 Deps |= toExprDependence(NNS->getDependence() &
503 ~NestedNameSpecifierDependence::Dependent);
504
505 if (auto *FirstArg = E->getTemplateArgs()) {
506 unsigned NumArgs = E->getNumTemplateArgs();
507 for (auto *Arg = FirstArg, *End = FirstArg + NumArgs; Arg < End; ++Arg)
508 Deps |= toExprDependence(Arg->getArgument().getDependence());
509 }
510
511 auto *Decl = E->getDecl();
512 auto Type = E->getType();
513
514 if (Decl->isParameterPack())
515 Deps |= ExprDependence::UnexpandedPack;
517 ExprDependence::Error;
518
519 // C++ [temp.dep.expr]p3:
520 // An id-expression is type-dependent if it contains:
521
522 // - an identifier associated by name lookup with one or more declarations
523 // declared with a dependent type
524 // - an identifier associated by name lookup with an entity captured by
525 // copy ([expr.prim.lambda.capture])
526 // in a lambda-expression that has an explicit object parameter whose
527 // type is dependent ([dcl.fct]),
528 //
529 // [The "or more" case is not modeled as a DeclRefExpr. There are a bunch
530 // more bullets here that we handle by treating the declaration as having a
531 // dependent type if they involve a placeholder type that can't be deduced.]
532 if (Type->isDependentType())
533 Deps |= ExprDependence::TypeValueInstantiation;
535 Deps |= ExprDependence::Instantiation;
536
537 // - an identifier associated by name lookup with an entity captured by
538 // copy ([expr.prim.lambda.capture])
540 Deps |= ExprDependence::Type;
541
542 // - a conversion-function-id that specifies a dependent type
543 if (Decl->getDeclName().getNameKind() ==
545 QualType T = Decl->getDeclName().getCXXNameType();
546 if (T->isDependentType())
547 return Deps | ExprDependence::TypeValueInstantiation;
548
550 Deps |= ExprDependence::Instantiation;
551 }
552
553 // - a template-id that is dependent,
554 // - a nested-name-specifier or a qualified-id that names a member of an
555 // unknown specialization
556 // [These are not modeled as DeclRefExprs.]
557
558 // or if it names a dependent member of the current instantiation that is a
559 // static data member of type "array of unknown bound of T" for some T
560 // [handled below].
561
562 // C++ [temp.dep.constexpr]p2:
563 // An id-expression is value-dependent if:
564
565 // - it is type-dependent [handled above]
566
567 // - it is the name of a non-type template parameter,
568 if (isa<NonTypeTemplateParmDecl>(Decl))
569 return Deps | ExprDependence::ValueInstantiation;
570
571 // - it names a potentially-constant variable that is initialized with an
572 // expression that is value-dependent
573 if (const auto *Var = dyn_cast<VarDecl>(Decl)) {
574 if (const Expr *Init = Var->getAnyInitializer()) {
575 if (Init->containsErrors())
576 Deps |= ExprDependence::Error;
577
578 if (Var->mightBeUsableInConstantExpressions(Ctx) &&
579 Init->isValueDependent())
580 Deps |= ExprDependence::ValueInstantiation;
581 }
582
583 // - it names a static data member that is a dependent member of the
584 // current instantiation and is not initialized in a member-declarator,
585 if (Var->isStaticDataMember() &&
586 Var->getDeclContext()->isDependentContext() &&
587 !Var->getFirstDecl()->hasInit()) {
588 const VarDecl *First = Var->getFirstDecl();
589 TypeSourceInfo *TInfo = First->getTypeSourceInfo();
590 if (TInfo->getType()->isIncompleteArrayType()) {
591 Deps |= ExprDependence::TypeValueInstantiation;
592 } else if (!First->hasInit()) {
593 Deps |= ExprDependence::ValueInstantiation;
594 }
595 }
596
597 return Deps;
598 }
599
600 // - it names a static member function that is a dependent member of the
601 // current instantiation
602 //
603 // FIXME: It's unclear that the restriction to static members here has any
604 // effect: any use of a non-static member function name requires either
605 // forming a pointer-to-member or providing an object parameter, either of
606 // which makes the overall expression value-dependent.
607 if (auto *MD = dyn_cast<CXXMethodDecl>(Decl)) {
608 if (MD->isStatic() && Decl->getDeclContext()->isDependentContext())
609 Deps |= ExprDependence::ValueInstantiation;
610 }
611
612 return Deps;
613}
614
616 // RecoveryExpr is
617 // - always value-dependent, and therefore instantiation dependent
618 // - contains errors (ExprDependence::Error), by definition
619 // - type-dependent if we don't know the type (fallback to an opaque
620 // dependent type), or the type is known and dependent, or it has
621 // type-dependent subexpressions.
623 ExprDependence::ErrorDependent;
624 // FIXME: remove the type-dependent bit from subexpressions, if the
625 // RecoveryExpr has a non-dependent type.
626 for (auto *S : E->subExpressions())
627 D |= S->getDependence();
628 return D;
629}
630
634}
635
638}
639
641 llvm::ArrayRef<Expr *> PreArgs) {
642 auto D = E->getCallee()->getDependence();
643 if (E->getType()->isDependentType())
644 D |= ExprDependence::Type;
645 for (auto *A : llvm::ArrayRef(E->getArgs(), E->getNumArgs())) {
646 if (A)
647 D |= A->getDependence();
648 }
649 for (auto *A : PreArgs)
650 D |= A->getDependence();
651 return D;
652}
653
657 for (unsigned I = 0, N = E->getNumExpressions(); I < N; ++I)
659 return D;
660}
661
663 auto D = ExprDependence::None;
664 if (Name.isInstantiationDependent())
665 D |= ExprDependence::Instantiation;
666 if (Name.containsUnexpandedParameterPack())
667 D |= ExprDependence::UnexpandedPack;
668 return D;
669}
670
672 auto D = E->getBase()->getDependence();
674
675 if (auto *NNS = E->getQualifier())
676 D |= toExprDependence(NNS->getDependence() &
677 ~NestedNameSpecifierDependence::Dependent);
678
679 for (const auto &A : E->template_arguments())
680 D |= toExprDependence(A.getArgument().getDependence());
681
682 auto *MemberDecl = E->getMemberDecl();
683 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
684 DeclContext *DC = MemberDecl->getDeclContext();
685 // dyn_cast_or_null is used to handle objC variables which do not
686 // have a declaration context.
687 CXXRecordDecl *RD = dyn_cast_or_null<CXXRecordDecl>(DC);
688 if (RD && RD->isDependentContext() && RD->isCurrentInstantiation(DC)) {
689 if (!E->getType()->isDependentType())
691 }
692
693 // Bitfield with value-dependent width is type-dependent.
694 if (FD && FD->isBitField() && FD->getBitWidth()->isValueDependent()) {
695 D |= ExprDependence::Type;
696 }
697 }
698 return D;
699}
700
702 auto D = ExprDependence::None;
703 for (auto *A : E->inits())
704 D |= A->getDependence();
705 return D;
706}
707
710 for (auto *C : llvm::ArrayRef(E->getSubExprs(), E->getNumSubExprs()))
711 D |= C->getDependence();
712 return D;
713}
714
716 bool ContainsUnexpandedPack) {
717 auto D = ContainsUnexpandedPack ? ExprDependence::UnexpandedPack
718 : ExprDependence::None;
719 for (auto *AE : E->getAssocExprs())
720 D |= AE->getDependence() & ExprDependence::Error;
721
722 if (E->isExprPredicate())
723 D |= E->getControllingExpr()->getDependence() & ExprDependence::Error;
724 else
727
728 if (E->isResultDependent())
729 return D | ExprDependence::TypeValueInstantiation;
730 return D | (E->getResultExpr()->getDependence() &
731 ~ExprDependence::UnexpandedPack);
732}
733
735 auto Deps = E->getInit()->getDependence();
736 for (const auto &D : E->designators()) {
737 auto DesignatorDeps = ExprDependence::None;
738 if (D.isArrayDesignator())
739 DesignatorDeps |= E->getArrayIndex(D)->getDependence();
740 else if (D.isArrayRangeDesignator())
741 DesignatorDeps |= E->getArrayRangeStart(D)->getDependence() |
743 Deps |= DesignatorDeps;
744 if (DesignatorDeps & ExprDependence::TypeValue)
745 Deps |= ExprDependence::TypeValueInstantiation;
746 }
747 return Deps;
748}
749
751 auto D = O->getSyntacticForm()->getDependence();
752 for (auto *E : O->semantics())
753 D |= E->getDependence();
754 return D;
755}
756
758 auto D = ExprDependence::None;
759 for (auto *E : llvm::ArrayRef(A->getSubExprs(), A->getNumSubExprs()))
760 D |= E->getDependence();
761 return D;
762}
763
768 auto Size = E->getArraySize();
769 if (Size && *Size)
770 D |= turnTypeToValueDependence((*Size)->getDependence());
771 if (auto *I = E->getInitializer())
772 D |= turnTypeToValueDependence(I->getDependence());
773 for (auto *A : E->placement_arguments())
774 D |= turnTypeToValueDependence(A->getDependence());
775 return D;
776}
777
779 auto D = E->getBase()->getDependence();
780 if (auto *TSI = E->getDestroyedTypeInfo())
781 D |= toExprDependenceAsWritten(TSI->getType()->getDependence());
782 if (auto *ST = E->getScopeTypeInfo())
784 toExprDependenceAsWritten(ST->getType()->getDependence()));
785 if (auto *Q = E->getQualifier())
786 D |= toExprDependence(Q->getDependence() &
787 ~NestedNameSpecifierDependence::Dependent);
788 return D;
789}
790
793 bool KnownInstantiationDependent,
794 bool KnownContainsUnexpandedParameterPack) {
795 auto Deps = ExprDependence::None;
796 if (KnownDependent)
797 Deps |= ExprDependence::TypeValue;
798 if (KnownInstantiationDependent)
799 Deps |= ExprDependence::Instantiation;
800 if (KnownContainsUnexpandedParameterPack)
801 Deps |= ExprDependence::UnexpandedPack;
802 Deps |= getDependenceInExpr(E->getNameInfo());
803 if (auto *Q = E->getQualifier())
804 Deps |= toExprDependence(Q->getDependence() &
805 ~NestedNameSpecifierDependence::Dependent);
806 for (auto *D : E->decls()) {
807 if (D->getDeclContext()->isDependentContext() ||
808 isa<UnresolvedUsingValueDecl>(D))
809 Deps |= ExprDependence::TypeValueInstantiation;
810 }
811 // If we have explicit template arguments, check for dependent
812 // template arguments and whether they contain any unexpanded pack
813 // expansions.
814 for (const auto &A : E->template_arguments())
815 Deps |= toExprDependence(A.getArgument().getDependence());
816 return Deps;
817}
818
820 auto D = ExprDependence::TypeValue;
822 if (auto *Q = E->getQualifier())
823 D |= toExprDependence(Q->getDependence());
824 for (const auto &A : E->template_arguments())
825 D |= toExprDependence(A.getArgument().getDependence());
826 return D;
827}
828
832 for (auto *A : E->arguments())
833 D |= A->getDependence() & ~ExprDependence::Type;
834 return D;
835}
836
838 CXXConstructExpr *BaseE = E;
841 computeDependence(BaseE);
842}
843
845 return E->getExpr()->getDependence();
846}
847
849 return E->getExpr()->getDependence();
850}
851
853 bool ContainsUnexpandedParameterPack) {
855 if (ContainsUnexpandedParameterPack)
856 D |= ExprDependence::UnexpandedPack;
857 return D;
858}
859
861 auto D = ExprDependence::ValueInstantiation;
864 for (auto *A : E->arguments())
865 D |= A->getDependence() &
866 (ExprDependence::UnexpandedPack | ExprDependence::Error);
867 return D;
868}
869
871 auto D = ExprDependence::TypeValueInstantiation;
872 if (!E->isImplicitAccess())
873 D |= E->getBase()->getDependence();
874 if (auto *Q = E->getQualifier())
875 D |= toExprDependence(Q->getDependence());
877 for (const auto &A : E->template_arguments())
878 D |= toExprDependence(A.getArgument().getDependence());
879 return D;
880}
881
883 return E->getSubExpr()->getDependence();
884}
885
887 auto D = ExprDependence::TypeValueInstantiation;
888 for (const auto *C : {E->getLHS(), E->getRHS()}) {
889 if (C)
890 D |= C->getDependence() & ~ExprDependence::UnexpandedPack;
891 }
892 return D;
893}
894
896 auto D = ExprDependence::None;
897 for (const auto *A : E->getInitExprs())
898 D |= A->getDependence();
899 return D;
900}
901
903 auto D = ExprDependence::None;
904 for (const auto *A : E->getArgs())
905 D |= toExprDependenceAsWritten(A->getType()->getDependence()) &
907 return D;
908}
909
911 bool ValueDependent) {
912 auto TA = TemplateArgumentDependence::None;
913 const auto InterestingDeps = TemplateArgumentDependence::Instantiation |
914 TemplateArgumentDependence::UnexpandedPack;
915 for (const TemplateArgumentLoc &ArgLoc :
917 TA |= ArgLoc.getArgument().getDependence() & InterestingDeps;
918 if (TA == InterestingDeps)
919 break;
920 }
921
923 ValueDependent ? ExprDependence::Value : ExprDependence::None;
924 auto Res = D | toExprDependence(TA);
925 if(!ValueDependent && E->getSatisfaction().ContainsErrors)
926 Res |= ExprDependence::Error;
927 return Res;
928}
929
931 auto D = ExprDependence::None;
932 Expr **Elements = E->getElements();
933 for (unsigned I = 0, N = E->getNumElements(); I != N; ++I)
934 D |= turnTypeToValueDependence(Elements[I]->getDependence());
935 return D;
936}
937
939 auto Deps = ExprDependence::None;
940 for (unsigned I = 0, N = E->getNumElements(); I < N; ++I) {
941 auto KV = E->getKeyValueElement(I);
942 auto KVDeps = turnTypeToValueDependence(KV.Key->getDependence() |
943 KV.Value->getDependence());
944 if (KV.EllipsisLoc.isValid())
945 KVDeps &= ~ExprDependence::UnexpandedPack;
946 Deps |= KVDeps;
947 }
948 return Deps;
949}
950
952 auto D = ExprDependence::None;
953 if (auto *R = E->getInstanceReceiver())
954 D |= R->getDependence();
955 else
957 for (auto *A : E->arguments())
958 D |= A->getDependence();
959 return D;
960}
StringRef P
static ExprDependence getDependenceInExpr(DeclarationNameInfo Name)
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the ExceptionSpecificationType enumeration and various utility functions.
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines Expressions and AST nodes for C++2a concepts.
static DiagnosticBuilder Diag(DiagnosticsEngine *Diags, const LangOptions &Features, FullSourceLoc TokLoc, const char *TokBegin, const char *TokRangeBegin, const char *TokRangeEnd, unsigned DiagID)
Produce a diagnostic highlighting some portion of a literal.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:182
const LangOptions & getLangOpts() const
Definition: ASTContext.h:775
Represents a loop initializing the elements of an array.
Definition: Expr.h:5511
OpaqueValueExpr * getCommonExpr() const
Get the common subexpression shared by all initializations (the source array).
Definition: Expr.h:5526
Expr * getSubExpr() const
Get the initializer to use for each array element.
Definition: Expr.h:5531
This class represents BOTH the OpenMP Array Section and OpenACC 'subarray', with a boolean differenti...
Definition: Expr.h:6734
Expr * getBase()
Get base of the array section.
Definition: Expr.h:6800
Expr * getLength()
Get length of array section.
Definition: Expr.h:6810
bool isOMPArraySection() const
Definition: Expr.h:6796
Expr * getStride()
Get stride of array section.
Definition: Expr.h:6814
Expr * getLowerBound()
Get lower bound of array section.
Definition: Expr.h:6804
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
Definition: Expr.h:2664
Expr * getLHS()
An array access can be written A[4] or 4[A] (both are equivalent).
Definition: Expr.h:2693
An Embarcadero array type trait, as used in the implementation of __array_rank and __array_extent.
Definition: ExprCXX.h:2848
QualType getQueriedType() const
Definition: ExprCXX.h:2890
Expr * getDimensionExpression() const
Definition: ExprCXX.h:2896
AsTypeExpr - Clang builtin function __builtin_astype [OpenCL 6.2.4.2] This AST node provides support ...
Definition: Expr.h:6234
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
Definition: Expr.h:6253
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
Definition: Expr.h:6437
Expr ** getSubExprs()
Definition: Expr.h:6514
static unsigned getNumSubExprs(AtomicOp Op)
Determine the number of arguments the specified atomic builtin should have.
Definition: Expr.cpp:4958
BinaryConditionalOperator - The GNU extension to the conditional operator which allows the middle ope...
Definition: Expr.h:4241
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression which will be evaluated if the condnition evaluates to false;...
Definition: Expr.h:4295
Expr * getCommon() const
getCommon - Return the common expression, written to the left of the condition.
Definition: Expr.h:4276
A builtin binary operation expression such as "x + y" or "x <= y".
Definition: Expr.h:3840
Expr * getLHS() const
Definition: Expr.h:3889
Expr * getRHS() const
Definition: Expr.h:3891
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition: Expr.h:6173
const BlockDecl * getBlockDecl() const
Definition: Expr.h:6185
Represents binding an expression to a temporary.
Definition: ExprCXX.h:1487
const Expr * getSubExpr() const
Definition: ExprCXX.h:1509
Represents a call to a C++ constructor.
Definition: ExprCXX.h:1542
arg_range arguments()
Definition: ExprCXX.h:1666
A default argument (C++ [dcl.fct.default]).
Definition: ExprCXX.h:1264
A use of a default initializer in a constructor or in aggregate initialization.
Definition: ExprCXX.h:1371
Expr * getExpr()
Get the initialization expression that will be used.
Definition: ExprCXX.cpp:1035
Represents a delete expression for memory deallocation and destructor calls, e.g.
Definition: ExprCXX.h:2493
Expr * getArgument()
Definition: ExprCXX.h:2534
Represents a C++ member access expression where the actual member referenced could not be resolved be...
Definition: ExprCXX.h:3676
const DeclarationNameInfo & getMemberNameInfo() const
Retrieve the name of the member that this expression refers to.
Definition: ExprCXX.h:3813
NestedNameSpecifier * getQualifier() const
Retrieve the nested-name-specifier that qualifies the member name.
Definition: ExprCXX.h:3787
Expr * getBase() const
Retrieve the base object of this member expressions, e.g., the x in x.m.
Definition: ExprCXX.h:3770
bool isImplicitAccess() const
True if this is an implicit access, i.e.
Definition: ExprCXX.h:3762
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: ExprCXX.h:3881
Represents a folding of a pack over an operator.
Definition: ExprCXX.h:4822
Expr * getRHS() const
Definition: ExprCXX.h:4857
Expr * getLHS() const
Definition: ExprCXX.h:4856
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
Definition: ExprCXX.h:2236
llvm::iterator_range< arg_iterator > placement_arguments()
Definition: ExprCXX.h:2439
QualType getAllocatedType() const
Definition: ExprCXX.h:2314
std::optional< Expr * > getArraySize()
This might return std::nullopt even if isArray() returns true, since there might not be an array size...
Definition: ExprCXX.h:2349
TypeSourceInfo * getAllocatedTypeSourceInfo() const
Definition: ExprCXX.h:2318
Expr * getInitializer()
The initializer of this new-expression.
Definition: ExprCXX.h:2409
Represents a C++11 noexcept expression (C++ [expr.unary.noexcept]).
Definition: ExprCXX.h:4119
Expr * getOperand() const
Definition: ExprCXX.h:4136
Represents a list-initialization with parenthesis.
Definition: ExprCXX.h:4944
ArrayRef< Expr * > getInitExprs()
Definition: ExprCXX.h:4984
Represents a C++ pseudo-destructor (C++ [expr.pseudo]).
Definition: ExprCXX.h:2612
TypeSourceInfo * getDestroyedTypeInfo() const
Retrieve the source location information for the type being destroyed.
Definition: ExprCXX.h:2706
TypeSourceInfo * getScopeTypeInfo() const
Retrieve the scope type in a qualified pseudo-destructor expression.
Definition: ExprCXX.h:2690
NestedNameSpecifier * getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
Definition: ExprCXX.h:2670
Represents a C++ struct/union/class.
Definition: DeclCXX.h:258
bool isCurrentInstantiation(const DeclContext *CurContext) const
Determine whether this dependent class is a current instantiation, when viewed from within the given ...
A rewritten comparison expression that was originally written using operator syntax.
Definition: ExprCXX.h:283
Expr * getSemanticForm()
Get an equivalent semantic form for this expression.
Definition: ExprCXX.h:301
An expression "T()" which creates a value-initialized rvalue of type T, which is a non-class type.
Definition: ExprCXX.h:2177
TypeSourceInfo * getTypeSourceInfo() const
Definition: ExprCXX.h:2196
Implicit construction of a std::initializer_list<T> object from an array temporary within list-initia...
Definition: ExprCXX.h:797
Represents a C++ functional cast expression that builds a temporary object.
Definition: ExprCXX.h:1881
TypeSourceInfo * getTypeSourceInfo() const
Definition: ExprCXX.h:1910
Represents the this expression in C++.
Definition: ExprCXX.h:1148
bool isCapturedByCopyInLambdaWithExplicitObjectParameter() const
Definition: ExprCXX.h:1174
A C++ throw-expression (C++ [except.throw]).
Definition: ExprCXX.h:1202
const Expr * getSubExpr() const
Definition: ExprCXX.h:1222
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
Definition: ExprCXX.h:845
bool isTypeOperand() const
Definition: ExprCXX.h:881
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
Definition: ExprCXX.h:888
Expr * getExprOperand() const
Definition: ExprCXX.h:892
Describes an explicit type conversion that uses functional notion but could not be resolved because o...
Definition: ExprCXX.h:3550
QualType getTypeAsWritten() const
Retrieve the type that is being constructed, as specified in the source code.
Definition: ExprCXX.h:3584
A Microsoft C++ __uuidof expression, which gets the _GUID that corresponds to the supplied type or ex...
Definition: ExprCXX.h:1062
Expr * getExprOperand() const
Definition: ExprCXX.h:1103
bool isTypeOperand() const
Definition: ExprCXX.h:1092
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
Definition: ExprCXX.h:1099
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition: Expr.h:2820
Expr * getCallee()
Definition: Expr.h:2970
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
Definition: Expr.h:2998
Expr ** getArgs()
Retrieve the call arguments.
Definition: Expr.h:3001
Expr * getSubExpr()
Definition: Expr.h:3533
ChooseExpr - GNU builtin-in function __builtin_choose_expr.
Definition: Expr.h:4558
Expr * getLHS() const
Definition: Expr.h:4600
bool isConditionDependent() const
Definition: Expr.h:4588
bool isConditionTrue() const
isConditionTrue - Return whether the condition is true (i.e.
Definition: Expr.h:4581
Expr * getRHS() const
Definition: Expr.h:4602
Expr * getCond() const
Definition: Expr.h:4598
CompoundLiteralExpr - [C99 6.5.2.5].
Definition: Expr.h:3413
const Expr * getInitializer() const
Definition: Expr.h:3436
TypeSourceInfo * getTypeSourceInfo() const
Definition: Expr.h:3446
Stmt * getStmtExprResult()
Definition: Stmt.h:1723
Represents the specialization of a concept - evaluates to a prvalue of type bool.
Definition: ExprConcepts.h:42
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
Definition: ExprConcepts.h:98
const ASTConstraintSatisfaction & getSatisfaction() const
Get elaborated satisfaction info about the template arguments' satisfaction of the named concept.
Definition: ExprConcepts.h:133
ConditionalOperator - The ?: ternary operator.
Definition: Expr.h:4179
Expr * getLHS() const
Definition: Expr.h:4213
Expr * getCond() const
getCond - Return the expression representing the condition for the ?: operator.
Definition: Expr.h:4202
Expr * getRHS() const
Definition: Expr.h:4214
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
Definition: Expr.h:4499
TypeSourceInfo * getTypeSourceInfo() const
getTypeSourceInfo - Return the destination type.
Definition: Expr.h:4522
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
Definition: Expr.h:4519
Represents an expression that might suspend coroutine execution; either a co_await or co_yield expres...
Definition: ExprCXX.h:5061
Expr * getResumeExpr() const
Definition: ExprCXX.h:5125
Expr * getCommonExpr() const
Definition: ExprCXX.h:5110
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition: DeclBase.h:1436
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
Definition: DeclBase.cpp:1282
A reference to a declared variable, function, enum, etc.
Definition: Expr.h:1260
unsigned getNumTemplateArgs() const
Retrieve the number of template arguments provided as part of this template-id.
Definition: Expr.h:1429
bool isCapturedByCopyInLambdaWithExplicitObjectParameter() const
Definition: Expr.h:1470
ValueDecl * getDecl()
Definition: Expr.h:1328
const TemplateArgumentLoc * getTemplateArgs() const
Retrieve the template arguments provided as part of this template-id.
Definition: Expr.h:1421
NestedNameSpecifier * getQualifier() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name.
Definition: Expr.h:1355
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:86
bool isParameterPack() const
Whether this declaration is a parameter pack.
Definition: DeclBase.cpp:220
llvm::iterator_range< specific_attr_iterator< T > > specific_attrs() const
Definition: DeclBase.h:565
DeclContext * getDeclContext()
Definition: DeclBase.h:454
Represents a 'co_await' expression while the type of the promise is dependent.
Definition: ExprCXX.h:5207
Expr * getOperand() const
Definition: ExprCXX.h:5230
A qualified reference to a name whose declaration cannot yet be resolved.
Definition: ExprCXX.h:3316
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: ExprCXX.h:3424
NestedNameSpecifier * getQualifier() const
Retrieve the nested-name-specifier that qualifies this declaration.
Definition: ExprCXX.h:3368
const DeclarationNameInfo & getNameInfo() const
Retrieve the name that this expression refers to.
Definition: ExprCXX.h:3352
Represents a C99 designated initializer expression.
Definition: Expr.h:5092
Expr * getArrayRangeEnd(const Designator &D) const
Definition: Expr.cpp:4654
llvm::MutableArrayRef< Designator > designators()
Definition: Expr.h:5325
Expr * getArrayRangeStart(const Designator &D) const
Definition: Expr.cpp:4649
Expr * getArrayIndex(const Designator &D) const
Definition: Expr.cpp:4644
Expr * getInit() const
Retrieve the initializer value.
Definition: Expr.h:5360
ExplicitCastExpr - An explicit cast written in the source code.
Definition: Expr.h:3730
This represents one expression.
Definition: Expr.h:110
bool isTypeDependent() const
Determines whether the type of this expression depends on.
Definition: Expr.h:192
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Definition: Expr.cpp:3055
bool EvaluateAsConstantExpr(EvalResult &Result, const ASTContext &Ctx, ConstantExprKind Kind=ConstantExprKind::Normal) const
Evaluate an expression that is required to be a constant expression.
bool isInstantiationDependent() const
Whether this expression is instantiation-dependent, meaning that it depends in some way on.
Definition: Expr.h:221
QualType getType() const
Definition: Expr.h:142
ExprDependence getDependence() const
Definition: Expr.h:162
An expression trait intrinsic.
Definition: ExprCXX.h:2919
Expr * getQueriedExpression() const
Definition: ExprCXX.h:2958
ExtVectorElementExpr - This represents access to specific elements of a vector, and may occur on the ...
Definition: Expr.h:6113
const Expr * getBase() const
Definition: Expr.h:6130
Represents a member of a struct/union/class.
Definition: Decl.h:3057
FullExpr - Represents a "full-expression" node.
Definition: Expr.h:1039
const Expr * getSubExpr() const
Definition: Expr.h:1052
Represents a C11 generic selection.
Definition: Expr.h:5725
TypeSourceInfo * getControllingType()
Return the controlling type of this generic selection expression.
Definition: Expr.h:6000
ArrayRef< Expr * > getAssocExprs() const
Definition: Expr.h:6020
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
Definition: Expr.h:5981
Expr * getResultExpr()
Return the result expression of this controlling expression.
Definition: Expr.h:6009
bool isResultDependent() const
Whether this generic selection is result-dependent.
Definition: Expr.h:5977
Expr * getControllingExpr()
Return the controlling expression of this generic selection expression.
Definition: Expr.h:5988
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
Definition: Expr.h:3655
Represents an implicitly-generated value initialization of an object of a given type.
Definition: Expr.h:5600
Describes an C or C++ initializer list.
Definition: Expr.h:4847
ArrayRef< Expr * > inits()
Definition: Expr.h:4887
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Definition: ExprCXX.h:1950
A member reference to an MSPropertyDecl.
Definition: ExprCXX.h:929
Expr * getBaseExpr() const
Definition: ExprCXX.h:982
MS property subscript expression.
Definition: ExprCXX.h:1000
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Definition: ExprCXX.h:4710
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
Definition: ExprCXX.h:4727
MatrixSubscriptExpr - Matrix subscript expression for the MatrixType extension.
Definition: Expr.h:2742
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
Definition: Expr.h:3172
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: Expr.h:3344
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
Definition: Expr.h:3255
Expr * getBase() const
Definition: Expr.h:3249
NestedNameSpecifier * getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
Definition: Expr.h:3283
DeclarationNameInfo getMemberNameInfo() const
Retrieve the member declaration name info.
Definition: Expr.h:3349
Represents a place-holder for an object not to be initialized by anything.
Definition: Expr.h:5420
An explicit cast in C or a C-style cast in C++, which uses the syntax ([s1][s2]......
Definition: ExprOpenMP.h:24
Expr * getBase()
Fetches base expression of array shaping expression.
Definition: ExprOpenMP.h:90
ArrayRef< Expr * > getDimensions() const
Fetches the dimensions for array shaping expression.
Definition: ExprOpenMP.h:80
OpenMP 5.0 [2.1.6 Iterators] Iterators are identifiers that expand to multiple values in the clause o...
Definition: ExprOpenMP.h:151
IteratorRange getIteratorRange(unsigned I)
Gets the iterator range for the given iterator.
Definition: Expr.cpp:5212
unsigned numOfIterators() const
Returns number of iterator definitions.
Definition: ExprOpenMP.h:275
Decl * getIteratorDecl(unsigned I)
Gets the iterator declaration for the given iterator.
Definition: Expr.cpp:5208
ObjCArrayLiteral - used for objective-c array containers; as in: @["Hello", NSApp,...
Definition: ExprObjC.h:191
Expr ** getElements()
Retrieve elements of array of literals.
Definition: ExprObjC.h:220
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c array literal.
Definition: ExprObjC.h:228
ObjCBoxedExpr - used for generalized expression boxing.
Definition: ExprObjC.h:127
Expr * getSubExpr()
Definition: ExprObjC.h:143
ObjCDictionaryLiteral - AST node to represent objective-c dictionary literals; as in:"name" : NSUserN...
Definition: ExprObjC.h:309
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c dictionary literal.
Definition: ExprObjC.h:360
ObjCDictionaryElement getKeyValueElement(unsigned Index) const
Definition: ExprObjC.h:362
ObjCEncodeExpr, used for @encode in Objective-C.
Definition: ExprObjC.h:410
QualType getEncodedType() const
Definition: ExprObjC.h:429
ObjCIndirectCopyRestoreExpr - Represents the passing of a function argument by indirect copy-restore ...
Definition: ExprObjC.h:1575
ObjCIsaExpr - Represent X->isa and X.isa when X is an ObjC 'id' type.
Definition: ExprObjC.h:1491
Expr * getBase() const
Definition: ExprObjC.h:1516
ObjCIvarRefExpr - A reference to an ObjC instance variable.
Definition: ExprObjC.h:549
const Expr * getBase() const
Definition: ExprObjC.h:583
An expression that sends a message to the given Objective-C object or class.
Definition: ExprObjC.h:945
Expr * getInstanceReceiver()
Returns the object expression (receiver) for an instance message, or null for a message that is not a...
Definition: ExprObjC.h:1260
llvm::iterator_range< arg_iterator > arguments()
Definition: ExprObjC.h:1462
ObjCPropertyRefExpr - A dot-syntax expression to access an ObjC property.
Definition: ExprObjC.h:617
const Expr * getBase() const
Definition: ExprObjC.h:755
bool isObjectReceiver() const
Definition: ExprObjC.h:774
QualType getSuperReceiverType() const
Definition: ExprObjC.h:766
bool isClassReceiver() const
Definition: ExprObjC.h:776
bool isSuperReceiver() const
Definition: ExprObjC.h:775
ObjCSubscriptRefExpr - used for array and dictionary subscripting.
Definition: ExprObjC.h:844
Expr * getKeyExpr() const
Definition: ExprObjC.h:886
Expr * getBaseExpr() const
Definition: ExprObjC.h:883
OffsetOfExpr - [C99 7.17] - This represents an expression of the form offsetof(record-type,...
Definition: Expr.h:2465
Expr * getIndexExpr(unsigned Idx)
Definition: Expr.h:2526
TypeSourceInfo * getTypeSourceInfo() const
Definition: Expr.h:2505
unsigned getNumExpressions() const
Definition: Expr.h:2541
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
Definition: Expr.h:1168
Expr * getSourceExpr() const
The source expression of an opaque value expression is the expression which originally generated the ...
Definition: Expr.h:1218
A reference to an overloaded function set, either an UnresolvedLookupExpr or an UnresolvedMemberExpr.
Definition: ExprCXX.h:2978
NestedNameSpecifier * getQualifier() const
Fetches the nested-name qualifier, if one was given.
Definition: ExprCXX.h:3093
const DeclarationNameInfo & getNameInfo() const
Gets the full name info.
Definition: ExprCXX.h:3084
llvm::iterator_range< decls_iterator > decls() const
Definition: ExprCXX.h:3076
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: ExprCXX.h:3144
Represents a C++11 pack expansion that produces a sequence of expressions.
Definition: ExprCXX.h:4173
Expr * getPattern()
Retrieve the pattern of the pack expansion.
Definition: ExprCXX.h:4202
Expr * getIndexExpr() const
Definition: ExprCXX.h:4431
ArrayRef< Expr * > getExpressions() const
Definition: ExprCXX.h:4448
std::optional< unsigned > getSelectedIndex() const
Definition: ExprCXX.h:4433
Expr * getPackIdExpression() const
Definition: ExprCXX.h:4427
ParenExpr - This represents a parethesized expression, e.g.
Definition: Expr.h:2130
const Expr * getSubExpr() const
Definition: Expr.h:2145
[C99 6.4.2.2] - A predefined identifier such as func.
Definition: Expr.h:1986
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
Definition: Expr.h:6305
ArrayRef< Expr * > semantics()
Definition: Expr.h:6384
Expr * getSyntacticForm()
Return the syntactic form of this expression, i.e.
Definition: Expr.h:6347
A (possibly-)qualified type.
Definition: Type.h:940
Frontend produces RecoveryExprs on semantic errors that prevent creating other well-formed expression...
Definition: Expr.h:6909
ArrayRef< Expr * > subExpressions()
Definition: Expr.h:6916
TypeSourceInfo * getTypeSourceInfo()
Definition: Expr.h:2091
ShuffleVectorExpr - clang-specific builtin-in function __builtin_shufflevector.
Definition: Expr.h:4431
Expr ** getSubExprs()
Retrieve the array of expressions.
Definition: Expr.h:4468
unsigned getNumSubExprs() const
getNumSubExprs - Return the size of the SubExprs array.
Definition: Expr.h:4465
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
Definition: Expr.h:4383
CompoundStmt * getSubStmt()
Definition: Expr.h:4400
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Definition: ExprCXX.h:4466
Location wrapper for a TemplateArgument.
Definition: TemplateBase.h:524
A container of type source information.
Definition: Type.h:7330
QualType getType() const
Return the type wrapped by this type source info.
Definition: Type.h:7341
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
Definition: ExprCXX.h:2763
ArrayRef< TypeSourceInfo * > getArgs() const
Retrieve the argument types.
Definition: ExprCXX.h:2819
The base class of the type hierarchy.
Definition: Type.h:1813
bool isIncompleteArrayType() const
Definition: Type.h:7686
bool isInstantiationDependentType() const
Determine whether this type is an instantiation-dependent type, meaning that the type involves a temp...
Definition: Type.h:2661
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
Definition: Type.h:2653
TypeDependence getDependence() const
Definition: Type.h:2642
UnaryExprOrTypeTraitExpr - expression with either a type or (unevaluated) expression operand.
Definition: Expr.h:2568
QualType getArgumentType() const
Definition: Expr.h:2611
bool isArgumentType() const
Definition: Expr.h:2610
UnaryExprOrTypeTrait getKind() const
Definition: Expr.h:2600
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Definition: Expr.h:2183
Expr * getSubExpr() const
Definition: Expr.h:2228
Opcode getOpcode() const
Definition: Expr.h:2223
Represents a call to the builtin function __builtin_va_arg.
Definition: Expr.h:4667
TypeSourceInfo * getWrittenTypeInfo() const
Definition: Expr.h:4691
const Expr * getSubExpr() const
Definition: Expr.h:4683
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition: Decl.h:706
const Expr * getExprStmt() const
Definition: Stmt.cpp:404
Represents a variable declaration or definition.
Definition: Decl.h:918
The JSON file list parser is used to communicate input to InstallAPI.
ExprDependence toExprDependence(TemplateArgumentDependence TA)
Computes dependencies of a reference with the name having template arguments with TA dependencies.
CanThrowResult
Possible results from evaluation of a noexcept expression.
ExprDependence turnTypeToValueDependence(ExprDependence D)
ExprDependence toExprDependenceAsWritten(TypeDependence D)
ExprDependence computeDependence(FullExpr *E)
ExprDependence turnValueToTypeDependence(ExprDependence D)
ExprDependence toExprDependenceForImpliedType(TypeDependence D)
const FunctionProtoType * T
llvm::ArrayRef< TemplateArgumentLoc > arguments() const
Definition: TemplateBase.h:705
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
EvalResult is a struct with detailed info about an evaluated expression.
Definition: Expr.h:642
Iterator range representation begin:end[:step].
Definition: ExprOpenMP.h:154