24#include "llvm/Bitstream/BitstreamWriter.h"
55 class PakedBitsWriter {
58 ~PakedBitsWriter() { assert(!CurrentIndex); }
60 void addBit(
bool Value) {
61 assert(CurrentIndex &&
"Writing Bits without recording first!");
64 void addBits(uint32_t
Value, uint32_t BitsWidth) {
65 assert(CurrentIndex &&
"Writing Bits without recording first!");
73 RecordRef[*CurrentIndex] = (uint32_t)PackingBits;
74 CurrentIndex = std::nullopt;
81 CurrentIndex = RecordRef.
size();
88 std::optional<unsigned> CurrentIndex;
91 PakedBitsWriter CurrentPackingBits;
96 : Writer(Writer), Record(Context, Writer, Record),
98 CurrentPackingBits(this->Record) {}
104 CurrentPackingBits.writeBits();
106 "unhandled sub-statement writing AST file");
107 return Record.EmitStmt(Code, AbbrevToUse);
114#define STMT(Type, Base) \
115 void Visit##Type(Type *);
116#include "clang/AST/StmtNodes.inc"
123 Record.AddSourceLocation(ArgInfo.
LAngleLoc);
124 Record.AddSourceLocation(ArgInfo.
RAngleLoc);
126 Record.AddTemplateArgumentLoc(Args[i]);
132void ASTStmtWriter::VisitNullStmt(
NullStmt *S) {
145 for (
auto *CS : S->
body())
158void ASTStmtWriter::VisitSwitchCase(
SwitchCase *S) {
160 Record.push_back(Writer.getSwitchCaseID(S));
165void ASTStmtWriter::VisitCaseStmt(
CaseStmt *S) {
168 Record.AddStmt(S->
getLHS());
171 Record.AddStmt(S->
getRHS());
177void ASTStmtWriter::VisitDefaultStmt(
DefaultStmt *S) {
183void ASTStmtWriter::VisitLabelStmt(
LabelStmt *S) {
186 Record.AddDeclRef(S->
getDecl());
194 Record.push_back(S->
getAttrs().size());
195 Record.AddAttributes(S->
getAttrs());
201void ASTStmtWriter::VisitIfStmt(
IfStmt *S) {
204 bool HasElse = S->
getElse() !=
nullptr;
206 bool HasInit = S->
getInit() !=
nullptr;
208 CurrentPackingBits.updateBits();
210 CurrentPackingBits.addBit(HasElse);
211 CurrentPackingBits.addBit(HasVar);
212 CurrentPackingBits.addBit(HasInit);
223 Record.AddSourceLocation(S->
getIfLoc());
232void ASTStmtWriter::VisitSwitchStmt(
SwitchStmt *S) {
235 bool HasInit = S->
getInit() !=
nullptr;
237 Record.push_back(HasInit);
238 Record.push_back(HasVar);
254 Record.push_back(Writer.RecordSwitchCaseID(SC));
258void ASTStmtWriter::VisitWhileStmt(
WhileStmt *S) {
262 Record.push_back(HasVar);
275void ASTStmtWriter::VisitDoStmt(
DoStmt *S) {
279 Record.AddSourceLocation(S->
getDoLoc());
285void ASTStmtWriter::VisitForStmt(
ForStmt *S) {
290 Record.AddStmt(S->
getInc());
292 Record.AddSourceLocation(S->
getForLoc());
298void ASTStmtWriter::VisitGotoStmt(
GotoStmt *S) {
316 Record.AddSourceLocation(S->
getKwLoc());
325 VisitLoopControlStmt(S);
329void ASTStmtWriter::VisitBreakStmt(
BreakStmt *S) {
330 VisitLoopControlStmt(S);
334void ASTStmtWriter::VisitDeferStmt(
DeferStmt *S) {
341void ASTStmtWriter::VisitReturnStmt(
ReturnStmt *S) {
345 Record.push_back(HasNRVOCandidate);
348 if (HasNRVOCandidate)
355void ASTStmtWriter::VisitDeclStmt(
DeclStmt *S) {
358 Record.AddSourceLocation(S->
getEndLoc());
361 Record.AddDeclRef(*D);
365void ASTStmtWriter::VisitAsmStmt(
AsmStmt *S) {
370 Record.AddSourceLocation(S->
getAsmLoc());
375void ASTStmtWriter::VisitGCCAsmStmt(
GCCAsmStmt *S) {
389 for (
unsigned I = 0, N = S->
getNumInputs(); I != N; ++I) {
400 for (
unsigned I = 0, N = S->
getNumLabels(); I != N; ++I) {
408void ASTStmtWriter::VisitMSAsmStmt(
MSAsmStmt *S) {
411 Record.AddSourceLocation(S->
getEndLoc());
418 Writer.AddToken(S->
getAsmToks()[I], Record.getRecordData());
433 for (
unsigned I = 0, N = S->
getNumInputs(); I != N; ++I) {
444 for (Stmt *S : CoroStmt->
children())
466void ASTStmtWriter::VisitCoawaitExpr(
CoawaitExpr *E) {
467 VisitCoroutineSuspendExpr(E);
472void ASTStmtWriter::VisitCoyieldExpr(
CoyieldExpr *E) {
473 VisitCoroutineSuspendExpr(E);
479 assert(
false &&
"not implemented yet");
497 for (
const auto &DetailRecord : Satisfaction) {
498 if (
auto *
Diag = dyn_cast<const ConstraintSubstitutionDiagnostic *>(
505 if (
auto *E = dyn_cast<const Expr *>(DetailRecord)) {
511 Record.AddConceptReference(CR);
526void ASTStmtWriter::VisitConceptSpecializationExpr(
531 Record.push_back(CR !=
nullptr);
533 Record.AddConceptReference(CR);
546 Record.AddDeclRef(E->
getBody());
548 Record.AddDeclRef(
P);
550 if (
auto *TypeReq = dyn_cast<concepts::TypeRequirement>(R)) {
552 Record.push_back(TypeReq->Status);
556 Record.AddTypeSourceInfo(TypeReq->getType());
557 }
else if (
auto *ExprReq = dyn_cast<concepts::ExprRequirement>(R)) {
558 Record.push_back(ExprReq->getKind());
559 Record.push_back(ExprReq->Status);
560 if (ExprReq->isExprSubstitutionFailure()) {
567 Record.AddSourceLocation(ExprReq->NoexceptLoc);
568 const auto &RetReq = ExprReq->getReturnTypeRequirement();
569 if (RetReq.isSubstitutionFailure()) {
572 }
else if (RetReq.isTypeConstraint()) {
574 Record.AddTemplateParameterList(
575 RetReq.getTypeConstraintTemplateParameterList());
576 if (ExprReq->Status >=
579 ExprReq->getReturnTypeRequirementSubstitutedConstraintExpr());
581 assert(RetReq.isEmpty());
588 Record.push_back(NestedReq->hasInvalidConstraint());
589 if (NestedReq->hasInvalidConstraint()) {
590 Record.AddString(NestedReq->getInvalidConstraintEntity());
593 Record.AddStmt(NestedReq->getConstraintExpr());
594 if (!NestedReq->isDependent())
601 Record.AddSourceLocation(E->
getEndLoc());
626 for (
const auto &I : S->
captures()) {
627 if (I.capturesThis() || I.capturesVariableArrayType())
628 Record.AddDeclRef(
nullptr);
630 Record.AddDeclRef(I.getCapturedVar());
631 Record.push_back(I.getCaptureKind());
632 Record.AddSourceLocation(I.getLocation());
647void ASTStmtWriter::VisitExpr(
Expr *E) {
650 CurrentPackingBits.updateBits();
655 Record.AddTypeRef(E->
getType());
672 Record.push_back(E->Int64Result());
675 Record.AddAPValue(E->APValueResult());
700void ASTStmtWriter::VisitUnresolvedSYCLKernelCallStmt(
714 Record.push_back(HasFunctionName);
724void ASTStmtWriter::VisitDeclRefExpr(
DeclRefExpr *E) {
727 CurrentPackingBits.updateBits();
739 Record.push_back(NumTemplateArgs);
747 AbbrevToUse = Writer.getDeclRefExprAbbrev();
758 E->getTrailingObjects<TemplateArgumentLoc>());
760 Record.AddDeclRef(E->
getDecl());
772 AbbrevToUse = Writer.getIntegerLiteralAbbrev();
789 Record.push_back(E->
isExact());
808 Record.push_back(llvm::to_underlying(E->
getKind()));
818 Record.push_back(StrData[I]);
827 Record.push_back(llvm::to_underlying(E->
getKind()));
829 AbbrevToUse = Writer.getCharacterLiteralAbbrev();
834void ASTStmtWriter::VisitParenExpr(
ParenExpr *E) {
837 Record.AddSourceLocation(E->
getLParen());
838 Record.AddSourceLocation(E->
getRParen());
846 for (
auto *SubStmt : E->
exprs())
847 Record.AddStmt(SubStmt);
858 CurrentPackingBits.addBit(HasFPFeatures);
860 CurrentPackingBits.addBits(E->
getOpcode(),
879 Record.push_back(ON.
getKind());
896 Record.AddCXXBaseSpecifier(*ON.
getBase());
907 Record.push_back(E->
getKind());
921 Record.AddStmt(E->
getLHS());
922 Record.AddStmt(E->
getRHS());
927void ASTStmtWriter::VisitMatrixSingleSubscriptExpr(
947 Record.writeEnum(E->ASType);
969 Record.AddSourceRange(SR);
985 Record.AddStmt(
Range.Begin);
986 Record.AddStmt(
Range.End);
987 Record.AddStmt(
Range.Step);
992 OMPIteratorHelperData &HD = E->
getHelper(I);
994 Record.AddStmt(HD.
Upper);
995 Record.AddStmt(HD.
Update);
1001void ASTStmtWriter::VisitCallExpr(
CallExpr *E) {
1005 CurrentPackingBits.updateBits();
1006 CurrentPackingBits.addBit(
static_cast<bool>(E->
getADLCallKind()));
1014 Arg != ArgEnd; ++Arg)
1015 Record.AddStmt(*Arg);
1023 AbbrevToUse = Writer.getCallExprAbbrev();
1028void ASTStmtWriter::VisitRecoveryExpr(
RecoveryExpr *E) {
1030 Record.push_back(std::distance(E->
children().begin(), E->
children().end()));
1032 Record.AddSourceLocation(E->
getEndLoc());
1034 Record.AddStmt(Child);
1038void ASTStmtWriter::VisitMemberExpr(
MemberExpr *E) {
1042 bool HasFoundDecl = E->hasFoundDecl();
1043 bool HasTemplateInfo = E->hasTemplateKWAndArgsInfo();
1048 CurrentPackingBits.updateBits();
1049 CurrentPackingBits.addBit(HasQualifier);
1050 CurrentPackingBits.addBit(HasFoundDecl);
1051 CurrentPackingBits.addBit(HasTemplateInfo);
1052 Record.push_back(NumTemplateArgs);
1056 Record.AddDeclarationNameLoc(E->MemberDNLoc,
1059 CurrentPackingBits.addBit(E->
isArrow());
1069 Record.AddDeclRef(FoundDecl.
getDecl());
1070 CurrentPackingBits.addBits(FoundDecl.
getAccess(), 2);
1073 if (HasTemplateInfo)
1075 E->getTrailingObjects<TemplateArgumentLoc>());
1080void ASTStmtWriter::VisitObjCIsaExpr(
ObjCIsaExpr *E) {
1084 Record.AddSourceLocation(E->
getOpLoc());
1085 Record.push_back(E->
isArrow());
1098 VisitExplicitCastExpr(E);
1105void ASTStmtWriter::VisitCastExpr(
CastExpr *E) {
1109 CurrentPackingBits.updateBits();
1117 Record.AddCXXBaseSpecifier(**PI);
1128 CurrentPackingBits.updateBits();
1129 CurrentPackingBits.addBits(E->
getOpcode(), 6);
1131 CurrentPackingBits.addBit(HasFPFeatures);
1133 Record.AddStmt(E->
getLHS());
1134 Record.AddStmt(E->
getRHS());
1141 AbbrevToUse = Writer.getBinaryOperatorAbbrev();
1145 if (Writer.isGeneratingReducedBMI() &&
1154 DeclarationName Name =
1155 Record.getASTContext().DeclarationNames.getCXXOperatorName(Op);
1157 auto PreserveAssociatedCandidates = [&](Expr *
Operand) {
1158 const auto *RT =
Operand->getType()->getAs<RecordType>();
1163 DeclContext *DC = RT->getDecl()->getDeclContext();
1166 if (
auto *NS = dyn_cast_or_null<NamespaceDecl>(DC))
1167 for (NamedDecl *D : NS->noload_lookup(Name))
1168 Writer.GetDeclRef(D);
1172 PreserveAssociatedCandidates(E->
getLHS());
1174 PreserveAssociatedCandidates(E->
getRHS());
1177 Record.getASTContext().getTranslationUnitDecl()->noload_lookup(Name))
1178 Writer.GetDeclRef(D);
1185 VisitBinaryOperator(E);
1191 AbbrevToUse = Writer.getCompoundAssignOperatorAbbrev();
1199 Record.AddStmt(E->
getLHS());
1200 Record.AddStmt(E->
getRHS());
1224 AbbrevToUse = Writer.getExprImplicitCastAbbrev();
1235 VisitExplicitCastExpr(E);
1266void ASTStmtWriter::VisitInitListExpr(
InitListExpr *E) {
1273 bool isArrayFiller =
isa<Expr *>(E->ArrayFillerOrUnionFieldInit);
1274 Record.push_back(isArrayFiller);
1281 if (isArrayFiller) {
1285 for (
unsigned I = 0, N = E->
getNumInits(); I != N; ++I)
1286 Record.AddStmt(E->
getInit(I) != filler ? E->
getInit(I) :
nullptr);
1288 for (
unsigned I = 0, N = E->
getNumInits(); I != N; ++I)
1289 Record.AddStmt(E->
getInit(I));
1302 for (
const DesignatedInitExpr::Designator &D : E->
designators()) {
1303 if (D.isFieldDesignator()) {
1304 if (FieldDecl *Field = D.getFieldDecl()) {
1306 Record.AddDeclRef(Field);
1309 Record.AddIdentifierRef(D.getFieldName());
1311 Record.AddSourceLocation(D.getDotLoc());
1312 Record.AddSourceLocation(D.getFieldLoc());
1313 }
else if (D.isArrayDesignator()) {
1315 Record.push_back(D.getArrayIndex());
1316 Record.AddSourceLocation(D.getLBracketLoc());
1317 Record.AddSourceLocation(D.getRBracketLoc());
1319 assert(D.isArrayRangeDesignator() &&
"Unknown designator");
1321 Record.push_back(D.getArrayIndex());
1322 Record.AddSourceLocation(D.getLBracketLoc());
1323 Record.AddSourceLocation(D.getEllipsisLoc());
1324 Record.AddSourceLocation(D.getRBracketLoc());
1337void ASTStmtWriter::VisitNoInitExpr(
NoInitExpr *E) {
1344 Record.AddStmt(E->SubExprs[0]);
1345 Record.AddStmt(E->SubExprs[1]);
1359void ASTStmtWriter::VisitVAArgExpr(
VAArgExpr *E) {
1373 Record.AddSourceLocation(E->
getEndLoc());
1374 Record.push_back(llvm::to_underlying(E->
getIdentKind()));
1378void ASTStmtWriter::VisitEmbedExpr(
EmbedExpr *E) {
1395void ASTStmtWriter::VisitStmtExpr(
StmtExpr *E) {
1404void ASTStmtWriter::VisitChooseExpr(
ChooseExpr *E) {
1407 Record.AddStmt(E->
getLHS());
1408 Record.AddStmt(E->
getRHS());
1415void ASTStmtWriter::VisitGNUNullExpr(
GNUNullExpr *E) {
1425 Record.AddStmt(E->
getExpr(I));
1434 CurrentPackingBits.addBit(HasFPFeatures);
1444void ASTStmtWriter::VisitBlockExpr(
BlockExpr *E) {
1455 Record.push_back(E->ResultIndex);
1464 Stmt **Stmts = E->getTrailingObjects<Stmt *>();
1465 for (
unsigned I = 0, N = E->numTrailingObjects(
1466 ASTConstraintSatisfaction::OverloadToken<Stmt *>());
1468 Record.AddStmt(Stmts[I]);
1470 TypeSourceInfo **TSIs = E->getTrailingObjects<TypeSourceInfo *>();
1473 N = E->numTrailingObjects(
1474 ASTConstraintSatisfaction::OverloadToken<TypeSourceInfo *>());
1476 Record.AddTypeSourceInfo(TSIs[I]);
1489 Record.push_back(result);
1499void ASTStmtWriter::VisitAtomicExpr(
AtomicExpr *E) {
1501 Record.push_back(E->
getOp());
1519 VisitObjCObjectLiteral(E);
1521 Record.AddSourceLocation(E->
getAtLoc());
1526 VisitObjCObjectLiteral(E);
1534 VisitObjCObjectLiteral(E);
1544 VisitObjCObjectLiteral(E);
1546 Record.push_back(E->HasPackExpansions);
1549 Record.AddStmt(Element.
Key);
1550 Record.AddStmt(Element.
Value);
1551 if (E->HasPackExpansions) {
1553 unsigned NumExpansions = 0;
1556 Record.push_back(NumExpansions);
1568 Record.AddSourceLocation(E->
getAtLoc());
1576 Record.AddSourceLocation(E->
getAtLoc());
1585 Record.AddSourceLocation(E->
getAtLoc());
1586 Record.AddSourceLocation(E->ProtoLoc);
1593 Record.AddDeclRef(E->
getDecl());
1595 Record.AddSourceLocation(E->
getOpLoc());
1597 Record.push_back(E->
isArrow());
1604 Record.push_back(E->SetterAndMethodRefFlags.getInt());
1615 Record.push_back(0);
1618 Record.push_back(1);
1621 Record.push_back(2);
1642 Record.push_back(E->getNumStoredSelLocs());
1643 Record.push_back(E->SelLocsKind);
1645 Record.push_back(E->IsImplicit);
1664 Record.push_back(1);
1667 Record.push_back(0);
1675 Arg != ArgEnd; ++Arg)
1676 Record.AddStmt(*Arg);
1678 SourceLocation *Locs = E->getStoredSelLocs();
1679 for (
unsigned i = 0, e = E->getNumStoredSelLocs(); i != e; ++i)
1680 Record.AddSourceLocation(Locs[i]);
1690 Record.AddSourceLocation(S->
getForLoc());
1714 Record.AddSourceLocation(S->
getAtLoc());
1764void ASTStmtWriter::VisitCXXCatchStmt(
CXXCatchStmt *S) {
1772void ASTStmtWriter::VisitCXXTryStmt(
CXXTryStmt *S) {
1775 Record.AddSourceLocation(S->
getTryLoc());
1784 Record.AddSourceLocation(S->
getForLoc());
1793 Record.AddStmt(S->
getInc());
1801 Record.push_back(
static_cast<unsigned>(S->
getKind()));
1805 Record.AddDeclRef(S->
getDecl());
1806 for (Stmt *SubStmt : S->
children())
1807 Record.AddStmt(SubStmt);
1811void ASTStmtWriter::VisitCXXExpansionStmtInstantiation(
1844 Record.AddSourceLocation(E->BeginLoc);
1848 AbbrevToUse = Writer.getCXXOperatorCallExprAbbrev();
1858 AbbrevToUse = Writer.getCXXMemberCallExprAbbrev();
1863void ASTStmtWriter::VisitCXXRewrittenBinaryOperator(
1887 for (
unsigned I = 0, N = E->
getNumArgs(); I != N; ++I)
1888 Record.AddStmt(E->
getArg(I));
1903 VisitCXXConstructExpr(E);
1908void ASTStmtWriter::VisitLambdaExpr(
LambdaExpr *E) {
1911 Record.AddSourceRange(E->IntroducerRange);
1913 Record.AddSourceLocation(E->CaptureDefaultLoc);
1916 Record.AddSourceLocation(E->ClosingBrace);
1938 VisitExplicitCastExpr(E);
1946 VisitCXXNamedCastExpr(E);
1951 VisitCXXNamedCastExpr(E);
1956 VisitCXXNamedCastExpr(E);
1961 VisitCXXNamedCastExpr(E);
1966 VisitCXXNamedCastExpr(E);
1971 VisitExplicitCastExpr(E);
1978 VisitExplicitCastExpr(E);
1980 Record.AddSourceLocation(E->
getEndLoc());
1986 Record.AddSourceLocation(E->UDSuffixLoc);
2015void ASTStmtWriter::VisitCXXThisExpr(
CXXThisExpr *E) {
2024void ASTStmtWriter::VisitCXXThrowExpr(
CXXThrowExpr *E) {
2068void ASTStmtWriter::VisitCXXNewExpr(
CXXNewExpr *E) {
2071 Record.push_back(E->
isArray());
2092 DeclarationName Name =
2093 Record.getASTContext().DeclarationNames.getCXXOperatorName(Kind);
2094 for (NamedDecl *
Found :
2095 Record.getASTContext().getTranslationUnitDecl()->noload_lookup(Name))
2096 if (!
Found->isImplicit())
2097 Writer.GetDeclRef(
Found);
2100 PreserveGlobalCandidates(E->
isArray() ? OO_Array_New : OO_New);
2101 PreserveGlobalCandidates(E->
isArray() ? OO_Array_Delete : OO_Delete);
2134 Record.push_back(E->
isArrow());
2155 if (
auto *BD = Obj.dyn_cast<BlockDecl *>()) {
2157 Record.AddDeclRef(BD);
2158 }
else if (
auto *CLE = Obj.dyn_cast<CompoundLiteralExpr *>()) {
2160 Record.AddStmt(CLE);
2178void ASTStmtWriter::VisitCXXDependentScopeMemberExpr(
2185 CurrentPackingBits.updateBits();
2186 CurrentPackingBits.addBit(E->hasTemplateKWAndArgsInfo());
2187 CurrentPackingBits.addBit(E->hasFirstQualifierFoundInScope());
2189 if (E->hasTemplateKWAndArgsInfo()) {
2190 const ASTTemplateKWAndArgsInfo &ArgInfo =
2191 *E->getTrailingObjects<ASTTemplateKWAndArgsInfo>();
2193 E->getTrailingObjects<TemplateArgumentLoc>());
2196 CurrentPackingBits.addBit(E->
isArrow());
2206 if (E->hasFirstQualifierFoundInScope())
2209 Record.AddDeclarationNameInfo(E->MemberNameInfo);
2219 CurrentPackingBits.addBit(
2223 const ASTTemplateKWAndArgsInfo &ArgInfo =
2224 *E->getTrailingObjects<ASTTemplateKWAndArgsInfo>();
2228 E->getTrailingObjects<TemplateArgumentLoc>());
2232 Record.AddDeclarationNameInfo(E->NameInfo);
2242 Record.AddStmt(*ArgI);
2250void ASTStmtWriter::VisitOverloadExpr(
OverloadExpr *E) {
2255 CurrentPackingBits.updateBits();
2258 const ASTTemplateKWAndArgsInfo &ArgInfo =
2266 OvI != OvE; ++OvI) {
2267 Record.AddDeclRef(OvI.getDecl());
2268 Record.push_back(OvI.getAccess());
2276 VisitOverloadExpr(E);
2277 CurrentPackingBits.addBit(E->
isArrow());
2290 VisitOverloadExpr(E);
2295 if (Writer.isWritingStdCXXNamedModules() && Writer.getChain()) {
2298 DeclarationName Name = E->
getName();
2300 Record.getASTContext().getTranslationUnitDecl()->lookup(Name))
2301 if (
Found->isFromASTFile())
2302 Writer.GetDeclRef(
Found);
2304 llvm::SmallVector<NamespaceDecl *> ExternalNSs;
2305 Writer.getChain()->ReadKnownNamespaces(ExternalNSs);
2306 for (
auto *NS : ExternalNSs)
2307 for (
auto *
Found : NS->lookup(Name))
2308 Writer.GetDeclRef(
Found);
2327 for (
unsigned I = 0, N = E->
getNumArgs(); I != N; ++I)
2328 Record.AddTypeSourceInfo(E->
getArg(I));
2362 Record.push_back(E->NumExpansions);
2371 Record.AddSourceLocation(E->OperatorLoc);
2372 Record.AddSourceLocation(E->PackLoc);
2373 Record.AddSourceLocation(E->RParenLoc);
2374 Record.AddDeclRef(E->Pack);
2377 Record.AddTemplateArgument(TA);
2393 Record.AddStmt(Sub);
2397void ASTStmtWriter::VisitSubstNonTypeTemplateParmExpr(
2401 CurrentPackingBits.addBit(E->
getFinal());
2402 CurrentPackingBits.addBits(E->
getIndex(), 12);
2411void ASTStmtWriter::VisitSubstNonTypeTemplateParmPackExpr(
2415 CurrentPackingBits.addBit(E->
getFinal());
2429 Record.AddDeclRef(*I);
2443void ASTStmtWriter::VisitCXXFoldExpr(
CXXFoldExpr *E) {
2445 Record.AddSourceLocation(E->LParenLoc);
2446 Record.AddSourceLocation(E->EllipsisLoc);
2447 Record.AddSourceLocation(E->RParenLoc);
2449 Record.AddStmt(E->SubExprs[0]);
2450 Record.AddStmt(E->SubExprs[1]);
2451 Record.AddStmt(E->SubExprs[2]);
2459 Record.push_back(InitExprs.size());
2463 Record.AddSourceLocation(E->
getEndLoc());
2465 Record.AddStmt(InitExpr);
2468 bool HasArrayFillerOrUnionDecl = ArrayFiller || UnionField;
2469 Record.push_back(HasArrayFillerOrUnionDecl);
2470 if (HasArrayFillerOrUnionDecl) {
2471 Record.push_back(
static_cast<bool>(ArrayFiller));
2473 Record.AddStmt(ArrayFiller);
2475 Record.AddDeclRef(UnionField);
2501void ASTStmtWriter::VisitAsTypeExpr(
AsTypeExpr *E) {
2514 Record.push_back(E->
isArrow());
2525 Record.AddStmt(E->
getIdx());
2558void ASTStmtWriter::VisitSEHTryStmt(
SEHTryStmt *S) {
2561 Record.AddSourceLocation(S->
getTryLoc());
2567void ASTStmtWriter::VisitSEHLeaveStmt(
SEHLeaveStmt *S) {
2577void ASTStmtWriter::VisitOMPCanonicalLoop(OMPCanonicalLoop *S) {
2579 for (Stmt *SubStmt : S->SubStmts)
2580 Record.AddStmt(SubStmt);
2584void ASTStmtWriter::VisitOMPExecutableDirective(OMPExecutableDirective *E) {
2585 Record.writeOMPChildren(E->Data);
2586 Record.AddSourceLocation(E->getBeginLoc());
2587 Record.AddSourceLocation(E->getEndLoc());
2590void ASTStmtWriter::VisitOMPLoopBasedDirective(OMPLoopBasedDirective *D) {
2592 Record.writeUInt32(D->getLoopsNumber());
2593 VisitOMPExecutableDirective(D);
2596void ASTStmtWriter::VisitOMPLoopDirective(OMPLoopDirective *D) {
2597 VisitOMPLoopBasedDirective(D);
2600void ASTStmtWriter::VisitOMPMetaDirective(OMPMetaDirective *D) {
2602 Record.push_back(D->getNumClauses());
2603 VisitOMPExecutableDirective(D);
2607void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) {
2609 VisitOMPExecutableDirective(D);
2610 Record.writeBool(D->hasCancel());
2614void ASTStmtWriter::VisitOMPSimdDirective(OMPSimdDirective *D) {
2615 VisitOMPLoopDirective(D);
2619void ASTStmtWriter::VisitOMPCanonicalLoopNestTransformationDirective(
2620 OMPCanonicalLoopNestTransformationDirective *D) {
2621 VisitOMPLoopBasedDirective(D);
2625void ASTStmtWriter::VisitOMPTileDirective(OMPTileDirective *D) {
2626 VisitOMPCanonicalLoopNestTransformationDirective(D);
2630void ASTStmtWriter::VisitOMPStripeDirective(OMPStripeDirective *D) {
2631 VisitOMPCanonicalLoopNestTransformationDirective(D);
2635void ASTStmtWriter::VisitOMPUnrollDirective(OMPUnrollDirective *D) {
2636 VisitOMPCanonicalLoopNestTransformationDirective(D);
2640void ASTStmtWriter::VisitOMPReverseDirective(OMPReverseDirective *D) {
2641 VisitOMPCanonicalLoopNestTransformationDirective(D);
2645void ASTStmtWriter::VisitOMPInterchangeDirective(OMPInterchangeDirective *D) {
2646 VisitOMPCanonicalLoopNestTransformationDirective(D);
2650void ASTStmtWriter::VisitOMPSplitDirective(OMPSplitDirective *D) {
2651 VisitOMPCanonicalLoopNestTransformationDirective(D);
2655void ASTStmtWriter::VisitOMPCanonicalLoopSequenceTransformationDirective(
2656 OMPCanonicalLoopSequenceTransformationDirective *D) {
2658 VisitOMPExecutableDirective(D);
2662void ASTStmtWriter::VisitOMPFuseDirective(OMPFuseDirective *D) {
2663 VisitOMPCanonicalLoopSequenceTransformationDirective(D);
2667void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) {
2668 VisitOMPLoopDirective(D);
2673void ASTStmtWriter::VisitOMPForSimdDirective(OMPForSimdDirective *D) {
2674 VisitOMPLoopDirective(D);
2678void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) {
2680 VisitOMPExecutableDirective(D);
2685void ASTStmtWriter::VisitOMPSectionDirective(OMPSectionDirective *D) {
2687 VisitOMPExecutableDirective(D);
2692void ASTStmtWriter::VisitOMPScopeDirective(OMPScopeDirective *D) {
2694 VisitOMPExecutableDirective(D);
2698void ASTStmtWriter::VisitOMPSingleDirective(OMPSingleDirective *D) {
2700 VisitOMPExecutableDirective(D);
2704void ASTStmtWriter::VisitOMPMasterDirective(OMPMasterDirective *D) {
2706 VisitOMPExecutableDirective(D);
2710void ASTStmtWriter::VisitOMPCriticalDirective(OMPCriticalDirective *D) {
2712 VisitOMPExecutableDirective(D);
2717void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) {
2718 VisitOMPLoopDirective(D);
2723void ASTStmtWriter::VisitOMPParallelForSimdDirective(
2724 OMPParallelForSimdDirective *D) {
2725 VisitOMPLoopDirective(D);
2729void ASTStmtWriter::VisitOMPParallelMasterDirective(
2730 OMPParallelMasterDirective *D) {
2732 VisitOMPExecutableDirective(D);
2736void ASTStmtWriter::VisitOMPParallelMaskedDirective(
2737 OMPParallelMaskedDirective *D) {
2739 VisitOMPExecutableDirective(D);
2743void ASTStmtWriter::VisitOMPParallelSectionsDirective(
2744 OMPParallelSectionsDirective *D) {
2746 VisitOMPExecutableDirective(D);
2751void ASTStmtWriter::VisitOMPTaskDirective(OMPTaskDirective *D) {
2753 VisitOMPExecutableDirective(D);
2758void ASTStmtWriter::VisitOMPAtomicDirective(OMPAtomicDirective *D) {
2760 VisitOMPExecutableDirective(D);
2767void ASTStmtWriter::VisitOMPTargetDirective(OMPTargetDirective *D) {
2769 VisitOMPExecutableDirective(D);
2773void ASTStmtWriter::VisitOMPTargetDataDirective(OMPTargetDataDirective *D) {
2775 VisitOMPExecutableDirective(D);
2779void ASTStmtWriter::VisitOMPTargetEnterDataDirective(
2780 OMPTargetEnterDataDirective *D) {
2782 VisitOMPExecutableDirective(D);
2786void ASTStmtWriter::VisitOMPTargetExitDataDirective(
2787 OMPTargetExitDataDirective *D) {
2789 VisitOMPExecutableDirective(D);
2793void ASTStmtWriter::VisitOMPTargetParallelDirective(
2794 OMPTargetParallelDirective *D) {
2796 VisitOMPExecutableDirective(D);
2801void ASTStmtWriter::VisitOMPTargetParallelForDirective(
2802 OMPTargetParallelForDirective *D) {
2803 VisitOMPLoopDirective(D);
2808void ASTStmtWriter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) {
2810 VisitOMPExecutableDirective(D);
2814void ASTStmtWriter::VisitOMPBarrierDirective(OMPBarrierDirective *D) {
2816 VisitOMPExecutableDirective(D);
2820void ASTStmtWriter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) {
2822 Record.push_back(D->getNumClauses());
2823 VisitOMPExecutableDirective(D);
2827void ASTStmtWriter::VisitOMPAssumeDirective(OMPAssumeDirective *D) {
2829 VisitOMPExecutableDirective(D);
2833void ASTStmtWriter::VisitOMPErrorDirective(OMPErrorDirective *D) {
2835 Record.push_back(D->getNumClauses());
2836 VisitOMPExecutableDirective(D);
2840void ASTStmtWriter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) {
2842 VisitOMPExecutableDirective(D);
2846void ASTStmtWriter::VisitOMPFlushDirective(OMPFlushDirective *D) {
2848 VisitOMPExecutableDirective(D);
2852void ASTStmtWriter::VisitOMPDepobjDirective(OMPDepobjDirective *D) {
2854 VisitOMPExecutableDirective(D);
2858void ASTStmtWriter::VisitOMPScanDirective(OMPScanDirective *D) {
2860 VisitOMPExecutableDirective(D);
2864void ASTStmtWriter::VisitOMPOrderedStandaloneDirective(
2865 OMPOrderedStandaloneDirective *D) {
2867 VisitOMPExecutableDirective(D);
2871void ASTStmtWriter::VisitOMPOrderedBlockAssocDirective(
2872 OMPOrderedBlockAssocDirective *D) {
2874 VisitOMPExecutableDirective(D);
2878void ASTStmtWriter::VisitOMPTeamsDirective(OMPTeamsDirective *D) {
2880 VisitOMPExecutableDirective(D);
2884void ASTStmtWriter::VisitOMPCancellationPointDirective(
2885 OMPCancellationPointDirective *D) {
2887 VisitOMPExecutableDirective(D);
2892void ASTStmtWriter::VisitOMPCancelDirective(OMPCancelDirective *D) {
2894 VisitOMPExecutableDirective(D);
2899void ASTStmtWriter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) {
2900 VisitOMPLoopDirective(D);
2905void ASTStmtWriter::VisitOMPTaskLoopSimdDirective(OMPTaskLoopSimdDirective *D) {
2906 VisitOMPLoopDirective(D);
2910void ASTStmtWriter::VisitOMPMasterTaskLoopDirective(
2911 OMPMasterTaskLoopDirective *D) {
2912 VisitOMPLoopDirective(D);
2917void ASTStmtWriter::VisitOMPMaskedTaskLoopDirective(
2918 OMPMaskedTaskLoopDirective *D) {
2919 VisitOMPLoopDirective(D);
2924void ASTStmtWriter::VisitOMPMasterTaskLoopSimdDirective(
2925 OMPMasterTaskLoopSimdDirective *D) {
2926 VisitOMPLoopDirective(D);
2930void ASTStmtWriter::VisitOMPMaskedTaskLoopSimdDirective(
2931 OMPMaskedTaskLoopSimdDirective *D) {
2932 VisitOMPLoopDirective(D);
2936void ASTStmtWriter::VisitOMPParallelMasterTaskLoopDirective(
2937 OMPParallelMasterTaskLoopDirective *D) {
2938 VisitOMPLoopDirective(D);
2943void ASTStmtWriter::VisitOMPParallelMaskedTaskLoopDirective(
2944 OMPParallelMaskedTaskLoopDirective *D) {
2945 VisitOMPLoopDirective(D);
2950void ASTStmtWriter::VisitOMPParallelMasterTaskLoopSimdDirective(
2951 OMPParallelMasterTaskLoopSimdDirective *D) {
2952 VisitOMPLoopDirective(D);
2956void ASTStmtWriter::VisitOMPParallelMaskedTaskLoopSimdDirective(
2957 OMPParallelMaskedTaskLoopSimdDirective *D) {
2958 VisitOMPLoopDirective(D);
2962void ASTStmtWriter::VisitOMPDistributeDirective(OMPDistributeDirective *D) {
2963 VisitOMPLoopDirective(D);
2967void ASTStmtWriter::VisitOMPTargetUpdateDirective(OMPTargetUpdateDirective *D) {
2969 VisitOMPExecutableDirective(D);
2973void ASTStmtWriter::VisitOMPDistributeParallelForDirective(
2974 OMPDistributeParallelForDirective *D) {
2975 VisitOMPLoopDirective(D);
2980void ASTStmtWriter::VisitOMPDistributeParallelForSimdDirective(
2981 OMPDistributeParallelForSimdDirective *D) {
2982 VisitOMPLoopDirective(D);
2986void ASTStmtWriter::VisitOMPDistributeSimdDirective(
2987 OMPDistributeSimdDirective *D) {
2988 VisitOMPLoopDirective(D);
2992void ASTStmtWriter::VisitOMPTargetParallelForSimdDirective(
2993 OMPTargetParallelForSimdDirective *D) {
2994 VisitOMPLoopDirective(D);
2998void ASTStmtWriter::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *D) {
2999 VisitOMPLoopDirective(D);
3003void ASTStmtWriter::VisitOMPTeamsDistributeDirective(
3004 OMPTeamsDistributeDirective *D) {
3005 VisitOMPLoopDirective(D);
3009void ASTStmtWriter::VisitOMPTeamsDistributeSimdDirective(
3010 OMPTeamsDistributeSimdDirective *D) {
3011 VisitOMPLoopDirective(D);
3015void ASTStmtWriter::VisitOMPTeamsDistributeParallelForSimdDirective(
3016 OMPTeamsDistributeParallelForSimdDirective *D) {
3017 VisitOMPLoopDirective(D);
3021void ASTStmtWriter::VisitOMPTeamsDistributeParallelForDirective(
3022 OMPTeamsDistributeParallelForDirective *D) {
3023 VisitOMPLoopDirective(D);
3028void ASTStmtWriter::VisitOMPTargetTeamsDirective(OMPTargetTeamsDirective *D) {
3030 VisitOMPExecutableDirective(D);
3034void ASTStmtWriter::VisitOMPTargetTeamsDistributeDirective(
3035 OMPTargetTeamsDistributeDirective *D) {
3036 VisitOMPLoopDirective(D);
3040void ASTStmtWriter::VisitOMPTargetTeamsDistributeParallelForDirective(
3041 OMPTargetTeamsDistributeParallelForDirective *D) {
3042 VisitOMPLoopDirective(D);
3047void ASTStmtWriter::VisitOMPTargetTeamsDistributeParallelForSimdDirective(
3048 OMPTargetTeamsDistributeParallelForSimdDirective *D) {
3049 VisitOMPLoopDirective(D);
3050 Code = serialization::
3051 STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE;
3054void ASTStmtWriter::VisitOMPTargetTeamsDistributeSimdDirective(
3055 OMPTargetTeamsDistributeSimdDirective *D) {
3056 VisitOMPLoopDirective(D);
3060void ASTStmtWriter::VisitOMPInteropDirective(OMPInteropDirective *D) {
3062 VisitOMPExecutableDirective(D);
3066void ASTStmtWriter::VisitOMPDispatchDirective(OMPDispatchDirective *D) {
3068 VisitOMPExecutableDirective(D);
3073void ASTStmtWriter::VisitOMPMaskedDirective(OMPMaskedDirective *D) {
3075 VisitOMPExecutableDirective(D);
3079void ASTStmtWriter::VisitOMPGenericLoopDirective(OMPGenericLoopDirective *D) {
3080 VisitOMPLoopDirective(D);
3084void ASTStmtWriter::VisitOMPTeamsGenericLoopDirective(
3085 OMPTeamsGenericLoopDirective *D) {
3086 VisitOMPLoopDirective(D);
3090void ASTStmtWriter::VisitOMPTargetTeamsGenericLoopDirective(
3091 OMPTargetTeamsGenericLoopDirective *D) {
3092 VisitOMPLoopDirective(D);
3097void ASTStmtWriter::VisitOMPParallelGenericLoopDirective(
3098 OMPParallelGenericLoopDirective *D) {
3099 VisitOMPLoopDirective(D);
3103void ASTStmtWriter::VisitOMPTargetParallelGenericLoopDirective(
3104 OMPTargetParallelGenericLoopDirective *D) {
3105 VisitOMPLoopDirective(D);
3113 Record.push_back(S->
clauses().size());
3114 Record.writeEnum(S->Kind);
3115 Record.AddSourceRange(S->Range);
3116 Record.AddSourceLocation(S->DirectiveLoc);
3117 Record.writeOpenACCClauseList(S->
clauses());
3120void ASTStmtWriter::VisitOpenACCAssociatedStmtConstruct(
3122 VisitOpenACCConstructStmt(S);
3128 VisitOpenACCAssociatedStmtConstruct(S);
3132void ASTStmtWriter::VisitOpenACCLoopConstruct(OpenACCLoopConstruct *S) {
3134 VisitOpenACCAssociatedStmtConstruct(S);
3139void ASTStmtWriter::VisitOpenACCCombinedConstruct(OpenACCCombinedConstruct *S) {
3141 VisitOpenACCAssociatedStmtConstruct(S);
3145void ASTStmtWriter::VisitOpenACCDataConstruct(OpenACCDataConstruct *S) {
3147 VisitOpenACCAssociatedStmtConstruct(S);
3151void ASTStmtWriter::VisitOpenACCEnterDataConstruct(
3152 OpenACCEnterDataConstruct *S) {
3154 VisitOpenACCConstructStmt(S);
3158void ASTStmtWriter::VisitOpenACCExitDataConstruct(OpenACCExitDataConstruct *S) {
3160 VisitOpenACCConstructStmt(S);
3164void ASTStmtWriter::VisitOpenACCInitConstruct(OpenACCInitConstruct *S) {
3166 VisitOpenACCConstructStmt(S);
3170void ASTStmtWriter::VisitOpenACCShutdownConstruct(OpenACCShutdownConstruct *S) {
3172 VisitOpenACCConstructStmt(S);
3176void ASTStmtWriter::VisitOpenACCSetConstruct(OpenACCSetConstruct *S) {
3178 VisitOpenACCConstructStmt(S);
3182void ASTStmtWriter::VisitOpenACCUpdateConstruct(OpenACCUpdateConstruct *S) {
3184 VisitOpenACCConstructStmt(S);
3188void ASTStmtWriter::VisitOpenACCHostDataConstruct(OpenACCHostDataConstruct *S) {
3190 VisitOpenACCAssociatedStmtConstruct(S);
3194void ASTStmtWriter::VisitOpenACCWaitConstruct(OpenACCWaitConstruct *S) {
3196 Record.push_back(S->getExprs().size());
3197 VisitOpenACCConstructStmt(S);
3198 Record.AddSourceLocation(S->LParenLoc);
3199 Record.AddSourceLocation(S->RParenLoc);
3200 Record.AddSourceLocation(S->QueuesLoc);
3202 for(Expr *E : S->getExprs())
3208void ASTStmtWriter::VisitOpenACCAtomicConstruct(OpenACCAtomicConstruct *S) {
3210 VisitOpenACCConstructStmt(S);
3217void ASTStmtWriter::VisitOpenACCCacheConstruct(OpenACCCacheConstruct *S) {
3220 VisitOpenACCConstructStmt(S);
3221 Record.AddSourceRange(S->ParensLoc);
3222 Record.AddSourceLocation(S->ReadOnlyLoc);
3238 Record.writeBool(S->
isInOut());
3247 assert(!SwitchCaseIDs.contains(S) &&
"SwitchCase recorded twice");
3248 unsigned NextID = SwitchCaseIDs.size();
3249 SwitchCaseIDs[S] = NextID;
3254 assert(SwitchCaseIDs.contains(S) &&
"SwitchCase hasn't been seen yet");
3255 return SwitchCaseIDs[S];
3259 SwitchCaseIDs.clear();
3274 llvm::DenseMap<Stmt *, uint64_t>::iterator I = SubStmtEntries.find(S);
3275 if (I != SubStmtEntries.end()) {
3276 Record.push_back(I->second);
3282 assert(!ParentStmts.count(S) &&
"There is a Stmt cycle!");
3284 struct ParentStmtInserterRAII {
3286 llvm::DenseSet<Stmt *> &ParentStmts;
3288 ParentStmtInserterRAII(Stmt *S, llvm::DenseSet<Stmt *> &ParentStmts)
3289 : S(S), ParentStmts(ParentStmts) {
3290 ParentStmts.insert(S);
3292 ~ParentStmtInserterRAII() {
3293 ParentStmts.erase(S);
3297 ParentStmtInserterRAII ParentStmtInserter(S, ParentStmts);
3303 SubStmtEntries[S] = Offset;
3308void ASTRecordWriter::FlushStmts() {
3311 assert(Writer->SubStmtEntries.empty() &&
"unexpected entries in sub-stmt map");
3312 assert(Writer->ParentStmts.empty() &&
"unexpected entries in parent stmt map");
3314 for (
unsigned I = 0, N = StmtsToEmit.size(); I != N; ++I) {
3315 Writer->WriteSubStmt(getASTContext(), StmtsToEmit[I]);
3317 assert(N == StmtsToEmit.size() &&
"record modified while being written!");
3324 Writer->SubStmtEntries.clear();
3325 Writer->ParentStmts.clear();
3328 StmtsToEmit.clear();
3331void ASTRecordWriter::FlushSubStmts() {
3335 for (
unsigned I = 0, N = StmtsToEmit.size(); I != N; ++I) {
3336 Writer->WriteSubStmt(getASTContext(), StmtsToEmit[N - I - 1]);
3337 assert(N == StmtsToEmit.size() &&
"record modified while being written!");
3340 StmtsToEmit.clear();
This file provides AST data structures related to concepts.
Defines the clang::ASTContext interface.
static void addConstraintSatisfaction(ASTRecordWriter &Record, const ASTConstraintSatisfaction &Satisfaction)
static void addSubstitutionDiagnostic(ASTRecordWriter &Record, const concepts::Requirement::SubstitutionDiagnostic *D)
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the C++ template declaration subclasses.
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.
llvm::MachO::Record Record
C Language Family Type Representation.
bool isFailOnly() const
Return true if 'v' is updated only when the condition is evaluated false (compare capture only).
bool isPostfixUpdate() const
Return true if 'v' expression must be updated to original value of 'x', false if 'v' must be updated ...
bool isXLHSInRHSPart() const
Return true if helper update expression has form 'OpaqueValueExpr(x) binop OpaqueValueExpr(expr)' and...
OpenMPDirectiveKind getCancelRegion() const
Get cancellation region for the current cancellation point.
OpenMPDirectiveKind getCancelRegion() const
Get cancellation region for the current cancellation point.
DeclarationNameInfo getDirectiveName() const
Return name of the directive.
SourceLocation getTargetCallLoc() const
Return location of target-call.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool canBeParallelFor() const
Return true if current loop directive's associated loop can be a parallel for.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
bool hasCancel() const
Return true if current directive has inner cancel directive.
const Stmt * getAssociatedStmt() const
OpenACCAtomicKind getAtomicKind() const
ArrayRef< Expr * > getVarList() const
OpenACCDirectiveKind getParentComputeConstructKind() const
unsigned getBitWidth() const
llvm::APInt getValue() const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
An object for streaming information to a record.
void push_back(uint64_t N)
Minimal vector-like interface.
void AddTemplateKWAndArgsInfo(const ASTTemplateKWAndArgsInfo &ArgInfo, const TemplateArgumentLoc *Args)
ASTStmtWriter(const ASTStmtWriter &)=delete
ASTStmtWriter & operator=(const ASTStmtWriter &)=delete
ASTStmtWriter(ASTContext &Context, ASTWriter &Writer, ASTWriter::RecordData &Record)
Writes an AST file containing the contents of a translation unit.
unsigned getSwitchCaseID(SwitchCase *S)
Retrieve the ID for the given switch-case statement.
void ClearSwitchCaseIDs()
unsigned RecordSwitchCaseID(SwitchCase *S)
Record an ID for the given switch-case statement.
unsigned getCompoundStmtAbbrev() const
SmallVector< uint64_t, 64 > RecordData
SourceLocation getColonLoc() const
SourceLocation getQuestionLoc() const
AddrLabelExpr - The GNU address of label extension, representing &&label.
SourceLocation getAmpAmpLoc() const
SourceLocation getLabelLoc() const
LabelDecl * getLabel() const
Represents the index of the current element of an array being initialized by an ArrayInitLoopExpr.
Represents a loop initializing the elements of an array.
This class represents BOTH the OpenMP Array Section and OpenACC 'subarray', with a boolean differenti...
SourceLocation getRBracketLoc() const
Expr * getBase()
Get base of the array section.
Expr * getLength()
Get length of array section.
bool isOMPArraySection() const
Expr * getStride()
Get stride of array section.
SourceLocation getColonLocSecond() const
Expr * getLowerBound()
Get lower bound of array section.
SourceLocation getColonLocFirst() const
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
SourceLocation getRBracketLoc() const
Expr * getLHS()
An array access can be written A[4] or 4[A] (both are equivalent).
An Embarcadero array type trait, as used in the implementation of __array_rank and __array_extent.
uint64_t getValue() const
ArrayTypeTrait getTrait() const
Expr * getDimensionExpression() const
TypeSourceInfo * getQueriedTypeSourceInfo() const
AsTypeExpr - Clang builtin function __builtin_astype [OpenCL 6.2.4.2] This AST node provides support ...
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
SourceLocation getBuiltinLoc() const
getBuiltinLoc - Return the location of the __builtin_astype token.
SourceLocation getRParenLoc() const
getRParenLoc - Return the location of final right parenthesis.
AsmStmt is the base class for GCCAsmStmt and MSAsmStmt.
SourceLocation getAsmLoc() const
unsigned getNumClobbers() const
unsigned getNumOutputs() const
unsigned getNumInputs() const
AtomicExpr - Variadic atomic builtins: __atomic_exchange, __atomic_fetch_*, __atomic_load,...
SourceLocation getRParenLoc() const
static unsigned getNumSubExprs(AtomicOp Op)
Determine the number of arguments the specified atomic builtin should have.
SourceLocation getBuiltinLoc() const
Represents an attribute applied to a statement.
SourceLocation getAttrLoc() const
ArrayRef< const Attr * > getAttrs() const
BinaryConditionalOperator - The GNU extension to the conditional operator which allows the middle ope...
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression which will be evaluated if the condition evaluates to false; ...
OpaqueValueExpr * getOpaqueValue() const
getOpaqueValue - Return the opaque value placeholder.
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 OverloadedOperatorKind getOverloadedOperator(Opcode Opc)
Retrieve the overloaded operator kind that corresponds to the given binary opcode.
SourceLocation getOperatorLoc() const
bool hasStoredFPFeatures() const
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
bool hasExcludedOverflowPattern() const
A simple helper class to pack several bits in order into (a) 32 bit integer(s).
void addBits(uint32_t Value, uint32_t BitsWidth)
void reset(uint32_t Value)
BlockExpr - Adaptor class for mixing a BlockDecl with expressions.
const BlockDecl * getBlockDecl() const
BreakStmt - This represents a break.
Represents a C++2a __builtin_bit_cast(T, v) expression.
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getBeginLoc() const LLVM_READONLY
CStyleCastExpr - An explicit cast in C (C99 6.5.4) or a C-style cast in C++ (C++ [expr....
SourceLocation getRParenLoc() const
SourceLocation getLParenLoc() const
Represents a call to a CUDA kernel function.
const CallExpr * getConfig() const
A C++ addrspace_cast expression (currently only enabled for OpenCL).
Represents binding an expression to a temporary.
CXXTemporary * getTemporary()
const Expr * getSubExpr() const
A boolean literal, per ([C++ lex.bool] Boolean literals).
SourceLocation getLocation() const
CXXCatchStmt - This represents a C++ catch block.
SourceLocation getCatchLoc() const
Stmt * getHandlerBlock() const
VarDecl * getExceptionDecl() const
A C++ const_cast expression (C++ [expr.const.cast]).
Represents a call to a C++ constructor.
SourceRange getParenOrBraceRange() const
bool isElidable() const
Whether this construction is elidable.
bool hadMultipleCandidates() const
Whether the referred constructor was resolved from an overloaded set having size greater than 1.
Expr * getArg(unsigned Arg)
Return the specified argument.
bool isStdInitListInitialization() const
Whether this constructor call was written as list-initialization, but was interpreted as forming a st...
bool isImmediateEscalating() const
bool requiresZeroInitialization() const
Whether this construction first requires zero-initialization before the initializer is called.
SourceLocation getLocation() const
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will (ultimately) call.
bool isListInitialization() const
Whether this constructor call was written as list-initialization.
unsigned getNumArgs() const
Return the number of arguments to the constructor call.
CXXConstructionKind getConstructionKind() const
Determine whether this constructor is actually constructing a base class (rather than a complete obje...
A default argument (C++ [dcl.fct.default]).
SourceLocation getUsedLocation() const
Retrieve the location where this default argument was actually used.
const ParmVarDecl * getParam() const
Expr * getRewrittenExpr()
const DeclContext * getUsedContext() const
bool hasRewrittenInit() const
A use of a default initializer in a constructor or in aggregate initialization.
const DeclContext * getUsedContext() const
const Expr * getRewrittenExpr() const
Retrieve the initializing expression with evaluated immediate calls, if any.
bool hasRewrittenInit() const
FieldDecl * getField()
Get the field whose initializer will be used.
Represents a delete expression for memory deallocation and destructor calls, e.g.
FunctionDecl * getOperatorDelete() const
SourceLocation getBeginLoc() const
bool isGlobalDelete() const
bool doesUsualArrayDeleteWantSize() const
Answers whether the usual array deallocation function for the allocated type expects the size of the ...
bool isArrayFormAsWritten() const
Represents a C++ member access expression where the actual member referenced could not be resolved be...
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
SourceLocation getOperatorLoc() const
Retrieve the location of the '->' or '.' operator.
unsigned getNumTemplateArgs() const
Retrieve the number of template arguments provided as part of this template-id.
QualType getBaseType() const
NamedDecl * getFirstQualifierFoundInScope() const
Retrieve the first part of the nested-name-specifier that was found in the scope of the member access...
Expr * getBase() const
Retrieve the base object of this member expressions, e.g., the x in x.m.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the member name, with source location information.
bool isImplicitAccess() const
True if this is an implicit access, i.e.
A C++ dynamic_cast expression (C++ [expr.dynamic.cast]).
Helper that selects an expression from an InitListExpr depending on the current expansion index.
InitListExpr * getRangeExpr()
Represents the code generated for an expanded expansion statement.
ArrayRef< Stmt * > getInstantiations() const
bool shouldApplyLifetimeExtensionToPreamble() const
CXXExpansionStmtDecl * getParent()
ArrayRef< Stmt * > getPreambleStmts() const
ArrayRef< Stmt * > getAllSubStmts() const
CXXExpansionStmtPattern - Represents an unexpanded C++ expansion statement.
ExpansionStmtKind getKind() const
SourceLocation getRParenLoc() const
SourceLocation getColonLoc() const
CXXExpansionStmtDecl * getDecl()
SourceLocation getLParenLoc() const
Represents a folding of a pack over an operator.
CXXForRangeStmt - This represents C++0x [stmt.ranged]'s ranged for statement, represented as 'for (ra...
DeclStmt * getBeginStmt()
DeclStmt * getLoopVarStmt()
SourceLocation getForLoc() const
DeclStmt * getRangeStmt()
SourceLocation getRParenLoc() const
SourceLocation getColonLoc() const
SourceLocation getCoawaitLoc() const
Represents an explicit C++ type conversion that uses "functional" notation (C++ [expr....
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
Represents a call to an inherited base class constructor from an inheriting constructor.
bool constructsVBase() const
Determine whether this constructor is actually constructing a base class (rather than a complete obje...
CXXConstructorDecl * getConstructor() const
Get the constructor that this expression will call.
SourceLocation getLocation() const LLVM_READONLY
bool inheritedFromVBase() const
Determine whether the inherited constructor is inherited from a virtual base of the object we constru...
Represents a call to a member function that may be written either with member call syntax (e....
Abstract class common to all of the C++ "named"/"keyword" casts.
SourceLocation getOperatorLoc() const
Retrieve the location of the cast operator keyword, e.g., static_cast.
SourceRange getAngleBrackets() const LLVM_READONLY
SourceLocation getRParenLoc() const
Retrieve the location of the closing parenthesis.
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
SourceRange getDirectInitRange() const
ExprIterator arg_iterator
ImplicitAllocationParameters implicitAllocationParameters() const
Provides the full set of information about expected implicit parameters in this call.
bool hasInitializer() const
Whether this new-expression has any initializer at all.
FunctionDecl * getOperatorDelete() const
unsigned getNumPlacementArgs() const
TypeSourceInfo * getAllocatedTypeSourceInfo() const
SourceRange getSourceRange() const
SourceRange getTypeIdParens() const
bool isParenTypeId() const
raw_arg_iterator raw_arg_end()
bool doesUsualArrayDeleteWantSize() const
Answers whether the usual array deallocation function for the allocated type expects the size of the ...
raw_arg_iterator raw_arg_begin()
FunctionDecl * getOperatorNew() const
Represents a C++11 noexcept expression (C++ [expr.unary.noexcept]).
Expr * getOperand() const
SourceRange getSourceRange() const
The null pointer literal (C++11 [lex.nullptr])
SourceLocation getLocation() const
A call to an overloaded operator written using operator syntax.
bool isReversed() const
Whether this is a C++20 rewritten reversed operator.
OverloadedOperatorKind getOperator() const
Returns the kind of overloaded operator that this expression refers to.
Represents a list-initialization with parenthesis.
SourceLocation getEndLoc() const LLVM_READONLY
SourceLocation getInitLoc() const LLVM_READONLY
MutableArrayRef< Expr * > getInitExprs()
SourceLocation getBeginLoc() const LLVM_READONLY
MutableArrayRef< Expr * > getUserSpecifiedInitExprs()
FieldDecl * getInitializedFieldInUnion()
Represents a C++ pseudo-destructor (C++ [expr.pseudo]).
TypeSourceInfo * getDestroyedTypeInfo() const
Retrieve the source location information for the type being destroyed.
bool isArrow() const
Determine whether this pseudo-destructor expression was written using an '->' (otherwise,...
TypeSourceInfo * getScopeTypeInfo() const
Retrieve the scope type in a qualified pseudo-destructor expression.
SourceLocation getTildeLoc() const
Retrieve the location of the '~'.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieves the nested-name-specifier that qualifies the type name, with source-location information.
SourceLocation getDestroyedTypeLoc() const
Retrieve the starting location of the type being destroyed.
SourceLocation getColonColonLoc() const
Retrieve the location of the '::' in a qualified pseudo-destructor expression.
SourceLocation getOperatorLoc() const
Retrieve the location of the '.' or '->' operator.
const IdentifierInfo * getDestroyedTypeIdentifier() const
In a dependent pseudo-destructor expression for which we do not have full type information on the des...
Represents a C++26 reflect expression [expr.reflect].
A C++ reinterpret_cast expression (C++ [expr.reinterpret.cast]).
A rewritten comparison expression that was originally written using operator syntax.
Expr * getSemanticForm()
Get an equivalent semantic form for this expression.
bool isReversed() const
Determine whether this expression was rewritten in reverse form.
An expression "T()" which creates an rvalue of a non-class type T.
TypeSourceInfo * getTypeSourceInfo() const
SourceLocation getRParenLoc() const
A C++ static_cast expression (C++ [expr.static.cast]).
Implicit construction of a std::initializer_list<T> object from an array temporary within list-initia...
Represents a C++ functional cast expression that builds a temporary object.
TypeSourceInfo * getTypeSourceInfo() const
Represents the this expression in C++.
bool isCapturedByCopyInLambdaWithExplicitObjectParameter() const
SourceLocation getLocation() const
A C++ throw-expression (C++ [except.throw]).
const Expr * getSubExpr() const
SourceLocation getThrowLoc() const
bool isThrownVariableInScope() const
Determines whether the variable thrown by this expression (if any!) is within the innermost try block...
CXXTryStmt - A C++ try block, including all handlers.
SourceLocation getTryLoc() const
CXXCatchStmt * getHandler(unsigned i)
unsigned getNumHandlers() const
CompoundStmt * getTryBlock()
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
bool isTypeOperand() const
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
Expr * getExprOperand() const
SourceRange getSourceRange() const LLVM_READONLY
Describes an explicit type conversion that uses functional notion but could not be resolved because o...
SourceLocation getLParenLoc() const
Retrieve the location of the left parentheses ('(') that precedes the argument list.
bool isListInitialization() const
Determine whether this expression models list-initialization.
TypeSourceInfo * getTypeSourceInfo() const
Retrieve the type source information for the type being constructed.
SourceLocation getRParenLoc() const
Retrieve the location of the right parentheses (')') that follows the argument list.
unsigned getNumArgs() const
Retrieve the number of arguments.
A Microsoft C++ __uuidof expression, which gets the _GUID that corresponds to the supplied type or ex...
Expr * getExprOperand() const
MSGuidDecl * getGuidDecl() const
bool isTypeOperand() const
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
SourceRange getSourceRange() const LLVM_READONLY
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
bool hasStoredFPFeatures() const
bool usesMemberSyntax() const
ExprIterator arg_iterator
ADLCallKind getADLCallKind() const
FPOptionsOverride getFPFeatures() const
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
bool isCoroElideSafe() const
SourceLocation getRParenLoc() const
This captures a statement into a function.
capture_init_range capture_inits()
CapturedDecl * getCapturedDecl()
Retrieve the outlined function declaration.
capture_iterator capture_end() const
Retrieve an iterator pointing past the end of the sequence of captures.
const RecordDecl * getCapturedRecordDecl() const
Retrieve the record declaration for captured variables.
Stmt * getCapturedStmt()
Retrieve the statement being captured.
capture_iterator capture_begin()
Retrieve an iterator pointing to the first capture.
CapturedRegionKind getCapturedRegionKind() const
Retrieve the captured region kind.
CaseStmt - Represent a case statement.
bool caseStmtIsGNURange() const
True if this case statement is of the form case LHS ... RHS, which is a GNU extension.
SourceLocation getEllipsisLoc() const
Get the location of the ... in a case statement of the form LHS ... RHS.
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
path_iterator path_begin()
unsigned path_size() const
CastKind getCastKind() const
bool hasStoredFPFeatures() const
CXXBaseSpecifier ** path_iterator
FPOptionsOverride getFPFeatures() const
SourceLocation getLocation() const
unsigned getValue() const
CharacterLiteralKind getKind() const
ChooseExpr - GNU builtin-in function __builtin_choose_expr.
SourceLocation getBuiltinLoc() const
bool isConditionDependent() const
bool isConditionTrue() const
isConditionTrue - Return whether the condition is true (i.e.
SourceLocation getRParenLoc() const
Represents a 'co_await' expression.
CompoundAssignOperator - For compound assignments (e.g.
QualType getComputationLHSType() const
QualType getComputationResultType() const
CompoundLiteralExpr - [C99 6.5.2.5].
SourceLocation getLParenLoc() const
const Expr * getInitializer() const
TypeSourceInfo * getTypeSourceInfo() const
CompoundStmt - This represents a group of statements like { stmt stmt }.
FPOptionsOverride getStoredFPFeatures() const
Get FPOptionsOverride from trailing storage.
SourceLocation getLBracLoc() const
bool hasStoredFPFeatures() const
SourceLocation getRBracLoc() const
Represents the specialization of a concept - evaluates to a prvalue of type bool.
ConceptReference * getConceptReference() const
const ImplicitConceptSpecializationDecl * getSpecializationDecl() const
const ASTConstraintSatisfaction & getSatisfaction() const
Get elaborated satisfaction info about the template arguments' satisfaction of the named concept.
ConditionalOperator - The ?
Expr * getCond() const
getCond - Return the expression representing the condition for the ?
ConstantExpr - An expression that occurs in a constant context and optionally the result of evaluatin...
ConstantResultStorageKind getResultStorageKind() const
ContinueStmt - This represents a continue.
ConvertVectorExpr - Clang builtin function __builtin_convertvector This AST node provides support for...
SourceLocation getRParenLoc() const
getRParenLoc - Return the location of final right parenthesis.
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.
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
Represents a 'co_return' statement in the C++ Coroutines TS.
Expr * getOperand() const
Retrieve the operand of the 'co_return' statement.
Expr * getPromiseCall() const
Retrieve the promise call that results from this 'co_return' statement.
SourceLocation getKeywordLoc() const
Represents the body of a coroutine.
ArrayRef< Stmt const * > getParamMoves() const
Represents an expression that might suspend coroutine execution; either a co_await or co_yield expres...
SourceLocation getKeywordLoc() const
OpaqueValueExpr * getOpaqueValue() const
getOpaqueValue - Return the opaque value placeholder.
Represents a 'co_yield' expression.
NamedDecl * getDecl() const
AccessSpecifier getAccess() const
DeclContext * getParent()
getParent - Returns the containing DeclContext.
bool isFileContext() const
A reference to a declared variable, function, enum, etc.
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 refersToEnclosingVariableOrCapture() const
Does this DeclRefExpr refer to an enclosing local or a captured variable?
bool hasTemplateKWAndArgsInfo() const
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,...
NonOdrUseReason isNonOdrUse() const
Is this expression a non-odr-use reference, and if so, why?
bool hadMultipleCandidates() const
Returns true if this expression refers to a function that was resolved from an overloaded set having ...
SourceLocation getLocation() const
bool isImmediateEscalating() const
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
SourceLocation getEndLoc() const
const DeclGroupRef getDeclGroup() const
SourceLocation getBeginLoc() const LLVM_READONLY
NameKind
The kind of the name stored in this DeclarationName.
DeferStmt - This represents a deferred statement.
SourceLocation getDeferLoc() const
Represents a 'co_await' expression while the type of the promise is dependent.
SourceLocation getKeywordLoc() const
A qualified reference to a name whose declaration cannot yet be resolved.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies the name, with source location information.
A template-id naming a variable template or a concept through a template template parameter.
const DeclarationNameInfo & getNameInfo() const
TemplateName getTemplateName() const
unsigned getNumTemplateArgs() const
Represents a C99 designated initializer expression.
Expr * getSubExpr(unsigned Idx) const
bool usesGNUSyntax() const
Determines whether this designated initializer used the deprecated GNU syntax for designated initiali...
MutableArrayRef< Designator > designators()
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,...
InitListExpr * getUpdater() const
DoStmt - This represents a 'do/while' stmt.
SourceLocation getWhileLoc() const
SourceLocation getDoLoc() const
SourceLocation getRParenLoc() const
IdentifierInfo & getAccessor() const
const Expr * getBase() const
SourceLocation getAccessorLoc() const
Represents a reference to emded data.
unsigned getStartingElementPos() const
StringLiteral * getDataStringLiteral() const
SourceLocation getBeginLoc() const
size_t getDataElementCount() const
ExplicitCastExpr - An explicit cast written in the source code.
TypeSourceInfo * getTypeInfoAsWritten() const
getTypeInfoAsWritten - Returns the type source info for the type that this expression is casting to.
Represents an expression – generally a full-expression – that introduces cleanups to be run at the en...
bool cleanupsHaveSideEffects() const
ArrayRef< CleanupObject > getObjects() const
unsigned getNumObjects() const
This represents one expression.
bool isValueDependent() const
Determines whether the value of this expression depends on.
ExprValueKind getValueKind() const
getValueKind - The value kind that this expression produces.
bool isTypeDependent() const
Determines whether the type of this expression depends on.
ExprObjectKind getObjectKind() const
getObjectKind - The object kind that this expression produces.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
ExprDependence getDependence() const
An expression trait intrinsic.
Expr * getQueriedExpression() const
ExpressionTrait getTrait() const
ExtVectorElementExpr - This represents access to specific elements of a vector, and may occur on the ...
storage_type getAsOpaqueInt() const
SourceLocation getLocation() const
Retrieve the location of the literal.
unsigned getScale() const
llvm::APInt getValue() const
Returns an internal integer representation of the literal.
SourceLocation getLocation() const
llvm::APFloatBase::Semantics getRawSemantics() const
Get a raw enumeration value representing the floating-point semantics of this literal (32-bit IEEE,...
llvm::APFloat getValue() const
ForStmt - This represents a 'for (init;cond;inc)' stmt.
SourceLocation getRParenLoc() const
SourceLocation getForLoc() const
SourceLocation getLParenLoc() const
DeclStmt * getConditionVariableDeclStmt()
If this ForStmt has a condition variable, return the faux DeclStmt associated with the creation of th...
const Expr * getSubExpr() const
Represents a reference to a function parameter pack, init-capture pack, or binding pack that has been...
ValueDecl *const * iterator
Iterators over the parameters which the parameter pack expanded into.
ValueDecl * getParameterPack() const
Get the parameter pack which this expression refers to.
unsigned getNumExpansions() const
Get the number of parameters in this parameter pack.
SourceLocation getParameterPackLocation() const
Get the location of the parameter pack.
This represents a GCC inline-assembly statement extension.
unsigned getNumLabels() const
SourceLocation getRParenLoc() const
IdentifierInfo * getInputIdentifier(unsigned i) const
const Expr * getOutputConstraintExpr(unsigned i) const
IdentifierInfo * getLabelIdentifier(unsigned i) const
const Expr * getInputConstraintExpr(unsigned i) const
IdentifierInfo * getOutputIdentifier(unsigned i) const
const Expr * getAsmStringExpr() const
Expr * getOutputExpr(unsigned i)
Expr * getClobberExpr(unsigned i)
Expr * getInputExpr(unsigned i)
AddrLabelExpr * getLabelExpr(unsigned i) const
GNUNullExpr - Implements the GNU __null extension, which is a name for a null pointer constant that h...
SourceLocation getTokenLocation() const
getTokenLocation - The location of the __null token.
Represents a C11 generic selection.
unsigned getNumAssocs() const
The number of association expressions.
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
SourceLocation getGenericLoc() const
SourceLocation getRParenLoc() const
SourceLocation getDefaultLoc() const
GotoStmt - This represents a direct goto.
SourceLocation getLabelLoc() const
SourceLocation getGotoLoc() const
LabelDecl * getLabel() const
This class represents temporary values used to represent inout and out arguments in HLSL.
const OpaqueValueExpr * getCastedTemporary() const
const OpaqueValueExpr * getOpaqueArgLValue() const
bool isInOut() const
returns true if the parameter is inout and false if the parameter is out.
const Expr * getWritebackCast() const
IfStmt - This represents an if/then/else.
SourceLocation getIfLoc() const
IfStatementKind getStatementKind() const
SourceLocation getElseLoc() const
SourceLocation getLParenLoc() const
DeclStmt * getConditionVariableDeclStmt()
If this IfStmt has a condition variable, return the faux DeclStmt associated with the creation of tha...
SourceLocation getRParenLoc() const
ImaginaryLiteral - We support imaginary integer and floating point literals, like "1....
const Expr * getSubExpr() const
ImplicitCastExpr - Allows us to explicitly represent implicit type conversions, which have no direct ...
bool isPartOfExplicitCast() const
Represents an implicitly-generated value initialization of an object of a given type.
IndirectGotoStmt - This represents an indirect goto.
SourceLocation getGotoLoc() const
SourceLocation getStarLoc() const
Describes an C or C++ initializer list.
FieldDecl * getInitializedFieldInUnion()
If this initializes a union, specifies which field in the union to initialize.
unsigned getNumInits() const
SourceLocation getLBraceLoc() const
InitListExpr * getSyntacticForm() const
bool hadArrayRangeDesignator() const
Expr * getArrayFiller()
If this initializer list initializes an array with more elements than there are initializers in the l...
SourceLocation getRBraceLoc() const
const Expr * getInit(unsigned Init) const
SourceLocation getLocation() const
Retrieve the location of the literal.
LabelStmt - Represents a label, which has a substatement.
LabelDecl * getDecl() const
SourceLocation getIdentLoc() const
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Expr ** capture_init_iterator
Iterator that walks over the capture initialization arguments.
capture_init_iterator capture_init_end()
Retrieve the iterator pointing one past the last initialization argument for this lambda expression.
capture_init_iterator capture_init_begin()
Retrieve the first initialization argument for this lambda expression (which initializes the first ca...
Base class for BreakStmt and ContinueStmt.
SourceLocation getLabelLoc() const
LabelDecl * getLabelDecl()
SourceLocation getKwLoc() const
bool hasLabelTarget() const
This represents a Microsoft inline-assembly statement extension.
Expr * getOutputExpr(unsigned i)
StringRef getAsmString() const
SourceLocation getLBraceLoc() const
SourceLocation getEndLoc() const
StringRef getInputConstraint(unsigned i) const
StringRef getOutputConstraint(unsigned i) const
StringRef getClobber(unsigned i) const
Expr * getInputExpr(unsigned i)
Representation of a Microsoft __if_exists or __if_not_exists statement with a dependent name.
bool isIfExists() const
Determine whether this is an __if_exists statement.
DeclarationNameInfo getNameInfo() const
Retrieve the name of the entity we're testing for, along with location information.
NestedNameSpecifierLoc getQualifierLoc() const
Retrieve the nested-name-specifier that qualifies this name, if any.
CompoundStmt * getSubStmt() const
Retrieve the compound statement that will be included in the program only if the existence of the sym...
SourceLocation getKeywordLoc() const
Retrieve the location of the __if_exists or __if_not_exists keyword.
A member reference to an MSPropertyDecl.
NestedNameSpecifierLoc getQualifierLoc() const
MSPropertyDecl * getPropertyDecl() const
Expr * getBaseExpr() const
SourceLocation getMemberLoc() const
MS property subscript expression.
SourceLocation getRBracketLoc() const
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
LifetimeExtendedTemporaryDecl * getLifetimeExtendedTemporaryDecl()
MatrixSingleSubscriptExpr - Matrix single subscript expression for the MatrixType extension when you ...
SourceLocation getRBracketLoc() const
MatrixSubscriptExpr - Matrix subscript expression for the MatrixType extension.
SourceLocation getRBracketLoc() const
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
SourceLocation getMemberLoc() const
getMemberLoc - Return the location of the "member", in X->F, it is the location of 'F'.
SourceLocation getOperatorLoc() const
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.
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 ...
unsigned getNumTemplateArgs() const
Retrieve the number of template arguments provided as part of this template-id.
bool hadMultipleCandidates() const
Returns true if this member expression refers to a method that was resolved from an overloaded set ha...
DeclAccessPair getFoundDecl() const
Retrieves the declaration found by lookup.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Represents a place-holder for an object not to be initialized by anything.
NullStmt - This is the null statement ";": C99 6.8.3p3.
SourceLocation getSemiLoc() const
An explicit cast in C or a C-style cast in C++, which uses the syntax ([s1][s2]......
Expr * getBase()
Fetches base expression of array shaping expression.
SourceLocation getLParenLoc() const
ArrayRef< Expr * > getDimensions() const
Fetches the dimensions for array shaping expression.
SourceLocation getRParenLoc() const
ArrayRef< SourceRange > getBracketsRanges() const
Fetches source ranges for the brackets os the array shaping expression.
OpenMP 5.0 [2.1.6 Iterators] Iterators are identifiers that expand to multiple values in the clause o...
SourceLocation getLParenLoc() const
SourceLocation getSecondColonLoc(unsigned I) const
Gets the location of the second ':' (if any) in the range for the given iteratori definition.
SourceLocation getColonLoc(unsigned I) const
Gets the location of the first ':' in the range for the given iterator definition.
SourceLocation getRParenLoc() const
IteratorRange getIteratorRange(unsigned I)
Gets the iterator range for the given iterator.
OMPIteratorHelperData & getHelper(unsigned I)
Fetches helper data for the specified iteration space.
SourceLocation getAssignLoc(unsigned I) const
Gets the location of '=' for the given iterator definition.
SourceLocation getIteratorKwLoc() const
unsigned numOfIterators() const
Returns number of iterator definitions.
Decl * getIteratorDecl(unsigned I)
Gets the iterator declaration for the given iterator.
ObjCArrayLiteral - used for objective-c array containers; as in: @["Hello", NSApp,...
Expr * getElement(unsigned Index)
getElement - Return the Element at the specified index.
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c array literal.
SourceRange getSourceRange() const LLVM_READONLY
ObjCMethodDecl * getArrayWithObjectsMethod() const
Represents Objective-C's @catch statement.
const VarDecl * getCatchParamDecl() const
const Stmt * getCatchBody() const
SourceLocation getAtCatchLoc() const
SourceLocation getRParenLoc() const
Represents Objective-C's @finally statement.
const Stmt * getFinallyBody() const
SourceLocation getAtFinallyLoc() const
Represents Objective-C's @synchronized statement.
const Expr * getSynchExpr() const
const CompoundStmt * getSynchBody() const
SourceLocation getAtSynchronizedLoc() const
Represents Objective-C's @throw statement.
const Expr * getThrowExpr() const
SourceLocation getThrowLoc() const LLVM_READONLY
Represents Objective-C's @try ... @catch ... @finally statement.
const ObjCAtFinallyStmt * getFinallyStmt() const
Retrieve the @finally statement, if any.
unsigned getNumCatchStmts() const
Retrieve the number of @catch statements in this try-catch-finally block.
const Stmt * getTryBody() const
Retrieve the @try body.
SourceLocation getAtTryLoc() const
Retrieve the location of the @ in the @try.
catch_range catch_stmts()
Represents Objective-C's @autoreleasepool Statement.
SourceLocation getAtLoc() const
const Stmt * getSubStmt() const
A runtime availability query.
SourceRange getSourceRange() const
VersionTuple getVersion() const
ObjCBoolLiteralExpr - Objective-C Boolean Literal.
SourceLocation getLocation() const
ObjCBoxedExpr - used for generalized expression boxing.
SourceRange getSourceRange() const LLVM_READONLY
ObjCMethodDecl * getBoxingMethod() const
An Objective-C "bridged" cast expression, which casts between Objective-C pointers and C pointers,...
SourceLocation getLParenLoc() const
SourceLocation getBridgeKeywordLoc() const
The location of the bridge keyword.
ObjCBridgeCastKind getBridgeKind() const
Determine which kind of bridge is being performed via this cast.
ObjCDictionaryLiteral - AST node to represent objective-c dictionary literals; as in:"name" : NSUserN...
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c dictionary literal.
ObjCMethodDecl * getDictWithObjectsMethod() const
ObjCDictionaryElement getKeyValueElement(unsigned Index) const
SourceRange getSourceRange() const LLVM_READONLY
ObjCEncodeExpr, used for @encode in Objective-C.
TypeSourceInfo * getEncodedTypeSourceInfo() const
SourceLocation getRParenLoc() const
SourceLocation getAtLoc() const
Represents Objective-C's collection statement.
SourceLocation getForLoc() const
SourceLocation getRParenLoc() const
ObjCIndirectCopyRestoreExpr - Represents the passing of a function argument by indirect copy-restore ...
bool shouldCopy() const
shouldCopy - True if we should do the 'copy' part of the copy-restore.
ObjCIsaExpr - Represent X->isa and X.isa when X is an ObjC 'id' type.
SourceLocation getIsaMemberLoc() const
getMemberLoc - Return the location of the "member", in X->F, it is the location of 'F'.
SourceLocation getOpLoc() const
ObjCIvarRefExpr - A reference to an ObjC instance variable.
SourceLocation getLocation() const
SourceLocation getOpLoc() const
const Expr * getBase() const
An expression that sends a message to the given Objective-C object or class.
bool isDelegateInitCall() const
isDelegateInitCall - Answers whether this message send has been tagged as a "delegate init call",...
SourceLocation getLeftLoc() const
Expr * getInstanceReceiver()
Returns the object expression (receiver) for an instance message, or null for a message that is not a...
SourceLocation getSuperLoc() const
Retrieve the location of the 'super' keyword for a class or instance message to 'super',...
Selector getSelector() const
@ SuperInstance
The receiver is the instance of the superclass object.
@ Instance
The receiver is an object instance.
@ SuperClass
The receiver is a superclass.
@ Class
The receiver is a class.
TypeSourceInfo * getClassReceiverTypeInfo() const
Returns a type-source information of a class message send, or nullptr if the message is not a class m...
QualType getSuperType() const
Retrieve the type referred to by 'super'.
const ObjCMethodDecl * getMethodDecl() const
ReceiverKind getReceiverKind() const
Determine the kind of receiver that this message is being sent to.
SourceLocation getRightLoc() const
unsigned getNumArgs() const
Return the number of actual arguments in this message, not counting the receiver.
Base class for Objective-C object literals ("...", @42, @[],}).
bool isExpressibleAsConstantInitializer() const
ObjCPropertyRefExpr - A dot-syntax expression to access an ObjC property.
ObjCPropertyDecl * getExplicitProperty() const
ObjCMethodDecl * getImplicitPropertyGetter() const
SourceLocation getReceiverLocation() const
const Expr * getBase() const
bool isObjectReceiver() const
QualType getSuperReceiverType() const
bool isImplicitProperty() const
ObjCMethodDecl * getImplicitPropertySetter() const
ObjCInterfaceDecl * getClassReceiver() const
SourceLocation getLocation() const
bool isSuperReceiver() const
ObjCProtocolExpr used for protocol expression in Objective-C.
ObjCProtocolDecl * getProtocol() const
SourceLocation getRParenLoc() const
SourceLocation getAtLoc() const
ObjCSelectorExpr used for @selector in Objective-C.
SourceLocation getSelectorNameLoc() const
SourceLocation getRParenLoc() const
Selector getSelector() const
SourceLocation getAtLoc() const
ObjCStringLiteral, used for Objective-C string literals i.e.
SourceLocation getAtLoc() const
StringLiteral * getString()
ObjCSubscriptRefExpr - used for array and dictionary subscripting.
Expr * getKeyExpr() const
Expr * getBaseExpr() const
ObjCMethodDecl * getAtIndexMethodDecl() const
SourceLocation getRBracket() const
ObjCMethodDecl * setAtIndexMethodDecl() const
OffsetOfExpr - [C99 7.17] - This represents an expression of the form offsetof(record-type,...
Expr * getIndexExpr(unsigned Idx)
SourceLocation getOperatorLoc() const
getOperatorLoc - Return the location of the operator.
const OffsetOfNode & getComponent(unsigned Idx) const
TypeSourceInfo * getTypeSourceInfo() const
unsigned getNumExpressions() const
SourceLocation getRParenLoc() const
Return the location of the right parentheses.
unsigned getNumComponents() const
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.
SourceRange getSourceRange() const LLVM_READONLY
Retrieve the source range that covers this offsetof node.
@ 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.
Kind getKind() const
Determine what kind of offsetof node this is.
CXXBaseSpecifier * getBase() const
For a base class node, returns the base specifier.
OpaqueValueExpr - An expression referring to an opaque object of a fixed type and value class.
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.
This is a base class for any OpenACC statement-level constructs that have an associated statement.
Stmt * getAssociatedStmt()
This expression type represents an asterisk in an OpenACC Size-Expr, used in the 'tile' and 'gang' cl...
SourceLocation getLocation() const
This is the base class for an OpenACC statement-level construct, other construct types are expected t...
ArrayRef< const OpenACCClause * > clauses() const
A reference to an overloaded function set, either an UnresolvedLookupExpr or an UnresolvedMemberExpr.
ASTTemplateKWAndArgsInfo * getTrailingASTTemplateKWAndArgsInfo()
Return the optional template keyword and arguments info.
const DeclarationNameInfo & getNameInfo() const
Gets the full name info.
UnresolvedSetImpl::iterator decls_iterator
decls_iterator decls_begin() const
unsigned getNumDecls() const
Gets the number of declarations in the unresolved set.
NestedNameSpecifierLoc getQualifierLoc() const
Fetches the nested-name qualifier with source-location information, if one was given.
TemplateArgumentLoc * getTrailingTemplateArgumentLoc()
Return the optional template arguments.
bool hasTemplateKWAndArgsInfo() const
decls_iterator decls_end() const
DeclarationName getName() const
Gets the name looked up.
Represents a C++11 pack expansion that produces a sequence of expressions.
Expr * getPattern()
Retrieve the pattern of the pack expansion.
SourceLocation getEllipsisLoc() const
Retrieve the location of the ellipsis that describes this pack expansion.
SourceLocation getEllipsisLoc() const
Determine the location of the 'sizeof' keyword.
Expr * getIndexExpr() const
ArrayRef< Expr * > getExpressions() const
Return the trailing expressions, regardless of the expansion.
SourceLocation getRSquareLoc() const
Determine the location of the right parenthesis.
Expr * getPackIdExpression() const
ParenExpr - This represents a parenthesized expression, e.g.
SourceLocation getLParen() const
Get the location of the left parentheses '('.
const Expr * getSubExpr() const
bool isProducedByFoldExpansion() const
SourceLocation getRParen() const
Get the location of the right parentheses ')'.
ArrayRef< Expr * > exprs() const
unsigned getNumExprs() const
Return the number of expressions in this paren list.
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
[C99 6.4.2.2] - A predefined identifier such as func.
bool isTransparent() const
PredefinedIdentKind getIdentKind() const
SourceLocation getLocation() const
StringLiteral * getFunctionName()
PseudoObjectExpr - An expression which accesses a pseudo-object l-value.
semantics_iterator semantics_end()
unsigned getResultExprIndex() const
Return the index of the result-bearing expression into the semantics expressions, or PseudoObjectExpr...
semantics_iterator semantics_begin()
Expr *const * semantics_iterator
unsigned getNumSemanticExprs() const
Expr * getSyntacticForm()
Return the syntactic form of this expression, i.e.
Frontend produces RecoveryExprs on semantic errors that prevent creating other well-formed expression...
SourceLocation getEndLoc() const
SourceLocation getBeginLoc() const
C++2a [expr.prim.req]: A requires-expression provides a concise way to express requirements on templa...
SourceLocation getLParenLoc() const
SourceLocation getRParenLoc() const
SourceLocation getEndLoc() const LLVM_READONLY
RequiresExprBodyDecl * getBody() const
ArrayRef< concepts::Requirement * > getRequirements() const
ArrayRef< ParmVarDecl * > getLocalParameters() const
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
SourceLocation getReturnLoc() const
const VarDecl * getNRVOCandidate() const
Retrieve the variable that might be used for the named return value optimization.
CompoundStmt * getBlock() const
SourceLocation getExceptLoc() const
Expr * getFilterExpr() const
SourceLocation getFinallyLoc() const
CompoundStmt * getBlock() const
Represents a __leave statement.
SourceLocation getLeaveLoc() const
CompoundStmt * getTryBlock() const
SourceLocation getTryLoc() const
Stmt * getHandler() const
SYCLKernelCallStmt represents the transformation that is applied to the body of a function declared w...
CompoundStmt * getOriginalStmt()
OutlinedFunctionDecl * getOutlinedFunctionDecl()
Stmt * getKernelLaunchStmt()
SourceLocation getLocation() const
SourceLocation getLParenLocation() const
TypeSourceInfo * getTypeSourceInfo()
SourceLocation getRParenLocation() const
ShuffleVectorExpr - clang-specific builtin-in function __builtin_shufflevector.
SourceLocation getBuiltinLoc() const
unsigned getNumSubExprs() const
getNumSubExprs - Return the size of the SubExprs array.
SourceLocation getRParenLoc() const
Expr * getExpr(unsigned Index)
getExpr - Return the Expr at the specified index.
Represents an expression that computes the length of a parameter pack.
bool isPartiallySubstituted() const
Determine whether this represents a partially-substituted sizeof... expression, such as is produced f...
ArrayRef< TemplateArgument > getPartialArguments() const
Get.
unsigned getPackLength() const
Retrieve the length of the parameter pack.
Represents a function call to one of __builtin_LINE(), __builtin_COLUMN(), __builtin_FUNCTION(),...
SourceLocation getBeginLoc() const
const DeclContext * getParentContext() const
If the SourceLocExpr has been resolved return the subexpression representing the resolved value.
SourceLocation getEndLoc() const
SourceLocIdentKind getIdentKind() const
SourceLocation getEnd() const
SourceLocation getBegin() const
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
CompoundStmt * getSubStmt()
unsigned getTemplateDepth() const
SourceLocation getRParenLoc() const
SourceLocation getLParenLoc() const
StmtVisitor - This class implements a simple visitor for Stmt subclasses.
Stmt - This represents one statement.
LambdaExprBitfields LambdaExprBits
StmtClass getStmtClass() const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
TypeTraitExprBitfields TypeTraitExprBits
CXXNewExprBitfields CXXNewExprBits
ConstantExprBitfields ConstantExprBits
RequiresExprBitfields RequiresExprBits
CXXFoldExprBitfields CXXFoldExprBits
PackIndexingExprBitfields PackIndexingExprBits
NullStmtBitfields NullStmtBits
DependentScopeDeclRefExprBitfields DependentScopeDeclRefExprBits
StringLiteral - This represents a string literal expression, e.g.
SourceLocation getStrTokenLoc(unsigned TokNum) const
Get one of the string literal token.
unsigned getLength() const
StringLiteralKind getKind() const
StringRef getBytes() const
Allow access to clients that need the byte representation, such as ASTWriterStmt::VisitStringLiteral(...
unsigned getByteLength() const
unsigned getNumConcatenated() const
Get the number of string literal tokens that were concatenated in translation phase #6 to form this s...
unsigned getCharByteWidth() const
Represents a reference to a non-type template parameter that has been substituted with a template arg...
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
UnsignedOrNone getPackIndex() const
QualType getParameterType() const
Determine the substituted type of the template parameter.
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
SourceLocation getNameLoc() const
Expr * getReplacement() const
Represents a reference to a non-type template parameter pack that has been substituted with a non-tem...
TemplateArgument getArgumentPack() const
Retrieve the template argument pack containing the substituted template arguments.
SourceLocation getParameterPackLocation() const
Retrieve the location of the parameter pack name.
Decl * getAssociatedDecl() const
A template-like entity which owns the whole pattern being substituted.
unsigned getIndex() const
Returns the index of the replaced parameter in the associated declaration.
SourceLocation getKeywordLoc() const
SourceLocation getColonLoc() const
const SwitchCase * getNextSwitchCase() const
SwitchStmt - This represents a 'switch' stmt.
SourceLocation getSwitchLoc() const
SourceLocation getLParenLoc() const
bool isAllEnumCasesCovered() const
Returns true if the SwitchStmt is a switch of an enum value and all cases have been explicitly covere...
SourceLocation getRParenLoc() const
SwitchCase * getSwitchCaseList()
DeclStmt * getConditionVariableDeclStmt()
If this SwitchStmt has a condition variable, return the faux DeclStmt associated with the creation of...
Location wrapper for a TemplateArgument.
A type trait used in the implementation of various C++11 and Library TR1 trait templates.
TypeSourceInfo * getArg(unsigned I) const
Retrieve the Ith argument.
unsigned getNumArgs() const
Determine the number of arguments to this type trait.
const APValue & getAPValue() const
UnaryExprOrTypeTraitExpr - expression with either a type or (unevaluated) expression operand.
SourceLocation getRParenLoc() const
SourceLocation getOperatorLoc() const
bool isArgumentType() const
TypeSourceInfo * getArgumentTypeInfo() const
UnaryExprOrTypeTrait getKind() const
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
SourceLocation getOperatorLoc() const
getOperatorLoc - Return the location of the operator.
Expr * getSubExpr() const
bool hasStoredFPFeatures() const
Is FPFeatures in Trailing Storage?
FPOptionsOverride getStoredFPFeatures() const
Get FPFeatures from trailing storage.
bool canOverflow() const
Returns true if the unary operator can cause an overflow.
A reference to a name which we were able to look up during parsing but could not resolve to a specifi...
CXXRecordDecl * getNamingClass()
Gets the 'naming class' (in the sense of C++0x [class.access.base]p5) of the lookup.
bool requiresADL() const
True if this declaration should be extended by argument-dependent lookup.
Represents a C++ member access expression for which lookup produced a set of overloaded functions.
QualType getBaseType() const
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
SourceLocation getOperatorLoc() const
Retrieve the location of the '->' or '.' operator.
bool hasUnresolvedUsing() const
Determine whether the lookup results contain an unresolved using declaration.
Expr * getBase()
Retrieve the base object of this member expressions, e.g., the x in x.m.
bool isImplicitAccess() const
True if this is an implicit access, i.e., one in which the member being accessed was not written in t...
Expr * getKernelLaunchIdExpr()
CompoundStmt * getOriginalStmt()
A call to a literal operator (C++11 [over.literal]) written as a user-defined literal (C++11 [lit....
Represents a call to the builtin function __builtin_va_arg.
TypeSourceInfo * getWrittenTypeInfo() const
SourceLocation getBuiltinLoc() const
SourceLocation getRParenLoc() const
VarArgKind getVarargABI() const
const Expr * getSubExpr() const
WhileStmt - This represents a 'while' stmt.
SourceLocation getWhileLoc() const
SourceLocation getRParenLoc() const
DeclStmt * getConditionVariableDeclStmt()
If this WhileStmt has a condition variable, return the faux DeclStmt associated with the creation of ...
SourceLocation getLParenLoc() const
@ SS_ConstraintsNotSatisfied
StmtCode
Record codes for each kind of statement or expression.
@ STMT_OMP_SECTION_DIRECTIVE
@ STMT_OPENACC_COMBINED_CONSTRUCT
@ EXPR_DESIGNATED_INIT
A DesignatedInitExpr record.
@ EXPR_COMPOUND_LITERAL
A CompoundLiteralExpr record.
@ STMT_OMP_ASSUME_DIRECTIVE
@ STMT_OPENACC_HOST_DATA_CONSTRUCT
@ STMT_OMP_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE
@ EXPR_OBJC_IVAR_REF_EXPR
An ObjCIvarRefExpr record.
@ STMT_OMP_SCOPE_DIRECTIVE
@ STMT_OMP_PARALLEL_FOR_SIMD_DIRECTIVE
@ EXPR_MEMBER
A MemberExpr record.
@ STMT_OMP_TARGET_TEAMS_DIRECTIVE
@ EXPR_CXX_TEMPORARY_OBJECT
A CXXTemporaryObjectExpr record.
@ EXPR_CXX_UNRESOLVED_LOOKUP
@ EXPR_COMPOUND_ASSIGN_OPERATOR
A CompoundAssignOperator record.
@ EXPR_EXPR_WITH_CLEANUPS
@ EXPR_CXX_STATIC_CAST
A CXXStaticCastExpr record.
@ STMT_OMP_META_DIRECTIVE
@ EXPR_OBJC_STRING_LITERAL
An ObjCStringLiteral record.
@ EXPR_CXX_PROPERTY_REF_EXPR
@ EXPR_SYCL_UNIQUE_STABLE_NAME
@ STMT_OMP_TARGET_DATA_DIRECTIVE
@ STMT_OMP_BARRIER_DIRECTIVE
@ EXPR_VA_ARG
A VAArgExpr record.
@ STMT_OMP_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE
@ STMT_OPENACC_SHUTDOWN_CONSTRUCT
@ EXPR_OBJC_ISA
An ObjCIsa Expr record.
@ STMT_OMP_SINGLE_DIRECTIVE
@ STMT_OPENACC_EXIT_DATA_CONSTRUCT
@ EXPR_CXX_OPERATOR_CALL
A CXXOperatorCallExpr record.
@ STMT_OBJC_AT_TRY
An ObjCAtTryStmt record.
@ STMT_OMP_TARGET_EXIT_DATA_DIRECTIVE
@ EXPR_CXX_UNRESOLVED_CONSTRUCT
@ EXPR_FIXEDPOINT_LITERAL
@ STMT_DO
A DoStmt record.
@ STMT_OBJC_CATCH
An ObjCAtCatchStmt record.
@ STMT_OMP_TARGET_DIRECTIVE
@ STMT_IF
An IfStmt record.
@ EXPR_CXX_EXPRESSION_TRAIT
@ EXPR_STRING_LITERAL
A StringLiteral record.
@ EXPR_OBJC_AVAILABILITY_CHECK
An ObjCAvailabilityCheckExpr record.
@ STMT_OMP_PARALLEL_MASKED_TASKLOOP_DIRECTIVE
@ EXPR_PSEUDO_OBJECT
A PseudoObjectExpr record.
@ STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE
@ EXPR_IMPLICIT_CAST
An ImplicitCastExpr record.
@ STMT_OMP_FLUSH_DIRECTIVE
@ STMT_CAPTURED
A CapturedStmt record.
@ STMT_OMP_TARGET_PARALLEL_FOR_SIMD_DIRECTIVE
@ STMT_OMP_MASTER_TASKLOOP_DIRECTIVE
@ STMT_OMP_TILE_DIRECTIVE
@ STMT_OMP_CANCELLATION_POINT_DIRECTIVE
@ STMT_GCCASM
A GCC-style AsmStmt record.
@ EXPR_IMAGINARY_LITERAL
An ImaginaryLiteral record.
@ STMT_OMP_INTERCHANGE_DIRECTIVE
@ STMT_WHILE
A WhileStmt record.
@ EXPR_CONVERT_VECTOR
A ConvertVectorExpr record.
@ EXPR_OBJC_SUBSCRIPT_REF_EXPR
An ObjCSubscriptRefExpr record.
@ STMT_OPENACC_COMPUTE_CONSTRUCT
@ STMT_OMP_TASKWAIT_DIRECTIVE
@ STMT_OMP_TASKYIELD_DIRECTIVE
@ EXPR_STMT
A StmtExpr record.
@ STMT_OMP_PARALLEL_GENERIC_LOOP_DIRECTIVE
@ EXPR_CXX_REINTERPRET_CAST
A CXXReinterpretCastExpr record.
@ EXPR_DESIGNATED_INIT_UPDATE
A DesignatedInitUpdateExpr record.
@ STMT_OBJC_AT_SYNCHRONIZED
An ObjCAtSynchronizedStmt record.
@ STMT_OMP_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE
@ STMT_OMP_TASKLOOP_SIMD_DIRECTIVE
@ STMT_MS_DEPENDENT_EXISTS
@ EXPR_BUILTIN_BIT_CAST
A BuiltinBitCastExpr record.
@ EXPR_CXX_PROPERTY_SUBSCRIPT_EXPR
@ STMT_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE
@ EXPR_CXX_PSEUDO_DESTRUCTOR
@ STMT_OMP_MASKED_DIRECTIVE
@ STMT_SYCLKERNELCALL
A SYCLKernelCallStmt record.
@ STMT_OMP_TARGET_ENTER_DATA_DIRECTIVE
@ EXPR_CHARACTER_LITERAL
A CharacterLiteral record.
@ EXPR_OBJC_ENCODE
An ObjCEncodeExpr record.
@ STMT_OMP_PARALLEL_SECTIONS_DIRECTIVE
@ STMT_OMP_PARALLEL_FOR_DIRECTIVE
@ EXPR_CSTYLE_CAST
A CStyleCastExpr record.
@ STMT_OMP_PARALLEL_DIRECTIVE
@ EXPR_OBJC_BOXED_EXPRESSION
@ EXPR_OBJC_BOOL_LITERAL
An ObjCBoolLiteralExpr record.
@ EXPR_CXX_BIND_TEMPORARY
@ STMT_OMP_ATOMIC_DIRECTIVE
@ STMT_OPENACC_ATOMIC_CONSTRUCT
@ EXPR_EXT_VECTOR_ELEMENT
An ExtVectorElementExpr record.
@ STMT_OMP_TEAMS_GENERIC_LOOP_DIRECTIVE
@ STMT_OMP_CRITICAL_DIRECTIVE
@ EXPR_ATOMIC
An AtomicExpr record.
@ STMT_OPENACC_ENTER_DATA_CONSTRUCT
@ STMT_OMP_CANCEL_DIRECTIVE
@ EXPR_OFFSETOF
An OffsetOfExpr record.
@ STMT_RETURN
A ReturnStmt record.
@ STMT_OBJC_FOR_COLLECTION
An ObjCForCollectionStmt record.
@ STMT_OPENACC_CACHE_CONSTRUCT
@ STMT_OMP_TARGET_TEAMS_DISTRIBUTE_DIRECTIVE
@ EXPR_ARRAY_INIT_LOOP
An ArrayInitLoopExpr record.
@ STMT_OMP_PARALLEL_MASTER_TASKLOOP_DIRECTIVE
@ STMT_OMP_PARALLEL_MASKED_TASKLOOP_SIMD_DIRECTIVE
@ STMT_CONTINUE
A ContinueStmt record.
@ EXPR_PREDEFINED
A PredefinedExpr record.
@ EXPR_OPENACC_ASTERISK_SIZE
@ STMT_OMP_DEPOBJ_DIRECTIVE
@ STMT_OMP_ORDERED_STANDALONE_DIRECTIVE
@ EXPR_CXX_BOOL_LITERAL
A CXXBoolLiteralExpr record.
@ EXPR_PAREN_LIST
A ParenListExpr record.
@ EXPR_CXX_PAREN_LIST_INIT
A CXXParenListInitExpr record.
@ STMT_OMP_DISPATCH_DIRECTIVE
@ STMT_OMP_MASTER_TASKLOOP_SIMD_DIRECTIVE
@ STMT_OPENACC_DATA_CONSTRUCT
@ STMT_OMP_TASKLOOP_DIRECTIVE
@ STMT_COMPOUND
A CompoundStmt record.
@ STMT_OMP_CANONICAL_LOOP
@ STMT_FOR
A ForStmt record.
@ STMT_ATTRIBUTED
An AttributedStmt record.
@ STMT_OMP_PARALLEL_MASTER_DIRECTIVE
@ STMT_OPENACC_WAIT_CONSTRUCT
@ STMT_UNRESOLVED_SYCL_KERNEL_CALL
An UnresolvedSYCLKernelCallStmt record.
@ STMT_OMP_ORDERED_BLOCK_ASSOC_DIRECTIVE
@ STMT_OMP_TARGET_TEAMS_GENERIC_LOOP_DIRECTIVE
@ STMT_OMP_TEAMS_DIRECTIVE
@ STMT_OMP_TARGET_PARALLEL_DIRECTIVE
@ EXPR_CXX_REWRITTEN_BINARY_OPERATOR
A CXXRewrittenBinaryOperator record.
@ STMT_GOTO
A GotoStmt record.
@ EXPR_NO_INIT
An NoInitExpr record.
@ EXPR_OBJC_ARRAY_LITERAL
@ STMT_OMP_ERROR_DIRECTIVE
@ EXPR_OBJC_PROTOCOL_EXPR
An ObjCProtocolExpr record.
@ STMT_OMP_GENERIC_LOOP_DIRECTIVE
@ EXPR_ARRAY_INIT_INDEX
An ArrayInitIndexExpr record.
@ STMT_OMP_TASK_DIRECTIVE
@ STMT_OPENACC_INIT_CONSTRUCT
@ EXPR_CXX_CONSTRUCT
A CXXConstructExpr record.
@ STMT_OMP_PARALLEL_MASKED_DIRECTIVE
@ STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE
@ STMT_OPENACC_UPDATE_CONSTRUCT
@ STMT_OMP_PARALLEL_MASTER_TASKLOOP_SIMD_DIRECTIVE
@ EXPR_OBJC_DICTIONARY_LITERAL
@ STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE
@ EXPR_CXX_DYNAMIC_CAST
A CXXDynamicCastExpr record.
@ STMT_CXX_TRY
A CXXTryStmt record.
@ EXPR_GENERIC_SELECTION
A GenericSelectionExpr record.
@ STMT_OMP_TARGET_SIMD_DIRECTIVE
@ EXPR_OBJC_INDIRECT_COPY_RESTORE
An ObjCIndirectCopyRestoreExpr record.
@ EXPR_CXX_INHERITED_CTOR_INIT
A CXXInheritedCtorInitExpr record.
@ EXPR_CALL
A CallExpr record.
@ EXPR_GNU_NULL
A GNUNullExpr record.
@ EXPR_BINARY_CONDITIONAL_OPERATOR
@ EXPR_OBJC_PROPERTY_REF_EXPR
An ObjCPropertyRefExpr record.
@ STMT_OMP_TARGET_PARALLEL_FOR_DIRECTIVE
@ STMT_OMP_FOR_SIMD_DIRECTIVE
@ STMT_OMP_MASKED_TASKLOOP_DIRECTIVE
@ EXPR_CXX_CONST_CAST
A CXXConstCastExpr record.
@ STMT_OMP_SCAN_DIRECTIVE
@ STMT_REF_PTR
A reference to a previously [de]serialized Stmt record.
@ EXPR_OBJC_MESSAGE_EXPR
An ObjCMessageExpr record.
@ EXPR_CXX_DEPENDENT_SCOPE_DECL_REF
@ STMT_OMP_FUSE_DIRECTIVE
@ STMT_OMP_TEAMS_DISTRIBUTE_DIRECTIVE
@ STMT_CXX_EXPANSION_INSTANTIATION
A CXXExpansionInstantiationStmt.
@ STMT_CASE
A CaseStmt record.
@ EXPR_CONSTANT
A constant expression context.
@ EXPR_FUNCTION_PARM_PACK
@ STMT_STOP
A marker record that indicates that we are at the end of an expression.
@ STMT_CXX_EXPANSION_PATTERN
A CXXExpansionPatternStmt.
@ EXPR_CXX_NULL_PTR_LITERAL
@ STMT_OMP_TARGET_UPDATE_DIRECTIVE
@ STMT_MSASM
A MS-style AsmStmt record.
@ STMT_OMP_DISTRIBUTE_DIRECTIVE
@ EXPR_CONDITIONAL_OPERATOR
A ConditionOperator record.
@ EXPR_BINARY_OPERATOR
A BinaryOperator record.
@ EXPR_CXX_STD_INITIALIZER_LIST
A CXXStdInitializerListExpr record.
@ STMT_OMP_TASKGROUP_DIRECTIVE
@ STMT_OMP_REVERSE_DIRECTIVE
@ EXPR_SHUFFLE_VECTOR
A ShuffleVectorExpr record.
@ STMT_OBJC_FINALLY
An ObjCAtFinallyStmt record.
@ EXPR_OBJC_SELECTOR_EXPR
An ObjCSelectorExpr record.
@ EXPR_FLOATING_LITERAL
A FloatingLiteral record.
@ STMT_OMP_MASTER_DIRECTIVE
@ EXPR_CXX_DEPENDENT_SCOPE_MEMBER
@ STMT_NULL_PTR
A NULL expression.
@ STMP_OMP_STRIPE_DIRECTIVE
@ STMT_DEFAULT
A DefaultStmt record.
@ EXPR_CHOOSE
A ChooseExpr record.
@ STMT_OMP_SPLIT_DIRECTIVE
@ STMT_OMP_UNROLL_DIRECTIVE
@ STMT_NULL
A NullStmt record.
@ STMT_OMP_SIMD_DIRECTIVE
@ EXPR_DECL_REF
A DeclRefExpr record.
@ STMT_OPENACC_LOOP_CONSTRUCT
@ EXPR_SUBST_NON_TYPE_TEMPLATE_PARM
@ EXPR_INIT_LIST
An InitListExpr record.
@ EXPR_IMPLICIT_VALUE_INIT
An ImplicitValueInitExpr record.
@ STMT_OBJC_AUTORELEASE_POOL
An ObjCAutoreleasePoolStmt record.
@ STMT_OPENACC_SET_CONSTRUCT
@ EXPR_RECOVERY
A RecoveryExpr record.
@ EXPR_PAREN
A ParenExpr record.
@ STMT_OMP_TARGET_PARALLEL_GENERIC_LOOP_DIRECTIVE
@ EXPR_DEPENDENT_TEMPLATE_ID
@ STMT_LABEL
A LabelStmt record.
@ EXPR_CXX_FUNCTIONAL_CAST
A CXXFunctionalCastExpr record.
@ EXPR_USER_DEFINED_LITERAL
A UserDefinedLiteral record.
@ EXPR_INTEGER_LITERAL
An IntegerLiteral record.
@ EXPR_SOURCE_LOC
A SourceLocExpr record.
@ EXPR_MATERIALIZE_TEMPORARY
@ EXPR_CXX_MEMBER_CALL
A CXXMemberCallExpr record.
@ STMT_OMP_INTEROP_DIRECTIVE
@ STMT_SWITCH
A SwitchStmt record.
@ STMT_DECL
A DeclStmt record.
@ EXPR_CXX_UNRESOLVED_MEMBER
@ STMT_OMP_SECTIONS_DIRECTIVE
@ EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK
@ EXPR_CXX_SCALAR_VALUE_INIT
@ STMT_OMP_MASKED_TASKLOOP_SIMD_DIRECTIVE
@ STMT_OMP_DISTRIBUTE_SIMD_DIRECTIVE
@ EXPR_SIZEOF_ALIGN_OF
A SizefAlignOfExpr record.
@ STMT_BREAK
A BreakStmt record.
@ EXPR_CXX_EXPANSION_SELECT
@ STMT_OBJC_AT_THROW
An ObjCAtThrowStmt record.
@ EXPR_ADDR_LABEL
An AddrLabelExpr record.
@ EXPR_MATRIX_ELEMENT
A MatrixElementExpr record.
@ STMT_CXX_FOR_RANGE
A CXXForRangeStmt record.
@ EXPR_CXX_ADDRSPACE_CAST
A CXXAddrspaceCastExpr record.
@ EXPR_ARRAY_SUBSCRIPT
An ArraySubscriptExpr record.
@ EXPR_CONCEPT_SPECIALIZATION
@ EXPR_UNARY_OPERATOR
A UnaryOperator record.
@ STMT_CXX_CATCH
A CXXCatchStmt record.
@ EXPR_BUILTIN_PP_EMBED
A EmbedExpr record.
@ STMT_INDIRECT_GOTO
An IndirectGotoStmt record.
@ DESIG_ARRAY_RANGE
GNU array range designator.
@ DESIG_FIELD_NAME
Field designator where only the field name is known.
@ DESIG_FIELD_DECL
Field designator where the field has been resolved to a declaration.
@ DESIG_ARRAY
Array designator.
Top level wrappers for InstallAPI frontend operations.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
bool isa(CodeGen::Address addr)
@ OK_Ordinary
An ordinary object is located at an address in memory.
OpenACCComputeConstruct(OpenACCDirectiveKind K, SourceLocation Start, SourceLocation DirectiveLoc, SourceLocation End, ArrayRef< const OpenACCClause * > Clauses, Stmt *StructuredBlock)
bool isAlignedAllocation(AlignedAllocationMode Mode)
bool isTypeAwareAllocation(TypeAwareAllocationMode Mode)
@ VK_PRValue
A pr-value expression (in the C++11 taxonomy) produces a temporary value.
U cast(CodeGen::Address addr)
The result of a constraint satisfaction check, containing the necessary information to diagnose an un...
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
SourceLocation LAngleLoc
The source location of the left angle bracket ('<').
unsigned NumTemplateArgs
The number of template arguments in TemplateArgs.
SourceLocation RAngleLoc
The source location of the right angle bracket ('>').
SourceLocation TemplateKWLoc
The source location of the template keyword; this is used as part of the representation of qualified ...
AlignedAllocationMode PassAlignment
TypeAwareAllocationMode PassTypeIdentity
Expr * CounterUpdate
Updater for the internal counter: ++CounterVD;.
Expr * Upper
Normalized upper bound.
Expr * Update
Update expression for the originally specified iteration variable, calculated as VD = Begin + Counter...
VarDecl * CounterVD
Internal normalized counter.
Expr * Value
The value of the dictionary element.
SourceLocation EllipsisLoc
The location of the ellipsis, if this is a pack expansion.
UnsignedOrNone NumExpansions
The number of elements this pack expansion will expand to, if this is a pack expansion and is known.
Expr * Key
The key for the dictionary element.
constexpr underlying_type toInternalRepresentation() const
StringRef SubstitutedEntity