34#include "llvm/ADT/ArrayRef.h"
35#include "llvm/Support/ErrorHandling.h"
57 case OO_Call:
case OO_Subscript:
70 bool SkippedNot =
false;
71 if (
auto *NotEq = dyn_cast<UnaryOperator>(E)) {
72 assert(NotEq->getOpcode() == UO_LNot);
78 if (
auto *BO = dyn_cast<BinaryOperator>(E)) {
79 assert(!SkippedNot || BO->getOpcode() == BO_EQ);
80 Result.Opcode = SkippedNot ? BO_NE : BO->getOpcode();
84 }
else if (
auto *BO = dyn_cast<CXXOperatorCallExpr>(E)) {
85 assert(!SkippedNot || BO->getOperator() == OO_EqualEqual);
86 assert(BO->isInfixBinaryOp());
87 switch (BO->getOperator()) {
88 case OO_Less:
Result.Opcode = BO_LT;
break;
89 case OO_LessEqual:
Result.Opcode = BO_LE;
break;
90 case OO_Greater:
Result.Opcode = BO_GT;
break;
91 case OO_GreaterEqual:
Result.Opcode = BO_GE;
break;
92 case OO_Spaceship:
Result.Opcode = BO_Cmp;
break;
93 case OO_EqualEqual:
Result.Opcode = SkippedNot ? BO_NE : BO_EQ;
break;
94 default: llvm_unreachable(
"unexpected binop in rewritten operator expr");
96 Result.LHS = BO->getArg(0);
97 Result.RHS = BO->getArg(1);
100 llvm_unreachable(
"unexpected rewritten operator form");
113 E =
Result.LHS->IgnoreUnlessSpelledInSource();
114 if (
auto *BO = dyn_cast<BinaryOperator>(E)) {
115 assert(BO->getOpcode() == BO_Cmp);
116 Result.LHS = BO->getLHS();
117 Result.RHS = BO->getRHS();
119 }
else if (
auto *BO = dyn_cast<CXXOperatorCallExpr>(E)) {
120 assert(BO->getOperator() == OO_Spaceship);
121 Result.LHS = BO->getArg(0);
122 Result.RHS = BO->getArg(1);
125 llvm_unreachable(
"unexpected rewritten operator form");
143 if (RD->isPolymorphic() && E->
isGLValue())
150 assert(!
isTypeOperand() &&
"Cannot call isMostDerived for typeid(type)");
154 if (RD->isEffectivelyFinal())
157 if (
const auto *DRE = dyn_cast<DeclRefExpr>(E)) {
158 QualType Ty = DRE->getDecl()->getType();
167 assert(
isTypeOperand() &&
"Cannot call getTypeOperand for typeid(expr)");
169 return Context.getUnqualifiedArrayType(
176 if (
const auto *CE = dyn_cast<CastExpr>(E)) {
177 if (!CE->getSubExpr()->isGLValue())
182 if (
const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
185 if (
const auto *BO = dyn_cast<BinaryOperator>(E))
186 if (BO->getOpcode() == BO_Comma)
189 if (
const auto *ACO = dyn_cast<AbstractConditionalOperator>(E))
198 if (
const auto *UO = dyn_cast<UnaryOperator>(E))
199 if (UO->getOpcode() == UO_Deref)
221 assert(
isTypeOperand() &&
"Cannot call getTypeOperand for __uuidof(expr)");
223 return Context.getUnqualifiedArrayType(
229 return TypeInfo ? TypeInfo->getTypeLoc().getBeginLoc() :
getRParenLoc();
233CXXNewExpr::CXXNewExpr(
bool IsGlobalNew,
FunctionDecl *OperatorNew,
236 bool UsualArrayDeleteWantsSize,
238 std::optional<Expr *> ArraySize,
244 OperatorNew(OperatorNew), OperatorDelete(OperatorDelete),
245 AllocatedTypeInfo(AllocatedTypeInfo), Range(Range),
246 DirectInitRange(DirectInitRange) {
250 "Only CXXNewInitializationStyle::None can have no initializer!");
257 CXXNewExprBits.UsualArrayDeleteWantsSize = UsualArrayDeleteWantsSize;
260 llvm::to_underlying(InitializationStyle);
261 bool IsParenTypeId = TypeIdParens.
isValid();
266 getTrailingObjects<Stmt *>()[arraySizeOffset()] = *ArraySize;
268 getTrailingObjects<Stmt *>()[initExprOffset()] =
Initializer;
269 llvm::copy(PlacementArgs,
270 getTrailingObjects<Stmt *>() + placementNewArgsOffset());
272 getTrailingObjects<SourceRange>()[0] = TypeIdParens;
274 switch (getInitializationStyle()) {
290CXXNewExpr::CXXNewExpr(EmptyShell
Empty,
bool IsArray,
291 unsigned NumPlacementArgs,
bool IsParenTypeId)
302 SourceRange TypeIdParens, std::optional<Expr *> ArraySize,
306 bool IsArray = ArraySize.has_value();
308 unsigned NumPlacementArgs = PlacementArgs.size();
309 bool IsParenTypeId = TypeIdParens.
isValid();
311 Ctx.
Allocate(totalSizeToAlloc<Stmt *, SourceRange>(
312 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
313 alignof(CXXNewExpr));
314 return new (Mem) CXXNewExpr(
315 IsGlobalNew, OperatorNew, OperatorDelete, IAP, UsualArrayDeleteWantsSize,
316 PlacementArgs, TypeIdParens, ArraySize, InitializationStyle,
Initializer,
317 Ty, AllocatedTypeInfo, Range, DirectInitRange);
321 bool HasInit,
unsigned NumPlacementArgs,
322 bool IsParenTypeId) {
324 Ctx.
Allocate(totalSizeToAlloc<Stmt *, SourceRange>(
325 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
326 alignof(CXXNewExpr));
328 CXXNewExpr(
EmptyShell(), IsArray, NumPlacementArgs, IsParenTypeId);
349 while (
const auto *ICE = dyn_cast<ImplicitCastExpr>(Arg)) {
350 if (ICE->getCastKind() == CK_DerivedToBase ||
351 ICE->getCastKind() == CK_UncheckedDerivedToBase ||
352 ICE->getCastKind() == CK_NoOp) {
353 assert((ICE->getCastKind() == CK_NoOp ||
355 "only a destroying operator delete can have a converted arg");
356 Arg = ICE->getSubExpr();
381 :
Expr(CXXPseudoDestructorExprClass, Context.BoundMemberTy,
VK_PRValue,
384 OperatorLoc(OperatorLoc), QualifierLoc(QualifierLoc),
385 ScopeType(ScopeType), ColonColonLoc(ColonColonLoc), TildeLoc(TildeLoc),
386 DestroyedType(DestroyedType) {
392 return TInfo->getType();
400 End = TInfo->getTypeLoc().getSourceRange().getEnd();
406 if (std::distance(Begin, End) != 1)
409 if (
const auto *TTP = llvm::dyn_cast<TemplateTemplateParmDecl>(ND))
415UnresolvedLookupExpr::UnresolvedLookupExpr(
421 bool KnownInstantiationDependent)
423 UnresolvedLookupExprClass, Context, QualifierLoc, TemplateKWLoc,
424 NameInfo, TemplateArgs, Begin, End, KnownDependent,
425 KnownInstantiationDependent,
427 NamingClass(NamingClass) {
428 UnresolvedLookupExprBits.RequiresADL = RequiresADL;
431UnresolvedLookupExpr::UnresolvedLookupExpr(EmptyShell
Empty,
433 bool HasTemplateKWAndArgsInfo)
435 HasTemplateKWAndArgsInfo) {}
441 bool KnownDependent,
bool KnownInstantiationDependent) {
442 unsigned NumResults = End - Begin;
445 void *Mem = Context.Allocate(Size,
alignof(UnresolvedLookupExpr));
446 return new (Mem) UnresolvedLookupExpr(
447 Context, NamingClass, QualifierLoc,
449 nullptr, Begin, End, KnownDependent,
450 KnownInstantiationDependent);
459 bool KnownInstantiationDependent) {
460 unsigned NumResults = End - Begin;
461 bool HasTemplateKWAndArgsInfo = Args || TemplateKWLoc.
isValid();
462 unsigned NumTemplateArgs = Args ? Args->
size() : 0;
465 NumResults, HasTemplateKWAndArgsInfo, NumTemplateArgs);
466 void *Mem = Context.Allocate(Size,
alignof(UnresolvedLookupExpr));
467 return new (Mem) UnresolvedLookupExpr(
468 Context, NamingClass, QualifierLoc, TemplateKWLoc, NameInfo, RequiresADL,
469 Args, Begin, End, KnownDependent, KnownInstantiationDependent);
473 const ASTContext &Context,
unsigned NumResults,
474 bool HasTemplateKWAndArgsInfo,
unsigned NumTemplateArgs) {
475 assert(NumTemplateArgs == 0 || HasTemplateKWAndArgsInfo);
478 NumResults, HasTemplateKWAndArgsInfo, NumTemplateArgs);
479 void *Mem = Context.Allocate(Size,
alignof(UnresolvedLookupExpr));
481 UnresolvedLookupExpr(
EmptyShell(), NumResults, HasTemplateKWAndArgsInfo);
491 bool KnownInstantiationDependent,
492 bool KnownContainsUnexpandedParameterPack)
494 QualifierLoc(QualifierLoc) {
495 unsigned NumResults = End - Begin;
508 auto Deps = TemplateArgumentDependence::None;
511 }
else if (TemplateKWLoc.
isValid()) {
512 getTrailingASTTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc);
516 KnownInstantiationDependent,
517 KnownContainsUnexpandedParameterPack));
523 bool HasTemplateKWAndArgsInfo)
530DependentScopeDeclRefExpr::DependentScopeDeclRefExpr(
535 QualifierLoc(QualifierLoc), NameInfo(NameInfo) {
537 (Args !=
nullptr) || TemplateKWLoc.
isValid();
539 auto Deps = TemplateArgumentDependence::None;
540 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
541 TemplateKWLoc, *Args, getTrailingObjects<TemplateArgumentLoc>(), Deps);
542 }
else if (TemplateKWLoc.
isValid()) {
543 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
553 assert(QualifierLoc &&
"should be created for dependent qualifiers");
554 bool HasTemplateKWAndArgsInfo = Args || TemplateKWLoc.
isValid();
556 totalSizeToAlloc<ASTTemplateKWAndArgsInfo, TemplateArgumentLoc>(
557 HasTemplateKWAndArgsInfo, Args ? Args->
size() : 0);
558 void *Mem = Context.Allocate(Size);
559 return new (Mem) DependentScopeDeclRefExpr(Context.DependentTy, QualifierLoc,
560 TemplateKWLoc, NameInfo, Args);
565 bool HasTemplateKWAndArgsInfo,
566 unsigned NumTemplateArgs) {
567 assert(NumTemplateArgs == 0 || HasTemplateKWAndArgsInfo);
569 totalSizeToAlloc<ASTTemplateKWAndArgsInfo, TemplateArgumentLoc>(
570 HasTemplateKWAndArgsInfo, NumTemplateArgs);
571 void *Mem = Context.Allocate(Size);
572 auto *E =
new (Mem) DependentScopeDeclRefExpr(
575 E->DependentScopeDeclRefExprBits.HasTemplateKWAndArgsInfo =
576 HasTemplateKWAndArgsInfo;
581 if (
const auto *TOE = dyn_cast<CXXTemporaryObjectExpr>(
this))
582 return TOE->getBeginLoc();
587 if (
const auto *TOE = dyn_cast<CXXTemporaryObjectExpr>(
this))
588 return TOE->getEndLoc();
590 if (ParenOrBraceRange.isValid())
591 return ParenOrBraceRange.getEnd();
613 ADLCallKind UsesADL,
bool IsReversed)
614 :
CallExpr(CXXOperatorCallExprClass, Fn, {}, Args, Ty,
VK,
615 OperatorLoc, FPFeatures, 0, UsesADL) {
616 CXXOperatorCallExprBits.OperatorKind = OpKind;
617 CXXOperatorCallExprBits.IsReversed = IsReversed;
619 (CXXOperatorCallExprBits.OperatorKind ==
static_cast<unsigned>(OpKind)) &&
620 "OperatorKind overflow!");
621 BeginLoc = getSourceRangeImpl().getBegin();
624CXXOperatorCallExpr::CXXOperatorCallExpr(
unsigned NumArgs,
bool HasFPFeatures,
626 :
CallExpr(CXXOperatorCallExprClass, 0, NumArgs,
627 HasFPFeatures,
Empty) {}
635 unsigned NumArgs = Args.size();
640 SizeOfTrailingObjects),
641 alignof(CXXOperatorCallExpr));
642 return new (Mem) CXXOperatorCallExpr(OpKind, Fn, Args, Ty,
VK, OperatorLoc,
643 FPFeatures,
UsesADL, IsReversed);
651 unsigned SizeOfTrailingObjects =
655 SizeOfTrailingObjects),
656 alignof(CXXOperatorCallExpr));
657 return new (Mem) CXXOperatorCallExpr(NumArgs, HasFPFeatures,
Empty);
660SourceRange CXXOperatorCallExpr::getSourceRangeImpl()
const {
662 if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) {
669 }
else if (Kind == OO_Arrow) {
671 }
else if (Kind == OO_Call) {
673 }
else if (Kind == OO_Subscript) {
691 :
CallExpr(CXXMemberCallExprClass,
Fn, {}, Args, Ty, VK, RP,
694CXXMemberCallExpr::CXXMemberCallExpr(
unsigned NumArgs,
bool HasFPFeatures,
696 :
CallExpr(CXXMemberCallExprClass, 0, NumArgs, HasFPFeatures,
704 unsigned MinNumArgs) {
706 unsigned NumArgs = std::max<unsigned>(Args.size(), MinNumArgs);
710 SizeOfTrailingObjects),
711 alignof(CXXMemberCallExpr));
713 CXXMemberCallExpr(Fn, Args, Ty,
VK, RP, FPFeatures, MinNumArgs);
721 unsigned SizeOfTrailingObjects =
724 SizeOfTrailingObjects),
725 alignof(CXXMemberCallExpr));
726 return new (Mem) CXXMemberCallExpr(NumArgs, HasFPFeatures,
Empty);
731 if (
const auto *MemExpr = dyn_cast<MemberExpr>(Callee))
732 return MemExpr->getBase();
733 if (
const auto *BO = dyn_cast<BinaryOperator>(Callee))
734 if (BO->getOpcode() == BO_PtrMemD || BO->getOpcode() == BO_PtrMemI)
777 case CXXStaticCastExprClass:
return "static_cast";
778 case CXXDynamicCastExprClass:
return "dynamic_cast";
779 case CXXReinterpretCastExprClass:
return "reinterpret_cast";
780 case CXXConstCastExprClass:
return "const_cast";
781 case CXXAddrspaceCastExprClass:
return "addrspace_cast";
782 default:
return "<invalid cast>";
792 unsigned PathSize = (BasePath ? BasePath->size() : 0);
794 C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *, FPOptionsOverride>(
796 auto *E =
new (Buffer) CXXStaticCastExpr(T,
VK, K, Op, PathSize, WrittenTy,
797 FPO, L, RParenLoc, AngleBrackets);
799 llvm::uninitialized_copy(*BasePath,
806 bool HasFPFeatures) {
808 C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *, FPOptionsOverride>(
809 PathSize, HasFPFeatures));
810 return new (Buffer) CXXStaticCastExpr(
EmptyShell(), PathSize, HasFPFeatures);
821 unsigned PathSize = (BasePath ? BasePath->size() : 0);
822 void *Buffer =
C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
824 new (Buffer) CXXDynamicCastExpr(T,
VK, K, Op, PathSize, WrittenTy, L,
825 RParenLoc, AngleBrackets);
827 llvm::uninitialized_copy(*BasePath, E->getTrailingObjects());
833 void *Buffer =
C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
834 return new (Buffer) CXXDynamicCastExpr(
EmptyShell(), PathSize);
862 assert(SrcRD && DestRD);
864 if (SrcRD->isEffectivelyFinal()) {
865 assert(!SrcRD->isDerivedFrom(DestRD) &&
866 "upcasts should not use CK_Dynamic");
870 if (DestRD->isEffectivelyFinal() && !DestRD->isDerivedFrom(SrcRD))
883 unsigned PathSize = (BasePath ? BasePath->size() : 0);
884 void *Buffer =
C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
886 new (Buffer) CXXReinterpretCastExpr(T,
VK, K, Op, PathSize, WrittenTy, L,
887 RParenLoc, AngleBrackets);
889 llvm::uninitialized_copy(*BasePath, E->getTrailingObjects());
895 void *Buffer =
C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *>(PathSize));
896 return new (Buffer) CXXReinterpretCastExpr(
EmptyShell(), PathSize);
905 return new (
C) CXXConstCastExpr(T,
VK, Op, WrittenTy, L, RParenLoc, AngleBrackets);
917 return new (
C) CXXAddrspaceCastExpr(T,
VK, K, Op, WrittenTy, L, RParenLoc,
929 unsigned PathSize = (BasePath ? BasePath->size() : 0);
931 C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *, FPOptionsOverride>(
933 auto *E =
new (Buffer)
934 CXXFunctionalCastExpr(T,
VK, Written, K, Op, PathSize, FPO, L, R);
936 llvm::uninitialized_copy(*BasePath,
943 bool HasFPFeatures) {
945 C.Allocate(totalSizeToAlloc<CXXBaseSpecifier *, FPOptionsOverride>(
946 PathSize, HasFPFeatures));
948 CXXFunctionalCastExpr(
EmptyShell(), PathSize, HasFPFeatures);
964 :
CallExpr(UserDefinedLiteralClass, Fn, {}, Args, Ty,
VK,
965 LitEndLoc, FPFeatures, 0, NotADL),
966 UDSuffixLoc(SuffixLoc) {}
968UserDefinedLiteral::UserDefinedLiteral(
unsigned NumArgs,
bool HasFPFeatures,
970 :
CallExpr(UserDefinedLiteralClass, 0, NumArgs,
971 HasFPFeatures,
Empty) {}
980 unsigned NumArgs = Args.size();
985 SizeOfTrailingObjects),
986 alignof(UserDefinedLiteral));
988 UserDefinedLiteral(Fn, Args, Ty,
VK, LitEndLoc, SuffixLoc, FPFeatures);
996 unsigned SizeOfTrailingObjects =
1000 SizeOfTrailingObjects),
1001 alignof(UserDefinedLiteral));
1002 return new (Mem) UserDefinedLiteral(NumArgs, HasFPOptions,
Empty);
1012 assert(
getNumArgs() == 1 &&
"unexpected #args in literal operator call");
1024 llvm_unreachable(
"unknown kind of literal operator");
1040 bool HasRewrittenInit) {
1041 size_t Size = totalSizeToAlloc<Expr *>(HasRewrittenInit);
1042 auto *Mem =
C.Allocate(Size,
alignof(CXXDefaultArgExpr));
1043 return new (Mem) CXXDefaultArgExpr(
EmptyShell(), HasRewrittenInit);
1049 Expr *RewrittenExpr,
1051 size_t Size = totalSizeToAlloc<Expr *>(RewrittenExpr !=
nullptr);
1052 auto *Mem =
C.Allocate(Size,
alignof(CXXDefaultArgExpr));
1053 return new (Mem) CXXDefaultArgExpr(CXXDefaultArgExprClass, Loc, Param,
1054 RewrittenExpr, UsedContext);
1064 "expected this CXXDefaultArgExpr to have a rewritten init.");
1066 if (
auto *E = dyn_cast_if_present<FullExpr>(
Init))
1068 return E->getSubExpr();
1072CXXDefaultInitExpr::CXXDefaultInitExpr(
const ASTContext &Ctx,
1075 Expr *RewrittenInitExpr)
1076 :
Expr(CXXDefaultInitExprClass, Ty.getNonLValueExprType(Ctx),
1078 : Ty->isRValueReferenceType() ?
VK_XValue
1081 Field(Field), UsedContext(UsedContext) {
1086 *getTrailingObjects() = RewrittenInitExpr;
1088 assert(Field->hasInClassInitializer());
1094 bool HasRewrittenInit) {
1095 size_t Size = totalSizeToAlloc<Expr *>(HasRewrittenInit);
1096 auto *Mem =
C.Allocate(Size,
alignof(CXXDefaultInitExpr));
1097 return new (Mem) CXXDefaultInitExpr(
EmptyShell(), HasRewrittenInit);
1104 Expr *RewrittenInitExpr) {
1106 size_t Size = totalSizeToAlloc<Expr *>(RewrittenInitExpr !=
nullptr);
1107 auto *Mem = Ctx.
Allocate(Size,
alignof(CXXDefaultInitExpr));
1108 return new (Mem) CXXDefaultInitExpr(Ctx, Loc, Field, Field->getType(),
1109 UsedContext, RewrittenInitExpr);
1113 assert(Field->getInClassInitializer() &&
"initializer hasn't been parsed");
1117 return Field->getInClassInitializer();
1122 return new (
C) CXXTemporary(Destructor);
1128 assert((SubExpr->getType()->isRecordType() ||
1129 SubExpr->getType()->isArrayType()) &&
1130 "Expression bound to a temporary must have record or array type!");
1132 return new (
C) CXXBindTemporaryExpr(Temp, SubExpr);
1135CXXTemporaryObjectExpr::CXXTemporaryObjectExpr(
1138 bool HadMultipleCandidates,
bool ListInitialization,
1139 bool StdInitListInitialization,
bool ZeroInitialization)
1141 CXXTemporaryObjectExprClass, Ty, TSI->getTypeLoc().getBeginLoc(),
1142 Cons,
false, Args, HadMultipleCandidates,
1143 ListInitialization, StdInitListInitialization, ZeroInitialization,
1149CXXTemporaryObjectExpr::CXXTemporaryObjectExpr(EmptyShell
Empty,
1156 bool HadMultipleCandidates,
bool ListInitialization,
1157 bool StdInitListInitialization,
bool ZeroInitialization) {
1160 Ctx.
Allocate(
sizeof(CXXTemporaryObjectExpr) + SizeOfTrailingObjects,
1161 alignof(CXXTemporaryObjectExpr));
1162 return new (Mem) CXXTemporaryObjectExpr(
1163 Cons, Ty, TSI, Args, ParenOrBraceRange, HadMultipleCandidates,
1164 ListInitialization, StdInitListInitialization, ZeroInitialization);
1171 Ctx.
Allocate(
sizeof(CXXTemporaryObjectExpr) + SizeOfTrailingObjects,
1172 alignof(CXXTemporaryObjectExpr));
1173 return new (Mem) CXXTemporaryObjectExpr(
EmptyShell(), NumArgs);
1190 bool HadMultipleCandidates,
bool ListInitialization,
1191 bool StdInitListInitialization,
bool ZeroInitialization,
1197 CXXConstructExprClass, Ty, Loc, Ctor, Elidable, Args,
1198 HadMultipleCandidates, ListInitialization, StdInitListInitialization,
1199 ZeroInitialization, ConstructKind, ParenOrBraceRange);
1214 bool ListInitialization,
bool StdInitListInitialization,
1218 ParenOrBraceRange(ParenOrBraceRange), NumArgs(Args.size()) {
1228 Stmt **TrailingArgs = getTrailingArgs();
1229 llvm::copy(Args, TrailingArgs);
1230 assert(!llvm::is_contained(Args,
nullptr));
1233 if (SC == CXXConstructExprClass)
1244 : DeclAndBits(Var, 0), Loc(Loc), EllipsisLoc(EllipsisLoc) {
1247 Bits |= Capture_Implicit;
1251 Bits |= Capture_ByCopy;
1254 assert(!Var &&
"'this' capture cannot have a variable!");
1255 Bits |= Capture_This;
1259 Bits |= Capture_ByCopy;
1262 assert(Var &&
"capture must have a variable!");
1265 assert(!Var &&
"VLA type capture cannot have a variable!");
1268 DeclAndBits.setInt(Bits);
1274 bool CapByCopy = DeclAndBits.getInt() & Capture_ByCopy;
1285 bool ContainsUnexpandedParameterPack)
1287 IntroducerRange(IntroducerRange), CaptureDefaultLoc(CaptureDefaultLoc),
1288 ClosingBrace(ClosingBrace) {
1289 LambdaExprBits.NumCaptures = CaptureInits.size();
1290 LambdaExprBits.CaptureDefault = CaptureDefault;
1291 LambdaExprBits.ExplicitParams = ExplicitParams;
1292 LambdaExprBits.ExplicitResultType = ExplicitResultType;
1296 assert(capture_size() ==
Class->capture_size() &&
"Wrong number of captures");
1297 assert(getCaptureDefault() ==
Class->getLambdaCaptureDefault());
1300 Stmt **Stored = getStoredStmts();
1301 for (
unsigned I = 0, N = CaptureInits.size(); I != N; ++I)
1302 *Stored++ = CaptureInits[I];
1305 *Stored++ = getCallOperator()->getBody();
1310LambdaExpr::LambdaExpr(EmptyShell
Empty,
unsigned NumCaptures)
1312 LambdaExprBits.NumCaptures = NumCaptures;
1316 getStoredStmts()[NumCaptures] =
nullptr;
1323 bool ExplicitParams,
bool ExplicitResultType,
1326 bool ContainsUnexpandedParameterPack) {
1331 unsigned Size = totalSizeToAlloc<Stmt *>(CaptureInits.size() + 1);
1332 void *Mem = Context.Allocate(Size);
1334 LambdaExpr(T, IntroducerRange, CaptureDefault, CaptureDefaultLoc,
1335 ExplicitParams, ExplicitResultType, CaptureInits, ClosingBrace,
1336 ContainsUnexpandedParameterPack);
1340 unsigned NumCaptures) {
1341 unsigned Size = totalSizeToAlloc<Stmt *>(NumCaptures + 1);
1342 void *Mem =
C.Allocate(Size);
1346void LambdaExpr::initBodyIfNeeded()
const {
1360 if (
const auto *CoroBody = dyn_cast<CoroutineBodyStmt>(Body))
1366 return C->capturesVariable() &&
C->getCapturedVar()->isInitCapture() &&
1413 return Record->getLambdaCallOperator();
1418 return Record->getDependentLambdaCallOperator();
1423 return Record->getGenericLambdaTemplateParameterList();
1428 return Record->getLambdaExplicitTemplateParameters();
1448ExprWithCleanups::ExprWithCleanups(
Expr *subexpr,
1449 bool CleanupsHaveSideEffects,
1451 :
FullExpr(ExprWithCleanupsClass, subexpr) {
1454 llvm::copy(objects, getTrailingObjects());
1458 bool CleanupsHaveSideEffects,
1460 void *buffer =
C.Allocate(totalSizeToAlloc<CleanupObject>(objects.size()),
1461 alignof(ExprWithCleanups));
1463 ExprWithCleanups(subexpr, CleanupsHaveSideEffects, objects);
1466ExprWithCleanups::ExprWithCleanups(EmptyShell empty,
unsigned numObjects)
1467 :
FullExpr(ExprWithCleanupsClass, empty) {
1473 unsigned numObjects) {
1474 void *buffer =
C.Allocate(totalSizeToAlloc<CleanupObject>(numObjects),
1475 alignof(ExprWithCleanups));
1476 return new (buffer) ExprWithCleanups(empty, numObjects);
1479CXXUnresolvedConstructExpr::CXXUnresolvedConstructExpr(
1482 :
Expr(CXXUnresolvedConstructExprClass, T,
1487 TypeAndInitForm(TSI, IsListInit), LParenLoc(LParenLoc),
1488 RParenLoc(RParenLoc) {
1490 auto **StoredArgs = getTrailingObjects();
1491 llvm::copy(Args, StoredArgs);
1499 void *Mem = Context.Allocate(totalSizeToAlloc<Expr *>(Args.size()));
1500 return new (Mem) CXXUnresolvedConstructExpr(T, TSI, LParenLoc, Args,
1501 RParenLoc, IsListInit);
1507 void *Mem = Context.Allocate(totalSizeToAlloc<Expr *>(NumArgs));
1508 return new (Mem) CXXUnresolvedConstructExpr(
EmptyShell(), NumArgs);
1512 return TypeAndInitForm.getPointer()->getTypeLoc().getBeginLoc();
1515CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(
1521 :
Expr(CXXDependentScopeMemberExprClass, Ctx.DependentTy,
VK_LValue,
1523 Base(
Base), BaseType(BaseType), QualifierLoc(QualifierLoc),
1524 MemberNameInfo(MemberNameInfo) {
1527 (TemplateArgs !=
nullptr) || TemplateKWLoc.
isValid();
1529 FirstQualifierFoundInScope !=
nullptr;
1533 auto Deps = TemplateArgumentDependence::None;
1534 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
1535 TemplateKWLoc, *TemplateArgs, getTrailingObjects<TemplateArgumentLoc>(),
1537 }
else if (TemplateKWLoc.
isValid()) {
1538 getTrailingObjects<ASTTemplateKWAndArgsInfo>()->initializeFrom(
1542 if (hasFirstQualifierFoundInScope())
1543 *getTrailingObjects<NamedDecl *>() = FirstQualifierFoundInScope;
1547CXXDependentScopeMemberExpr::CXXDependentScopeMemberExpr(
1548 EmptyShell
Empty,
bool HasTemplateKWAndArgsInfo,
1549 bool HasFirstQualifierFoundInScope)
1550 :
Expr(CXXDependentScopeMemberExprClass,
Empty) {
1552 HasTemplateKWAndArgsInfo;
1554 HasFirstQualifierFoundInScope;
1563 bool HasTemplateKWAndArgsInfo =
1564 (TemplateArgs !=
nullptr) || TemplateKWLoc.
isValid();
1565 unsigned NumTemplateArgs = TemplateArgs ? TemplateArgs->
size() : 0;
1566 bool HasFirstQualifierFoundInScope = FirstQualifierFoundInScope !=
nullptr;
1570 HasTemplateKWAndArgsInfo, NumTemplateArgs, HasFirstQualifierFoundInScope);
1572 void *Mem = Ctx.
Allocate(Size,
alignof(CXXDependentScopeMemberExpr));
1573 return new (Mem) CXXDependentScopeMemberExpr(
1574 Ctx, Base, BaseType, IsArrow, OperatorLoc, QualifierLoc, TemplateKWLoc,
1575 FirstQualifierFoundInScope, MemberNameInfo, TemplateArgs);
1579 const ASTContext &Ctx,
bool HasTemplateKWAndArgsInfo,
1580 unsigned NumTemplateArgs,
bool HasFirstQualifierFoundInScope) {
1581 assert(NumTemplateArgs == 0 || HasTemplateKWAndArgsInfo);
1585 HasTemplateKWAndArgsInfo, NumTemplateArgs, HasFirstQualifierFoundInScope);
1587 void *Mem = Ctx.
Allocate(Size,
alignof(CXXDependentScopeMemberExpr));
1588 return new (Mem) CXXDependentScopeMemberExpr(
1589 EmptyShell(), HasTemplateKWAndArgsInfo, HasFirstQualifierFoundInScope);
1594 return new (Ctx) CXXThisExpr(L, Ty, IsImplicit,
1614 }
while (++begin != end);
1619UnresolvedMemberExpr::UnresolvedMemberExpr(
1627 UnresolvedMemberExprClass, Context, QualifierLoc, TemplateKWLoc,
1628 MemberNameInfo, TemplateArgs, Begin, End,
1630 ((
Base &&
Base->isTypeDependent()) || BaseType->isDependentType()),
1631 ((
Base &&
Base->isInstantiationDependent()) ||
1632 BaseType->isInstantiationDependentType()),
1634 ((
Base &&
Base->containsUnexpandedParameterPack()) ||
1635 BaseType->containsUnexpandedParameterPack())),
1636 Base(
Base), BaseType(BaseType), OperatorLoc(OperatorLoc) {
1637 UnresolvedMemberExprBits.IsArrow = IsArrow;
1638 UnresolvedMemberExprBits.HasUnresolvedUsing = HasUnresolvedUsing;
1643 setType(Context.BoundMemberTy);
1646UnresolvedMemberExpr::UnresolvedMemberExpr(EmptyShell
Empty,
1647 unsigned NumResults,
1648 bool HasTemplateKWAndArgsInfo)
1650 HasTemplateKWAndArgsInfo) {}
1656 return cast<Expr>(Base)->isImplicitCXXThis();
1666 unsigned NumResults = End - Begin;
1667 bool HasTemplateKWAndArgsInfo = TemplateArgs || TemplateKWLoc.
isValid();
1668 unsigned NumTemplateArgs = TemplateArgs ? TemplateArgs->
size() : 0;
1671 NumResults, HasTemplateKWAndArgsInfo, NumTemplateArgs);
1672 void *Mem = Context.Allocate(Size,
alignof(UnresolvedMemberExpr));
1673 return new (Mem) UnresolvedMemberExpr(
1674 Context, HasUnresolvedUsing, Base, BaseType, IsArrow, OperatorLoc,
1675 QualifierLoc, TemplateKWLoc, MemberNameInfo, TemplateArgs, Begin, End);
1679 const ASTContext &Context,
unsigned NumResults,
1680 bool HasTemplateKWAndArgsInfo,
unsigned NumTemplateArgs) {
1681 assert(NumTemplateArgs == 0 || HasTemplateKWAndArgsInfo);
1684 NumResults, HasTemplateKWAndArgsInfo, NumTemplateArgs);
1685 void *Mem = Context.Allocate(Size,
alignof(UnresolvedMemberExpr));
1687 UnresolvedMemberExpr(
EmptyShell(), NumResults, HasTemplateKWAndArgsInfo);
1700 Record = T->getAsCXXRecordDecl();
1701 assert(
Record &&
"qualifier in member expression does not name record");
1709 Record = BaseType->getAsCXXRecordDecl();
1710 assert(
Record &&
"base of member expression does not name record");
1723 Context.Allocate(totalSizeToAlloc<TemplateArgument>(PartialArgs.size()));
1724 return new (Storage) SizeOfPackExpr(Context.getSizeType(), OperatorLoc, Pack,
1725 PackLoc, RParenLoc, Length, PartialArgs);
1729 unsigned NumPartialArgs) {
1731 Context.Allocate(totalSizeToAlloc<TemplateArgument>(NumPartialArgs));
1732 return new (Storage) SizeOfPackExpr(
EmptyShell(), NumPartialArgs);
1742 Expr *PackIdExpr,
Expr *IndexExpr, std::optional<int64_t> Index,
1745 if (Index && FullySubstituted && !SubstitutedExprs.empty())
1746 Type = SubstitutedExprs[*Index]->getType();
1751 Context.Allocate(totalSizeToAlloc<Expr *>(SubstitutedExprs.size()));
1752 return new (Storage)
1753 PackIndexingExpr(
Type, EllipsisLoc, RSquareLoc, PackIdExpr, IndexExpr,
1754 SubstitutedExprs, FullySubstituted);
1759 return D->getDecl();
1761 assert(
false &&
"invalid declaration kind in pack indexing expression");
1767 unsigned NumTransformedExprs) {
1769 Context.Allocate(totalSizeToAlloc<Expr *>(NumTransformedExprs));
1770 return new (Storage) PackIndexingExpr(
EmptyShell{});
1781 return Context.getLValueReferenceType(
Type);
1782 return Type.getUnqualifiedType();
1785SubstNonTypeTemplateParmPackExpr::SubstNonTypeTemplateParmPackExpr(
1789 :
Expr(SubstNonTypeTemplateParmPackExprClass, T, ValueKind,
OK_Ordinary),
1790 AssociatedDecl(AssociatedDecl), Arguments(ArgPack.pack_begin()),
1791 NumArguments(ArgPack.pack_size()), Final(Final), Index(Index),
1793 assert(AssociatedDecl !=
nullptr);
1795 ExprDependence::UnexpandedPack);
1813 ParamPack(ParamPack), NameLoc(NameLoc), NumParameters(NumParams) {
1815 std::uninitialized_copy(Params, Params + NumParams, getTrailingObjects());
1817 ExprDependence::UnexpandedPack);
1824 return new (Context.Allocate(totalSizeToAlloc<ValueDecl *>(Params.size())))
1825 FunctionParmPackExpr(T, ParamPack, NameLoc, Params.size(), Params.data());
1830 unsigned NumParams) {
1831 return new (Context.Allocate(totalSizeToAlloc<ValueDecl *>(NumParams)))
1836 QualType T,
Expr *Temporary,
bool BoundToLvalueReference,
1838 :
Expr(MaterializeTemporaryExprClass, T,
1842 MTD->ExprWithTemporary = Temporary;
1850 unsigned ManglingNumber) {
1862 ES->ExtendingDecl = ExtendedBy;
1863 ES->ManglingNumber = ManglingNumber;
1877 VD->isUsableInConstantExpressions(Context);
1883 std::variant<bool, APValue>
Value)
1885 RParenLoc(RParenLoc) {
1886 assert(Kind <=
TT_Last &&
"invalid enum value!");
1890 "TypeTraitExprBits.Kind overflow!");
1896 ::new (getTrailingObjects<APValue>())
1901 "TypeTraitExprBits.NumArgs overflow!");
1903 llvm::copy(Args, ToArgs);
1908 getAPValue().isInt() || getAPValue().isAbsent()) &&
1909 "Only int values are supported by clang");
1915 if (!IsStoredAsBool)
1916 ::new (getTrailingObjects<APValue>())
APValue();
1926 C.Allocate(totalSizeToAlloc<APValue, TypeSourceInfo *>(0, Args.size()));
1927 return new (Mem) TypeTraitExpr(T, Loc, Kind, Args, RParenLoc,
Value);
1935 C.Allocate(totalSizeToAlloc<APValue, TypeSourceInfo *>(1, Args.size()));
1936 return new (Mem) TypeTraitExpr(T, Loc, Kind, Args, RParenLoc,
Value);
1940 bool IsStoredAsBool,
1942 void *Mem =
C.Allocate(totalSizeToAlloc<APValue, TypeSourceInfo *>(
1943 IsStoredAsBool ? 0 : 1, NumArgs));
1944 return new (Mem) TypeTraitExpr(
EmptyShell(), IsStoredAsBool);
1947CXXReflectExpr::CXXReflectExpr(EmptyShell
Empty)
1953 CaretCaretLoc(CaretCaretLoc), Operand(TSI) {}
1958 return new (
C) CXXReflectExpr(CaretCaretLoc, TSI);
1965CUDAKernelCallExpr::CUDAKernelCallExpr(
Expr *Fn,
CallExpr *Config,
1969 unsigned MinNumArgs)
1970 :
CallExpr(CUDAKernelCallExprClass, Fn, Config, Args, Ty,
VK,
1971 RP, FPFeatures, MinNumArgs, NotADL) {}
1973CUDAKernelCallExpr::CUDAKernelCallExpr(
unsigned NumArgs,
bool HasFPFeatures,
1975 :
CallExpr(CUDAKernelCallExprClass, END_PREARG, NumArgs,
1976 HasFPFeatures,
Empty) {}
1982 unsigned MinNumArgs) {
1984 unsigned NumArgs = std::max<unsigned>(Args.size(), MinNumArgs);
1989 SizeOfTrailingObjects),
1990 alignof(CUDAKernelCallExpr));
1992 CUDAKernelCallExpr(Fn, Config, Args, Ty,
VK, RP, FPFeatures, MinNumArgs);
2001 END_PREARG, NumArgs, HasFPFeatures);
2004 SizeOfTrailingObjects),
2005 alignof(CUDAKernelCallExpr));
2006 return new (Mem) CUDAKernelCallExpr(NumArgs, HasFPFeatures,
Empty);
2011 unsigned NumUserSpecifiedExprs,
2014 void *Mem =
C.Allocate(totalSizeToAlloc<Expr *>(Args.size()));
2015 return new (Mem) CXXParenListInitExpr(Args, T, NumUserSpecifiedExprs, InitLoc,
2016 LParenLoc, RParenLoc);
2022 void *Mem =
C.Allocate(totalSizeToAlloc<Expr *>(NumExprs),
2023 alignof(CXXParenListInitExpr));
2024 return new (Mem) CXXParenListInitExpr(
Empty, NumExprs);
2033 EllipsisLoc(EllipsisLoc), RParenLoc(RParenLoc),
2034 NumExpansions(NumExpansions) {
2038 assert(LHS->containsUnexpandedParameterPack() !=
2039 RHS->containsUnexpandedParameterPack() &&
2040 "Exactly one of LHS or RHS should contain an unexpanded pack");
2041 SubExprs[SubExpr::Callee] = Callee;
2042 SubExprs[SubExpr::LHS] = LHS;
2043 SubExprs[SubExpr::RHS] = RHS;
Defines the clang::ASTContext interface.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
static bool hasOnlyNonStaticMemberFunctions(UnresolvedSetIterator begin, UnresolvedSetIterator end)
static bool isGLValueFromPointerDeref(const Expr *E)
static bool UnresolvedLookupExprIsVariableOrConceptParameterPack(UnresolvedSetIterator Begin, UnresolvedSetIterator End)
Defines the clang::Expr interface and subclasses for C++ expressions.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the LambdaCapture class.
llvm::MachO::Record Record
Defines an enumeration for C++ overloaded operators.
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
static QualType getPointeeType(const MemRegion *R)
Defines the clang::TypeLoc interface and its subclasses.
C Language Family Type Representation.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
a trap message and trap category.
APValue - This class implements a discriminated union of [uninitialized] [APSInt] [APFloat],...
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
const LangOptions & getLangOpts() const
void * Allocate(size_t Size, unsigned Align=8) const
Represents a call to a CUDA kernel function.
static CUDAKernelCallExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty)
static CUDAKernelCallExpr * Create(const ASTContext &Ctx, Expr *Fn, CallExpr *Config, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RP, FPOptionsOverride FPFeatures, unsigned MinNumArgs=0)
A C++ addrspace_cast expression (currently only enabled for OpenCL).
static CXXAddrspaceCastExpr * CreateEmpty(const ASTContext &Context)
static CXXAddrspaceCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind Kind, Expr *Op, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
Represents a base class of a C++ class.
static CXXBindTemporaryExpr * Create(const ASTContext &C, CXXTemporary *Temp, Expr *SubExpr)
static CXXConstCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, Expr *Op, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
static CXXConstCastExpr * CreateEmpty(const ASTContext &Context)
Represents a call to a C++ constructor.
SourceRange getParenOrBraceRange() const
static CXXConstructExpr * Create(const ASTContext &Ctx, QualType Ty, SourceLocation Loc, CXXConstructorDecl *Ctor, bool Elidable, ArrayRef< Expr * > Args, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization, CXXConstructionKind ConstructKind, SourceRange ParenOrBraceRange)
Create a C++ construction expression.
Expr * getArg(unsigned Arg)
Return the specified argument.
CXXConstructExpr(StmtClass SC, QualType Ty, SourceLocation Loc, CXXConstructorDecl *Ctor, bool Elidable, ArrayRef< Expr * > Args, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization, CXXConstructionKind ConstructKind, SourceRange ParenOrBraceRange)
Build a C++ construction expression.
SourceLocation getLocation() const
static unsigned sizeOfTrailingObjects(unsigned NumArgs)
Return the size in bytes of the trailing objects.
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
unsigned getNumArgs() const
Return the number of arguments to the constructor call.
static CXXConstructExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs)
Create an empty C++ construction expression.
Represents a C++ constructor within a class.
const ParmVarDecl * getParam() const
Expr * getRewrittenExpr()
Expr * getAdjustedRewrittenExpr()
static CXXDefaultArgExpr * Create(const ASTContext &C, SourceLocation Loc, ParmVarDecl *Param, Expr *RewrittenExpr, DeclContext *UsedContext)
static CXXDefaultArgExpr * CreateEmpty(const ASTContext &C, bool HasRewrittenInit)
bool hasRewrittenInit() const
static CXXDefaultInitExpr * Create(const ASTContext &Ctx, SourceLocation Loc, FieldDecl *Field, DeclContext *UsedContext, Expr *RewrittenInitExpr)
Field is the non-static data member whose default initializer is used by this expression.
const Expr * getRewrittenExpr() const
Retrieve the initializing expression with evaluated immediate calls, if any.
bool hasRewrittenInit() const
Expr * getExpr()
Get the initialization expression that will be used.
static CXXDefaultInitExpr * CreateEmpty(const ASTContext &C, bool HasRewrittenInit)
FunctionDecl * getOperatorDelete() const
QualType getDestroyedType() const
Retrieve the type being destroyed.
static CXXDependentScopeMemberExpr * Create(const ASTContext &Ctx, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, NamedDecl *FirstQualifierFoundInScope, DeclarationNameInfo MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs)
static CXXDependentScopeMemberExpr * CreateEmpty(const ASTContext &Ctx, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs, bool HasFirstQualifierFoundInScope)
Represents a C++ destructor within a class.
static CXXDynamicCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind Kind, Expr *Op, const CXXCastPath *Path, TypeSourceInfo *Written, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
static CXXDynamicCastExpr * CreateEmpty(const ASTContext &Context, unsigned pathSize)
bool isAlwaysNull() const
isAlwaysNull - Return whether the result of the dynamic_cast is proven to always be null.
CXXFoldExpr(QualType T, UnresolvedLookupExpr *Callee, SourceLocation LParenLoc, Expr *LHS, BinaryOperatorKind Opcode, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc, UnsignedOrNone NumExpansions)
static CXXFunctionalCastExpr * CreateEmpty(const ASTContext &Context, unsigned PathSize, bool HasFPFeatures)
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getEndLoc() const LLVM_READONLY
static CXXFunctionalCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, TypeSourceInfo *Written, CastKind Kind, Expr *Op, const CXXCastPath *Path, FPOptionsOverride FPO, SourceLocation LPLoc, SourceLocation RPLoc)
CXXMethodDecl * getMethodDecl() const
Retrieve the declaration of the called method.
Expr * getImplicitObjectArgument() const
Retrieve the implicit object argument for the member call.
static CXXMemberCallExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty)
static CXXMemberCallExpr * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation RP, FPOptionsOverride FPFeatures, unsigned MinNumArgs=0)
QualType getObjectType() const
Retrieve the type of the object argument.
CXXRecordDecl * getRecordDecl() const
Retrieve the CXXRecordDecl for the underlying type of the implicit object argument.
Represents a static or instance method of a struct/union/class.
const char * getCastName() const
getCastName - Get the name of the C++ cast being used, e.g., "static_cast", "dynamic_cast",...
static CXXNewExpr * Create(const ASTContext &Ctx, bool IsGlobalNew, FunctionDecl *OperatorNew, FunctionDecl *OperatorDelete, const ImplicitAllocationParameters &IAP, bool UsualArrayDeleteWantsSize, ArrayRef< Expr * > PlacementArgs, SourceRange TypeIdParens, std::optional< Expr * > ArraySize, CXXNewInitializationStyle InitializationStyle, Expr *Initializer, QualType Ty, TypeSourceInfo *AllocatedTypeInfo, SourceRange Range, SourceRange DirectInitRange)
Create a c++ new expression.
static CXXNewExpr * CreateEmpty(const ASTContext &Ctx, bool IsArray, bool HasInit, unsigned NumPlacementArgs, bool IsParenTypeId)
Create an empty c++ new expression.
bool shouldNullCheckAllocation() const
True if the allocation result needs to be null-checked.
FunctionDecl * getOperatorNew() const
bool isInfixBinaryOp() const
Is this written as an infix binary operator?
SourceLocation getOperatorLoc() const
Returns the location of the operator symbol in the expression.
static CXXOperatorCallExpr * Create(const ASTContext &Ctx, OverloadedOperatorKind OpKind, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation OperatorLoc, FPOptionsOverride FPFeatures, ADLCallKind UsesADL=NotADL, bool IsReversed=false)
SourceLocation getEndLoc() const
OverloadedOperatorKind getOperator() const
Returns the kind of overloaded operator that this expression refers to.
static CXXOperatorCallExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, bool HasFPFeatures, EmptyShell Empty)
SourceLocation getBeginLoc() const
Represents a list-initialization with parenthesis.
static CXXParenListInitExpr * Create(ASTContext &C, ArrayRef< Expr * > Args, QualType T, unsigned NumUserSpecifiedExprs, SourceLocation InitLoc, SourceLocation LParenLoc, SourceLocation RParenLoc)
static CXXParenListInitExpr * CreateEmpty(ASTContext &C, unsigned numExprs, EmptyShell Empty)
bool isArrow() const
Determine whether this pseudo-destructor expression was written using an '->' (otherwise,...
CXXPseudoDestructorExpr(const ASTContext &Context, Expr *Base, bool isArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, TypeSourceInfo *ScopeType, SourceLocation ColonColonLoc, SourceLocation TildeLoc, PseudoDestructorTypeStorage DestroyedType)
SourceLocation getEndLoc() const LLVM_READONLY
QualType getDestroyedType() const
Retrieve the type being destroyed.
Represents a C++ struct/union/class.
capture_const_iterator captures_end() const
capture_const_iterator captures_begin() const
static CXXReflectExpr * Create(ASTContext &C, SourceLocation OperatorLoc, TypeSourceInfo *TL)
static CXXReflectExpr * CreateEmpty(ASTContext &C)
A C++ reinterpret_cast expression (C++ [expr.reinterpret.cast]).
static CXXReinterpretCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind Kind, Expr *Op, const CXXCastPath *Path, TypeSourceInfo *WrittenTy, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
static CXXReinterpretCastExpr * CreateEmpty(const ASTContext &Context, unsigned pathSize)
Expr * getSemanticForm()
Get an equivalent semantic form for this expression.
bool isReversed() const
Determine whether this expression was rewritten in reverse form.
DecomposedForm getDecomposedForm() const LLVM_READONLY
Decompose this operator into its syntactic form.
SourceLocation getBeginLoc() const LLVM_READONLY
SourceLocation getRParenLoc() const
A C++ static_cast expression (C++ [expr.static.cast]).
static CXXStaticCastExpr * Create(const ASTContext &Context, QualType T, ExprValueKind VK, CastKind K, Expr *Op, const CXXCastPath *Path, TypeSourceInfo *Written, FPOptionsOverride FPO, SourceLocation L, SourceLocation RParenLoc, SourceRange AngleBrackets)
static CXXStaticCastExpr * CreateEmpty(const ASTContext &Context, unsigned PathSize, bool hasFPFeatures)
Represents a C++ functional cast expression that builds a temporary object.
static CXXTemporaryObjectExpr * Create(const ASTContext &Ctx, CXXConstructorDecl *Cons, QualType Ty, TypeSourceInfo *TSI, ArrayRef< Expr * > Args, SourceRange ParenOrBraceRange, bool HadMultipleCandidates, bool ListInitialization, bool StdInitListInitialization, bool ZeroInitialization)
TypeSourceInfo * getTypeSourceInfo() const
SourceLocation getEndLoc() const LLVM_READONLY
static CXXTemporaryObjectExpr * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs)
SourceLocation getBeginLoc() const LLVM_READONLY
Represents a C++ temporary.
static CXXTemporary * Create(const ASTContext &C, const CXXDestructorDecl *Destructor)
static CXXThisExpr * CreateEmpty(const ASTContext &Ctx)
static CXXThisExpr * Create(const ASTContext &Ctx, SourceLocation L, QualType Ty, bool IsImplicit)
bool isTypeOperand() const
QualType getTypeOperand(const ASTContext &Context) const
Retrieves the type operand of this typeid() expression after various required adjustments (removing r...
Expr * getExprOperand() const
bool isMostDerived(const ASTContext &Context) const
Best-effort check if the expression operand refers to a most derived object.
bool isPotentiallyEvaluated() const
Determine whether this typeid has a type operand which is potentially evaluated, per C++11 [expr....
bool hasNullCheck() const
Whether this is of a form like "typeid(*ptr)" that can throw a std::bad_typeid if a pointer is a null...
Describes an explicit type conversion that uses functional notion but could not be resolved because o...
static CXXUnresolvedConstructExpr * Create(const ASTContext &Context, QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, ArrayRef< Expr * > Args, SourceLocation RParenLoc, bool IsListInit)
SourceLocation getBeginLoc() const LLVM_READONLY
static CXXUnresolvedConstructExpr * CreateEmpty(const ASTContext &Context, unsigned NumArgs)
QualType getTypeOperand(ASTContext &Context) const
Retrieves the type operand of this __uuidof() expression after various required adjustments (removing...
bool isTypeOperand() const
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
static unsigned sizeOfTrailingObjects(unsigned NumPreArgs, unsigned NumArgs, bool HasFPFeatures)
Return the size in bytes needed for the trailing objects.
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
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 getRParenLoc() const
static constexpr ADLCallKind UsesADL
CastKind getCastKind() const
CompoundStmt - This represents a group of statements like { stmt stmt }.
A POD class for pairing a NamedDecl* with an access specifier.
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Decl - This represents one declaration (or definition), e.g.
bool isParameterPack() const
Whether this declaration is a parameter pack.
const AssociatedConstraint & getTrailingRequiresClause() const
Get the constraint-expression introduced by the trailing requires-clause in the function/member decla...
A qualified reference to a name whose declaration cannot yet be resolved.
static DependentScopeDeclRefExpr * Create(const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs)
static DependentScopeDeclRefExpr * CreateEmpty(const ASTContext &Context, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs)
TypeSourceInfo * getTypeInfoAsWritten() const
getTypeInfoAsWritten - Returns the type source info for the type that this expression is casting to.
static ExprWithCleanups * Create(const ASTContext &C, EmptyShell empty, unsigned numObjects)
This represents one expression.
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...
bool isValueDependent() const
Determines whether the value of this expression depends on.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
Expr * IgnoreImplicit() LLVM_READONLY
Skip past any implicit AST nodes which might surround this expression until reaching a fixed point.
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
bool isDefaultArgument() const
Determine whether this expression is a default function argument.
void setDependence(ExprDependence Deps)
Each concrete expr subclass is expected to compute its dependence and call this in the constructor.
Represents difference between two FPOptions values.
bool requiresTrailingStorage() const
Represents a member of a struct/union/class.
FullExpr - Represents a "full-expression" node.
Represents a function declaration or definition.
Stmt * getBody(const FunctionDecl *&Definition) const
Retrieve the body (definition) of the function.
bool isReservedGlobalPlacementOperator() const
Determines whether this operator new or delete is one of the reserved global placement operators: voi...
Represents a reference to a function parameter pack, init-capture pack, or binding pack that has been...
static FunctionParmPackExpr * Create(const ASTContext &Context, QualType T, ValueDecl *ParamPack, SourceLocation NameLoc, ArrayRef< ValueDecl * > Params)
static FunctionParmPackExpr * CreateEmpty(const ASTContext &Context, unsigned NumParams)
Represents a prototype with parameter type info, e.g.
Declaration of a template function.
One of these records is kept for each identifier that is lexed.
Describes the capture of a variable or of this, or of a C++1y init-capture.
bool capturesVLAType() const
Determine whether this captures a variable length array bound expression.
LambdaCapture(SourceLocation Loc, bool Implicit, LambdaCaptureKind Kind, ValueDecl *Var=nullptr, SourceLocation EllipsisLoc=SourceLocation())
Create a new capture of a variable or of this.
LambdaCaptureKind getCaptureKind() const
Determine the kind of capture.
bool capturesThis() const
Determine whether this capture handles the C++ this pointer.
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
capture_iterator capture_begin() const
Retrieve an iterator pointing to the first lambda capture.
static LambdaExpr * CreateDeserialized(const ASTContext &C, unsigned NumCaptures)
Construct a new lambda expression that will be deserialized from an external source.
static LambdaExpr * Create(const ASTContext &C, CXXRecordDecl *Class, SourceRange IntroducerRange, LambdaCaptureDefault CaptureDefault, SourceLocation CaptureDefaultLoc, bool ExplicitParams, bool ExplicitResultType, ArrayRef< Expr * > CaptureInits, SourceLocation ClosingBrace, bool ContainsUnexpandedParameterPack)
Construct a new lambda expression.
Stmt * getBody() const
Retrieve the body of the lambda.
bool isMutable() const
Determine whether the lambda is mutable, meaning that any captures values can be modified.
capture_iterator implicit_capture_end() const
Retrieve an iterator pointing past the end of the sequence of implicit lambda captures.
unsigned capture_size() const
Determine the number of captures in this lambda.
capture_range explicit_captures() const
Retrieve this lambda's explicit captures.
bool isInitCapture(const LambdaCapture *Capture) const
Determine whether one of this lambda's captures is an init-capture.
CXXMethodDecl * getCallOperator() const
Retrieve the function call operator associated with this lambda expression.
const CompoundStmt * getCompoundStmtBody() const
Retrieve the CompoundStmt representing the body of the lambda.
capture_range implicit_captures() const
Retrieve this lambda's implicit captures.
const AssociatedConstraint & getTrailingRequiresClause() const
Get the trailing requires clause, if any.
TemplateParameterList * getTemplateParameterList() const
If this is a generic lambda expression, retrieve the template parameter list associated with it,...
ArrayRef< NamedDecl * > getExplicitTemplateParameters() const
Get the template parameters were explicitly specified (as opposed to being invented by use of an auto...
capture_iterator implicit_capture_begin() const
Retrieve an iterator pointing to the first implicit lambda capture.
capture_iterator explicit_capture_end() const
Retrieve an iterator pointing past the end of the sequence of explicit lambda captures.
capture_iterator capture_end() const
Retrieve an iterator pointing past the end of the sequence of lambda captures.
llvm::iterator_range< capture_iterator > capture_range
An iterator over a range of lambda captures.
const LambdaCapture * capture_iterator
An iterator that walks over the captures of the lambda, both implicit and explicit.
capture_iterator explicit_capture_begin() const
Retrieve an iterator pointing to the first explicit lambda capture.
child_range children()
Includes the captures and the body of the lambda.
FunctionTemplateDecl * getDependentCallOperator() const
Retrieve the function template call operator associated with this lambda expression.
capture_range captures() const
Retrieve this lambda's captures.
CXXRecordDecl * getLambdaClass() const
Retrieve the class that corresponds to the lambda.
Implicit declaration of a temporary that was materialized by a MaterializeTemporaryExpr and lifetime-...
static LifetimeExtendedTemporaryDecl * Create(Expr *Temp, ValueDecl *EDec, unsigned Mangling)
MaterializeTemporaryExpr(QualType T, Expr *Temporary, bool BoundToLvalueReference, LifetimeExtendedTemporaryDecl *MTD=nullptr)
ValueDecl * getExtendingDecl()
Get the declaration which triggered the lifetime-extension of this temporary, if any.
bool isUsableInConstantExpressions(const ASTContext &Context) const
Determine whether this temporary object is usable in constant expressions, as specified in C++20 [exp...
void setExtendingDecl(ValueDecl *ExtendedBy, unsigned ManglingNumber)
This represents a decl that may have a name.
A C++ nested-name-specifier augmented with source location information.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
const Type * getAsType() const
@ Type
A type, stored as a Type*.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
A reference to an overloaded function set, either an UnresolvedLookupExpr or an UnresolvedMemberExpr.
ASTTemplateKWAndArgsInfo * getTrailingASTTemplateKWAndArgsInfo()
Return the optional template keyword and arguments info.
NestedNameSpecifier getQualifier() const
Fetches the nested-name qualifier, if one was given.
TemplateArgumentLoc * getTrailingTemplateArgumentLoc()
Return the optional template arguments.
DeclAccessPair * getTrailingResults()
Return the results. Defined after UnresolvedMemberExpr.
OverloadExpr(StmtClass SC, const ASTContext &Context, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &NameInfo, const TemplateArgumentListInfo *TemplateArgs, UnresolvedSetIterator Begin, UnresolvedSetIterator End, bool KnownDependent, bool KnownInstantiationDependent, bool KnownContainsUnexpandedParameterPack)
NamedDecl * getPackDecl() const
static PackIndexingExpr * CreateDeserialized(ASTContext &Context, unsigned NumTransformedExprs)
Expr * getPackIdExpression() const
static PackIndexingExpr * Create(ASTContext &Context, SourceLocation EllipsisLoc, SourceLocation RSquareLoc, Expr *PackIdExpr, Expr *IndexExpr, std::optional< int64_t > Index, ArrayRef< Expr * > SubstitutedExprs={}, bool FullySubstituted=false)
Represents a parameter to a function.
PointerType - C99 6.7.5.1 - Pointer Declarators.
Stores the type being destroyed by a pseudo-destructor expression.
PseudoDestructorTypeStorage()=default
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool isConstant(const ASTContext &Ctx) const
QualType getNonReferenceType() const
If Type is a reference type (e.g., const int&), returns the type that the reference refers to ("const...
The collection of all-type qualifiers we support.
static SizeOfPackExpr * CreateDeserialized(ASTContext &Context, unsigned NumPartialArgs)
static SizeOfPackExpr * Create(ASTContext &Context, SourceLocation OperatorLoc, NamedDecl *Pack, SourceLocation PackLoc, SourceLocation RParenLoc, UnsignedOrNone Length=std::nullopt, ArrayRef< TemplateArgument > PartialArgs={})
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
A trivial tuple used to represent a source range.
SourceLocation getEnd() const
void setEnd(SourceLocation e)
Stmt - This represents one statement.
SourceLocation getEndLoc() const LLVM_READONLY
CXXUnresolvedConstructExprBitfields CXXUnresolvedConstructExprBits
ExprWithCleanupsBitfields ExprWithCleanupsBits
StmtClass getStmtClass() const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
OverloadExprBitfields OverloadExprBits
CXXConstructExprBitfields CXXConstructExprBits
CXXDependentScopeMemberExprBitfields CXXDependentScopeMemberExprBits
TypeTraitExprBitfields TypeTraitExprBits
CXXNewExprBitfields CXXNewExprBits
llvm::iterator_range< child_iterator > child_range
CXXFoldExprBitfields CXXFoldExprBits
CXXOperatorCallExprBitfields CXXOperatorCallExprBits
CXXDefaultInitExprBitfields CXXDefaultInitExprBits
DependentScopeDeclRefExprBitfields DependentScopeDeclRefExprBits
llvm::iterator_range< const_child_iterator > const_child_range
CXXDefaultArgExprBitfields CXXDefaultArgExprBits
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
QualType getParameterType(const ASTContext &Ctx) const
Determine the substituted type of the template parameter.
bool isReferenceParameter() const
NonTypeTemplateParmDecl * getParameter() const
TemplateArgument getArgumentPack() const
Retrieve the template argument pack containing the substituted template arguments.
NonTypeTemplateParmDecl * getParameterPack() const
Retrieve the non-type template parameter pack being substituted.
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
A convenient class for passing around template argument information.
Location wrapper for a TemplateArgument.
Represents a template argument.
Stores a list of template parameters for a TemplateDecl and its derived classes.
SourceLocation getBeginLoc() const
Get the begin source location.
A container of type source information.
TypeLoc getTypeLoc() const
Return the TypeLoc wrapper for the type source info.
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
static TypeTraitExpr * Create(const ASTContext &C, QualType T, SourceLocation Loc, TypeTrait Kind, ArrayRef< TypeSourceInfo * > Args, SourceLocation RParenLoc, bool Value)
Create a new type trait expression.
static TypeTraitExpr * CreateDeserialized(const ASTContext &C, bool IsStoredAsBool, unsigned NumArgs)
The base class of the type hierarchy.
bool isLiteralType(const ASTContext &Ctx) const
Return true if this is a literal type (C++11 [basic.types]p10)
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isVoidPointerType() const
bool isPointerType() const
bool isIntegerType() const
isIntegerType() does not include complex integers (a GCC extension).
const T * castAs() const
Member-template castAs<specific type>.
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isAnyCharacterType() const
Determine whether this type is any of the built-in character types.
bool isPointerOrReferenceType() const
bool isFloatingType() const
bool isAnyPointerType() const
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
static UnresolvedLookupExpr * CreateEmpty(const ASTContext &Context, unsigned NumResults, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs)
static UnresolvedLookupExpr * Create(const ASTContext &Context, CXXRecordDecl *NamingClass, NestedNameSpecifierLoc QualifierLoc, const DeclarationNameInfo &NameInfo, bool RequiresADL, UnresolvedSetIterator Begin, UnresolvedSetIterator End, bool KnownDependent, bool KnownInstantiationDependent)
QualType getBaseType() const
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
static UnresolvedMemberExpr * Create(const ASTContext &Context, bool HasUnresolvedUsing, Expr *Base, QualType BaseType, bool IsArrow, SourceLocation OperatorLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKWLoc, const DeclarationNameInfo &MemberNameInfo, const TemplateArgumentListInfo *TemplateArgs, UnresolvedSetIterator Begin, UnresolvedSetIterator End)
CXXRecordDecl * getNamingClass()
Retrieve the naming class of this lookup.
bool isImplicitAccess() const
True if this is an implicit access, i.e., one in which the member being accessed was not written in t...
static UnresolvedMemberExpr * CreateEmpty(const ASTContext &Context, unsigned NumResults, bool HasTemplateKWAndArgsInfo, unsigned NumTemplateArgs)
The iterator over UnresolvedSets.
LiteralOperatorKind getLiteralOperatorKind() const
Returns the kind of literal operator invocation which this expression represents.
const IdentifierInfo * getUDSuffix() const
Returns the ud-suffix specified for this literal.
static UserDefinedLiteral * Create(const ASTContext &Ctx, Expr *Fn, ArrayRef< Expr * > Args, QualType Ty, ExprValueKind VK, SourceLocation LitEndLoc, SourceLocation SuffixLoc, FPOptionsOverride FPFeatures)
static UserDefinedLiteral * CreateEmpty(const ASTContext &Ctx, unsigned NumArgs, bool HasFPOptions, EmptyShell Empty)
Expr * getCookedLiteral()
If this is not a raw user-defined literal, get the underlying cooked literal (representing the litera...
LiteralOperatorKind
The kind of literal operator which is invoked.
@ LOK_String
operator "" X (const CharT *, size_t)
@ LOK_Raw
Raw form: operator "" X (const char *)
@ LOK_Floating
operator "" X (long double)
@ LOK_Integer
operator "" X (unsigned long long)
@ LOK_Template
Raw form: operator "" X<cs...> ()
@ LOK_Character
operator "" X (CharT)
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
The JSON file list parser is used to communicate input to InstallAPI.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
bool isa(CodeGen::Address addr)
if(T->getSizeExpr()) TRY_TO(TraverseStmt(const_cast< Expr * >(T -> getSizeExpr())))
@ OK_Ordinary
An ordinary object is located at an address in memory.
LambdaCaptureKind
The different capture forms in a lambda introducer.
@ LCK_ByCopy
Capturing by copy (a.k.a., by value)
@ LCK_ByRef
Capturing by reference.
@ LCK_VLAType
Capturing variable-length array type.
@ LCK_StarThis
Capturing the *this object by copy.
@ LCK_This
Capturing the *this object by reference.
ExprDependence computeDependence(FullExpr *E)
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
bool isAlignedAllocation(AlignedAllocationMode Mode)
@ Result
The result type of a method or function.
OptionalUnsigned< unsigned > UnsignedOrNone
bool isTypeAwareAllocation(TypeAwareAllocationMode Mode)
CastKind
CastKind - The kind of operation required for a conversion.
std::tuple< NamedDecl *, TemplateArgument > getReplacedTemplateParameter(Decl *D, unsigned Index)
Internal helper used by Subst* nodes to retrieve a parameter from the AssociatedDecl,...
LambdaCaptureDefault
The default, if any, capture method for a lambda expression.
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.
U cast(CodeGen::Address addr)
@ Class
The "class" keyword introduces the elaborated-type-specifier.
TypeTrait
Names for traits that operate specifically on types.
CXXNewInitializationStyle
@ Parens
New-expression has a C++98 paren-delimited initializer.
@ None
New-expression has no initializer as written.
@ Braces
New-expression has a C++11 list-initializer.
@ Implicit
An implicit conversion.
Diagnostic wrappers for TextAPI types for error reporting.
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
void initializeFrom(SourceLocation TemplateKWLoc, const TemplateArgumentListInfo &List, TemplateArgumentLoc *OutArgArray)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
AlignedAllocationMode PassAlignment
TypeAwareAllocationMode PassTypeIdentity
A placeholder type used to construct an empty shell of a type, that will be filled in later (e....