13#ifndef LLVM_CLANG_AST_EXPR_H
14#define LLVM_CLANG_AST_EXPR_H
31#include "llvm/ADT/APFloat.h"
32#include "llvm/ADT/APSInt.h"
33#include "llvm/ADT/SmallVector.h"
34#include "llvm/ADT/StringRef.h"
35#include "llvm/ADT/iterator.h"
36#include "llvm/ADT/iterator_range.h"
37#include "llvm/Support/AtomicOrdering.h"
38#include "llvm/Support/Compiler.h"
39#include "llvm/Support/TrailingObjects.h"
61class WarnUnusedResultAttr;
129 assert(
ExprBits.ObjectKind == OK &&
"truncated kind");
139 ExprBits.Dependent =
static_cast<unsigned>(Deps);
154 "Expressions can't have reference type");
179 return static_cast<bool>(
getDependence() & ExprDependence::Value);
196 return static_cast<bool>(
getDependence() & ExprDependence::Type);
225 return static_cast<bool>(
getDependence() & ExprDependence::Instantiation);
243 return static_cast<bool>(
getDependence() & ExprDependence::UnexpandedPack);
248 return static_cast<bool>(
getDependence() & ExprDependence::Error);
271 static
std::pair<const
NamedDecl *, const WarnUnusedResultAttr *>
340 class Classification {
377 unsigned short Modifiable;
380 : Kind(k), Modifiable(m)
388 assert(Modifiable !=
CM_Untested &&
"Did not test for modifiability.");
417 return ClassifyImpl(Ctx,
nullptr);
429 return ClassifyImpl(Ctx, &Loc);
442 : (RT->getPointeeType()->isFunctionType()
535 return BT->getKind() == K;
558 bool IgnoreTemplateOrMacroSubstitution =
false)
const;
569 std::optional<llvm::APSInt>
571 bool AllowRelaxedEval =
false)
const;
588 bool AllowRelaxedEval =
false)
const;
613 const Expr **Culprit =
nullptr)
const;
682 bool InConstantContext =
false)
const;
689 bool InConstantContext =
false)
const;
702 bool InConstantContext =
false)
const;
709 bool InConstantContext =
false)
const;
715 bool InConstantContext =
false)
const;
730 bool IncludePossibleEffects =
true)
const;
750 bool InConstantContext =
false)
const;
758 bool IsConstantInitializer)
const;
798 unsigned Type)
const;
807 const Expr *SizeExpression,
809 EvalResult &Status)
const;
813 EvalResult &Status)
const;
892 return const_cast<Expr *
>(
this)->IgnoreImpCasts();
903 return const_cast<Expr *
>(
this)->IgnoreCasts();
913 return const_cast<Expr *
>(
this)->IgnoreImplicit();
923 return const_cast<Expr *
>(
this)->IgnoreImplicitAsWritten();
935 return const_cast<Expr *
>(
this)->IgnoreParens();
949 return const_cast<Expr *
>(
this)->IgnoreParenImpCasts();
958 return const_cast<Expr *
>(
this)->IgnoreParenCasts();
965 return const_cast<Expr *
>(
this)->IgnoreConversionOperatorSingleStep();
978 return const_cast<Expr *
>(
this)->IgnoreParenLValueCasts();
999 return const_cast<Expr *
>(
this)->IgnoreParenBaseCasts();
1052 return T->getStmtClass() >= firstExprConstant &&
1053 T->getStmtClass() <= lastExprConstant;
1059 llvm::ConstantLog2<alignof(Expr)>(),
1060 "PointerLikeTypeTraits<Expr*> assumes too much alignment.");
1090 return T->getStmtClass() >= firstFullExprConstant &&
1091 T->getStmtClass() <= lastFullExprConstant;
1100class ConstantExpr final
1102 private llvm::TrailingObjects<ConstantExpr, APValue, uint64_t> {
1103 static_assert(std::is_same<uint64_t, llvm::APInt::WordType>::value,
1104 "ConstantExpr assumes that llvm::APInt::WordType is uint64_t "
1105 "for tail-allocated storage");
1106 friend TrailingObjects;
1110 size_t numTrailingObjects(OverloadToken<APValue>)
const {
1113 size_t numTrailingObjects(OverloadToken<uint64_t>)
const {
1117 uint64_t &Int64Result() {
1119 "invalid accessor");
1120 return *getTrailingObjects<uint64_t>();
1122 const uint64_t &Int64Result()
const {
1123 return const_cast<ConstantExpr *
>(
this)->Int64Result();
1127 "invalid accessor");
1128 return *getTrailingObjects<APValue>();
1130 APValue &APValueResult()
const {
1131 return const_cast<ConstantExpr *
>(
this)->APValueResult();
1135 bool IsImmediateInvocation);
1139 static ConstantExpr *
Create(
const ASTContext &Context,
Expr *E,
1141 static ConstantExpr *
1144 bool IsImmediateInvocation =
false);
1145 static ConstantExpr *
CreateEmpty(
const ASTContext &Context,
1150 const ASTContext &Context);
1153 return SubExpr->getBeginLoc();
1160 return T->getStmtClass() == ConstantExprClass;
1205 :
Expr(OpaqueValueExprClass,
T,
VK, OK), SourceExpr(SourceExpr) {
1223 return SourceExpr ? SourceExpr->getBeginLoc() :
getLocation();
1226 return SourceExpr ? SourceExpr->getEndLoc() :
getLocation();
1229 return SourceExpr ? SourceExpr->getExprLoc() :
getLocation();
1251 assert((!
V || SourceExpr) &&
1252 "unique OVEs are expected to have source expressions");
1259 return T->getStmtClass() == OpaqueValueExprClass;
1286class DeclRefExpr final
1288 private llvm::TrailingObjects<DeclRefExpr, NestedNameSpecifierLoc,
1289 NamedDecl *, ASTTemplateKWAndArgsInfo,
1290 TemplateArgumentLoc> {
1293 friend TrailingObjects;
1302 size_t numTrailingObjects(OverloadToken<NestedNameSpecifierLoc>)
const {
1306 size_t numTrailingObjects(OverloadToken<NamedDecl *>)
const {
1307 return hasFoundDecl();
1310 size_t numTrailingObjects(OverloadToken<ASTTemplateKWAndArgsInfo>)
const {
1318 DeclRefExpr(
const ASTContext &Ctx, NestedNameSpecifierLoc QualifierLoc,
1319 SourceLocation TemplateKWLoc, ValueDecl *D,
1320 bool RefersToEnclosingVariableOrCapture,
1321 const DeclarationNameInfo &NameInfo, NamedDecl *FoundD,
1322 const TemplateArgumentListInfo *TemplateArgs, QualType
T,
1329 DeclRefExpr(
const ASTContext &Ctx, ValueDecl *D,
1330 bool RefersToEnclosingVariableOrCapture, QualType
T,
1332 const DeclarationNameLoc &LocInfo = DeclarationNameLoc(),
1335 static DeclRefExpr *
1336 Create(
const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc,
1337 SourceLocation TemplateKWLoc, ValueDecl *D,
1338 bool RefersToEnclosingVariableOrCapture, SourceLocation NameLoc,
1340 const TemplateArgumentListInfo *TemplateArgs =
nullptr,
1343 static DeclRefExpr *
1344 Create(
const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc,
1345 SourceLocation TemplateKWLoc, ValueDecl *D,
1346 bool RefersToEnclosingVariableOrCapture,
1347 const DeclarationNameInfo &NameInfo, QualType
T,
ExprValueKind VK,
1348 NamedDecl *FoundD =
nullptr,
1349 const TemplateArgumentListInfo *TemplateArgs =
nullptr,
1353 static DeclRefExpr *
CreateEmpty(
const ASTContext &Context,
bool HasQualifier,
1355 bool HasTemplateKWAndArgsInfo,
1356 unsigned NumTemplateArgs);
1386 return *getTrailingObjects<NestedNameSpecifierLoc>();
1402 return hasFoundDecl() ? *getTrailingObjects<NamedDecl *>() : D;
1408 return hasFoundDecl() ? *getTrailingObjects<NamedDecl *>() : D;
1420 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->TemplateKWLoc;
1428 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->LAngleLoc;
1436 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->RAngleLoc;
1451 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->copyInto(
1452 getTrailingObjects<TemplateArgumentLoc>(), List);
1460 return getTrailingObjects<TemplateArgumentLoc>();
1468 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->NumTemplateArgs;
1507 return DeclRefExprBits.CapturedByCopyInLambdaWithExplicitObjectParameter;
1517 return T->getStmtClass() == DeclRefExprClass;
1561 return T->getStmtClass() == IntegerLiteralClass;
1579 :
Expr(FixedPointLiteralClass,
Empty) {}
1587 const llvm::APInt &
V,
1609 return T->getStmtClass() == FixedPointLiteralClass;
1633 Value(value), Loc(l) {
1658 return T->getStmtClass() == CharacterLiteralClass;
1675 FloatingLiteral(
const ASTContext &
C,
const llvm::APFloat &
V,
bool isexact,
1690 assert(&
getSemantics() == &Val.getSemantics() &&
"Inconsistent semantics");
1697 return static_cast<llvm::APFloatBase::Semantics
>(
1709 return llvm::APFloatBase::EnumToSemantics(
1710 static_cast<llvm::APFloatBase::Semantics
>(
1734 return T->getStmtClass() == FloatingLiteralClass;
1761 :
Expr(ImaginaryLiteralClass,
Empty) { }
1768 return Val->getBeginLoc();
1773 return T->getStmtClass() == ImaginaryLiteralClass;
1816class StringLiteral final
1818 private llvm::TrailingObjects<StringLiteral, unsigned, SourceLocation,
1821 friend TrailingObjects;
1837 unsigned numTrailingObjects(OverloadToken<unsigned>)
const {
return 1; }
1838 unsigned numTrailingObjects(OverloadToken<SourceLocation>)
const {
1842 unsigned numTrailingObjects(OverloadToken<char>)
const {
1846 char *getStrDataAsChar() {
return getTrailingObjects<char>(); }
1847 const char *getStrDataAsChar()
const {
return getTrailingObjects<char>(); }
1849 const uint16_t *getStrDataAsUInt16()
const {
1850 return reinterpret_cast<const uint16_t *
>(getTrailingObjects<char>());
1853 const uint32_t *getStrDataAsUInt32()
const {
1854 return reinterpret_cast<const uint32_t *
>(getTrailingObjects<char>());
1859 bool Pascal, QualType Ty, ArrayRef<SourceLocation> Locs);
1862 StringLiteral(
EmptyShell Empty,
unsigned NumConcatenated,
unsigned Length,
1863 unsigned CharByteWidth);
1866 static unsigned mapCharByteWidth(TargetInfo
const &
Target,
1870 void setStrTokenLoc(
unsigned TokNum, SourceLocation L) {
1872 getTrailingObjects<SourceLocation>()[TokNum] = L;
1878 static StringLiteral *
Create(
const ASTContext &Ctx, StringRef Str,
1880 ArrayRef<SourceLocation> Locs);
1883 static StringLiteral *
CreateEmpty(
const ASTContext &Ctx,
1884 unsigned NumConcatenated,
unsigned Length,
1885 unsigned CharByteWidth);
1889 "This function is used in places that assume strings use char");
1907 assert(I <
getLength() &&
"out of bounds access");
1910 return static_cast<unsigned char>(getStrDataAsChar()[I]);
1912 return getStrDataAsUInt16()[I];
1914 return getStrDataAsUInt32()[I];
1916 llvm_unreachable(
"Unsupported character width!");
1926 llvm::APInt AInt(Width, (uint64_t)
V);
1927 V = AInt.getSExtValue();
1944 unsigned getLength()
const {
return *getTrailingObjects<unsigned>(); }
1992 return getTrailingObjects<SourceLocation>()[TokNum];
2004 unsigned *StartToken =
nullptr,
2005 unsigned *StartTokenByteOffset =
nullptr)
const;
2010 return getTrailingObjects<SourceLocation>();
2021 return T->getStmtClass() == StringLiteralClass;
2047class PredefinedExpr final
2049 private llvm::TrailingObjects<PredefinedExpr, Stmt *> {
2051 friend TrailingObjects;
2066 assert(hasFunctionName() &&
2067 "This PredefinedExpr has no storage for a function name!");
2068 *getTrailingObjects() = SL;
2078 bool IsTransparent, StringLiteral *SL);
2082 bool HasFunctionName);
2094 return hasFunctionName()
2100 return hasFunctionName()
2111 const Decl *CurrentDecl,
2112 bool ForceElaboratedPrinting =
false);
2118 return T->getStmtClass() == PredefinedExprClass;
2123 return child_range(getTrailingObjects(hasFunctionName()));
2134class OpenACCAsteriskSizeExpr final :
public Expr {
2140 AsteriskLoc(AsteriskLoc) {}
2142 void setAsteriskLocation(
SourceLocation Loc) { AsteriskLoc = Loc; }
2146 SourceLocation Loc);
2154 return T->getStmtClass() == OpenACCAsteriskSizeExprClass;
2170class SYCLUniqueStableNameExpr final :
public Expr {
2183 void setLParenLocation(SourceLocation L) { LParen = L; }
2184 void setRParenLocation(SourceLocation L) { RParen = L; }
2204 return T->getStmtClass() == SYCLUniqueStableNameExprClass;
2234 L(l), R(r), Val(val) {
2259 return T->getStmtClass() == ParenExprClass;
2272 ParenExprBits.ProducedByFoldExpansion = ProducedByFoldExpansion;
2288 private llvm::TrailingObjects<UnaryOperator, FPOptionsOverride> {
2293 return *getTrailingObjects();
2298 return *getTrailingObjects();
2359 return Op == UO_PostInc || Op == UO_PostDec;
2364 return Op == UO_PreInc || Op == UO_PreDec;
2371 return Op == UO_PreInc || Op == UO_PostInc;
2378 return Op == UO_PreDec || Op == UO_PostDec;
2390 return Op >= UO_Plus && Op <= UO_LNot;
2415 return T->getStmtClass() == UnaryOperatorClass;
2429 return getTrailingFPFeatures();
2481 enum { MaskBits = 2, Mask = 0x03 };
2501 : Range(LBracketLoc, RBracketLoc), Data((Index << 2) |
Array) {}
2505 : Range(DotLoc.isValid() ? DotLoc : NameLoc, NameLoc),
2511 : Range(DotLoc.isValid() ? DotLoc : NameLoc, NameLoc),
2569class OffsetOfExpr final
2571 private llvm::TrailingObjects<OffsetOfExpr, OffsetOfNode, Expr *> {
2580 size_t numTrailingObjects(OverloadToken<OffsetOfNode>)
const {
2589 explicit OffsetOfExpr(
unsigned numComps,
unsigned numExprs)
2591 TSInfo(
nullptr), NumComps(numComps), NumExprs(numExprs) {}
2601 unsigned NumComps,
unsigned NumExprs);
2619 return getTrailingObjects<OffsetOfNode>(NumComps)[Idx];
2623 getTrailingObjects<OffsetOfNode>(NumComps)[Idx] = ON;
2631 return getTrailingObjects<Expr *>(NumExprs)[Idx];
2635 return getTrailingObjects<Expr *>(NumExprs)[Idx];
2639 getTrailingObjects<Expr *>(NumComps)[Idx] = E;
2650 return T->getStmtClass() == OffsetOfExprClass;
2655 Stmt **begin =
reinterpret_cast<Stmt **
>(getTrailingObjects<Expr *>());
2659 Stmt *
const *begin =
2660 reinterpret_cast<Stmt *
const *
>(getTrailingObjects<Expr *>());
2682 OpLoc(op), RParenLoc(rp) {
2683 assert(ExprKind <= UETT_Last &&
"invalid enum value!");
2685 assert(
static_cast<unsigned>(ExprKind) ==
2687 "UnaryExprOrTypeTraitExprBits.Kind overflow!");
2689 Argument.Ty = TInfo;
2699 :
Expr(UnaryExprOrTypeTraitExprClass,
Empty) { }
2705 assert(K <= UETT_Last &&
"invalid enum value!");
2708 "UnaryExprOrTypeTraitExprBits.Kind overflow!");
2716 assert(
isArgumentType() &&
"calling getArgumentType() when arg is expr");
2720 assert(!
isArgumentType() &&
"calling getArgumentExpr() when arg is type");
2721 return static_cast<Expr*
>(Argument.Ex);
2732 Argument.Ty = TInfo;
2752 return T->getStmtClass() == UnaryExprOrTypeTraitExprClass;
2766 enum { LHS, RHS, END_EXPR };
2767 Stmt *SubExprs[END_EXPR];
2774 :
Expr(ArraySubscriptExprClass, t,
VK, OK) {
2775 SubExprs[LHS] = lhs;
2776 SubExprs[RHS] = rhs;
2783 :
Expr(ArraySubscriptExprClass, Shell) { }
2825 return T->getStmtClass() == ArraySubscriptExprClass;
2830 return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
2840 enum { BASE, ROW_IDX, END_EXPR };
2841 Stmt *SubExprs[END_EXPR];
2852 :
Expr(MatrixSingleSubscriptExprClass,
T,
2855 SubExprs[BASE] =
Base;
2856 SubExprs[ROW_IDX] = RowIdx;
2863 :
Expr(MatrixSingleSubscriptExprClass, Shell) {}
2891 return T->getStmtClass() == MatrixSingleSubscriptExprClass;
2896 return child_range(&SubExprs[0], &SubExprs[0] + END_EXPR);
2910 enum { BASE, ROW_IDX, COLUMN_IDX, END_EXPR };
2911 Stmt *SubExprs[END_EXPR];
2918 SubExprs[BASE] =
Base;
2919 SubExprs[ROW_IDX] = RowIdx;
2920 SubExprs[COLUMN_IDX] = ColumnIdx;
2927 :
Expr(MatrixSubscriptExprClass, Shell) {}
2931 assert((SubExprs[COLUMN_IDX] || IsIncomplete) &&
2932 "expressions without column index must be marked as incomplete");
2933 return IsIncomplete;
2946 "cannot get the column index of an incomplete expression");
2969 return T->getStmtClass() == MatrixSubscriptExprClass;
2974 return child_range(&SubExprs[0], &SubExprs[0] + END_EXPR);
2988 enum { FN = 0, PREARGS_START = 1 };
3025 template <
typename T>
3026 static constexpr unsigned
3034 Stmt **getTrailingStmts() {
3035 return reinterpret_cast<Stmt **
>(
reinterpret_cast<char *
>(
this) +
3038 Stmt *
const *getTrailingStmts()
const {
3039 return const_cast<CallExpr *
>(
this)->getTrailingStmts();
3042 unsigned getSizeOfTrailingStmts()
const {
3046 size_t getOffsetOfTrailingFPFeatures()
const {
3071 bool HasFPFeatures) {
3072 return (1 + NumPreArgs + NumArgs) *
sizeof(
Stmt *) +
3077 assert(I <
getNumPreArgs() &&
"Prearg access out of range!");
3078 return getTrailingStmts()[PREARGS_START + I];
3081 assert(I <
getNumPreArgs() &&
"Prearg access out of range!");
3082 return getTrailingStmts()[PREARGS_START + I];
3085 assert(I <
getNumPreArgs() &&
"Prearg access out of range!");
3086 getTrailingStmts()[PREARGS_START + I] = PreArg;
3096 getSizeOfTrailingStmts());
3102 getSizeOfTrailingStmts());
3132 bool HasFPFeatures, EmptyShell
Empty);
3149 return CallExprBits.ExplicitObjectMemFunUsingMemberSyntax;
3157 updateTrailingSourceLoc();
3182 return reinterpret_cast<Expr **
>(getTrailingStmts() + PREARGS_START +
3186 return reinterpret_cast<const Expr *
const *
>(
3192 assert(Arg <
getNumArgs() &&
"Arg access out of range!");
3196 assert(Arg <
getNumArgs() &&
"Arg access out of range!");
3205 assert(Arg <
getNumArgs() &&
"Arg access out of range!");
3213 ArrayRef(
reinterpret_cast<Expr **
>(getTrailingStmts() + PREARGS_START),
3225 "shrinkNumArgs cannot increase the number of arguments!");
3226 NumArgs = NewNumArgs;
3245 return getTrailingStmts() + PREARGS_START +
getNumPreArgs();
3250 return getTrailingStmts() + PREARGS_START +
getNumPreArgs();
3308 std::pair<const NamedDecl *, const WarnUnusedResultAttr *>
3326 reinterpret_cast<const char *
>(
this + 1));
3344 bool hasTrailingSourceLoc()
const {
3348 void updateTrailingSourceLoc() {
3350 "Trailing source loc already set?");
3352 "Calling setTrailingSourceLocs on a subclass of CallExpr");
3357 reinterpret_cast<SourceLocation *
>(
reinterpret_cast<char *
>(
this + 1));
3379 std::optional<llvm::APInt>
3385 return T->getStmtClass() >= firstCallExprConstant &&
3386 T->getStmtClass() <= lastCallExprConstant;
3391 return child_range(getTrailingStmts(), getTrailingStmts() + PREARGS_START +
3397 getTrailingStmts() + PREARGS_START +
3404class MemberExpr final
3406 private llvm::TrailingObjects<MemberExpr, NestedNameSpecifierLoc,
3407 DeclAccessPair, ASTTemplateKWAndArgsInfo,
3408 TemplateArgumentLoc> {
3412 friend TrailingObjects;
3429 size_t numTrailingObjects(OverloadToken<NestedNameSpecifierLoc>)
const {
3433 size_t numTrailingObjects(OverloadToken<DeclAccessPair>)
const {
3434 return hasFoundDecl();
3437 size_t numTrailingObjects(OverloadToken<ASTTemplateKWAndArgsInfo>)
const {
3438 return hasTemplateKWAndArgsInfo();
3441 bool hasFoundDecl()
const {
return MemberExprBits.HasFoundDecl; }
3443 bool hasTemplateKWAndArgsInfo()
const {
3447 MemberExpr(
Expr *Base,
bool IsArrow, SourceLocation OperatorLoc,
3448 NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc,
3449 ValueDecl *MemberDecl, DeclAccessPair FoundDecl,
3450 const DeclarationNameInfo &NameInfo,
3451 const TemplateArgumentListInfo *TemplateArgs, QualType
T,
3454 :
Expr(MemberExprClass,
Empty), Base(), MemberDecl() {}
3457 static MemberExpr *
Create(
const ASTContext &
C,
Expr *Base,
bool IsArrow,
3458 SourceLocation OperatorLoc,
3459 NestedNameSpecifierLoc QualifierLoc,
3460 SourceLocation TemplateKWLoc, ValueDecl *MemberDecl,
3461 DeclAccessPair FoundDecl,
3462 DeclarationNameInfo MemberNameInfo,
3463 const TemplateArgumentListInfo *TemplateArgs,
3481 bool HasTemplateKWAndArgsInfo,
3482 unsigned NumTemplateArgs);
3496 if (!hasFoundDecl())
3499 return *getTrailingObjects<DeclAccessPair>();
3513 return *getTrailingObjects<NestedNameSpecifierLoc>();
3526 if (!hasTemplateKWAndArgsInfo())
3528 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->TemplateKWLoc;
3534 if (!hasTemplateKWAndArgsInfo())
3536 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->LAngleLoc;
3542 if (!hasTemplateKWAndArgsInfo())
3544 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->RAngleLoc;
3558 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->copyInto(
3559 getTrailingObjects<TemplateArgumentLoc>(), List);
3568 return getTrailingObjects<TemplateArgumentLoc>();
3577 return getTrailingObjects<ASTTemplateKWAndArgsInfo>()->NumTemplateArgs;
3587 MemberLoc, MemberDNLoc);
3637 return T->getStmtClass() == MemberExprClass;
3658 llvm::PointerIntPair<TypeSourceInfo *, 1, bool> TInfoAndScope;
3662 mutable APValue *StaticValue =
nullptr;
3668 LParenLoc(lparenloc), TInfoAndScope(tinfo, fileScope), Init(init) {
3669 assert(Init &&
"Init is a nullptr");
3675 :
Expr(CompoundLiteralExprClass,
Empty) { }
3688 return TInfoAndScope.getPointer();
3691 TInfoAndScope.setPointer(tinfo);
3699 if (LParenLoc.isInvalid())
3700 return Init->getBeginLoc();
3706 return T->getStmtClass() == CompoundLiteralExprClass;
3723 bool CastConsistency()
const;
3726 return const_cast<CastExpr*
>(
this)->path_buffer();
3734 Expr *op,
unsigned BasePathSize,
bool HasFPFeatures)
3740 "BasePathSize overflow!");
3741 assert(CastConsistency());
3753 "BasePathSize overflow!");
3807 llvm::iterator_range<path_iterator>
path() {
3810 llvm::iterator_range<path_const_iterator>
path()
const {
3865 return T->getStmtClass() >= firstCastExprConstant &&
3866 T->getStmtClass() <= lastCastExprConstant;
3894class ImplicitCastExpr final
3896 private llvm::TrailingObjects<ImplicitCastExpr, CXXBaseSpecifier *,
3897 FPOptionsOverride> {
3902 :
CastExpr(ImplicitCastExprClass, ty,
VK,
kind, op, BasePathLength,
3910 explicit ImplicitCastExpr(
EmptyShell Shell,
unsigned PathSize,
3912 :
CastExpr(ImplicitCastExprClass, Shell, PathSize, HasFPFeatures) {}
3914 unsigned numTrailingObjects(OverloadToken<CXXBaseSpecifier *>)
const {
3923 FPO.requiresTrailingStorage()) {
3939 unsigned PathSize,
bool HasFPFeatures);
3949 return T->getStmtClass() == ImplicitCastExprClass;
3989 :
CastExpr(SC, Shell, PathSize, HasFPFeatures) {}
4002 return T->getStmtClass() >= firstExplicitCastExprConstant &&
4003 T->getStmtClass() <= lastExplicitCastExprConstant;
4010class CStyleCastExpr final
4012 private llvm::TrailingObjects<CStyleCastExpr, CXXBaseSpecifier *,
4013 FPOptionsOverride> {
4022 LPLoc(l), RPLoc(r) {
4028 explicit CStyleCastExpr(
EmptyShell Shell,
unsigned PathSize,
4032 unsigned numTrailingObjects(OverloadToken<CXXBaseSpecifier *>)
const {
4037 static CStyleCastExpr *
4043 unsigned PathSize,
bool HasFPFeatures);
4057 return T->getStmtClass() == CStyleCastExprClass;
4083 enum { LHS, RHS, END_EXPR };
4084 Stmt *SubExprs[END_EXPR];
4160 return Opc == BO_PtrMemD || Opc == BO_PtrMemI;
4165 return Opc >= BO_Mul && Opc <= BO_Rem;
4191 llvm_unreachable(
"Not a comparison operator.");
4192 case BO_LT:
return BO_GE;
4193 case BO_GT:
return BO_LE;
4194 case BO_LE:
return BO_GT;
4195 case BO_GE:
return BO_LT;
4196 case BO_EQ:
return BO_NE;
4197 case BO_NE:
return BO_EQ;
4204 llvm_unreachable(
"Not a comparison operator.");
4205 case BO_LT:
return BO_GT;
4206 case BO_GT:
return BO_LT;
4207 case BO_LE:
return BO_GE;
4208 case BO_GE:
return BO_LE;
4219 return Opc >= BO_Assign && Opc <= BO_OrAssign;
4224 return Opc > BO_Assign && Opc <= BO_OrAssign;
4231 if (Opc >= BO_AndAssign)
4232 return Opcode(
unsigned(Opc) - BO_AndAssign + BO_And);
4234 return Opcode(
unsigned(Opc) - BO_MulAssign + BO_Mul);
4238 return Opc == BO_ShlAssign || Opc == BO_ShrAssign;
4252 return S->
getStmtClass() >= firstBinaryOperatorConstant &&
4258 return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
4360 ComputationLHSType(CompLHSType), ComputationResultType(CompResultType) {
4362 "Only should be used for compound assignments");
4367 bool hasFPFeatures);
4385 return S->
getStmtClass() == CompoundAssignOperatorClass;
4405 :
Expr(SC,
T,
VK, OK), QuestionLoc(qloc), ColonLoc(cloc) {}
4428 return T->getStmtClass() == ConditionalOperatorClass ||
4429 T->getStmtClass() == BinaryConditionalOperatorClass;
4436 enum { COND, LHS, RHS, END_EXPR };
4437 Stmt* SubExprs[END_EXPR];
4446 SubExprs[COND] = cond;
4447 SubExprs[LHS] = lhs;
4448 SubExprs[RHS] = rhs;
4480 return T->getStmtClass() == ConditionalOperatorClass;
4485 return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
4498 enum { COMMON, COND, LHS, RHS, NUM_SUBEXPRS };
4505 Stmt *SubExprs[NUM_SUBEXPRS];
4516 OpaqueValue(opaqueValue) {
4517 SubExprs[COMMON] = common;
4518 SubExprs[COND] = cond;
4519 SubExprs[LHS] = lhs;
4520 SubExprs[RHS] = rhs;
4521 assert(OpaqueValue->getSourceExpr() == common &&
"Wrong opaque value");
4563 return T->getStmtClass() == BinaryConditionalOperatorClass;
4568 return child_range(SubExprs, SubExprs + NUM_SUBEXPRS);
4577 return co->getCond();
4583 return co->getTrueExpr();
4589 return co->getFalseExpr();
4601 LabelLoc(LLoc), Label(L) {
4621 return T->getStmtClass() == AddrLabelExprClass;
4646 LParenLoc(LParenLoc), RParenLoc(RParenLoc) {
4671 return T->getStmtClass() == StmtExprClass;
4714 return T->getStmtClass() == ShuffleVectorExprClass;
4728 "Arg access out of range!");
4733 "Arg access out of range!");
4741 "Shuffle idx out of range!");
4743 "Index expression must be a ConstantExpr");
4761class ConvertVectorExpr final
4763 private llvm::TrailingObjects<ConvertVectorExpr, FPOptionsOverride> {
4769 friend TrailingObjects;
4781 :
Expr(ConvertVectorExprClass, DstType,
VK, OK), SrcExpr(SrcExpr),
4782 TInfo(TI), BuiltinLoc(BuiltinLoc), RParenLoc(RParenLoc) {
4789 size_t numTrailingObjects(OverloadToken<FPOptionsOverride>)
const {
4793 FPOptionsOverride &getTrailingFPFeatures() {
4795 return *getTrailingObjects();
4798 const FPOptionsOverride &getTrailingFPFeatures()
const {
4800 return *getTrailingObjects();
4804 static ConvertVectorExpr *
CreateEmpty(
const ASTContext &
C,
4805 bool hasFPFeatures);
4807 static ConvertVectorExpr *
Create(
const ASTContext &
C,
Expr *SrcExpr,
4808 TypeSourceInfo *TI, QualType DstType,
4810 SourceLocation BuiltinLoc,
4811 SourceLocation RParenLoc,
4812 FPOptionsOverride FPFeatures);
4827 return getTrailingFPFeatures();
4873 return T->getStmtClass() == ConvertVectorExprClass;
4893 enum { COND, LHS, RHS, END_EXPR };
4894 Stmt* SubExprs[END_EXPR];
4901 :
Expr(ChooseExprClass, t,
VK, OK), BuiltinLoc(BLoc), RParenLoc(RP) {
4903 SubExprs[COND] = cond;
4904 SubExprs[LHS] = lhs;
4905 SubExprs[RHS] = rhs;
4917 "Dependent condition isn't true or false");
4949 return T->getStmtClass() == ChooseExprClass;
4954 return child_range(&SubExprs[0], &SubExprs[0]+END_EXPR);
4988 return T->getStmtClass() == GNUNullExprClass;
5007 llvm::PointerIntPair<TypeSourceInfo *, 2, VarArgKind> TInfo;
5013 TInfo(TInfo, VaKind), BuiltinLoc(BLoc), RParenLoc(RPLoc) {
5047 return T->getStmtClass() == VAArgExprClass;
5085 const Expr *DefaultExpr)
const;
5106 llvm_unreachable(
"unknown source location expression kind");
5127 return T->getStmtClass() == SourceLocExprClass;
5185 unsigned NumOfElements;
5189 unsigned Begin,
unsigned NumOfElements);
5209 template <
bool Const>
5210 class ChildElementIter
5211 :
public llvm::iterator_facade_base<
5212 ChildElementIter<Const>, std::random_access_iterator_tag,
5213 std::conditional_t<Const, const IntegerLiteral *,
5214 IntegerLiteral *>> {
5218 unsigned long long CurOffset = ULLONG_MAX;
5219 using BaseTy =
typename ChildElementIter::iterator_facade_base;
5229 assert(EExpr && CurOffset != ULLONG_MAX &&
5230 "trying to dereference an invalid iterator");
5234 EExpr->Data->BinaryData->getCodeUnit(CurOffset),
5238 return const_cast<typename BaseTy::reference
>(EExpr->FakeChildNode);
5241 using BaseTy::operator++;
5243 assert(EExpr &&
"trying to increment an invalid iterator");
5244 assert(CurOffset != ULLONG_MAX &&
5245 "Already at the end of what we can iterate over");
5247 EExpr->getDataElementCount() + EExpr->getStartingElementPos()) {
5248 CurOffset = ULLONG_MAX;
5254 return (EExpr ==
Other.EExpr && CurOffset ==
Other.CurOffset);
5282 return T->getStmtClass() == EmbedExprClass;
5291 template <
typename Call,
typename... Targs>
5293 Targs &&...Fargs)
const {
5295 if (!std::invoke(std::forward<Call>(
C),
const_cast<IntegerLiteral *
>(It),
5296 StartingIndexInArray, std::forward<Targs>(Fargs)...))
5298 StartingIndexInArray++;
5355 InitExprsTy InitExprs;
5363 llvm::PointerIntPair<InitListExpr *, 1, bool> AltForm;
5372 llvm::PointerUnion<Expr *, FieldDecl *> ArrayFillerOrUnionFieldInit;
5390 unsigned Sum = InitExprs.size();
5391 for (
auto *IE : InitExprs)
5392 if (
auto *EE = dyn_cast<EmbedExpr>(IE))
5393 Sum += EE->getDataElementCount() - 1;
5402 return reinterpret_cast<Expr *
const *
>(InitExprs.data());
5409 return cast_or_null<Expr>(InitExprs[
Init]);
5414 return cast_or_null<Expr>(InitExprs[
Init]);
5456 return dyn_cast_if_present<Expr *>(ArrayFillerOrUnionFieldInit);
5469 return llvm::any_of(
5480 return dyn_cast_if_present<FieldDecl *>(ArrayFillerOrUnionFieldInit);
5486 assert((FD ==
nullptr
5489 &&
"Only one field of a union may be initialized at a time!");
5490 ArrayFillerOrUnionFieldInit = FD;
5520 return !AltForm.getInt() || !AltForm.getPointer();
5527 AltForm.setPointer(
Init);
5528 AltForm.setInt(
true);
5529 Init->AltForm.setPointer(
this);
5530 Init->AltForm.setInt(
false);
5544 return T->getStmtClass() == InitListExprClass;
5556 if (InitExprs.empty())
5599class DesignatedInitExpr final
5601 private llvm::TrailingObjects<DesignatedInitExpr, Stmt *> {
5613 LLVM_PREFERRED_TYPE(
bool)
5614 unsigned GNUSyntax : 1;
5617 unsigned NumDesignators : 15;
5622 unsigned NumSubExprs : 16;
5633 explicit DesignatedInitExpr(
unsigned NumSubExprs)
5635 NumDesignators(0), NumSubExprs(NumSubExprs), Designators(
nullptr) { }
5646 struct FieldDesignatorInfo {
5663 : NameOrField(
reinterpret_cast<uintptr_t>(II) | 0x1), DotLoc(DotLoc),
5664 FieldLoc(FieldLoc) {}
5668 struct ArrayOrRangeDesignatorInfo {
5683 ArrayOrRangeDesignatorInfo(
unsigned Index,
SourceLocation LBracketLoc,
5685 : Index(Index), LBracketLoc(LBracketLoc), RBracketLoc(RBracketLoc) {}
5687 ArrayOrRangeDesignatorInfo(
unsigned Index,
5691 : Index(Index), LBracketLoc(LBracketLoc), EllipsisLoc(EllipsisLoc),
5692 RBracketLoc(RBracketLoc) {}
5696 enum DesignatorKind {
5699 ArrayRangeDesignator
5702 DesignatorKind Kind;
5712 Designator(DesignatorKind Kind) : Kind(Kind) {}
5728 Designator D(FieldDesignator);
5729 new (&D.
FieldInfo) FieldDesignatorInfo(FieldName, DotLoc, FieldLoc);
5764 Designator D(ArrayDesignator);
5775 Designator D(ArrayRangeDesignator);
5784 "Only valid on an array or array-range designator");
5790 "Only valid on an array or array-range designator");
5796 "Only valid on an array-range designator");
5802 "Only valid on an array or array-range designator");
5828 unsigned NumIndexExprs);
5831 unsigned size()
const {
return NumDesignators; }
5835 return {Designators, NumDesignators};
5839 return {Designators, NumDesignators};
5848 unsigned NumDesigs);
5884 return cast<Expr>(getTrailingObjects(NumSubExprs)[Idx]);
5888 getTrailingObjects(NumSubExprs)[Idx] = E;
5902 return T->getStmtClass() == DesignatedInitExprClass;
5907 Stmt **begin = getTrailingObjects();
5911 Stmt *
const *begin = getTrailingObjects();
5938 return T->getStmtClass() == NoInitExprClass;
5967 Stmt *BaseAndUpdaterExprs[2];
5974 :
Expr(DesignatedInitUpdateExprClass,
Empty) { }
5980 return T->getStmtClass() == DesignatedInitUpdateExprClass;
5994 return child_range(&BaseAndUpdaterExprs[0], &BaseAndUpdaterExprs[0] + 2);
5998 &BaseAndUpdaterExprs[0] + 2);
6018class ArrayInitLoopExpr :
public Expr {
6022 :
Expr(ArrayInitLoopExprClass,
Empty), SubExprs{} {}
6027 SubExprs{CommonInit, ElementInit} {
6071class ArrayInitIndexExpr :
public Expr {
6073 :
Expr(ArrayInitIndexExprClass,
Empty) {}
6116 :
Expr(ImplicitValueInitExprClass,
Empty) { }
6119 return T->getStmtClass() == ImplicitValueInitExprClass;
6134class ParenListExpr final
6136 private llvm::TrailingObjects<ParenListExpr, Stmt *> {
6138 friend TrailingObjects;
6168 return const_cast<ParenListExpr *
>(
this)->
getExpr(
Init);
6174 return reinterpret_cast<Expr *
const *
>(getTrailingObjects());
6185 return T->getStmtClass() == ParenListExprClass;
6229class GenericSelectionExpr final
6231 private llvm::TrailingObjects<GenericSelectionExpr, Stmt *,
6235 friend TrailingObjects;
6241 unsigned NumAssocs : 15;
6242 unsigned ResultIndex : 15;
6243 LLVM_PREFERRED_TYPE(
bool)
6244 unsigned IsExprPredicate : 1;
6246 ResultDependentIndex = 0x7FFF
6249 unsigned getIndexOfControllingExpression()
const {
6253 assert(
isExprPredicate() &&
"Asking for the controlling expression of a "
6254 "selection expr predicated by a type");
6258 unsigned getIndexOfControllingType()
const {
6262 "selection expr predicated by an expression");
6266 unsigned getIndexOfStartOfAssociatedExprs()
const {
6273 unsigned getIndexOfStartOfAssociatedTypes()
const {
6282 SourceLocation DefaultLoc, RParenLoc;
6295 unsigned numTrailingObjects(OverloadToken<Stmt *>)
const {
6301 unsigned numTrailingObjects(OverloadToken<TypeSourceInfo *>)
const {
6307 template <
bool Const>
class AssociationIteratorTy;
6311 template <
bool Const>
class AssociationTy {
6312 friend class GenericSelectionExpr;
6313 template <
bool OtherConst>
friend class AssociationIteratorTy;
6314 using ExprPtrTy = std::conditional_t<Const, const Expr *, Expr *>;
6316 std::conditional_t<Const, const TypeSourceInfo *, TypeSourceInfo *>;
6320 AssociationTy(ExprPtrTy E, TSIPtrTy TSI,
bool Selected)
6321 : E(E), TSI(TSI), Selected(Selected) {}
6324 ExprPtrTy getAssociationExpr()
const {
return E; }
6325 TSIPtrTy getTypeSourceInfo()
const {
return TSI; }
6326 QualType
getType()
const {
return TSI ? TSI->getType() : QualType(); }
6327 bool isSelected()
const {
return Selected; }
6328 AssociationTy *operator->() {
return this; }
6329 const AssociationTy *operator->()
const {
return this; }
6336 template <
bool Const>
6337 class AssociationIteratorTy
6338 :
public llvm::iterator_facade_base<
6339 AssociationIteratorTy<Const>, std::input_iterator_tag,
6340 AssociationTy<Const>, std::ptrdiff_t, AssociationTy<Const>,
6341 AssociationTy<Const>> {
6342 friend class GenericSelectionExpr;
6356 using BaseTy =
typename AssociationIteratorTy::iterator_facade_base;
6357 using StmtPtrPtrTy =
6358 std::conditional_t<Const, const Stmt *const *, Stmt **>;
6359 using TSIPtrPtrTy = std::conditional_t<
Const,
const TypeSourceInfo *
const *,
6361 StmtPtrPtrTy E =
nullptr;
6363 unsigned Offset = 0, SelectedOffset = 0;
6364 AssociationIteratorTy(StmtPtrPtrTy E, TSIPtrPtrTy TSI,
unsigned Offset,
6365 unsigned SelectedOffset)
6366 : E(E), TSI(TSI), Offset(Offset), SelectedOffset(SelectedOffset) {}
6370 typename BaseTy::reference
operator*()
const {
6371 return AssociationTy<Const>(
cast<Expr>(*E), *TSI,
6372 Offset == SelectedOffset);
6374 typename BaseTy::pointer operator->()
const {
return **
this; }
6375 using BaseTy::operator++;
6376 AssociationIteratorTy &operator++() {
6382 bool operator==(AssociationIteratorTy
Other)
const {
return E ==
Other.E; }
6387 GenericSelectionExpr(
const ASTContext &Context, SourceLocation GenericLoc,
6388 Expr *ControllingExpr,
6389 ArrayRef<TypeSourceInfo *> AssocTypes,
6390 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6391 SourceLocation RParenLoc,
6392 bool ContainsUnexpandedParameterPack,
6393 unsigned ResultIndex);
6397 GenericSelectionExpr(
const ASTContext &Context, SourceLocation GenericLoc,
6398 Expr *ControllingExpr,
6399 ArrayRef<TypeSourceInfo *> AssocTypes,
6400 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6401 SourceLocation RParenLoc,
6402 bool ContainsUnexpandedParameterPack);
6406 GenericSelectionExpr(
const ASTContext &Context, SourceLocation GenericLoc,
6407 TypeSourceInfo *ControllingType,
6408 ArrayRef<TypeSourceInfo *> AssocTypes,
6409 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6410 SourceLocation RParenLoc,
6411 bool ContainsUnexpandedParameterPack,
6412 unsigned ResultIndex);
6416 GenericSelectionExpr(
const ASTContext &Context, SourceLocation GenericLoc,
6417 TypeSourceInfo *ControllingType,
6418 ArrayRef<TypeSourceInfo *> AssocTypes,
6419 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6420 SourceLocation RParenLoc,
6421 bool ContainsUnexpandedParameterPack);
6429 static GenericSelectionExpr *
6430 Create(
const ASTContext &Context, SourceLocation GenericLoc,
6431 Expr *ControllingExpr, ArrayRef<TypeSourceInfo *> AssocTypes,
6432 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6433 SourceLocation RParenLoc,
bool ContainsUnexpandedParameterPack,
6434 unsigned ResultIndex);
6438 static GenericSelectionExpr *
6439 Create(
const ASTContext &Context, SourceLocation GenericLoc,
6440 Expr *ControllingExpr, ArrayRef<TypeSourceInfo *> AssocTypes,
6441 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6442 SourceLocation RParenLoc,
bool ContainsUnexpandedParameterPack);
6446 static GenericSelectionExpr *
6447 Create(
const ASTContext &Context, SourceLocation GenericLoc,
6448 TypeSourceInfo *ControllingType, ArrayRef<TypeSourceInfo *> AssocTypes,
6449 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6450 SourceLocation RParenLoc,
bool ContainsUnexpandedParameterPack,
6451 unsigned ResultIndex);
6455 static GenericSelectionExpr *
6456 Create(
const ASTContext &Context, SourceLocation GenericLoc,
6457 TypeSourceInfo *ControllingType, ArrayRef<TypeSourceInfo *> AssocTypes,
6458 ArrayRef<Expr *> AssocExprs, SourceLocation DefaultLoc,
6459 SourceLocation RParenLoc,
bool ContainsUnexpandedParameterPack);
6462 static GenericSelectionExpr *
CreateEmpty(
const ASTContext &Context,
6463 unsigned NumAssocs);
6471 llvm::iterator_range<ConstAssociationIterator>;
6481 "Generic selection is result-dependent but getResultIndex called!");
6499 getTrailingObjects<Stmt *>()[getIndexOfControllingExpression()]);
6503 getTrailingObjects<Stmt *>()[getIndexOfControllingExpression()]);
6510 return getTrailingObjects<TypeSourceInfo *>()[getIndexOfControllingType()];
6513 return getTrailingObjects<TypeSourceInfo *>()[getIndexOfControllingType()];
6520 getTrailingObjects<Stmt *>()[getIndexOfStartOfAssociatedExprs() +
6525 getTrailingObjects<Stmt *>()[getIndexOfStartOfAssociatedExprs() +
6530 return {
reinterpret_cast<Expr *
const *
>(getTrailingObjects<Stmt *>() +
6531 getIndexOfStartOfAssociatedExprs()),
6535 return {getTrailingObjects<TypeSourceInfo *>() +
6536 getIndexOfStartOfAssociatedTypes(),
6544 "Out-of-range index in GenericSelectionExpr::getAssociation!");
6547 getTrailingObjects<Stmt *>()[getIndexOfStartOfAssociatedExprs() +
6555 "Out-of-range index in GenericSelectionExpr::getAssociation!");
6558 getTrailingObjects<Stmt *>()[getIndexOfStartOfAssociatedExprs() +
6567 getIndexOfStartOfAssociatedExprs(),
6568 getTrailingObjects<TypeSourceInfo *>() +
6569 getIndexOfStartOfAssociatedTypes(),
6572 NumAssocs, ResultIndex);
6573 return llvm::make_range(Begin, End);
6578 getIndexOfStartOfAssociatedExprs(),
6579 getTrailingObjects<TypeSourceInfo *>() +
6580 getIndexOfStartOfAssociatedTypes(),
6583 NumAssocs, ResultIndex);
6584 return llvm::make_range(Begin, End);
6596 return T->getStmtClass() == GenericSelectionExprClass;
6601 numTrailingObjects(OverloadToken<Stmt *>())));
6605 numTrailingObjects(OverloadToken<Stmt *>())));
6688 return T->getStmtClass() == ExtVectorElementExprClass;
6716 return T->getStmtClass() == MatrixElementExprClass;
6754 return T->getStmtClass() == BlockExprClass;
6796 :
Expr(AsTypeExprClass, DstType,
VK, OK), SrcExpr(SrcExpr),
6797 BuiltinLoc(BuiltinLoc), RParenLoc(RParenLoc) {
6814 return T->getStmtClass() == AsTypeExprClass;
6852class PseudoObjectExpr final
6854 private llvm::TrailingObjects<PseudoObjectExpr, Expr *> {
6868 unsigned resultIndex);
6870 PseudoObjectExpr(
EmptyShell shell,
unsigned numSemanticExprs);
6872 unsigned getNumSubExprs()
const {
6883 unsigned resultIndex);
6886 unsigned numSemanticExprs);
6908 return const_cast<PseudoObjectExpr*
>(
this)->
getResultExpr();
6917 return getTrailingObjects() + 1;
6920 return getTrailingObjects() + getNumSubExprs();
6923 return getTrailingObjects() + getNumSubExprs();
6927 return getTrailingObjects(getNumSubExprs()).drop_front();
6930 return getTrailingObjects(getNumSubExprs()).drop_front();
6934 return getTrailingObjects(getNumSubExprs())[
index + 1];
6953 const_cast<const PseudoObjectExpr *
>(
this)->
children();
6958 Stmt *
const *cs =
const_cast<Stmt *
const *
>(
6959 reinterpret_cast<const Stmt *
const *
>(getTrailingObjects()));
6964 return T->getStmtClass() == PseudoObjectExprClass;
6981#define ATOMIC_BUILTIN(ID, TYPE, ATTRS) AO ## ID,
6982#include "clang/Basic/Builtins.inc"
6991 enum {
PTR, ORDER, VAL1, ORDER_FAIL, VAL2, WEAK, END_EXPR };
6992 Stmt *SubExprs[END_EXPR + 1];
6993 unsigned NumSubExprs;
6994 SourceLocation BuiltinLoc, RParenLoc;
7017 return cast<Expr>(SubExprs[NumSubExprs - 1]);
7020 if (Op == AO__c11_atomic_init || Op == AO__opencl_atomic_init)
7022 assert(NumSubExprs > VAL1);
7026 assert(NumSubExprs > ORDER_FAIL);
7030 if (Op == AO__atomic_exchange || Op == AO__scoped_atomic_exchange)
7032 assert(NumSubExprs > VAL2);
7036 assert(NumSubExprs > WEAK);
7044#define ATOMIC_BUILTIN(ID, TYPE, ATTRS) \
7047#include "clang/Basic/Builtins.inc"
7049 llvm_unreachable(
"not an atomic operator?");
7055 return reinterpret_cast<Expr *
const *
>(SubExprs);
7063 return getOp() == AO__c11_atomic_compare_exchange_strong ||
7064 getOp() == AO__c11_atomic_compare_exchange_weak ||
7065 getOp() == AO__hip_atomic_compare_exchange_strong ||
7066 getOp() == AO__opencl_atomic_compare_exchange_strong ||
7067 getOp() == AO__opencl_atomic_compare_exchange_weak ||
7068 getOp() == AO__hip_atomic_compare_exchange_weak ||
7069 getOp() == AO__atomic_compare_exchange ||
7070 getOp() == AO__atomic_compare_exchange_n ||
7071 getOp() == AO__scoped_atomic_compare_exchange ||
7072 getOp() == AO__scoped_atomic_compare_exchange_n;
7077 case AO__atomic_load_n:
7078 case AO__scoped_atomic_load_n:
7079 case AO__c11_atomic_load:
7080 case AO__opencl_atomic_load:
7081 case AO__hip_atomic_load:
7082 case AO__atomic_test_and_set:
7083 case AO__atomic_clear:
7091 return getOp() >= AO__opencl_atomic_compare_exchange_strong &&
7092 getOp() <= AO__opencl_atomic_store;
7096 return Op >= AO__hip_atomic_compare_exchange_strong &&
7097 Op <= AO__hip_atomic_store;
7113 return T->getStmtClass() == AtomicExprClass;
7118 return child_range(SubExprs, SubExprs+NumSubExprs);
7129 if (Op >= AO__opencl_atomic_compare_exchange_strong &&
7130 Op <= AO__opencl_atomic_store && Op != AO__opencl_atomic_init)
7132 if (Op >= AO__hip_atomic_compare_exchange_strong &&
7133 Op <= AO__hip_atomic_store)
7135 if (Op >= AO__scoped_atomic_add_fetch && Op <= AO__scoped_atomic_xor_fetch)
7283 OPENACC_END_EXPR = STRIDE
7287 Stmt *SubExprs[END_EXPR] = {
nullptr};
7288 SourceLocation ColonLocFirst;
7289 SourceLocation ColonLocSecond;
7290 SourceLocation RBracketLoc;
7299 ColonLocFirst(ColonLocFirst), ColonLocSecond(ColonLocSecond),
7300 RBracketLoc(RBracketLoc) {
7302 setLowerBound(LowerBound);
7313 ColonLocFirst(ColonLoc), RBracketLoc(RBracketLoc) {
7315 setLowerBound(LowerBound);
7322 :
Expr(ArraySectionExprClass, Shell) {}
7340 return T->getStmtClass() == ArraySectionExprClass;
7353 return cast_or_null<Expr>(SubExprs[LOWER_BOUND]);
7363 "Stride not valid in OpenACC subarrays");
7364 return cast_or_null<Expr>(SubExprs[STRIDE]);
7369 "Stride not valid in OpenACC subarrays");
7370 return cast_or_null<Expr>(SubExprs[STRIDE]);
7381 "second colon for stride not valid in OpenACC subarrays");
7382 return ColonLocSecond;
7404 void setBase(
Expr *E) { SubExprs[BASE] = E; }
7407 void setLowerBound(
Expr *E) { SubExprs[LOWER_BOUND] = E; }
7410 void setLength(
Expr *E) { SubExprs[LENGTH] = E; }
7413 void setStride(
Expr *E) {
7415 "Stride not valid in OpenACC subarrays");
7416 SubExprs[STRIDE] = E;
7419 void setColonLocFirst(SourceLocation L) { ColonLocFirst = L; }
7421 void setColonLocSecond(SourceLocation L) {
7423 "second colon for stride not valid in OpenACC subarrays");
7426 void setRBracketLoc(SourceLocation L) { RBracketLoc = L; }
7447class HLSLOutArgExpr :
public Expr {
7457 Stmt *SubExprs[NumSubExprs];
7461 Expr *WB,
bool IsInOut)
7464 SubExprs[BaseLValue] = B;
7465 SubExprs[CastedTemporary] = OpV;
7466 SubExprs[WritebackCast] = WB;
7467 assert(!Ty->
isDependentType() &&
"HLSLOutArgExpr given a dependent type!");
7470 explicit HLSLOutArgExpr(EmptyShell Shell)
7471 :
Expr(HLSLOutArgExprClass, Shell) {}
7474 static HLSLOutArgExpr *
Create(
const ASTContext &
C, QualType Ty,
7475 OpaqueValueExpr *Base, OpaqueValueExpr *OpV,
7476 Expr *WB,
bool IsInOut);
7477 static HLSLOutArgExpr *
CreateEmpty(
const ASTContext &Ctx);
7509 return SubExprs[BaseLValue]->getBeginLoc();
7513 return SubExprs[BaseLValue]->getEndLoc();
7517 return T->getStmtClass() == HLSLOutArgExprClass;
7522 return child_range(&SubExprs[BaseLValue], &SubExprs[NumSubExprs]);
7552class RecoveryExpr final :
public Expr,
7553 private llvm::TrailingObjects<RecoveryExpr, Expr *> {
7567 Stmt **B =
reinterpret_cast<Stmt **
>(getTrailingObjects());
7575 return T->getStmtClass() == RecoveryExprClass;
7582 :
Expr(RecoveryExprClass,
Empty), NumExprs(NumSubExprs) {}
7584 size_t numTrailingObjects(OverloadToken<Stmt *>)
const {
return NumExprs; }
7586 SourceLocation BeginLoc, EndLoc;
7588 friend TrailingObjects;
7614 const Expr **OutArrayIndex =
nullptr,
7615 QualType *OutArrayElementTy =
nullptr);
Defines enumerations for traits support.
static bool CanThrow(Expr *E, ASTContext &Ctx)
clang::CharUnits operator*(clang::CharUnits::QuantityType Scale, const clang::CharUnits &CU)
Defines the clang::LangOptions interface.
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.
*collection of selector each with an associated kind and an ordered *collection of selectors A selector has a kind
Provides definitions for the atomic synchronization scopes.
C Language Family Type Representation.
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
a trap message and trap category.
llvm::APFloat getValue(const llvm::fltSemantics &Semantics) const
void setValue(const ASTContext &C, const llvm::APFloat &Val)
unsigned getBitWidth() const
void setValue(const ASTContext &C, const llvm::APInt &Val)
llvm::APInt getValue() const
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
@ None
There is no such object (it's outside its lifetime).
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
std::reverse_iterator< iterator > reverse_iterator
std::reverse_iterator< const_iterator > const_reverse_iterator
const Stmt ** const_iterator
AbstractConditionalOperator(StmtClass SC, EmptyShell Empty)
SourceLocation getColonLoc() const
Expr * getCond() const
getCond - Return the expression representing the condition for the ?
static bool classof(const Stmt *T)
AbstractConditionalOperator(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK, SourceLocation qloc, SourceLocation cloc)
Expr * getTrueExpr() const
getTrueExpr - Return the subexpression representing the value of the expression if the condition eval...
SourceLocation getQuestionLoc() const
friend class ASTStmtReader
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression representing the value of the expression if the condition eva...
SourceLocation getAmpAmpLoc() const
static bool classof(const Stmt *T)
void setLabel(LabelDecl *L)
void setLabelLoc(SourceLocation L)
AddrLabelExpr(SourceLocation AALoc, SourceLocation LLoc, LabelDecl *L, QualType t)
void setAmpAmpLoc(SourceLocation L)
SourceLocation getEndLoc() const LLVM_READONLY
AddrLabelExpr(EmptyShell Empty)
Build an empty address of a label expression.
SourceLocation getLabelLoc() const
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
LabelDecl * getLabel() const
const_child_range children() const
ArrayInitIndexExpr(QualType T)
SourceLocation getBeginLoc() const LLVM_READONLY
static bool classof(const Stmt *S)
SourceLocation getEndLoc() const LLVM_READONLY
friend class ASTStmtReader
ArrayInitLoopExpr(QualType T, Expr *CommonInit, Expr *ElementInit)
const_child_range children() const
llvm::APInt getArraySize() const
SourceLocation getEndLoc() const LLVM_READONLY
static bool classof(const Stmt *S)
SourceLocation getBeginLoc() const LLVM_READONLY
OpaqueValueExpr * getCommonExpr() const
Get the common subexpression shared by all initializations (the source array).
Expr * getSubExpr() const
Get the initializer to use for each array element.
friend class ASTStmtWriter
friend class ASTStmtReader
const Expr * getStride() const
QualType getElementType() const
Return the effective 'element' type of this array section.
SourceLocation getRBracketLoc() const
const_child_range children() const
Expr * getBase()
Get base of the array section.
static bool classof(const Stmt *T)
SourceLocation getEndLoc() const LLVM_READONLY
Expr * getLength()
Get length of array section.
static QualType getBaseOriginalType(const Expr *Base)
Return original type of the base expression for array section.
SourceLocation getExprLoc() const LLVM_READONLY
const Expr * getLowerBound() const
bool isOMPArraySection() const
Expr * getStride()
Get stride of array section.
const Expr * getBase() const
ArraySectionExpr(Expr *Base, Expr *LowerBound, Expr *Length, QualType Type, ExprValueKind VK, ExprObjectKind OK, SourceLocation ColonLoc, SourceLocation RBracketLoc)
const Expr * getLength() const
ArraySectionExpr(EmptyShell Shell)
Create an empty array section expression.
friend class ASTStmtWriter
ArraySectionExpr(Expr *Base, Expr *LowerBound, Expr *Length, Expr *Stride, QualType Type, ExprValueKind VK, ExprObjectKind OK, SourceLocation ColonLocFirst, SourceLocation ColonLocSecond, SourceLocation RBracketLoc)
SourceLocation getColonLocSecond() const
Expr * getLowerBound()
Get lower bound of array section.
QualType getBaseType() const
Returns the effective 'type' of the base of this array section.
friend class ASTStmtReader
SourceLocation getBeginLoc() const LLVM_READONLY
bool isOpenACCArraySection() const
SourceLocation getColonLocFirst() const
ArraySubscriptExpr(Expr *lhs, Expr *rhs, QualType t, ExprValueKind VK, ExprObjectKind OK, SourceLocation rbracketloc)
SourceLocation getExprLoc() const LLVM_READONLY
const Expr * getLHS() const
const_child_range children() const
const Expr * getBase() const
SourceLocation getRBracketLoc() const
const Expr * getRHS() const
Expr * getLHS()
An array access can be written A[4] or 4[A] (both are equivalent).
SourceLocation getBeginLoc() const LLVM_READONLY
const Expr * getIdx() const
SourceLocation getEndLoc() const
void setRBracketLoc(SourceLocation L)
static bool classof(const Stmt *T)
ArraySubscriptExpr(EmptyShell Shell)
Create an empty array subscript expression.
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
SourceLocation getEndLoc() const LLVM_READONLY
AsTypeExpr(Expr *SrcExpr, QualType DstType, ExprValueKind VK, ExprObjectKind OK, SourceLocation BuiltinLoc, SourceLocation RParenLoc)
SourceLocation getBuiltinLoc() const
getBuiltinLoc - Return the location of the __builtin_astype token.
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getRParenLoc() const
getRParenLoc - Return the location of final right parenthesis.
static bool classof(const Stmt *T)
friend class ASTStmtReader
static std::unique_ptr< AtomicScopeModel > getScopeModel(AtomicOp Op)
Get atomic scope model for the atomic op code.
SourceLocation getRParenLoc() const
SourceLocation getEndLoc() const LLVM_READONLY
QualType getValueType() const
AtomicExpr(EmptyShell Empty)
Build an empty AtomicExpr.
StringRef getOpAsString() const
bool threadPrivateMemoryAtomicsAreUndefined() const
Return true if atomics operations targeting allocations in private memory are undefined.
const Expr *const * getSubExprs() const
std::unique_ptr< AtomicScopeModel > getScopeModel() const
Get atomic scope model.
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
AtomicExpr(SourceLocation BLoc, ArrayRef< Expr * > args, QualType t, AtomicOp op, SourceLocation RP)
friend class ASTStmtReader
SourceLocation getBuiltinLoc() const
Expr * getOrderFail() const
bool hasVal1Operand() const
unsigned getNumSubExprs() const
static bool classof(const Stmt *T)
static std::unique_ptr< AtomicScopeModel > create(AtomicScopeModelKind K)
Create an atomic scope model by AtomicScopeModelKind.
static bool classof(const Stmt *T)
BinaryConditionalOperator(Expr *common, OpaqueValueExpr *opaqueValue, Expr *cond, Expr *lhs, Expr *rhs, SourceLocation qloc, SourceLocation cloc, QualType t, ExprValueKind VK, ExprObjectKind OK)
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression which will be evaluated if the condition evaluates to false; ...
BinaryConditionalOperator(EmptyShell Empty)
Build an empty conditional operator.
friend class ASTStmtReader
OpaqueValueExpr * getOpaqueValue() const
getOpaqueValue - Return the opaque value placeholder.
SourceLocation getEndLoc() const LLVM_READONLY
Expr * getCond() const
getCond - Return the condition expression; this is defined in terms of the opaque value.
Expr * getTrueExpr() const
getTrueExpr - Return the subexpression which will be evaluated if the condition evaluates to true; th...
Expr * getCommon() const
getCommon - Return the common expression, written to the left of the condition.
A builtin binary operation expression such as "x + y" or "x <= y".
static bool isLogicalOp(Opcode Opc)
BinaryOperator(EmptyShell Empty)
Construct an empty binary operator.
static bool isRelationalOp(Opcode Opc)
static OverloadedOperatorKind getOverloadedOperator(Opcode Opc)
Retrieve the overloaded operator kind that corresponds to the given binary opcode.
const FPOptionsOverride * getTrailingFPFeatures() const
const_child_range children() const
static bool isComparisonOp(Opcode Opc)
void setHasStoredFPFeatures(bool B)
Set and fetch the bit that shows whether FPFeatures needs to be allocated in Trailing Storage.
void setOperatorLoc(SourceLocation L)
static bool isShiftOp(Opcode Opc)
bool isComparisonOp() const
FPOptionsOverride getStoredFPFeaturesOrDefault() const
Get the store FPOptionsOverride or default if not stored.
StringRef getOpcodeStr() const
static bool isCommaOp(Opcode Opc)
static Opcode getOpForCompoundAssignment(Opcode Opc)
SourceLocation getBeginLoc() const LLVM_READONLY
FPOptionsOverride * getTrailingFPFeatures()
Return a pointer to the trailing FPOptions.
bool isRelationalOp() const
SourceLocation getOperatorLoc() const
bool isFEnvAccessOn(const LangOptions &LO) const
Get the FENV_ACCESS status of this operator.
bool hasStoredFPFeatures() const
bool isCompoundAssignmentOp() const
static Opcode negateComparisonOp(Opcode Opc)
bool isMultiplicativeOp() const
SourceLocation getExprLoc() const
static Opcode reverseComparisonOp(Opcode Opc)
static bool isShiftAssignOp(Opcode Opc)
bool isFPContractableWithinStatement(const LangOptions &LO) const
Get the FP contractibility status of this operator.
static unsigned sizeOfTrailingObjects(bool HasFPFeatures)
Return the size in bytes needed for the trailing objects.
bool isEqualityOp() const
BinaryOperator(StmtClass SC, EmptyShell Empty)
Construct an empty BinaryOperator, SC is CompoundAssignOperator.
void setExcludedOverflowPattern(bool B)
Set and get the bit that informs arithmetic overflow sanitizers whether or not they should exclude ce...
static BinaryOperator * CreateEmpty(const ASTContext &C, bool hasFPFeatures)
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
static bool classof(const Stmt *S)
bool isAdditiveOp() const
static bool isAdditiveOp(Opcode Opc)
static bool isPtrMemOp(Opcode Opc)
predicates to categorize the respective opcodes.
static bool isAssignmentOp(Opcode Opc)
static bool isCompoundAssignmentOp(Opcode Opc)
bool isShiftAssignOp() const
SourceLocation getEndLoc() const LLVM_READONLY
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Get the FP features status of this operator.
static bool isNullPointerArithmeticExtension(ASTContext &Ctx, Opcode Opc, const Expr *LHS, const Expr *RHS)
Return true if a binary operator using the specified opcode and operands would match the 'p = (i8*)nu...
void setStoredFPFeatures(FPOptionsOverride F)
Set FPFeatures in trailing storage, used only by Serialization.
FPOptionsOverride getFPFeatures() const
bool isAssignmentOp() const
static Opcode getOverloadedOpcode(OverloadedOperatorKind OO)
Retrieve the binary opcode that corresponds to the given overloaded operator.
size_t offsetOfTrailingStorage() const
static bool isEqualityOp(Opcode Opc)
bool hasExcludedOverflowPattern() const
void setOpcode(Opcode Opc)
static bool isBitwiseOp(Opcode Opc)
static bool isMultiplicativeOp(Opcode Opc)
BinaryOperator(const ASTContext &Ctx, Expr *lhs, Expr *rhs, Opcode opc, QualType ResTy, ExprValueKind VK, ExprObjectKind OK, SourceLocation opLoc, FPOptionsOverride FPFeatures)
Build a binary operator, assuming that appropriate storage has been allocated for the trailing object...
BinaryOperatorKind Opcode
Represents a block literal declaration, which is like an unnamed FunctionDecl.
BlockExpr(EmptyShell Empty)
Build an empty block expression.
SourceLocation getCaretLocation() const
SourceLocation getBeginLoc() const LLVM_READONLY
BlockDecl * getBlockDecl()
const Stmt * getBody() const
BlockExpr(BlockDecl *BD, QualType ty, bool ContainsUnexpandedParameterPack)
const_child_range children() const
SourceLocation getEndLoc() const LLVM_READONLY
void setBlockDecl(BlockDecl *BD)
static bool classof(const Stmt *T)
const FunctionProtoType * getFunctionType() const
getFunctionType - Return the underlying function type for this block.
const BlockDecl * getBlockDecl() const
This class is used for builtin types like 'int'.
static bool isPlaceholderTypeKind(Kind K)
Determines whether the given kind corresponds to a placeholder type.
SourceLocation getRParenLoc() const
static CStyleCastExpr * CreateEmpty(const ASTContext &Context, unsigned PathSize, bool HasFPFeatures)
SourceLocation getBeginLoc() const LLVM_READONLY
void setRParenLoc(SourceLocation L)
static bool classof(const Stmt *T)
SourceLocation getLParenLoc() const
SourceLocation getEndLoc() const LLVM_READONLY
void setLParenLoc(SourceLocation L)
Represents a base class of a C++ class.
Represents a call to a member function that may be written either with member call syntax (e....
A call to an overloaded operator written using operator syntax.
Represents a C++ struct/union/class.
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
bool hasStoredFPFeatures() const
const FPOptionsOverride * getTrailingFPFeatures() const
bool usesMemberSyntax() const
std::optional< llvm::APInt > evaluateBytesReturnedByAllocSizeCall(const ASTContext &Ctx) const
Evaluates the total size in bytes allocated by calling a function decorated with alloc_size.
static unsigned sizeOfTrailingObjects(unsigned NumPreArgs, unsigned NumArgs, bool HasFPFeatures)
Return the size in bytes needed for the trailing objects.
static constexpr ADLCallKind NotADL
const Stmt * getPreArg(unsigned I) const
SourceLocation getBeginLoc() const
void setRParenLoc(SourceLocation L)
const_arg_iterator arg_begin() const
static bool classof(const Stmt *T)
llvm::iterator_range< const_arg_iterator > const_arg_range
void setCoroElideSafe(bool V=true)
const Expr *const * getArgs() const
void setArg(unsigned Arg, Expr *ArgExpr)
setArg - Set the specified argument.
ConstExprIterator const_arg_iterator
ExprIterator arg_iterator
std::pair< const NamedDecl *, const WarnUnusedResultAttr * > getUnusedResultAttr(const ASTContext &Ctx) const
Returns the WarnUnusedResultAttr that is declared on the callee or its return type declaration,...
void setADLCallKind(ADLCallKind V=UsesADL)
const AllocSizeAttr * getCalleeAllocSizeAttr() const
Try to get the alloc_size attribute of the callee. May return null.
llvm::iterator_range< arg_iterator > arg_range
const_arg_range arguments() const
unsigned getBuiltinCallee() const
getBuiltinCallee - If this is a call to a builtin, return the builtin ID of the callee.
FPOptionsOverride getStoredFPFeaturesOrDefault() const
Get the store FPOptionsOverride or default if not stored.
FPOptionsOverride getStoredFPFeatures() const
Get FPOptionsOverride from trailing storage.
FunctionDecl * getDirectCallee()
If the callee is a FunctionDecl, return it. Otherwise return null.
static CallExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty)
Create an empty call expression, for deserialization.
bool isCallToStdMove() const
void setUsesMemberSyntax(bool V=true)
void setPreArg(unsigned I, Stmt *PreArg)
ADLCallKind getADLCallKind() const
FPOptionsOverride getFPFeatures() const
static constexpr unsigned OffsetToTrailingObjects
void markDependentForPostponedNameLookup()
Used by Sema to implement MSVC-compatible delayed name lookup.
const Expr * getCallee() const
const Decl * getCalleeDecl() const
void computeDependence()
Compute and set dependence bits.
void setStoredFPFeatures(FPOptionsOverride F)
Set FPOptionsOverride in trailing storage. Used only by Serialization.
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Get the FP features status of this operator.
bool isCoroElideSafe() const
Expr ** getArgs()
Retrieve the call arguments.
const_child_range children() const
CallExpr(StmtClass SC, Expr *Fn, ArrayRef< Expr * > PreArgs, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RParenLoc, FPOptionsOverride FPFeatures, unsigned MinNumArgs, ADLCallKind UsesADL)
Build a call expression, assuming that appropriate storage has been allocated for the trailing object...
static constexpr unsigned sizeToAllocateForCallExprSubclass(unsigned SizeOfTrailingObjects)
SourceLocation getEndLoc() const
SourceLocation getRParenLoc() const
static constexpr ADLCallKind UsesADL
bool isBuiltinAssumeFalse(const ASTContext &Ctx) const
Return true if this is a call to __assume() or __builtin_assume() with a non-value-dependent constant...
const_arg_iterator arg_end() const
const FunctionDecl * getDirectCallee() const
Stmt * getPreArg(unsigned I)
friend class ASTStmtReader
FPOptionsOverride * getTrailingFPFeatures()
Return a pointer to the trailing FPOptions.
QualType getCallReturnType(const ASTContext &Ctx) const
getCallReturnType - Get the return type of the call expr.
bool isUnevaluatedBuiltinCall(const ASTContext &Ctx) const
Returns true if this is a call to a builtin which does not evaluate side-effects within its arguments...
void setNumArgsUnsafe(unsigned NewNumArgs)
Bluntly set a new number of arguments without doing any checks whatsoever.
unsigned getNumPreArgs() const
ArrayRef< Stmt * > getRawSubExprs() const
This method provides fast access to all the subexpressions of a CallExpr without going through the sl...
bool hasUnusedResultAttr(const ASTContext &Ctx) const
Returns true if this call expression should warn on unused results.
void shrinkNumArgs(unsigned NewNumArgs)
Reduce the number of arguments in this call expression.
const Expr * getArg(unsigned Arg) const
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
FPOptionsOverride * getTrailingFPFeatures()
Return a pointer to the trailing FPOptions.
path_iterator path_begin()
unsigned path_size() const
NamedDecl * getConversionFunction() const
If this cast applies a user-defined conversion, retrieve the conversion function that it invokes.
const Expr * getSubExprAsWritten() const
Expr * getSubExprAsWritten()
Retrieve the cast subexpression as it was written in the source code, looking through any implicit ca...
CastKind getCastKind() const
void setCastKind(CastKind K)
llvm::iterator_range< path_iterator > path()
Path through the class hierarchy taken by casts between base and derived classes (see implementation ...
const FieldDecl * getTargetUnionField() const
CastExpr(StmtClass SC, EmptyShell Empty, unsigned BasePathSize, bool HasFPFeatures)
Construct an empty cast.
static bool classof(const Stmt *T)
llvm::iterator_range< path_const_iterator > path() const
bool hasStoredFPFeatures() const
bool changesVolatileQualification() const
Return.
static const FieldDecl * getTargetFieldForToUnionCast(QualType unionType, QualType opType)
FPOptionsOverride getStoredFPFeatures() const
Get FPOptionsOverride from trailing storage.
CastExpr(StmtClass SC, QualType ty, ExprValueKind VK, const CastKind kind, Expr *op, unsigned BasePathSize, bool HasFPFeatures)
const Expr * getSubExpr() const
const_child_range children() const
const FPOptionsOverride * getTrailingFPFeatures() const
CXXBaseSpecifier ** path_iterator
path_const_iterator path_end() const
const char * getCastKindName() const
friend class ASTStmtReader
path_const_iterator path_begin() const
const CXXBaseSpecifier *const * path_const_iterator
FPOptionsOverride getFPFeatures() const
FPOptionsOverride getStoredFPFeaturesOrDefault() const
Get the store FPOptionsOverride or default if not stored.
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Get the FP features status of this operation.
void setValue(unsigned Val)
SourceLocation getLocation() const
SourceLocation getEndLoc() const LLVM_READONLY
void setLocation(SourceLocation Location)
static bool classof(const Stmt *T)
static void print(unsigned val, CharacterLiteralKind Kind, raw_ostream &OS)
unsigned getValue() const
void setKind(CharacterLiteralKind kind)
const_child_range children() const
CharacterLiteralKind getKind() const
CharacterLiteral(EmptyShell Empty)
Construct an empty character literal.
SourceLocation getBeginLoc() const LLVM_READONLY
CharacterLiteral(unsigned value, CharacterLiteralKind kind, QualType type, SourceLocation l)
void setRParenLoc(SourceLocation L)
void setIsConditionTrue(bool isTrue)
SourceLocation getBuiltinLoc() const
Expr * getChosenSubExpr() const
getChosenSubExpr - Return the subexpression chosen according to the condition.
bool isConditionDependent() const
void setBuiltinLoc(SourceLocation L)
bool isConditionTrue() const
isConditionTrue - Return whether the condition is true (i.e.
ChooseExpr(SourceLocation BLoc, Expr *cond, Expr *lhs, Expr *rhs, QualType t, ExprValueKind VK, ExprObjectKind OK, SourceLocation RP, bool condIsTrue)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getRParenLoc() const
ChooseExpr(EmptyShell Empty)
Build an empty __builtin_choose_expr.
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
static bool classof(const Stmt *T)
CompoundAssignOperator - For compound assignments (e.g.
void setComputationResultType(QualType T)
static CompoundAssignOperator * CreateEmpty(const ASTContext &C, bool hasFPFeatures)
CompoundAssignOperator(const ASTContext &C, Expr *lhs, Expr *rhs, Opcode opc, QualType ResType, ExprValueKind VK, ExprObjectKind OK, SourceLocation OpLoc, FPOptionsOverride FPFeatures, QualType CompLHSType, QualType CompResultType)
QualType getComputationLHSType() const
void setComputationLHSType(QualType T)
static bool classof(const Stmt *S)
QualType getComputationResultType() const
void setFileScope(bool FS)
const_child_range children() const
void setTypeSourceInfo(TypeSourceInfo *tinfo)
bool hasStaticStorage() const
SourceLocation getLParenLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
APValue & getStaticValue() const
CompoundLiteralExpr(EmptyShell Empty)
Construct an empty compound literal.
void setLParenLoc(SourceLocation L)
SourceLocation getEndLoc() const LLVM_READONLY
APValue & getOrCreateStaticValue(ASTContext &Ctx) const
static bool classof(const Stmt *T)
const Expr * getInitializer() const
TypeSourceInfo * getTypeSourceInfo() const
void setInitializer(Expr *E)
CompoundLiteralExpr(SourceLocation lparenloc, TypeSourceInfo *tinfo, QualType T, ExprValueKind VK, Expr *init, bool fileScope)
CompoundStmt - This represents a group of statements like { stmt stmt }.
ConditionalOperator - The ?
const_child_range children() const
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression representing the value of the expression if the condition eva...
static bool classof(const Stmt *T)
ConditionalOperator(Expr *cond, SourceLocation QLoc, Expr *lhs, SourceLocation CLoc, Expr *rhs, QualType t, ExprValueKind VK, ExprObjectKind OK)
SourceLocation getBeginLoc() const LLVM_READONLY
Expr * getCond() const
getCond - Return the expression representing the condition for the ?
Expr * getTrueExpr() const
getTrueExpr - Return the subexpression representing the value of the expression if the condition eval...
SourceLocation getEndLoc() const LLVM_READONLY
friend class ASTStmtReader
ConditionalOperator(EmptyShell Empty)
Build an empty conditional operator.
APValue getAPValueResult() const
static ConstantResultStorageKind getStorageKind(const APValue &Value)
void MoveIntoResult(APValue &Value, const ASTContext &Context)
llvm::APSInt getResultAsAPSInt() const
SourceLocation getBeginLoc() const LLVM_READONLY
ConstantResultStorageKind getResultStorageKind() const
void SetResult(APValue Value, const ASTContext &Context)
APValue::ValueKind getResultAPValueKind() const
static bool classof(const Stmt *T)
bool hasAPValueResult() const
friend class ASTStmtWriter
const_child_range children() const
friend class ASTStmtReader
bool isImmediateInvocation() const
SourceLocation getEndLoc() const LLVM_READONLY
static ConstantExpr * CreateEmpty(const ASTContext &Context, ConstantResultStorageKind StorageKind)
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
FPOptionsOverride getStoredFPFeaturesOrDefault() const
Get the store FPOptionsOverride or default if not stored.
SourceLocation getRParenLoc() const
getRParenLoc - Return the location of final right parenthesis.
const_child_range children() const
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Get the FP features status of this operator.
bool isFPContractableWithinStatement(const LangOptions &LO) const
Get the FP contractibility status of this operator.
static ConvertVectorExpr * CreateEmpty(const ASTContext &C, bool hasFPFeatures)
static bool classof(const Stmt *T)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getBuiltinLoc() const
getBuiltinLoc - Return the location of the __builtin_convertvector token.
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
TypeSourceInfo * getTypeSourceInfo() const
getTypeSourceInfo - Return the destination type.
void setStoredFPFeatures(FPOptionsOverride F)
Set FPFeatures in trailing storage, used by Serialization & ASTImporter.
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
friend class ASTStmtReader
void setTypeSourceInfo(TypeSourceInfo *ti)
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
FPOptionsOverride getFPOptionsOverride() const
A POD class for pairing a NamedDecl* with an access specifier.
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
unsigned getNumTemplateArgs() const
Retrieve the number of template arguments provided as part of this template-id.
NamedDecl * getFoundDecl()
Get the NamedDecl through which this reference occurred.
bool hasExplicitTemplateArgs() const
Determines whether this declaration reference was followed by an explicit template argument list.
NestedNameSpecifier getQualifier() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name.
void setIsImmediateEscalating(bool Set)
const_child_range children() const
bool refersToEnclosingVariableOrCapture() const
Does this DeclRefExpr refer to an enclosing local or a captured variable?
void setDecl(ValueDecl *NewD)
bool hasTemplateKWAndArgsInfo() const
const NamedDecl * getFoundDecl() const
Get the NamedDecl through which this reference occurred.
static DeclRefExpr * CreateEmpty(const ASTContext &Context, bool HasQualifier, bool HasFoundDecl, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs)
Construct an empty declaration reference expression.
void setLocation(SourceLocation L)
void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const
Copies the template arguments (if present) into the given structure.
DeclarationNameInfo getNameInfo() const
void setHadMultipleCandidates(bool V=true)
Sets the flag telling whether this expression refers to a function that was resolved from an overload...
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding this name, if any.
bool isCapturedByCopyInLambdaWithExplicitObjectParameter() const
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
bool hasQualifier() const
Determine whether this declaration reference was preceded by a C++ nested-name-specifier,...
NestedNameSpecifierLoc getQualifierLoc() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name,...
const ValueDecl * getDecl() const
const TemplateArgumentLoc * getTemplateArgs() const
Retrieve the template arguments provided as part of this template-id.
friend class ASTStmtWriter
ArrayRef< TemplateArgumentLoc > template_arguments() const
static bool classof(const Stmt *T)
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
SourceLocation getEndLoc() const LLVM_READONLY
bool hadMultipleCandidates() const
Returns true if this expression refers to a function that was resolved from an overloaded set having ...
friend class ASTStmtReader
void setCapturedByCopyInLambdaWithExplicitObjectParameter(bool Set, const ASTContext &Context)
SourceLocation getBeginLoc() const
bool hasTemplateKeyword() const
Determines whether the name in this declaration reference was preceded by the template keyword.
SourceLocation getLocation() const
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
bool isImmediateEscalating() const
Decl - This represents one declaration (or definition), e.g.
DeclarationNameLoc - Additional source/type location info for a declaration name.
Represents a single C99 designator.
unsigned getArrayIndex() const
SourceRange getSourceRange() const LLVM_READONLY
bool isFieldDesignator() const
SourceLocation getBeginLoc() const LLVM_READONLY
static Designator CreateArrayRangeDesignator(unsigned Index, SourceLocation LBracketLoc, SourceLocation EllipsisLoc, SourceLocation RBracketLoc)
Creates a GNU array-range designator.
struct FieldDesignatorInfo FieldInfo
A field designator, e.g., ".x".
static Designator CreateFieldDesignator(const IdentifierInfo *FieldName, SourceLocation DotLoc, SourceLocation FieldLoc)
Creates a field designator.
struct ArrayOrRangeDesignatorInfo ArrayOrRangeInfo
An array or GNU array-range designator, e.g., "[9]" or "[10..15]".
bool isArrayRangeDesignator() const
void setFieldDecl(FieldDecl *FD)
static Designator CreateArrayDesignator(unsigned Index, SourceLocation LBracketLoc, SourceLocation RBracketLoc)
Creates an array designator.
FieldDecl * getFieldDecl() const
bool isArrayDesignator() const
SourceLocation getFieldLoc() const
SourceLocation getRBracketLoc() const
SourceLocation getEndLoc() const LLVM_READONLY
const IdentifierInfo * getFieldName() const
SourceLocation getEllipsisLoc() const
SourceLocation getDotLoc() const
SourceLocation getLBracketLoc() const
Represents a C99 designated initializer expression.
bool isDirectInit() const
Whether this designated initializer should result in direct-initialization of the designated subobjec...
static DesignatedInitExpr * CreateEmpty(const ASTContext &C, unsigned NumIndexExprs)
Expr * getArrayRangeEnd(const Designator &D) const
const_child_range children() const
const Designator * getDesignator(unsigned Idx) const
Expr * getSubExpr(unsigned Idx) const
SourceRange getDesignatorsSourceRange() const
void setSubExpr(unsigned Idx, Expr *E)
bool usesGNUSyntax() const
Determines whether this designated initializer used the deprecated GNU syntax for designated initiali...
Expr * getArrayRangeStart(const Designator &D) const
void ExpandDesignator(const ASTContext &C, unsigned Idx, const Designator *First, const Designator *Last)
Replaces the designator at index Idx with the series of designators in [First, Last).
MutableArrayRef< Designator > designators()
void setGNUSyntax(bool GNU)
void setEqualOrColonLoc(SourceLocation L)
Expr * getArrayIndex(const Designator &D) const
Designator * getDesignator(unsigned Idx)
ArrayRef< Designator > designators() const
Expr * getInit() const
Retrieve the initializer value.
unsigned size() const
Returns the number of designators in this initializer.
SourceLocation getBeginLoc() const LLVM_READONLY
void setDesignators(const ASTContext &C, const Designator *Desigs, unsigned NumDesigs)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getEqualOrColonLoc() const
Retrieve the location of the '=' that precedes the initializer value itself, if present.
unsigned getNumSubExprs() const
Retrieve the total number of subexpressions in this designated initializer expression,...
static bool classof(const Stmt *T)
SourceLocation getBeginLoc() const LLVM_READONLY
DesignatedInitUpdateExpr(EmptyShell Empty)
DesignatedInitUpdateExpr(const ASTContext &C, SourceLocation lBraceLoc, Expr *baseExprs, SourceLocation rBraceLoc)
static bool classof(const Stmt *T)
SourceLocation getEndLoc() const LLVM_READONLY
const_child_range children() const
void setUpdater(Expr *Updater)
InitListExpr * getUpdater() const
Designator - A designator in a C99 designated initializer.
IdentifierInfo & getAccessor() const
void setAccessorLoc(SourceLocation L)
SourceLocation AccessorLoc
void setAccessor(IdentifierInfo *II)
const Expr * getBase() const
const_child_range children() const
SourceLocation getAccessorLoc() const
IdentifierInfo * Accessor
ElementAccessExprBase(StmtClass SC, EmptyShell Empty)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
ElementAccessExprBase(StmtClass SC, QualType Ty, ExprValueKind VK, Expr *Base, IdentifierInfo &Accessor, SourceLocation Loc, ExprObjectKind OK)
BaseTy::pointer operator->() const
ChildElementIter & operator++()
BaseTy::reference operator*() const
bool operator==(ChildElementIter Other) const
unsigned getStartingElementPos() const
ChildElementIter< false > begin()
bool doForEachDataElement(Call &&C, unsigned &StartingIndexInArray, Targs &&...Fargs) const
llvm::iterator_range< ChildElementIter< false > > fake_child_range
SourceLocation getEndLoc() const
ChildElementIter< true > begin() const
StringLiteral * getDataStringLiteral() const
const_fake_child_range underlying_data_elements() const
EmbedExpr(EmptyShell Empty)
EmbedDataStorage * getData() const
EmbedExpr(const ASTContext &Ctx, SourceLocation Loc, EmbedDataStorage *Data, unsigned Begin, unsigned NumOfElements)
StringRef getFileName() const
fake_child_range underlying_data_elements()
SourceLocation getBeginLoc() const
SourceLocation getLocation() const
static bool classof(const Stmt *T)
llvm::iterator_range< ChildElementIter< true > > const_fake_child_range
friend class ASTStmtReader
const_child_range children() const
size_t getDataElementCount() const
An instance of this object exists for each enum constant that is defined.
TypeSourceInfo * getTypeInfoAsWritten() const
getTypeInfoAsWritten - Returns the type source info for the type that this expression is casting to.
ExplicitCastExpr(StmtClass SC, QualType exprTy, ExprValueKind VK, CastKind kind, Expr *op, unsigned PathSize, bool HasFPFeatures, TypeSourceInfo *writtenTy)
void setTypeInfoAsWritten(TypeSourceInfo *writtenTy)
static bool classof(const Stmt *T)
ExplicitCastExpr(StmtClass SC, EmptyShell Shell, unsigned PathSize, bool HasFPFeatures)
Construct an empty explicit cast.
QualType getTypeAsWritten() const
getTypeAsWritten - Returns the type that this expression is casting to, as written in the source code...
The return type of classify().
ModifiableType
The results of modification testing.
ModifiableType getModifiable() const
Kinds
The various classification results. Most of these mean prvalue.
@ CL_DuplicateMatrixComponents
@ CL_SubObjCPropertySetting
@ CL_DuplicateVectorComponents
static Classification makeSimpleLValue()
Create a simple, modifiable lvalue.
bool isModifiable() const
This represents one expression.
@ LV_DuplicateMatrixComponents
@ LV_DuplicateVectorComponents
@ LV_InvalidMessageExpression
@ LV_SubObjCPropertySetting
Classification ClassifyModifiable(ASTContext &Ctx, SourceLocation &Loc) const
ClassifyModifiable - Classify this expression according to the C++11 expression taxonomy,...
Expr(StmtClass SC, QualType T, ExprValueKind VK, ExprObjectKind OK)
Expr(StmtClass SC, EmptyShell)
Construct an empty expression.
bool EvaluateAsInt(EvalResult &Result, const ASTContext &Ctx, SideEffectsKind AllowSideEffects=SE_NoSideEffects, bool InConstantContext=false) const
EvaluateAsInt - Return true if this is a constant which we can fold and convert to an integer,...
EnumConstantDecl * getEnumConstantDecl()
If this expression refers to an enum constant, retrieve its declaration.
static bool isPotentialConstantExpr(const FunctionDecl *FD, SmallVectorImpl< PartialDiagnosticAt > &Diags)
isPotentialConstantExpr - Return true if this function's definition might be usable in a constant exp...
bool isReadIfDiscardedInCPlusPlus11() const
Determine whether an lvalue-to-rvalue conversion should implicitly be applied to this expression if i...
bool isIntegerConstantExpr(const ASTContext &Ctx) const
static bool isPotentialConstantExprUnevaluated(Expr *E, const FunctionDecl *FD, SmallVectorImpl< PartialDiagnosticAt > &Diags)
isPotentialConstantExprUnevaluated - Return true if this expression might be usable in a constant exp...
Expr * IgnoreParenNoopCasts(const ASTContext &Ctx) LLVM_READONLY
Skip past any parentheses and casts which do not change the value (including ptr->int casts of the sa...
isModifiableLvalueResult isModifiableLvalue(ASTContext &Ctx, SourceLocation *Loc=nullptr) const
isModifiableLvalue - C99 6.3.2.1: an lvalue that does not have array type, does not have an incomplet...
@ SE_AllowSideEffects
Allow any unmodeled side effect.
@ SE_NoSideEffects
Strictly evaluate the expression.
@ SE_AllowUndefinedBehavior
Allow UB that we can give a value, but not arbitrary unmodeled side effects.
static bool classof(const Stmt *T)
static QualType findBoundMemberType(const Expr *expr)
Given an expression of bound-member type, find the type of the member.
Expr & operator=(const Expr &)=delete
static std::pair< const NamedDecl *, const WarnUnusedResultAttr * > getUnusedResultAttrImpl(const Decl *Callee, QualType ReturnType)
Returns the WarnUnusedResultAttr that is declared on the callee or its return type declaration,...
bool EvaluateCharRangeAsString(std::string &Result, const Expr *SizeExpression, const Expr *PtrExpression, ASTContext &Ctx, EvalResult &Status) const
bool isImplicitCXXThis() const
Whether this expression is an implicit reference to 'this' in C++.
const Expr * IgnoreParenNoopCasts(const ASTContext &Ctx) const
llvm::APSInt EvaluateKnownConstIntCheckOverflow(const ASTContext &Ctx, SmallVectorImpl< PartialDiagnosticAt > *Diag=nullptr) const
Expr * IgnoreParenCasts() LLVM_READONLY
Skip past any parentheses and casts which might surround this expression until reaching a fixed point...
bool isUnusedResultAWarning(const Expr *&WarnExpr, SourceLocation &Loc, SourceRange &R1, SourceRange &R2, ASTContext &Ctx) const
isUnusedResultAWarning - Return true if this immediate expression should be warned about if the resul...
LValueClassification ClassifyLValue(ASTContext &Ctx) const
Reasons why an expression might not be an l-value.
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool refersToVectorElement() const
Returns whether this expression refers to a vector element.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
llvm::APSInt EvaluateKnownConstInt(const ASTContext &Ctx) const
EvaluateKnownConstInt - Call EvaluateAsRValue and return the folded integer.
bool containsUnexpandedParameterPack() const
Whether this expression contains an unexpanded parameter pack (for C++11 variadic templates).
Expr * IgnoreParenLValueCasts() LLVM_READONLY
Skip past any parentheses and lvalue casts which might surround this expression until reaching a fixe...
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Returns the set of floating point options that apply to this expression.
const CXXRecordDecl * getBestDynamicClassType() const
For an expression of class type or pointer to class type, return the most derived class decl the expr...
Expr * IgnoreParenImpCasts() LLVM_READONLY
Skip past any parentheses and implicit casts which might surround this expression until reaching a fi...
Expr * IgnoreImplicit() LLVM_READONLY
Skip past any implicit AST nodes which might surround this expression until reaching a fixed point.
Expr * IgnoreConversionOperatorSingleStep() LLVM_READONLY
Skip conversion operators.
bool containsErrors() const
Whether this expression contains subexpressions which had errors.
bool EvaluateAsFloat(llvm::APFloat &Result, const ASTContext &Ctx, SideEffectsKind AllowSideEffects=SE_NoSideEffects, bool InConstantContext=false) const
EvaluateAsFloat - Return true if this is a constant which we can fold and convert to a floating point...
bool isObjCSelfExpr() const
Check if this expression is the ObjC 'self' implicit parameter.
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
bool isFlexibleArrayMemberLike(const ASTContext &Context, LangOptions::StrictFlexArraysLevelKind StrictFlexArraysLevel, bool IgnoreTemplateOrMacroSubstitution=false) const
Check whether this array fits the idiom of a flexible array member, depending on the value of -fstric...
bool hasPlaceholderType(BuiltinType::Kind K) const
Returns whether this expression has a specific placeholder type.
bool EvaluateAsLValue(EvalResult &Result, const ASTContext &Ctx, bool InConstantContext=false) const
EvaluateAsLValue - Evaluate an expression to see if we can fold it to an lvalue with link time known ...
bool EvaluateAsInitializer(const ASTContext &Ctx, const VarDecl *VD, EvalResult &Result, bool IsConstantInitializer) const
EvaluateAsInitializer - Evaluate an expression as if it were the initializer of the given declaration...
bool EvaluateAsFixedPoint(EvalResult &Result, const ASTContext &Ctx, SideEffectsKind AllowSideEffects=SE_NoSideEffects, bool InConstantContext=false) const
EvaluateAsFixedPoint - Return true if this is a constant which we can fold and convert to a fixed poi...
bool isEvaluatable(const ASTContext &Ctx, SideEffectsKind AllowSideEffects=SE_NoSideEffects) const
isEvaluatable - Call EvaluateAsRValue to see if this expression can be constant folded without side-e...
Expr * IgnoreParenBaseCasts() LLVM_READONLY
Skip past any parentheses and derived-to-base casts until reaching a fixed point.
bool isConstantInitializer(ASTContext &Ctx, bool ForRef=false, const Expr **Culprit=nullptr) const
Returns true if this expression can be emitted to IR as a constant, and thus can be used as a constan...
bool isLValue() const
isLValue - True if this expression is an "l-value" according to the rules of the current language.
static bool hasAnyTypeDependentArguments(ArrayRef< Expr * > Exprs)
hasAnyTypeDependentArguments - Determines if any of the expressions in Exprs is type-dependent.
FieldDecl * getSourceBitField()
If this expression refers to a bit-field, retrieve the declaration of that bit-field.
NullPointerConstantValueDependence
Enumeration used to describe how isNullPointerConstant() should cope with value-dependent expressions...
@ NPC_ValueDependentIsNull
Specifies that a value-dependent expression of integral or dependent type should be considered a null...
@ NPC_NeverValueDependent
Specifies that the expression should never be value-dependent.
@ NPC_ValueDependentIsNotNull
Specifies that a value-dependent expression should be considered to never be a null pointer constant.
Expr * IgnoreUnlessSpelledInSource()
Skip past any invisible AST nodes which might surround this statement, such as ExprWithCleanups or Im...
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
bool EvaluateAsRValue(EvalResult &Result, const ASTContext &Ctx, bool InConstantContext=false) const
EvaluateAsRValue - Return true if this is a constant which we can fold to an rvalue using any crazy t...
Expr * IgnoreCasts() LLVM_READONLY
Skip past any casts which might surround this expression until reaching a fixed point.
Decl * getReferencedDeclOfCallee()
Expr * IgnoreImplicitAsWritten() LLVM_READONLY
Skip past any implicit AST nodes which might surround this expression until reaching a fixed point.
std::optional< uint64_t > tryEvaluateStrLen(const ASTContext &Ctx) const
If the current Expr is a pointer, this will try to statically determine the strlen of the string poin...
bool HasSideEffects(const ASTContext &Ctx, bool IncludePossibleEffects=true) const
HasSideEffects - This routine returns true for all those expressions which have any effect other than...
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.
const Expr * getBestDynamicClassTypeExpr() const
Get the inner expression that determines the best dynamic class.
const Expr * IgnoreUnlessSpelledInSource() const
std::optional< llvm::APSInt > getIntegerConstantExpr(const ASTContext &Ctx, bool AllowRelaxedEval=false) const
isIntegerConstantExpr - Return the value if this expression is a valid integer constant expression.
std::optional< std::string > tryEvaluateString(ASTContext &Ctx) const
If the current Expr can be evaluated to a pointer to a null-terminated constant string,...
Expr * IgnoreImpCasts() LLVM_READONLY
Skip past any implicit casts which might surround this expression until reaching a fixed point.
NullPointerConstantKind
Enumeration used to describe the kind of Null pointer constant returned from isNullPointerConstant().
@ NPCK_ZeroExpression
Expression is a Null pointer constant built from a zero integer expression that is not a simple,...
@ NPCK_ZeroLiteral
Expression is a Null pointer constant built from a literal zero.
@ NPCK_CXX11_nullptr
Expression is a C++11 nullptr.
@ NPCK_GNUNull
Expression is a GNU-style __null constant.
@ NPCK_NotNull
Expression is not a Null pointer constant.
bool EvaluateAsBooleanCondition(bool &Result, const ASTContext &Ctx, bool InConstantContext=false) const
EvaluateAsBooleanCondition - Return true if this is a constant which we can fold and convert to a boo...
bool isTemporaryObject(ASTContext &Ctx, const CXXRecordDecl *TempTy) const
Determine whether the result of this expression is a temporary object of the given class type.
NullPointerConstantKind isNullPointerConstant(ASTContext &Ctx, NullPointerConstantValueDependence NPC) const
isNullPointerConstant - C99 6.3.2.3p3 - Test if this reduces down to a Null pointer constant.
QualType getEnumCoercedType(const ASTContext &Ctx) const
If this expression is an enumeration constant, return the enumeration type under which said constant ...
bool isBoundMemberFunction(ASTContext &Ctx) const
Returns true if this expression is a bound member function.
@ ClassTemplateArgument
A class template argument. Such a value is used for code generation.
@ Normal
An integer constant expression (an array bound, enumerator, case value, bit-field width,...
@ ImmediateInvocation
An immediate invocation.
@ NonClassTemplateArgument
A non-class template argument.
std::optional< uint64_t > tryEvaluateObjectSize(const ASTContext &Ctx, unsigned Type) const
If the current Expr is a pointer, this will try to statically determine the number of bytes available...
void setValueKind(ExprValueKind Cat)
setValueKind - Set the value kind produced by this expression.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
const FieldDecl * getSourceBitField() const
static bool isSameComparisonOperand(const Expr *E1, const Expr *E2)
Checks that the two Expr's will refer to the same value as a comparison operand.
void setObjectKind(ExprObjectKind Cat)
setObjectKind - Set the object kind produced by this expression.
bool refersToMatrixElement() const
Returns whether this expression refers to a matrix element.
bool refersToBitField() const
Returns true if this expression is a gl-value that potentially refers to a bit-field.
bool isDefaultArgument() const
Determine whether this expression is a default function argument.
@ MLV_DuplicateVectorComponents
@ MLV_InvalidMessageExpression
@ MLV_DuplicateMatrixComponents
@ MLV_ConstQualifiedField
@ MLV_SubObjCPropertySetting
Classification Classify(ASTContext &Ctx) const
Classify - Classify this expression according to the C++11 expression taxonomy.
const Decl * getReferencedDeclOfCallee() const
bool hasNonTrivialCall(const ASTContext &Ctx) const
Determine whether this expression involves a call to any function that is not trivial.
bool isOrdinaryOrBitFieldObject() const
bool hasPlaceholderType() const
Returns whether this expression has a placeholder type.
bool refersToGlobalRegisterVar() const
Returns whether this expression refers to a global register variable.
friend class ASTStmtReader
bool isCXX98IntegralConstantExpr(const ASTContext &Ctx) const
isCXX98IntegralConstantExpr - Return true if this expression is an integral constant expression in C+...
const ValueDecl * getAsBuiltinConstantDeclRef(const ASTContext &Context) const
If this expression is an unambiguous reference to a single declaration, in the style of __builtin_fun...
bool isOBJCGCCandidate(ASTContext &Ctx) const
isOBJCGCCandidate - Return true if this expression may be used in a read/ write barrier.
static ExprValueKind getValueKindForType(QualType T)
getValueKindForType - Given a formal return or parameter type, give its value kind.
bool EvaluateWithSubstitution(APValue &Value, ASTContext &Ctx, const FunctionDecl *Callee, ArrayRef< const Expr * > Args, const Expr *This=nullptr) const
EvaluateWithSubstitution - Evaluate an expression as if from the context of a call to the given funct...
const Expr * skipRValueSubobjectAdjustments() const
bool isKnownToHaveBooleanValue(bool Semantic=true) const
isKnownToHaveBooleanValue - Return true if this is an integer expression that is known to return 0 or...
bool isCXX11ConstantExpr(const ASTContext &Ctx, APValue *Result=nullptr, bool AllowRelaxedEval=false) const
isCXX11ConstantExpr - Return true if this expression is a constant expression in C++11.
void setDependence(ExprDependence Deps)
Each concrete expr subclass is expected to compute its dependence and call this in the constructor.
Expr(const Expr &)=delete
void EvaluateForOverflow(const ASTContext &Ctx) const
ExprDependence getDependence() const
Expr & operator=(Expr &&)=delete
const EnumConstantDecl * getEnumConstantDecl() const
const ObjCPropertyRefExpr * getObjCProperty() const
If this expression is an l-value for an Objective C property, find the underlying property reference ...
ExtVectorElementExpr(QualType Ty, ExprValueKind VK, Expr *Base, IdentifierInfo &Accessor, SourceLocation Loc)
ExtVectorElementExpr(EmptyShell Empty)
Build an empty vector element expression.
bool containsDuplicateElements() const
containsDuplicateElements - Return true if any element access is repeated.
bool isArrow() const
isArrow - Return true if the base expression is a pointer to vector, return false if the base express...
void getEncodedElementAccess(SmallVectorImpl< uint32_t > &Elts) const
getEncodedElementAccess - Encode the elements accessed into an llvm aggregate Constant of ConstantInt...
static bool classof(const Stmt *T)
unsigned getNumElements() const
getNumElements - Get the number of components being selected.
Represents difference between two FPOptions values.
FPOptions applyOverrides(FPOptions Base)
bool requiresTrailingStorage() const
static FPOptions defaultWithoutTrailingStorage(const LangOptions &LO)
Return the default value of FPOptions that's used when trailing storage isn't required.
bool allowFPContractWithinStatement() const
Represents a member of a struct/union/class.
SourceLocation getLocation() const
Retrieve the location of the literal.
std::string getValueAsString(unsigned Radix) const
unsigned getScale() const
SourceLocation getBeginLoc() const LLVM_READONLY
const_child_range children() const
void setLocation(SourceLocation Location)
llvm::APInt getValue() const
Returns an internal integer representation of the literal.
static bool classof(const Stmt *T)
void setScale(unsigned S)
static FixedPointLiteral * CreateFromRawInt(const ASTContext &C, const llvm::APInt &V, QualType type, SourceLocation l, unsigned Scale)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getLocation() const
llvm::APFloatBase::Semantics getRawSemantics() const
Get a raw enumeration value representing the floating-point semantics of this literal (32-bit IEEE,...
const llvm::fltSemantics & getSemantics() const
Return the APFloat semantics this literal uses.
void setValue(const ASTContext &C, const llvm::APFloat &Val)
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
void setRawSemantics(llvm::APFloatBase::Semantics Sem)
Set the raw enumeration value representing the floating-point semantics of this literal (32-bit IEEE,...
double getValueAsApproximateDouble() const
getValueAsApproximateDouble - This returns the value as an inaccurate double.
llvm::APFloat getValue() const
static bool classof(const Stmt *T)
void setLocation(SourceLocation L)
SourceLocation getEndLoc() const LLVM_READONLY
void setSemantics(const llvm::fltSemantics &Sem)
Set the APFloat semantics this literal uses.
FullExpr(StmtClass SC, EmptyShell Empty)
void setSubExpr(Expr *E)
As with any mutator of the AST, be very careful when modifying an existing AST to preserve its invari...
static bool classof(const Stmt *T)
FullExpr(StmtClass SC, Expr *subexpr)
const Expr * getSubExpr() const
Represents a function declaration or definition.
Represents a prototype with parameter type info, e.g.
SourceLocation getTokenLocation() const
getTokenLocation - The location of the __null token.
static bool classof(const Stmt *T)
SourceLocation getBeginLoc() const LLVM_READONLY
const_child_range children() const
GNUNullExpr(QualType Ty, SourceLocation Loc)
SourceLocation getEndLoc() const LLVM_READONLY
GNUNullExpr(EmptyShell Empty)
Build an empty GNU __null expression.
void setTokenLocation(SourceLocation L)
SourceLocation getBeginLoc() const
AssociationTy< false > Association
TypeSourceInfo * getControllingType()
Return the controlling type of this generic selection expression.
static bool classof(const Stmt *T)
const Expr * getControllingExpr() const
unsigned getNumAssocs() const
The number of association expressions.
const_association_range associations() const
AssociationIteratorTy< true > ConstAssociationIterator
SourceLocation getEndLoc() const
ArrayRef< Expr * > getAssocExprs() const
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
ConstAssociation getAssociation(unsigned I) const
association_range associations()
AssociationTy< true > ConstAssociation
SourceLocation getGenericLoc() const
SourceLocation getRParenLoc() const
unsigned getResultIndex() const
The zero-based index of the result expression's generic association in the generic selection's associ...
Expr * getResultExpr()
Return the result expression of this controlling expression.
AssociationIteratorTy< false > AssociationIterator
SourceLocation getDefaultLoc() const
llvm::iterator_range< AssociationIterator > association_range
const Expr * getResultExpr() const
bool isResultDependent() const
Whether this generic selection is result-dependent.
friend class ASTStmtWriter
const_child_range children() const
Association getAssociation(unsigned I)
Return the Ith association expression with its TypeSourceInfo, bundled together in GenericSelectionEx...
friend class ASTStmtReader
bool isTypePredicate() const
Whether this generic selection uses a type as its controlling argument.
const TypeSourceInfo * getControllingType() const
llvm::iterator_range< ConstAssociationIterator > const_association_range
static GenericSelectionExpr * CreateEmpty(const ASTContext &Context, unsigned NumAssocs)
Create an empty generic selection expression for deserialization.
Expr * getControllingExpr()
Return the controlling expression of this generic selection expression.
ArrayRef< TypeSourceInfo * > getAssocTypeSourceInfos() const
This class represents temporary values used to represent inout and out arguments in HLSL.
SourceLocation getEndLoc() const LLVM_READONLY
const OpaqueValueExpr * getCastedTemporary() const
const OpaqueValueExpr * getOpaqueArgLValue() const
Expr * getWritebackCast()
bool isInOut() const
returns true if the parameter is inout and false if the parameter is out.
static HLSLOutArgExpr * CreateEmpty(const ASTContext &Ctx)
static bool classof(const Stmt *T)
OpaqueValueExpr * getCastedTemporary()
const Expr * getWritebackCast() const
SourceLocation getBeginLoc() const LLVM_READONLY
const Expr * getArgLValue() const
Return the l-value expression that was written as the argument in source.
OpaqueValueExpr * getOpaqueArgLValue()
friend class ASTStmtReader
One of these records is kept for each identifier that is lexed.
SourceLocation getEndLoc() const LLVM_READONLY
ImaginaryLiteral(Expr *val, QualType Ty)
const Expr * getSubExpr() const
SourceLocation getBeginLoc() const LLVM_READONLY
ImaginaryLiteral(EmptyShell Empty)
Build an empty imaginary literal.
static bool classof(const Stmt *T)
const_child_range children() const
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
static ImplicitCastExpr * CreateEmpty(const ASTContext &Context, unsigned PathSize, bool HasFPFeatures)
ImplicitCastExpr(OnStack_t _, QualType ty, CastKind kind, Expr *op, ExprValueKind VK, FPOptionsOverride FPO)
bool isPartOfExplicitCast() const
static bool classof(const Stmt *T)
void setIsPartOfExplicitCast(bool PartOfExplicitCast)
SourceLocation getEndLoc() const LLVM_READONLY
static bool classof(const Stmt *T)
ImplicitValueInitExpr(EmptyShell Empty)
Construct an empty implicit value initialization.
const_child_range children() const
ImplicitValueInitExpr(QualType ty)
SourceLocation getBeginLoc() const LLVM_READONLY
Describes an C or C++ initializer list.
const_reverse_iterator rend() const
bool hasArrayFiller() const
Return true if this is an array initializer and its array "filler" has been set.
void setSyntacticForm(InitListExpr *Init)
InitExprsTy::reverse_iterator reverse_iterator
InitExprsTy::const_reverse_iterator const_reverse_iterator
void markError()
Mark the semantic form of the InitListExpr as error when the semantic analysis fails.
bool hasDesignatedInit() const
Determine whether this initializer list contains a designated initializer.
bool isTransparent() const
Is this a transparent initializer list (that is, an InitListExpr that is purely syntactic,...
void resizeInits(const ASTContext &Context, unsigned NumInits)
Specify the number of initializers.
bool isStringLiteralInit() const
Is this an initializer for an array of characters, initialized by a string literal or an @encode?
FieldDecl * getInitializedFieldInUnion()
If this initializes a union, specifies which field in the union to initialize.
unsigned getNumInits() const
SourceLocation getBeginLoc() const LLVM_READONLY
bool isSemanticForm() const
void setInit(unsigned Init, Expr *expr)
const_iterator begin() const
reverse_iterator rbegin()
const_reverse_iterator rbegin() const
InitExprsTy::const_iterator const_iterator
Expr *const * getInits() const
Retrieve the set of initializers.
SourceLocation getLBraceLoc() const
Expr * updateInit(const ASTContext &C, unsigned Init, Expr *expr)
Updates the initializer at index Init with the new expression expr, and returns the old expression at...
void setArrayFiller(Expr *filler)
InitListExpr * getSyntacticForm() const
static bool classof(const Stmt *T)
bool hadArrayRangeDesignator() const
Expr * getArrayFiller()
If this initializer list initializes an array with more elements than there are initializers in the l...
unsigned getNumInitsWithEmbedExpanded() const
getNumInits but if the list has an EmbedExpr inside includes full length of embedded data.
SourceLocation getRBraceLoc() const
InitListExpr * getSemanticForm() const
const FieldDecl * getInitializedFieldInUnion() const
InitListExpr(const ASTContext &C, SourceLocation lbraceloc, ArrayRef< Expr * > initExprs, SourceLocation rbraceloc, bool isExplicit)
friend class ASTStmtWriter
const Expr * getInit(unsigned Init) const
InitListExpr(EmptyShell Empty)
Build an empty initializer list.
void setLBraceLoc(SourceLocation Loc)
const Expr * getArrayFiller() const
const_child_range children() const
bool isIdiomaticZeroInitializer(const LangOptions &LangOpts) const
Is this the zero initializer {0} in a language which considers it idiomatic?
friend class ASTStmtReader
const_iterator end() const
SourceLocation getEndLoc() const LLVM_READONLY
void setInitializedFieldInUnion(FieldDecl *FD)
bool isSyntacticForm() const
void setRBraceLoc(SourceLocation Loc)
ArrayRef< Expr * > inits() const
InitExprsTy::iterator iterator
void sawArrayRangeDesignator(bool ARD=true)
Expr ** getInits()
Retrieve the set of initializers.
Expr * getInit(unsigned Init)
void reserveInits(const ASTContext &C, unsigned NumInits)
Reserve space for some number of initializers.
void setLocation(SourceLocation Location)
SourceLocation getEndLoc() const LLVM_READONLY
static bool classof(const Stmt *T)
SourceLocation getLocation() const
Retrieve the location of the literal.
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
Represents the declaration of a label.
StrictFlexArraysLevelKind
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
MatrixElementExpr(QualType Ty, ExprValueKind VK, Expr *Base, IdentifierInfo &Accessor, SourceLocation Loc)
bool containsDuplicateElements() const
containsDuplicateElements - Return true if any element access is repeated.
void getEncodedElementAccess(SmallVectorImpl< uint32_t > &Elts) const
getEncodedElementAccess - Encode the elements accessed into an llvm aggregate Constant of ConstantInt...
unsigned getNumElements() const
getNumElements - Get the number of components being selected.
static bool classof(const Stmt *T)
MatrixElementExpr(EmptyShell Empty)
Build an empty matrix element expression.
MatrixSingleSubscriptExpr(Expr *Base, Expr *RowIdx, QualType T, SourceLocation RBracketLoc)
matrix[row]
SourceLocation getRBracketLoc() const
const Expr * getRowIdx() const
const_child_range children() const
SourceLocation getBeginLoc() const LLVM_READONLY
void setRBracketLoc(SourceLocation L)
MatrixSingleSubscriptExpr(EmptyShell Shell)
Create an empty matrix single-subscript expression.
SourceLocation getExprLoc() const LLVM_READONLY
const Expr * getBase() const
static bool classof(const Stmt *T)
SourceLocation getEndLoc() const
void setColumnIdx(Expr *E)
SourceLocation getEndLoc() const
const Expr * getBase() const
const_child_range children() const
SourceLocation getRBracketLoc() const
SourceLocation getExprLoc() const LLVM_READONLY
MatrixSubscriptExpr(Expr *Base, Expr *RowIdx, Expr *ColumnIdx, QualType T, SourceLocation RBracketLoc)
const Expr * getRowIdx() const
bool isIncomplete() const
MatrixSubscriptExpr(EmptyShell Shell)
Create an empty matrix subscript expression.
static bool classof(const Stmt *T)
const Expr * getColumnIdx() const
void setRBracketLoc(SourceLocation L)
SourceLocation getBeginLoc() const LLVM_READONLY
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
static MemberExpr * CreateEmpty(const ASTContext &Context, bool HasQualifier, bool HasFoundDecl, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs)
ArrayRef< TemplateArgumentLoc > template_arguments() const
void setMemberDecl(ValueDecl *D)
SourceLocation getMemberLoc() const
getMemberLoc - Return the location of the "member", in X->F, it is the location of 'F'.
void setMemberLoc(SourceLocation L)
void setHadMultipleCandidates(bool V=true)
Sets the flag telling whether this expression refers to a method that was resolved from an overloaded...
SourceLocation getOperatorLoc() const
NestedNameSpecifier getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
static bool classof(const Stmt *T)
SourceLocation getTemplateKeywordLoc() const
Retrieve the location of the template keyword preceding the member name, if any.
NestedNameSpecifierLoc getQualifierLoc() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name,...
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
const_child_range children() const
bool hasExplicitTemplateArgs() const
Determines whether the member name was followed by an explicit template argument list.
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
bool hasQualifier() const
Determines whether this member expression actually had a C++ nested-name-specifier prior to the name ...
void copyTemplateArgumentsInto(TemplateArgumentListInfo &List) const
Copies the template arguments (if present) into the given structure.
bool isImplicitAccess() const
Determine whether the base of this explicit is implicit.
const TemplateArgumentLoc * getTemplateArgs() const
Retrieve the template arguments provided as part of this template-id.
bool performsVirtualDispatch(const LangOptions &LO) const
Returns true if virtual dispatch is performed.
unsigned getNumTemplateArgs() const
Retrieve the number of template arguments provided as part of this template-id.
SourceLocation getRAngleLoc() const
Retrieve the location of the right angle bracket ending the explicit template argument list following...
SourceLocation getEndLoc() const LLVM_READONLY
friend class ASTStmtWriter
static MemberExpr * CreateImplicit(const ASTContext &C, Expr *Base, bool IsArrow, ValueDecl *MemberDecl, QualType T, ExprValueKind VK, ExprObjectKind OK)
Create an implicit MemberExpr, with no location, qualifier, template arguments, and so on.
bool hadMultipleCandidates() const
Returns true if this member expression refers to a method that was resolved from an overloaded set ha...
bool hasTemplateKeyword() const
Determines whether the member name was preceded by the template keyword.
friend class ASTStmtReader
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getLAngleLoc() const
Retrieve the location of the left angle bracket starting the explicit template argument list followin...
DeclarationNameInfo getMemberNameInfo() const
Retrieve the member declaration name info.
SourceLocation getExprLoc() const LLVM_READONLY
DeclAccessPair getFoundDecl() const
Retrieves the declaration found by lookup.
A pointer to member type per C++ 8.3.3 - Pointers to members.
This represents a decl that may have a name.
A C++ nested-name-specifier augmented with source location information.
NestedNameSpecifier getNestedNameSpecifier() const
Retrieve the nested-name-specifier to which this instance refers.
SourceLocation getBeginLoc() const
Retrieve the location of the beginning of this nested-name-specifier.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
static bool classof(const Stmt *T)
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
NoInitExpr(EmptyShell Empty)
const_child_range children() const
ObjCPropertyRefExpr - A dot-syntax expression to access an ObjC property.
const Expr * getIndexExpr(unsigned Idx) const
SourceLocation getBeginLoc() const LLVM_READONLY
void setOperatorLoc(SourceLocation L)
static OffsetOfExpr * CreateEmpty(const ASTContext &C, unsigned NumComps, unsigned NumExprs)
Expr * getIndexExpr(unsigned Idx)
SourceLocation getEndLoc() const LLVM_READONLY
static bool classof(const Stmt *T)
SourceLocation getOperatorLoc() const
getOperatorLoc - Return the location of the operator.
const OffsetOfNode & getComponent(unsigned Idx) const
void setIndexExpr(unsigned Idx, Expr *E)
TypeSourceInfo * getTypeSourceInfo() const
void setTypeSourceInfo(TypeSourceInfo *tsi)
const_child_range children() const
void setComponent(unsigned Idx, OffsetOfNode ON)
unsigned getNumExpressions() const
SourceLocation getRParenLoc() const
Return the location of the right parentheses.
void setRParenLoc(SourceLocation R)
unsigned getNumComponents() const
Helper class for OffsetOfExpr.
const IdentifierInfo * getFieldName() const
For a field or identifier offsetof node, returns the name of the field.
unsigned getArrayExprIndex() const
For an array element node, returns the index into the array of expressions.
FieldDecl * getField() const
For a field offsetof node, returns the field.
OffsetOfNode(const CXXBaseSpecifier *Base)
Create an offsetof node that refers into a C++ base class.
OffsetOfNode(SourceLocation LBracketLoc, unsigned Index, SourceLocation RBracketLoc)
Create an offsetof node that refers to an array element.
SourceRange getSourceRange() const LLVM_READONLY
Retrieve the source range that covers this offsetof node.
Kind
The kind of offsetof node we have.
@ Array
An index into an array.
@ Identifier
A field in a dependent type, known only by its name.
@ Base
An implicit indirection through a C++ base class, when the field found is in a base class.
SourceLocation getBeginLoc() const LLVM_READONLY
Kind getKind() const
Determine what kind of offsetof node this is.
OffsetOfNode(SourceLocation DotLoc, FieldDecl *Field, SourceLocation NameLoc)
Create an offsetof node that refers to a field.
SourceLocation getEndLoc() const LLVM_READONLY
CXXBaseSpecifier * getBase() const
For a base class node, returns the base specifier.
OffsetOfNode(SourceLocation DotLoc, const IdentifierInfo *Name, SourceLocation NameLoc)
Create an offsetof node that refers to an identifier.
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
static const OpaqueValueExpr * findInCopyConstruct(const Expr *expr)
Given an expression which invokes a copy constructor — i.e.
OpaqueValueExpr(EmptyShell Empty)
OpaqueValueExpr(SourceLocation Loc, QualType T, ExprValueKind VK, ExprObjectKind OK=OK_Ordinary, Expr *SourceExpr=nullptr)
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getEndLoc() const LLVM_READONLY
static bool classof(const Stmt *T)
Expr * getSourceExpr() const
The source expression of an opaque value expression is the expression which originally generated the ...
SourceLocation getLocation() const
Retrieve the location of this expression.
friend class ASTStmtReader
const_child_range children() const
SourceLocation getExprLoc() const LLVM_READONLY
static OpenACCAsteriskSizeExpr * CreateEmpty(const ASTContext &C)
SourceLocation getEndLoc() const
SourceLocation getLocation() const
const_child_range children() const
SourceLocation getBeginLoc() const
friend class ASTStmtReader
static bool classof(const Stmt *T)
ParenExpr(SourceLocation l, SourceLocation r, Expr *val)
SourceLocation getLParen() const
Get the location of the left parentheses '('.
static bool classof(const Stmt *T)
ParenExpr(EmptyShell Empty)
Construct an empty parenthesized expression.
void setLParen(SourceLocation Loc)
void setIsProducedByFoldExpansion(bool ProducedByFoldExpansion=true)
const_child_range children() const
void setRParen(SourceLocation Loc)
SourceLocation getBeginLoc() const LLVM_READONLY
const Expr * getSubExpr() const
bool isProducedByFoldExpansion() const
SourceLocation getRParen() const
Get the location of the right parentheses ')'.
SourceLocation getEndLoc() const LLVM_READONLY
Expr *const * getExprs() const
static ParenListExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumExprs)
Create an empty paren list.
SourceLocation getBeginLoc() const
Expr * getExpr(unsigned Init)
ArrayRef< Expr * > exprs() const
const Expr * getExpr(unsigned Init) const
const_child_range children() const
SourceLocation getEndLoc() const
unsigned getNumExprs() const
Return the number of expressions in this paren list.
SourceLocation getLParenLoc() const
friend class ASTStmtReader
SourceLocation getRParenLoc() const
static bool classof(const Stmt *T)
Represents a parameter to a function.
SourceLocation getBeginLoc() const
void setLocation(SourceLocation L)
static bool classof(const Stmt *T)
SourceLocation getEndLoc() const
const StringLiteral * getFunctionName() const
StringRef getIdentKindName() const
static PredefinedExpr * CreateEmpty(const ASTContext &Ctx, bool HasFunctionName)
Create an empty PredefinedExpr.
bool isTransparent() const
static std::string ComputeName(PredefinedIdentKind IK, const Decl *CurrentDecl, bool ForceElaboratedPrinting=false)
const_child_range children() const
PredefinedIdentKind getIdentKind() const
SourceLocation getLocation() const
friend class ASTStmtReader
StringLiteral * getFunctionName()
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
const Expr * getResultExpr() const
const_semantics_iterator semantics_begin() const
semantics_iterator semantics_end()
SourceLocation getExprLoc() const LLVM_READONLY
unsigned getResultExprIndex() const
Return the index of the result-bearing expression into the semantics expressions, or PseudoObjectExpr...
semantics_iterator semantics_begin()
const Expr *const * const_semantics_iterator
SourceLocation getBeginLoc() const LLVM_READONLY
Expr *const * semantics_iterator
const_semantics_iterator semantics_end() const
const Expr * getSyntacticForm() const
static bool classof(const Stmt *T)
const Expr * getSemanticExpr(unsigned index) const
Expr * getResultExpr()
Return the result-bearing expression, or null if there is none.
ArrayRef< Expr * > semantics()
ArrayRef< const Expr * > semantics() const
unsigned getNumSemanticExprs() const
friend class ASTStmtReader
Expr * getSemanticExpr(unsigned index)
Expr * getSyntacticForm()
Return the syntactic form of this expression, i.e.
SourceLocation getEndLoc() const LLVM_READONLY
const_child_range children() const
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Represents a struct/union/class.
Frontend produces RecoveryExprs on semantic errors that prevent creating other well-formed expression...
ArrayRef< const Expr * > subExpressions() const
ArrayRef< Expr * > subExpressions()
SourceLocation getEndLoc() const
static bool classof(const Stmt *T)
friend class ASTStmtWriter
friend class ASTStmtReader
SourceLocation getBeginLoc() const
static RecoveryExpr * CreateEmpty(ASTContext &Ctx, unsigned NumSubExprs)
Base for LValueReferenceType and RValueReferenceType.
static bool classof(const Stmt *T)
const_child_range children() const
SourceLocation getLocation() const
const TypeSourceInfo * getTypeSourceInfo() const
SourceLocation getLParenLocation() const
TypeSourceInfo * getTypeSourceInfo()
std::string ComputeName(ASTContext &Context) const
SourceLocation getBeginLoc() const
SourceLocation getRParenLocation() const
friend class ASTStmtReader
SourceLocation getEndLoc() const
static SYCLUniqueStableNameExpr * CreateEmpty(const ASTContext &Ctx)
ShuffleVectorExpr(EmptyShell Empty)
Build an empty vector-shuffle expression.
llvm::APSInt getShuffleMaskIdx(unsigned N) const
void setExprs(const ASTContext &C, ArrayRef< Expr * > Exprs)
Expr ** getSubExprs()
Retrieve the array of expressions.
const_child_range children() const
ShuffleVectorExpr(const ASTContext &C, ArrayRef< Expr * > args, QualType Type, SourceLocation BLoc, SourceLocation RP)
SourceLocation getBuiltinLoc() const
SourceLocation getEndLoc() const LLVM_READONLY
void setRParenLoc(SourceLocation L)
const Expr * getExpr(unsigned Index) const
unsigned getNumSubExprs() const
getNumSubExprs - Return the size of the SubExprs array.
static bool classof(const Stmt *T)
SourceLocation getRParenLoc() const
SourceLocation getBeginLoc() const LLVM_READONLY
Expr * getExpr(unsigned Index)
getExpr - Return the Expr at the specified index.
void setBuiltinLoc(SourceLocation L)
SourceLocExpr(EmptyShell Empty)
Build an empty call expression.
SourceLocation getBeginLoc() const
APValue EvaluateInContext(const ASTContext &Ctx, const Expr *DefaultExpr) const
Return the result of evaluating this SourceLocExpr in the specified (and possibly null) default argum...
static bool classof(const Stmt *T)
SourceLocExpr(const ASTContext &Ctx, SourceLocIdentKind Type, QualType ResultTy, SourceLocation BLoc, SourceLocation RParenLoc, DeclContext *Context)
SourceLocation getLocation() const
const DeclContext * getParentContext() const
If the SourceLocExpr has been resolved return the subexpression representing the resolved value.
SourceLocation getEndLoc() const
DeclContext * getParentContext()
StringRef getBuiltinStr() const
Return a string representing the name of the specific builtin function.
const_child_range children() const
static bool MayBeDependent(SourceLocIdentKind Kind)
SourceLocIdentKind getIdentKind() const
friend class ASTStmtReader
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
This class handles loading and caching of source files into memory.
A trivial tuple used to represent a source range.
const CompoundStmt * getSubStmt() const
void setRParenLoc(SourceLocation L)
const_child_range children() const
CompoundStmt * getSubStmt()
static bool classof(const Stmt *T)
StmtExpr(CompoundStmt *SubStmt, QualType T, SourceLocation LParenLoc, SourceLocation RParenLoc, unsigned TemplateDepth)
StmtExpr(EmptyShell Empty)
Build an empty statement expression.
void setLParenLoc(SourceLocation L)
SourceLocation getEndLoc() const LLVM_READONLY
unsigned getTemplateDepth() const
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getRParenLoc() const
void setSubStmt(CompoundStmt *S)
SourceLocation getLParenLoc() const
Stmt - This represents one statement.
SourceLocation getEndLoc() const LLVM_READONLY
UnaryExprOrTypeTraitExprBitfields UnaryExprOrTypeTraitExprBits
GenericSelectionExprBitfields GenericSelectionExprBits
InitListExprBitfields InitListExprBits
ParenListExprBitfields ParenListExprBits
ArrayOrMatrixSubscriptExprBitfields ArrayOrMatrixSubscriptExprBits
ParenExprBitfields ParenExprBits
StmtIterator child_iterator
Child Iterators: All subclasses must implement 'children' to permit easy iteration over the substatem...
CallExprBitfields CallExprBits
ShuffleVectorExprBitfields ShuffleVectorExprBits
FloatingLiteralBitfields FloatingLiteralBits
child_iterator child_begin()
StmtClass getStmtClass() const
CharacterLiteralBitfields CharacterLiteralBits
UnaryOperatorBitfields UnaryOperatorBits
ConstCastIterator< Expr > ConstExprIterator
SourceLocExprBitfields SourceLocExprBits
Stmt(StmtClass SC, EmptyShell)
Construct an empty statement.
ChooseExprBitfields ChooseExprBits
ConstantExprBitfields ConstantExprBits
llvm::iterator_range< child_iterator > child_range
StmtExprBitfields StmtExprBits
StringLiteralBitfields StringLiteralBits
OpaqueValueExprBitfields OpaqueValueExprBits
CastExprBitfields CastExprBits
MemberExprBitfields MemberExprBits
DeclRefExprBitfields DeclRefExprBits
ConstStmtIterator const_child_iterator
PredefinedExprBitfields PredefinedExprBits
ConvertVectorExprBitfields ConvertVectorExprBits
SourceLocation getBeginLoc() const LLVM_READONLY
BinaryOperatorBitfields BinaryOperatorBits
PseudoObjectExprBitfields PseudoObjectExprBits
llvm::iterator_range< const_child_iterator > const_child_range
CastIterator< Expr > ExprIterator
The streaming interface shared between DiagnosticBuilder and PartialDiagnostic.
void AddTaggedVal(uint64_t V, DiagnosticsEngine::ArgumentKind Kind) const
StringLiteral - This represents a string literal expression, e.g.
const_child_range children() const
UnsignedOrNone findZeroCodeUnit(unsigned StartIndex=0) const
Scan the string literal contents for a code unit with value 0.
SourceLocation getStrTokenLoc(unsigned TokNum) const
Get one of the string literal token.
SourceLocation getBeginLoc() const LLVM_READONLY
bool containsNonAscii() const
Scans the string contents for any non-ascii characters.
bool containsNonAsciiOrNull() const
Scans the string contents for any non-ascii or null characters.
unsigned getLength() const
static bool classof(const Stmt *T)
uint32_t getCodeUnit(size_t I) const
Return the code unit at the given position.
tokloc_iterator tokloc_begin() const
tokloc_iterator tokloc_end() const
StringLiteralKind getKind() const
SourceLocation getLocationOfByte(unsigned ByteNo, const SourceManager &SM, const LangOptions &Features, const TargetInfo &Target, unsigned *StartToken=nullptr, unsigned *StartTokenByteOffset=nullptr) const
Return a source location that points to the specified byte of this string literal.
StringRef getBytes() const
Allow access to clients that need the byte representation, such as ASTWriterStmt::VisitStringLiteral(...
bool isUnevaluated() const
void outputString(raw_ostream &OS) const
Prints the contents of the string to OS.
int64_t getCodeUnitS(size_t I, uint64_t BitWidth) const
unsigned getByteLength() const
StringRef getString() const
friend class ASTStmtReader
static StringLiteral * CreateEmpty(const ASTContext &Ctx, unsigned NumConcatenated, unsigned Length, unsigned CharByteWidth)
Construct an empty string literal.
SourceLocation getEndLoc() const LLVM_READONLY
const SourceLocation * tokloc_iterator
unsigned getNumConcatenated() const
Get the number of string literal tokens that were concatenated in translation phase #6 to form this s...
unsigned getCharByteWidth() const
Exposes information about the current target.
A convenient class for passing around template argument information.
Location wrapper for a TemplateArgument.
A container of type source information.
QualType getType() const
Return the type wrapped by this type source info.
The base class of the type hierarchy.
bool isPlaceholderType() const
Test for a type which does not represent an actual type-system type but is instead used as a placehol...
bool isIntegerType() const
isIntegerType() does not include complex integers (a GCC extension).
bool isReferenceType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
SourceLocation getRParenLoc() const
SourceLocation getEndLoc() const LLVM_READONLY
void setKind(UnaryExprOrTypeTrait K)
QualType getArgumentType() const
void setOperatorLoc(SourceLocation L)
SourceLocation getOperatorLoc() const
const Expr * getArgumentExpr() const
SourceLocation getBeginLoc() const LLVM_READONLY
void setRParenLoc(SourceLocation L)
static bool classof(const Stmt *T)
QualType getTypeOfArgument() const
Gets the argument type, or the type of the argument expression, whichever is appropriate.
bool isArgumentType() const
void setArgument(Expr *E)
UnaryExprOrTypeTraitExpr(UnaryExprOrTypeTrait ExprKind, TypeSourceInfo *TInfo, QualType resultType, SourceLocation op, SourceLocation rp)
TypeSourceInfo * getArgumentTypeInfo() const
UnaryExprOrTypeTraitExpr(EmptyShell Empty)
Construct an empty sizeof/alignof expression.
UnaryExprOrTypeTrait getKind() const
void setArgument(TypeSourceInfo *TInfo)
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
static bool classof(const Stmt *T)
static bool isPostfix(Opcode Op)
isPostfix - Return true if this is a postfix operation, like x++.
bool isDecrementOp() const
SourceLocation getExprLoc() const
bool isFEnvAccessOn(const LangOptions &LO) const
Get the FENV_ACCESS status of this operator.
void setOperatorLoc(SourceLocation L)
SourceLocation getOperatorLoc() const
getOperatorLoc - Return the location of the operator.
Expr * getSubExpr() const
SourceLocation getEndLoc() const LLVM_READONLY
bool isArithmeticOp() const
void setCanOverflow(bool C)
UnaryOperator(bool HasFPFeatures, EmptyShell Empty)
Build an empty unary operator.
friend class ASTNodeImporter
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
static OverloadedOperatorKind getOverloadedOperator(Opcode Opc)
Retrieve the overloaded operator kind that corresponds to the given unary opcode.
void setOpcode(Opcode Opc)
static bool isIncrementOp(Opcode Op)
static bool isIncrementDecrementOp(Opcode Op)
SourceLocation getBeginLoc() const LLVM_READONLY
static bool isDecrementOp(Opcode Op)
FPOptionsOverride getStoredFPFeaturesOrDefault() const
Get the store FPOptionsOverride or default if not stored.
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
bool isFPContractableWithinStatement(const LangOptions &LO) const
Get the FP contractibility status of this operator.
static Opcode getOverloadedOpcode(OverloadedOperatorKind OO, bool Postfix)
Retrieve the unary opcode that corresponds to the given overloaded operator.
FPOptions getFPFeaturesInEffect(const LangOptions &LO) const
Get the FP features status of this operator.
friend class ASTStmtWriter
void setStoredFPFeatures(FPOptionsOverride F)
Set FPFeatures in trailing storage, used by Serialization & ASTImporter.
UnaryOperator(const ASTContext &Ctx, Expr *input, Opcode opc, QualType type, ExprValueKind VK, ExprObjectKind OK, SourceLocation l, bool CanOverflow, FPOptionsOverride FPFeatures)
FPOptionsOverride getFPOptionsOverride() const
friend class ASTStmtReader
static UnaryOperator * CreateEmpty(const ASTContext &C, bool hasFPFeatures)
static bool isPrefix(Opcode Op)
isPrefix - Return true if this is a prefix operation, like –x.
static StringRef getOpcodeStr(Opcode Op)
getOpcodeStr - Turn an Opcode enum value into the punctuation char it corresponds to,...
static bool isArithmeticOp(Opcode Op)
bool isIncrementDecrementOp() const
bool isIncrementOp() const
const_child_range children() const
bool canOverflow() const
Returns true if the unary operator can cause an overflow.
void setVarargABI(VarArgKind Kind)
void setRParenLoc(SourceLocation L)
TypeSourceInfo * getWrittenTypeInfo() const
SourceLocation getBuiltinLoc() const
SourceLocation getRParenLoc() const
bool isZOSABI() const
Returns whether this is really a z/OS ABI va_arg expression.
VAArgExpr(EmptyShell Empty)
Create an empty __builtin_va_arg expression.
bool isMicrosoftABI() const
Returns whether this is really a Win64 ABI va_arg expression.
static bool classof(const Stmt *T)
SourceLocation getBeginLoc() const LLVM_READONLY
VAArgExpr(SourceLocation BLoc, Expr *e, TypeSourceInfo *TInfo, SourceLocation RPLoc, QualType t, VarArgKind VaKind)
SourceLocation getEndLoc() const LLVM_READONLY
void setBuiltinLoc(SourceLocation L)
VarArgKind getVarargABI() const
void setWrittenTypeInfo(TypeSourceInfo *TI)
const_child_range children() const
const Expr * getSubExpr() const
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a statement that could possibly have a value and type.
Stmt(StmtClass SC, EmptyShell)
Construct an empty statement.
Represents a variable declaration or definition.
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
bool Const(InterpState &S, const T &Arg)
Top level wrappers for InstallAPI frontend operations.
LLVM_READNONE bool isASCII(char c)
Returns true if a byte is an ASCII character.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
ConstantResultStorageKind
Describes the kind of result that can be tail-allocated.
bool isa(CodeGen::Address addr)
const Expr * findStructFieldAccess(const Expr *E, const Expr **OutArrayIndex=nullptr, QualType *OutArrayElementTy=nullptr)
Walk E through parens, implicit casts, unary &/*, array subscripts and comma operators to find the he...
ExprDependenceScope::ExprDependence ExprDependence
StmtIterator cast_away_const(const ConstStmtIterator &RHS)
ExprObjectKind
A further classification of the kind of object referenced by an l-value or x-value.
@ OK_VectorComponent
A vector component is an element or range of elements of a vector.
@ OK_Ordinary
An ordinary object is located at an address in memory.
@ OK_BitField
A bitfield object is a bitfield on a C or C++ record.
@ OK_MatrixComponent
A matrix component is a single element or range of elements of a matrix.
Expr::ConstantExprKind ConstantExprKind
ExprDependence computeDependence(FullExpr *E)
@ Create
'create' clause, allowed on Compute and Combined constructs, plus 'data', 'enter data',...
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
@ Result
The result type of a method or function.
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
@ Type
The name was classified as a type.
CastKind
CastKind - The kind of operation required for a conversion.
std::pair< SourceLocation, PartialDiagnostic > PartialDiagnosticAt
A partial diagnostic along with the source location where this diagnostic occurs.
ExprValueKind
The categorization of expression values, currently following the C++11 scheme.
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
@ VK_XValue
An x-value expression is a reference to an object with independent storage but which can be "moved",...
@ VK_LValue
An l-value expression is a reference to an object with independent storage.
SmallVector< CXXBaseSpecifier *, 4 > CXXCastPath
A simple array of base specifiers.
const StreamingDiagnostic & operator<<(const StreamingDiagnostic &DB, const ConceptReference *C)
Insertion operator for diagnostics.
U cast(CodeGen::Address addr)
@ None
The alignment was not explicit in code.
@ Other
Other implicit parameter.
@ PrettyFunctionNoVirtual
The same as PrettyFunction, except that the 'virtual' keyword is omitted for virtual member functions...
NonOdrUseReason
The reason why a DeclRefExpr does not constitute an odr-use.
@ NOUR_None
This is an odr-use.
__UINTPTR_TYPE__ uintptr_t
An unsigned integer type with the property that any valid pointer to void can be converted to this ty...
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 uint16_t
__packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 __packed_splat2 __packed_splat4 __packed_splat2 __packed_splat8 __packed_splat4 uint32_t
BlockVarCopyInit(Expr *CopyExpr, bool CanThrow)
Expr * getCopyExpr() const
BlockVarCopyInit()=default
llvm::PointerIntPair< Expr *, 1, bool > ExprAndFlag
void setExprAndFlag(Expr *CopyExpr, bool CanThrow)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
Stores data related to a single embed directive.
StringLiteral * BinaryData
size_t getDataElementCount() const
EvalResult is a struct with detailed info about an evaluated expression.
APValue Val
Val - This is the value the expression can be folded to.
bool isGlobalLValue() const
Return true if the evaluated lvalue expression is global.
bool hasSideEffects() const
Return true if the evaluated expression has side effects.
SmallVectorImpl< PartialDiagnosticAt > * Diag
Diag - If this is non-null, it will be filled in with a stack of notes indicating why evaluation fail...
bool DiagEmitted
Whether any diagnostic has been emitted.
bool HasUndefinedBehavior
Whether the evaluation hit undefined behavior.
bool HasSideEffects
Whether the evaluated expression has side effects.
SmallVectorImpl< PartialDiagnosticAt > * ExtendedDiag
Location where we spot ptr to int cast or null subobject while evaluating constant expression in MS c...
A placeholder type used to construct an empty shell of a type, that will be filled in later (e....
const CastExpr * BasePath
const CXXRecordDecl * DerivedClass
const MemberPointerType * MPT
SubobjectAdjustment(const MemberPointerType *MPT, Expr *RHS)
SubobjectAdjustment(const FieldDecl *Field)
SubobjectAdjustment(const CastExpr *BasePath, const CXXRecordDecl *DerivedClass)
enum clang::SubobjectAdjustment::@253221166153022235222106274120241151060023135167 Kind
@ DerivedToBaseAdjustment
@ MemberPointerAdjustment