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 assert(!(D & ExprDependence::UnexpandedPack));
314 return D;
315}
316
318 auto *Op = E->getSubExpr();
319 if (!Op)
320 return ExprDependence::None;
321 return Op->getDependence() & ~ExprDependence::TypeValue;
322}
323
325 return E->getSubExpr()->getDependence();
326}
327
330 if (auto *TSI = E->getTypeSourceInfo())
331 D |= toExprDependenceAsWritten(TSI->getType()->getDependence());
332 return D;
333}
334
337}
338
341 if (auto *Dim = E->getDimensionExpression())
342 D |= Dim->getDependence();
344}
345
347 // Never type-dependent.
349 // Value-dependent if the argument is type-dependent.
351 D |= ExprDependence::Value;
352 return D;
353}
354
356 auto D = E->getOperand()->getDependence() & ~ExprDependence::TypeValue;
357 if (CT == CT_Dependent)
358 D |= ExprDependence::ValueInstantiation;
359 return D;
360}
361
363 return (E->getPattern()->getDependence() & ~ExprDependence::UnexpandedPack) |
364 ExprDependence::TypeValueInstantiation;
365}
366
369 ArrayRef<Expr *> Exprs = E->getExpressions();
370 if (Exprs.empty())
371 D |= (E->getPackIdExpression()->getDependence() |
372 ExprDependence::TypeValueInstantiation) &
373 ~ExprDependence::UnexpandedPack;
374 else if (!E->getIndexExpr()->isInstantiationDependent()) {
375 std::optional<unsigned> Index = E->getSelectedIndex();
376 assert(Index && *Index < Exprs.size() && "pack index out of bound");
377 D |= Exprs[*Index]->getDependence();
378 }
379 return D;
380}
381
383 return E->getReplacement()->getDependence();
384}
385
387 if (auto *Resume = E->getResumeExpr())
388 return (Resume->getDependence() &
389 (ExprDependence::TypeValue | ExprDependence::Error)) |
390 (E->getCommonExpr()->getDependence() & ~ExprDependence::TypeValue);
391 return E->getCommonExpr()->getDependence() |
392 ExprDependence::TypeValueInstantiation;
393}
394
396 return E->getOperand()->getDependence() |
397 ExprDependence::TypeValueInstantiation;
398}
399
401 return E->getSubExpr()->getDependence();
402}
403
406}
407
410}
411
413 if (E->isObjectReceiver())
415 if (E->isSuperReceiver())
418 ~ExprDependence::TypeValue;
419 assert(E->isClassReceiver());
420 return ExprDependence::None;
421}
422
424 return E->getBaseExpr()->getDependence() | E->getKeyExpr()->getDependence();
425}
426
429 ~ExprDependence::UnexpandedPack;
430}
431
433 return E->getSubExpr()->getDependence();
434}
435
437 auto D = E->getBase()->getDependence();
438 if (auto *LB = E->getLowerBound())
439 D |= LB->getDependence();
440 if (auto *Len = E->getLength())
441 D |= Len->getDependence();
442 return D;
443}
444
446 auto D = E->getBase()->getDependence();
447 for (Expr *Dim: E->getDimensions())
448 if (Dim)
449 D |= turnValueToTypeDependence(Dim->getDependence());
450 return D;
451}
452
455 for (unsigned I = 0, End = E->numOfIterators(); I < End; ++I) {
456 if (auto *DD = cast_or_null<DeclaratorDecl>(E->getIteratorDecl(I))) {
457 // If the type is omitted, it's 'int', and is not dependent in any way.
458 if (auto *TSI = DD->getTypeSourceInfo()) {
459 D |= toExprDependenceAsWritten(TSI->getType()->getDependence());
460 }
461 }
463 if (Expr *BE = IR.Begin)
464 D |= BE->getDependence();
465 if (Expr *EE = IR.End)
466 D |= EE->getDependence();
467 if (Expr *SE = IR.Step)
468 D |= SE->getDependence();
469 }
470 return D;
471}
472
473/// Compute the type-, value-, and instantiation-dependence of a
474/// declaration reference
475/// based on the declaration being referenced.
477 auto Deps = ExprDependence::None;
478
479 if (auto *NNS = E->getQualifier())
480 Deps |= toExprDependence(NNS->getDependence() &
481 ~NestedNameSpecifierDependence::Dependent);
482
483 if (auto *FirstArg = E->getTemplateArgs()) {
484 unsigned NumArgs = E->getNumTemplateArgs();
485 for (auto *Arg = FirstArg, *End = FirstArg + NumArgs; Arg < End; ++Arg)
486 Deps |= toExprDependence(Arg->getArgument().getDependence());
487 }
488
489 auto *Decl = E->getDecl();
490 auto Type = E->getType();
491
492 if (Decl->isParameterPack())
493 Deps |= ExprDependence::UnexpandedPack;
495 ExprDependence::Error;
496
497 // C++ [temp.dep.expr]p3:
498 // An id-expression is type-dependent if it contains:
499
500 // - an identifier associated by name lookup with one or more declarations
501 // declared with a dependent type
502 // - an identifier associated by name lookup with an entity captured by
503 // copy ([expr.prim.lambda.capture])
504 // in a lambda-expression that has an explicit object parameter whose
505 // type is dependent ([dcl.fct]),
506 //
507 // [The "or more" case is not modeled as a DeclRefExpr. There are a bunch
508 // more bullets here that we handle by treating the declaration as having a
509 // dependent type if they involve a placeholder type that can't be deduced.]
510 if (Type->isDependentType())
511 Deps |= ExprDependence::TypeValueInstantiation;
513 Deps |= ExprDependence::Instantiation;
514
515 // - an identifier associated by name lookup with an entity captured by
516 // copy ([expr.prim.lambda.capture])
518 Deps |= ExprDependence::Type;
519
520 // - a conversion-function-id that specifies a dependent type
521 if (Decl->getDeclName().getNameKind() ==
523 QualType T = Decl->getDeclName().getCXXNameType();
524 if (T->isDependentType())
525 return Deps | ExprDependence::TypeValueInstantiation;
526
528 Deps |= ExprDependence::Instantiation;
529 }
530
531 // - a template-id that is dependent,
532 // - a nested-name-specifier or a qualified-id that names a member of an
533 // unknown specialization
534 // [These are not modeled as DeclRefExprs.]
535
536 // or if it names a dependent member of the current instantiation that is a
537 // static data member of type "array of unknown bound of T" for some T
538 // [handled below].
539
540 // C++ [temp.dep.constexpr]p2:
541 // An id-expression is value-dependent if:
542
543 // - it is type-dependent [handled above]
544
545 // - it is the name of a non-type template parameter,
546 if (isa<NonTypeTemplateParmDecl>(Decl))
547 return Deps | ExprDependence::ValueInstantiation;
548
549 // - it names a potentially-constant variable that is initialized with an
550 // expression that is value-dependent
551 if (const auto *Var = dyn_cast<VarDecl>(Decl)) {
552 if (const Expr *Init = Var->getAnyInitializer()) {
553 if (Init->containsErrors())
554 Deps |= ExprDependence::Error;
555
556 if (Var->mightBeUsableInConstantExpressions(Ctx) &&
557 Init->isValueDependent())
558 Deps |= ExprDependence::ValueInstantiation;
559 }
560
561 // - it names a static data member that is a dependent member of the
562 // current instantiation and is not initialized in a member-declarator,
563 if (Var->isStaticDataMember() &&
564 Var->getDeclContext()->isDependentContext() &&
565 !Var->getFirstDecl()->hasInit()) {
566 const VarDecl *First = Var->getFirstDecl();
567 TypeSourceInfo *TInfo = First->getTypeSourceInfo();
568 if (TInfo->getType()->isIncompleteArrayType()) {
569 Deps |= ExprDependence::TypeValueInstantiation;
570 } else if (!First->hasInit()) {
571 Deps |= ExprDependence::ValueInstantiation;
572 }
573 }
574
575 return Deps;
576 }
577
578 // - it names a static member function that is a dependent member of the
579 // current instantiation
580 //
581 // FIXME: It's unclear that the restriction to static members here has any
582 // effect: any use of a non-static member function name requires either
583 // forming a pointer-to-member or providing an object parameter, either of
584 // which makes the overall expression value-dependent.
585 if (auto *MD = dyn_cast<CXXMethodDecl>(Decl)) {
586 if (MD->isStatic() && Decl->getDeclContext()->isDependentContext())
587 Deps |= ExprDependence::ValueInstantiation;
588 }
589
590 return Deps;
591}
592
594 // RecoveryExpr is
595 // - always value-dependent, and therefore instantiation dependent
596 // - contains errors (ExprDependence::Error), by definition
597 // - type-dependent if we don't know the type (fallback to an opaque
598 // dependent type), or the type is known and dependent, or it has
599 // type-dependent subexpressions.
601 ExprDependence::ErrorDependent;
602 // FIXME: remove the type-dependent bit from subexpressions, if the
603 // RecoveryExpr has a non-dependent type.
604 for (auto *S : E->subExpressions())
605 D |= S->getDependence();
606 return D;
607}
608
612}
613
616}
617
619 llvm::ArrayRef<Expr *> PreArgs) {
620 auto D = E->getCallee()->getDependence();
621 if (E->getType()->isDependentType())
622 D |= ExprDependence::Type;
623 for (auto *A : llvm::ArrayRef(E->getArgs(), E->getNumArgs())) {
624 if (A)
625 D |= A->getDependence();
626 }
627 for (auto *A : PreArgs)
628 D |= A->getDependence();
629 return D;
630}
631
635 for (unsigned I = 0, N = E->getNumExpressions(); I < N; ++I)
637 return D;
638}
639
641 auto D = ExprDependence::None;
642 if (Name.isInstantiationDependent())
643 D |= ExprDependence::Instantiation;
644 if (Name.containsUnexpandedParameterPack())
645 D |= ExprDependence::UnexpandedPack;
646 return D;
647}
648
650 auto D = E->getBase()->getDependence();
652
653 if (auto *NNS = E->getQualifier())
654 D |= toExprDependence(NNS->getDependence() &
655 ~NestedNameSpecifierDependence::Dependent);
656
657 auto *MemberDecl = E->getMemberDecl();
658 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
659 DeclContext *DC = MemberDecl->getDeclContext();
660 // dyn_cast_or_null is used to handle objC variables which do not
661 // have a declaration context.
662 CXXRecordDecl *RD = dyn_cast_or_null<CXXRecordDecl>(DC);
663 if (RD && RD->isDependentContext() && RD->isCurrentInstantiation(DC)) {
664 if (!E->getType()->isDependentType())
666 }
667
668 // Bitfield with value-dependent width is type-dependent.
669 if (FD && FD->isBitField() && FD->getBitWidth()->isValueDependent()) {
670 D |= ExprDependence::Type;
671 }
672 }
673 // FIXME: move remaining dependence computation from MemberExpr::Create()
674 return D;
675}
676
678 auto D = ExprDependence::None;
679 for (auto *A : E->inits())
680 D |= A->getDependence();
681 return D;
682}
683
686 for (auto *C : llvm::ArrayRef(E->getSubExprs(), E->getNumSubExprs()))
687 D |= C->getDependence();
688 return D;
689}
690
692 bool ContainsUnexpandedPack) {
693 auto D = ContainsUnexpandedPack ? ExprDependence::UnexpandedPack
694 : ExprDependence::None;
695 for (auto *AE : E->getAssocExprs())
696 D |= AE->getDependence() & ExprDependence::Error;
697
698 if (E->isExprPredicate())
699 D |= E->getControllingExpr()->getDependence() & ExprDependence::Error;
700 else
703
704 if (E->isResultDependent())
705 return D | ExprDependence::TypeValueInstantiation;
706 return D | (E->getResultExpr()->getDependence() &
707 ~ExprDependence::UnexpandedPack);
708}
709
711 auto Deps = E->getInit()->getDependence();
712 for (const auto &D : E->designators()) {
713 auto DesignatorDeps = ExprDependence::None;
714 if (D.isArrayDesignator())
715 DesignatorDeps |= E->getArrayIndex(D)->getDependence();
716 else if (D.isArrayRangeDesignator())
717 DesignatorDeps |= E->getArrayRangeStart(D)->getDependence() |
719 Deps |= DesignatorDeps;
720 if (DesignatorDeps & ExprDependence::TypeValue)
721 Deps |= ExprDependence::TypeValueInstantiation;
722 }
723 return Deps;
724}
725
727 auto D = O->getSyntacticForm()->getDependence();
728 for (auto *E : O->semantics())
729 D |= E->getDependence();
730 return D;
731}
732
734 auto D = ExprDependence::None;
735 for (auto *E : llvm::ArrayRef(A->getSubExprs(), A->getNumSubExprs()))
736 D |= E->getDependence();
737 return D;
738}
739
744 auto Size = E->getArraySize();
745 if (Size && *Size)
746 D |= turnTypeToValueDependence((*Size)->getDependence());
747 if (auto *I = E->getInitializer())
748 D |= turnTypeToValueDependence(I->getDependence());
749 for (auto *A : E->placement_arguments())
750 D |= turnTypeToValueDependence(A->getDependence());
751 return D;
752}
753
755 auto D = E->getBase()->getDependence();
756 if (auto *TSI = E->getDestroyedTypeInfo())
757 D |= toExprDependenceAsWritten(TSI->getType()->getDependence());
758 if (auto *ST = E->getScopeTypeInfo())
760 toExprDependenceAsWritten(ST->getType()->getDependence()));
761 if (auto *Q = E->getQualifier())
762 D |= toExprDependence(Q->getDependence() &
763 ~NestedNameSpecifierDependence::Dependent);
764 return D;
765}
766
769 bool KnownInstantiationDependent,
770 bool KnownContainsUnexpandedParameterPack) {
771 auto Deps = ExprDependence::None;
772 if (KnownDependent)
773 Deps |= ExprDependence::TypeValue;
774 if (KnownInstantiationDependent)
775 Deps |= ExprDependence::Instantiation;
776 if (KnownContainsUnexpandedParameterPack)
777 Deps |= ExprDependence::UnexpandedPack;
778 Deps |= getDependenceInExpr(E->getNameInfo());
779 if (auto *Q = E->getQualifier())
780 Deps |= toExprDependence(Q->getDependence() &
781 ~NestedNameSpecifierDependence::Dependent);
782 for (auto *D : E->decls()) {
783 if (D->getDeclContext()->isDependentContext() ||
784 isa<UnresolvedUsingValueDecl>(D))
785 Deps |= ExprDependence::TypeValueInstantiation;
786 }
787 // If we have explicit template arguments, check for dependent
788 // template arguments and whether they contain any unexpanded pack
789 // expansions.
790 for (const auto &A : E->template_arguments())
791 Deps |= toExprDependence(A.getArgument().getDependence());
792 return Deps;
793}
794
796 auto D = ExprDependence::TypeValue;
798 if (auto *Q = E->getQualifier())
799 D |= toExprDependence(Q->getDependence());
800 for (const auto &A : E->template_arguments())
801 D |= toExprDependence(A.getArgument().getDependence());
802 return D;
803}
804
808 for (auto *A : E->arguments())
809 D |= A->getDependence() & ~ExprDependence::Type;
810 return D;
811}
812
814 CXXConstructExpr *BaseE = E;
817 computeDependence(BaseE);
818}
819
821 return E->getExpr()->getDependence();
822}
823
825 return E->getExpr()->getDependence();
826}
827
829 bool ContainsUnexpandedParameterPack) {
831 if (ContainsUnexpandedParameterPack)
832 D |= ExprDependence::UnexpandedPack;
833 return D;
834}
835
837 auto D = ExprDependence::ValueInstantiation;
840 for (auto *A : E->arguments())
841 D |= A->getDependence() &
842 (ExprDependence::UnexpandedPack | ExprDependence::Error);
843 return D;
844}
845
847 auto D = ExprDependence::TypeValueInstantiation;
848 if (!E->isImplicitAccess())
849 D |= E->getBase()->getDependence();
850 if (auto *Q = E->getQualifier())
851 D |= toExprDependence(Q->getDependence());
853 for (const auto &A : E->template_arguments())
854 D |= toExprDependence(A.getArgument().getDependence());
855 return D;
856}
857
859 return E->getSubExpr()->getDependence();
860}
861
863 auto D = ExprDependence::TypeValueInstantiation;
864 for (const auto *C : {E->getLHS(), E->getRHS()}) {
865 if (C)
866 D |= C->getDependence() & ~ExprDependence::UnexpandedPack;
867 }
868 return D;
869}
870
872 auto D = ExprDependence::None;
873 for (const auto *A : E->getInitExprs())
874 D |= A->getDependence();
875 return D;
876}
877
879 auto D = ExprDependence::None;
880 for (const auto *A : E->getArgs())
881 D |= toExprDependenceAsWritten(A->getType()->getDependence()) &
883 return D;
884}
885
887 bool ValueDependent) {
888 auto TA = TemplateArgumentDependence::None;
889 const auto InterestingDeps = TemplateArgumentDependence::Instantiation |
890 TemplateArgumentDependence::UnexpandedPack;
891 for (const TemplateArgumentLoc &ArgLoc :
893 TA |= ArgLoc.getArgument().getDependence() & InterestingDeps;
894 if (TA == InterestingDeps)
895 break;
896 }
897
899 ValueDependent ? ExprDependence::Value : ExprDependence::None;
900 auto Res = D | toExprDependence(TA);
901 if(!ValueDependent && E->getSatisfaction().ContainsErrors)
902 Res |= ExprDependence::Error;
903 return Res;
904}
905
907 auto D = ExprDependence::None;
908 Expr **Elements = E->getElements();
909 for (unsigned I = 0, N = E->getNumElements(); I != N; ++I)
910 D |= turnTypeToValueDependence(Elements[I]->getDependence());
911 return D;
912}
913
915 auto Deps = ExprDependence::None;
916 for (unsigned I = 0, N = E->getNumElements(); I < N; ++I) {
917 auto KV = E->getKeyValueElement(I);
918 auto KVDeps = turnTypeToValueDependence(KV.Key->getDependence() |
919 KV.Value->getDependence());
920 if (KV.EllipsisLoc.isValid())
921 KVDeps &= ~ExprDependence::UnexpandedPack;
922 Deps |= KVDeps;
923 }
924 return Deps;
925}
926
928 auto D = ExprDependence::None;
929 if (auto *R = E->getInstanceReceiver())
930 D |= R->getDependence();
931 else
933 for (auto *A : E->arguments())
934 D |= A->getDependence();
935 return D;
936}
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:772
Represents a loop initializing the elements of an array.
Definition: Expr.h:5518
OpaqueValueExpr * getCommonExpr() const
Get the common subexpression shared by all initializations (the source array).
Definition: Expr.h:5533
Expr * getSubExpr() const
Get the initializer to use for each array element.
Definition: Expr.h:5538
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:2836
QualType getQueriedType() const
Definition: ExprCXX.h:2878
Expr * getDimensionExpression() const
Definition: ExprCXX.h:2884
AsTypeExpr - Clang builtin function __builtin_astype [OpenCL 6.2.4.2] This AST node provides support ...
Definition: Expr.h:6241
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
Definition: Expr.h:6260
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
Definition: Expr.h:6444
Expr ** getSubExprs()
Definition: Expr.h:6521
static unsigned getNumSubExprs(AtomicOp Op)
Determine the number of arguments the specified atomic builtin should have.
Definition: Expr.cpp:4959
BinaryConditionalOperator - The GNU extension to the conditional operator which allows the middle ope...
Definition: Expr.h:4248
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression which will be evaluated if the condnition evaluates to false;...
Definition: Expr.h:4302
Expr * getCommon() const
getCommon - Return the common expression, written to the left of the condition.
Definition: Expr.h:4283
A builtin binary operation expression such as "x + y" or "x <= y".
Definition: Expr.h:3847
Expr * getLHS() const
Definition: Expr.h:3896
Expr * getRHS() const
Definition: Expr.h:3898
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
Definition: Expr.h:6180
const BlockDecl * getBlockDecl() const
Definition: Expr.h:6192
Represents binding an expression to a temporary.
Definition: ExprCXX.h:1475
const Expr * getSubExpr() const
Definition: ExprCXX.h:1497
Represents a call to a C++ constructor.
Definition: ExprCXX.h:1530
arg_range arguments()
Definition: ExprCXX.h:1654
A default argument (C++ [dcl.fct.default]).
Definition: ExprCXX.h:1254
A use of a default initializer in a constructor or in aggregate initialization.
Definition: ExprCXX.h:1361
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:2481
Expr * getArgument()
Definition: ExprCXX.h:2522
Represents a C++ member access expression where the actual member referenced could not be resolved be...
Definition: ExprCXX.h:3645
const DeclarationNameInfo & getMemberNameInfo() const
Retrieve the name of the member that this expression refers to.
Definition: ExprCXX.h:3782
NestedNameSpecifier * getQualifier() const
Retrieve the nested-name-specifier that qualifies the member name.
Definition: ExprCXX.h:3756
Expr * getBase() const
Retrieve the base object of this member expressions, e.g., the x in x.m.
Definition: ExprCXX.h:3739
bool isImplicitAccess() const
True if this is an implicit access, i.e.
Definition: ExprCXX.h:3731
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: ExprCXX.h:3850
Represents a folding of a pack over an operator.
Definition: ExprCXX.h:4791
Expr * getRHS() const
Definition: ExprCXX.h:4826
Expr * getLHS() const
Definition: ExprCXX.h:4825
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
Definition: ExprCXX.h:2224
llvm::iterator_range< arg_iterator > placement_arguments()
Definition: ExprCXX.h:2427
QualType getAllocatedType() const
Definition: ExprCXX.h:2302
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:2337
TypeSourceInfo * getAllocatedTypeSourceInfo() const
Definition: ExprCXX.h:2306
Expr * getInitializer()
The initializer of this new-expression.
Definition: ExprCXX.h:2397
Represents a C++11 noexcept expression (C++ [expr.unary.noexcept]).
Definition: ExprCXX.h:4088
Expr * getOperand() const
Definition: ExprCXX.h:4105
Represents a list-initialization with parenthesis.
Definition: ExprCXX.h:4913
ArrayRef< Expr * > getInitExprs()
Definition: ExprCXX.h:4953
Represents a C++ pseudo-destructor (C++ [expr.pseudo]).
Definition: ExprCXX.h:2600
TypeSourceInfo * getDestroyedTypeInfo() const
Retrieve the source location information for the type being destroyed.
Definition: ExprCXX.h:2694
TypeSourceInfo * getScopeTypeInfo() const
Retrieve the scope type in a qualified pseudo-destructor expression.
Definition: ExprCXX.h:2678
NestedNameSpecifier * getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
Definition: ExprCXX.h:2658
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:2165
TypeSourceInfo * getTypeSourceInfo() const
Definition: ExprCXX.h:2184
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:1869
TypeSourceInfo * getTypeSourceInfo() const
Definition: ExprCXX.h:1898
Represents the this expression in C++.
Definition: ExprCXX.h:1148
A C++ throw-expression (C++ [except.throw]).
Definition: ExprCXX.h:1192
const Expr * getSubExpr() const
Definition: ExprCXX.h:1212
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:3519
QualType getTypeAsWritten() const
Retrieve the type that is being constructed, as specified in the source code.
Definition: ExprCXX.h:3553
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:3540
ChooseExpr - GNU builtin-in function __builtin_choose_expr.
Definition: Expr.h:4565
Expr * getLHS() const
Definition: Expr.h:4607
bool isConditionDependent() const
Definition: Expr.h:4595
bool isConditionTrue() const
isConditionTrue - Return whether the condition is true (i.e.
Definition: Expr.h:4588
Expr * getRHS() const
Definition: Expr.h:4609
Expr * getCond() const
Definition: Expr.h:4605
CompoundLiteralExpr - [C99 6.5.2.5].
Definition: Expr.h:3420
const Expr * getInitializer() const
Definition: Expr.h:3443
TypeSourceInfo * getTypeSourceInfo() const
Definition: Expr.h:3453
Stmt * getStmtExprResult()
Definition: Stmt.h:1721
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:4186
Expr * getLHS() const
Definition: Expr.h:4220
Expr * getCond() const
getCond - Return the expression representing the condition for the ?: operator.
Definition: Expr.h:4209
Expr * getRHS() const
Definition: Expr.h:4221
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
Definition: Expr.h:4506
TypeSourceInfo * getTypeSourceInfo() const
getTypeSourceInfo - Return the destination type.
Definition: Expr.h:4529
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
Definition: Expr.h:4526
Represents an expression that might suspend coroutine execution; either a co_await or co_yield expres...
Definition: ExprCXX.h:5030
Expr * getResumeExpr() const
Definition: ExprCXX.h:5094
Expr * getCommonExpr() const
Definition: ExprCXX.h:5079
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition: DeclBase.h:1446
bool isDependentContext() const
Determines whether this context is dependent on a template parameter.
Definition: DeclBase.cpp:1265
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:85
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:564
DeclContext * getDeclContext()
Definition: DeclBase.h:453
Represents a 'co_await' expression while the type of the promise is dependent.
Definition: ExprCXX.h:5176
Expr * getOperand() const
Definition: ExprCXX.h:5199
A qualified reference to a name whose declaration cannot yet be resolved.
Definition: ExprCXX.h:3285
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: ExprCXX.h:3393
NestedNameSpecifier * getQualifier() const
Retrieve the nested-name-specifier that qualifies this declaration.
Definition: ExprCXX.h:3337
const DeclarationNameInfo & getNameInfo() const
Retrieve the name that this expression refers to.
Definition: ExprCXX.h:3321
Represents a C99 designated initializer expression.
Definition: Expr.h:5099
Expr * getArrayRangeEnd(const Designator &D) const
Definition: Expr.cpp:4655
llvm::MutableArrayRef< Designator > designators()
Definition: Expr.h:5332
Expr * getArrayRangeStart(const Designator &D) const
Definition: Expr.cpp:4650
Expr * getArrayIndex(const Designator &D) const
Definition: Expr.cpp:4645
Expr * getInit() const
Retrieve the initializer value.
Definition: Expr.h:5367
ExplicitCastExpr - An explicit cast written in the source code.
Definition: Expr.h:3737
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:3061
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:2907
Expr * getQueriedExpression() const
Definition: ExprCXX.h:2946
ExtVectorElementExpr - This represents access to specific elements of a vector, and may occur on the ...
Definition: Expr.h:6120
const Expr * getBase() const
Definition: Expr.h:6137
Represents a member of a struct/union/class.
Definition: Decl.h:3025
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:5732
TypeSourceInfo * getControllingType()
Return the controlling type of this generic selection expression.
Definition: Expr.h:6007
ArrayRef< Expr * > getAssocExprs() const
Definition: Expr.h:6027
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
Definition: Expr.h:5988
Expr * getResultExpr()
Return the result expression of this controlling expression.
Definition: Expr.h:6016
bool isResultDependent() const
Whether this generic selection is result-dependent.
Definition: Expr.h:5984
Expr * getControllingExpr()
Return the controlling expression of this generic selection expression.
Definition: Expr.h:5995
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
Definition: Expr.h:3662
Represents an implicitly-generated value initialization of an object of a given type.
Definition: Expr.h:5607
Describes an C or C++ initializer list.
Definition: Expr.h:4854
ArrayRef< Expr * > inits()
Definition: Expr.h:4894
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Definition: ExprCXX.h:1938
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:4679
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
Definition: ExprCXX.h:4696
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:3183
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
Definition: Expr.h:3262
Expr * getBase() const
Definition: Expr.h:3256
NestedNameSpecifier * getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
Definition: Expr.h:3290
DeclarationNameInfo getMemberNameInfo() const
Retrieve the member declaration name info.
Definition: Expr.h:3356
Represents a place-holder for an object not to be initialized by anything.
Definition: Expr.h:5427
OpenMP 5.0 [2.1.5, Array Sections].
Definition: ExprOpenMP.h:56
Expr * getLength()
Get length of array section.
Definition: ExprOpenMP.h:102
Expr * getBase()
An array section can be written only as Base[LowerBound:Length].
Definition: ExprOpenMP.h:85
Expr * getLowerBound()
Get lower bound of array section.
Definition: ExprOpenMP.h:94
An explicit cast in C or a C-style cast in C++, which uses the syntax ([s1][s2]......
Definition: ExprOpenMP.h:148
Expr * getBase()
Fetches base expression of array shaping expression.
Definition: ExprOpenMP.h:214
ArrayRef< Expr * > getDimensions() const
Fetches the dimensions for array shaping expression.
Definition: ExprOpenMP.h:204
OpenMP 5.0 [2.1.6 Iterators] Iterators are identifiers that expand to multiple values in the clause o...
Definition: ExprOpenMP.h:275
IteratorRange getIteratorRange(unsigned I)
Gets the iterator range for the given iterator.
Definition: Expr.cpp:5213
unsigned numOfIterators() const
Returns number of iterator definitions.
Definition: ExprOpenMP.h:399
Decl * getIteratorDecl(unsigned I)
Gets the iterator declaration for the given iterator.
Definition: Expr.cpp:5209
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:2966
NestedNameSpecifier * getQualifier() const
Fetches the nested-name qualifier, if one was given.
Definition: ExprCXX.h:3081
const DeclarationNameInfo & getNameInfo() const
Gets the full name info.
Definition: ExprCXX.h:3072
llvm::iterator_range< decls_iterator > decls() const
Definition: ExprCXX.h:3064
ArrayRef< TemplateArgumentLoc > template_arguments() const
Definition: ExprCXX.h:3132
Represents a C++11 pack expansion that produces a sequence of expressions.
Definition: ExprCXX.h:4142
Expr * getPattern()
Retrieve the pattern of the pack expansion.
Definition: ExprCXX.h:4171
Expr * getIndexExpr() const
Definition: ExprCXX.h:4400
ArrayRef< Expr * > getExpressions() const
Definition: ExprCXX.h:4417
std::optional< unsigned > getSelectedIndex() const
Definition: ExprCXX.h:4402
Expr * getPackIdExpression() const
Definition: ExprCXX.h:4396
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:6312
ArrayRef< Expr * > semantics()
Definition: Expr.h:6391
Expr * getSyntacticForm()
Return the syntactic form of this expression, i.e.
Definition: Expr.h:6354
A (possibly-)qualified type.
Definition: Type.h:738
Frontend produces RecoveryExprs on semantic errors that prevent creating other well-formed expression...
Definition: Expr.h:6647
ArrayRef< Expr * > subExpressions()
Definition: Expr.h:6654
TypeSourceInfo * getTypeSourceInfo()
Definition: Expr.h:2091
ShuffleVectorExpr - clang-specific builtin-in function __builtin_shufflevector.
Definition: Expr.h:4438
Expr ** getSubExprs()
Retrieve the array of expressions.
Definition: Expr.h:4475
unsigned getNumSubExprs() const
getNumSubExprs - Return the size of the SubExprs array.
Definition: Expr.h:4472
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
Definition: Expr.h:4390
CompoundStmt * getSubStmt()
Definition: Expr.h:4407
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Definition: ExprCXX.h:4435
Location wrapper for a TemplateArgument.
Definition: TemplateBase.h:524
A container of type source information.
Definition: Type.h:7090
QualType getType() const
Return the type wrapped by this type source info.
Definition: Type.h:7101
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
Definition: ExprCXX.h:2751
ArrayRef< TypeSourceInfo * > getArgs() const
Retrieve the argument types.
Definition: ExprCXX.h:2807
The base class of the type hierarchy.
Definition: Type.h:1607
bool isIncompleteArrayType() const
Definition: Type.h:7445
bool isInstantiationDependentType() const
Determine whether this type is an instantiation-dependent type, meaning that the type involves a temp...
Definition: Type.h:2450
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
Definition: Type.h:2442
TypeDependence getDependence() const
Definition: Type.h:2431
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:4674
TypeSourceInfo * getWrittenTypeInfo() const
Definition: Expr.h:4698
const Expr * getSubExpr() const
Definition: Expr.h:4690
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)
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:278