47#include "llvm/ADT/ArrayRef.h"
48#include "llvm/ADT/STLExtras.h"
49#include "llvm/ADT/StringExtras.h"
50#include "llvm/ADT/StringRef.h"
51#include "llvm/Support/Compiler.h"
52#include "llvm/Support/ErrorHandling.h"
53#include "llvm/Support/raw_ostream.h"
66 class StmtPrinter :
public StmtVisitor<StmtPrinter> {
69 PrinterHelper* Helper;
70 PrintingPolicy Policy;
72 const ASTContext *Context;
75 StmtPrinter(raw_ostream &os, PrinterHelper *helper,
76 const PrintingPolicy &Policy,
unsigned Indentation = 0,
77 StringRef NL =
"\n",
const ASTContext *Context =
nullptr)
78 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy),
79 NL(NL), Context(Context) {}
81 void PrintStmt(Stmt *S) { PrintStmt(S, Policy.Indentation); }
83 void PrintStmt(Stmt *S,
int SubIndent) {
84 IndentLevel += SubIndent;
85 if (isa_and_nonnull<Expr>(S)) {
93 Indent() <<
"<<<NULL STATEMENT>>>" << NL;
95 IndentLevel -= SubIndent;
98 void PrintInitStmt(Stmt *S,
unsigned PrefixWidth) {
100 IndentLevel += (PrefixWidth + 1) / 2;
101 if (
auto *DS = dyn_cast<DeclStmt>(S))
102 PrintRawDeclStmt(DS);
106 IndentLevel -= (PrefixWidth + 1) / 2;
109 void PrintControlledStmt(Stmt *S) {
110 if (
auto *CS = dyn_cast<CompoundStmt>(S)) {
112 PrintRawCompoundStmt(CS);
121 void PrintRawDecl(Decl *D);
122 void PrintRawDeclStmt(
const DeclStmt *S);
123 void PrintRawIfStmt(IfStmt *
If);
124 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
125 void PrintCallArgs(CallExpr *E);
126 void PrintRawSEHExceptHandler(SEHExceptStmt *S);
127 void PrintRawSEHFinallyStmt(SEHFinallyStmt *S);
128 void PrintOMPExecutableDirective(OMPExecutableDirective *S,
129 bool ForceNoStmt =
false);
131 void PrintOpenACCClauseList(OpenACCConstructStmt *S);
132 void PrintOpenACCConstruct(OpenACCConstructStmt *S);
134 void PrintExpr(Expr *E) {
141 raw_ostream &
Indent(
int Delta = 0) {
142 for (
int i = 0, e = IndentLevel+Delta; i < e; ++i)
147 void Visit(Stmt* S) {
148 if (Helper && Helper->handledStmt(S,OS))
150 else StmtVisitor<StmtPrinter>::Visit(S);
153 [[maybe_unused]]
void VisitStmt(Stmt *Node) {
154 Indent() <<
"<<unknown stmt type>>" << NL;
157 [[maybe_unused]]
void VisitExpr(Expr *Node) {
158 OS <<
"<<unknown expr type>>";
161 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
163 void VisitBinComma(BinaryOperator *Node);
165#define ABSTRACT_STMT(CLASS)
166#define STMT(CLASS, PARENT) \
167 void Visit##CLASS(CLASS *Node);
168#include "clang/AST/StmtNodes.inc"
179void StmtPrinter::PrintRawCompoundStmt(
CompoundStmt *Node) {
180 assert(Node &&
"Compound statement cannot be null");
182 PrintFPPragmas(Node);
183 for (
auto *I : Node->
body())
193 bool FEnvAccess =
false;
194 if (FPO.hasAllowFEnvAccessOverride()) {
195 FEnvAccess = FPO.getAllowFEnvAccessOverride();
196 Indent() <<
"#pragma STDC FENV_ACCESS " << (FEnvAccess ?
"ON" :
"OFF")
199 if (FPO.hasSpecifiedExceptionModeOverride()) {
200 LangOptions::FPExceptionModeKind EM =
201 FPO.getSpecifiedExceptionModeOverride();
202 if (!FEnvAccess || EM != LangOptions::FPE_Strict) {
203 Indent() <<
"#pragma clang fp exceptions(";
204 switch (FPO.getSpecifiedExceptionModeOverride()) {
207 case LangOptions::FPE_Ignore:
210 case LangOptions::FPE_MayTrap:
213 case LangOptions::FPE_Strict:
220 if (FPO.hasConstRoundingModeOverride()) {
221 LangOptions::RoundingMode RM = FPO.getConstRoundingModeOverride();
222 Indent() <<
"#pragma STDC FENV_ROUND ";
224 case llvm::RoundingMode::TowardZero:
225 OS <<
"FE_TOWARDZERO";
227 case llvm::RoundingMode::NearestTiesToEven:
228 OS <<
"FE_TONEAREST";
230 case llvm::RoundingMode::TowardPositive:
233 case llvm::RoundingMode::TowardNegative:
236 case llvm::RoundingMode::NearestTiesToAway:
237 OS <<
"FE_TONEARESTFROMZERO";
239 case llvm::RoundingMode::Dynamic:
243 llvm_unreachable(
"Invalid rounding mode");
249void StmtPrinter::PrintRawDecl(Decl *D) {
253void StmtPrinter::PrintRawDeclStmt(
const DeclStmt *S) {
254 SmallVector<Decl *, 2> Decls(S->
decls());
258void StmtPrinter::VisitNullStmt(NullStmt *Node) {
262void StmtPrinter::VisitDeclStmt(DeclStmt *Node) {
264 PrintRawDeclStmt(Node);
273void StmtPrinter::VisitCompoundStmt(
CompoundStmt *Node) {
275 PrintRawCompoundStmt(Node);
279void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
281 PrintExpr(Node->
getLHS());
284 PrintExpr(Node->
getRHS());
291void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) {
292 Indent(-1) <<
"default:" << NL;
296void StmtPrinter::VisitLabelStmt(LabelStmt *Node) {
301void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) {
302 ArrayRef<const Attr *> Attrs = Node->
getAttrs();
303 for (
const auto *Attr : Attrs) {
304 Attr->printPretty(OS, Policy);
305 if (Attr != Attrs.back())
312void StmtPrinter::PrintRawIfStmt(IfStmt *
If) {
313 if (
If->isConsteval()) {
315 if (
If->isNegatedConsteval())
319 PrintStmt(
If->getThen());
320 if (Stmt *Else =
If->getElse()) {
331 PrintInitStmt(
If->getInit(), 4);
332 if (
const DeclStmt *DS =
If->getConditionVariableDeclStmt())
333 PrintRawDeclStmt(DS);
335 PrintExpr(
If->getCond());
338 if (
auto *CS = dyn_cast<CompoundStmt>(
If->getThen())) {
340 PrintRawCompoundStmt(CS);
341 OS << (
If->getElse() ?
" " : NL);
344 PrintStmt(
If->getThen());
348 if (Stmt *Else =
If->getElse()) {
351 if (
auto *CS = dyn_cast<CompoundStmt>(Else)) {
353 PrintRawCompoundStmt(CS);
355 }
else if (
auto *ElseIf = dyn_cast<IfStmt>(Else)) {
357 PrintRawIfStmt(ElseIf);
360 PrintStmt(
If->getElse());
365void StmtPrinter::VisitIfStmt(IfStmt *
If) {
370void StmtPrinter::VisitSwitchStmt(SwitchStmt *Node) {
373 PrintInitStmt(Node->
getInit(), 8);
375 PrintRawDeclStmt(DS);
379 PrintControlledStmt(Node->
getBody());
382void StmtPrinter::VisitWhileStmt(WhileStmt *Node) {
385 PrintRawDeclStmt(DS);
392void StmtPrinter::VisitDoStmt(DoStmt *Node) {
394 if (
auto *CS = dyn_cast<CompoundStmt>(Node->
getBody())) {
395 PrintRawCompoundStmt(CS);
408void StmtPrinter::VisitForStmt(ForStmt *Node) {
411 PrintInitStmt(Node->
getInit(), 5);
415 PrintRawDeclStmt(DS);
421 PrintExpr(Node->
getInc());
424 PrintControlledStmt(Node->
getBody());
427void StmtPrinter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) {
429 if (
auto *DS = dyn_cast<DeclStmt>(Node->
getElement()))
430 PrintRawDeclStmt(DS);
436 PrintControlledStmt(Node->
getBody());
439void StmtPrinter::VisitCXXForRangeStmt(CXXForRangeStmt *Node) {
442 PrintInitStmt(Node->
getInit(), 5);
443 PrintingPolicy SubPolicy(Policy);
444 SubPolicy.SuppressInitializers =
true;
449 PrintControlledStmt(Node->
getBody());
452void StmtPrinter::VisitCXXExpansionStmtPattern(CXXExpansionStmtPattern *Node) {
453 OS <<
"template for (";
455 PrintInitStmt(Node->
getInit(), 14);
456 PrintingPolicy SubPolicy(Policy);
457 SubPolicy.SuppressInitializers =
true;
471 PrintControlledStmt(Node->
getBody());
474void StmtPrinter::VisitCXXExpansionStmtInstantiation(
475 CXXExpansionStmtInstantiation *) {
476 llvm_unreachable(
"should never be printed");
479void StmtPrinter::VisitCXXExpansionSelectExpr(CXXExpansionSelectExpr *Node) {
483void StmtPrinter::VisitMSDependentExistsStmt(MSDependentExistsStmt *Node) {
486 OS <<
"__if_exists (";
488 OS <<
"__if_not_exists (";
496void StmtPrinter::VisitGotoStmt(GotoStmt *Node) {
501void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) {
508void StmtPrinter::VisitContinueStmt(ContinueStmt *Node) {
518void StmtPrinter::VisitBreakStmt(BreakStmt *Node) {
527void StmtPrinter::VisitDeferStmt(DeferStmt *Node) {
529 PrintControlledStmt(Node->
getBody());
532void StmtPrinter::VisitReturnStmt(ReturnStmt *Node) {
542void StmtPrinter::VisitGCCAsmStmt(GCCAsmStmt *Node) {
559 for (
unsigned i = 0, e = Node->
getNumOutputs(); i != e; ++i) {
580 for (
unsigned i = 0, e = Node->
getNumInputs(); i != e; ++i) {
611 for (
unsigned i = 0, e = Node->
getNumLabels(); i != e; ++i) {
621void StmtPrinter::VisitMSAsmStmt(MSAsmStmt *Node) {
631void StmtPrinter::VisitCapturedStmt(CapturedStmt *Node) {
635void StmtPrinter::VisitSYCLKernelCallStmt(SYCLKernelCallStmt *Node) {
639void StmtPrinter::VisitObjCAtTryStmt(ObjCAtTryStmt *Node) {
641 if (
auto *TS = dyn_cast<CompoundStmt>(Node->
getTryBody())) {
642 PrintRawCompoundStmt(TS);
646 for (ObjCAtCatchStmt *catchStmt : Node->
catch_stmts()) {
648 if (Decl *DS = catchStmt->getCatchParamDecl())
651 if (
auto *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody())) {
652 PrintRawCompoundStmt(CS);
659 if (
auto *CS = dyn_cast<CompoundStmt>(FS->getFinallyBody())) {
660 PrintRawCompoundStmt(CS);
666void StmtPrinter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) {
669void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) {
670 Indent() <<
"@catch (...) { /* todo */ } " << NL;
673void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) {
682void StmtPrinter::VisitObjCAvailabilityCheckExpr(
683 ObjCAvailabilityCheckExpr *Node) {
684 OS <<
"@available(...)";
687void StmtPrinter::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) {
688 Indent() <<
"@synchronized (";
695void StmtPrinter::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *Node) {
696 Indent() <<
"@autoreleasepool";
701void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) {
704 PrintRawDecl(ExDecl);
711void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) {
713 PrintRawCXXCatchStmt(Node);
717void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) {
727void StmtPrinter::VisitSEHTryStmt(SEHTryStmt *Node) {
733 PrintRawSEHExceptHandler(E);
735 assert(F &&
"Must have a finally block...");
736 PrintRawSEHFinallyStmt(F);
741void StmtPrinter::PrintRawSEHFinallyStmt(SEHFinallyStmt *Node) {
743 PrintRawCompoundStmt(Node->
getBlock());
747void StmtPrinter::PrintRawSEHExceptHandler(SEHExceptStmt *Node) {
751 PrintRawCompoundStmt(Node->
getBlock());
755void StmtPrinter::VisitSEHExceptStmt(SEHExceptStmt *Node) {
757 PrintRawSEHExceptHandler(Node);
761void StmtPrinter::VisitSEHFinallyStmt(SEHFinallyStmt *Node) {
763 PrintRawSEHFinallyStmt(Node);
767void StmtPrinter::VisitSEHLeaveStmt(SEHLeaveStmt *Node) {
776void StmtPrinter::VisitOMPCanonicalLoop(OMPCanonicalLoop *Node) {
777 PrintStmt(Node->getLoopStmt());
780void StmtPrinter::PrintOMPExecutableDirective(OMPExecutableDirective *S,
782 llvm::omp::Version OpenMPVersion =
784 : llvm::omp::FallbackVersion;
785 OMPClausePrinter Printer(OS, Policy, OpenMPVersion);
786 ArrayRef<OMPClause *> Clauses = S->clauses();
787 for (
auto *Clause : Clauses)
788 if (Clause && !Clause->isImplicit()) {
790 Printer.Visit(Clause);
793 if (!ForceNoStmt && S->hasAssociatedStmt())
794 PrintStmt(S->getRawStmt());
797void StmtPrinter::VisitOMPMetaDirective(OMPMetaDirective *Node) {
798 Indent() <<
"#pragma omp metadirective";
799 PrintOMPExecutableDirective(Node);
802void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) {
803 Indent() <<
"#pragma omp parallel";
804 PrintOMPExecutableDirective(Node);
807void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) {
808 Indent() <<
"#pragma omp simd";
809 PrintOMPExecutableDirective(Node);
812void StmtPrinter::VisitOMPTileDirective(OMPTileDirective *Node) {
813 Indent() <<
"#pragma omp tile";
814 PrintOMPExecutableDirective(Node);
817void StmtPrinter::VisitOMPStripeDirective(OMPStripeDirective *Node) {
818 Indent() <<
"#pragma omp stripe";
819 PrintOMPExecutableDirective(Node);
822void StmtPrinter::VisitOMPUnrollDirective(OMPUnrollDirective *Node) {
823 Indent() <<
"#pragma omp unroll";
824 PrintOMPExecutableDirective(Node);
827void StmtPrinter::VisitOMPReverseDirective(OMPReverseDirective *Node) {
828 Indent() <<
"#pragma omp reverse";
829 PrintOMPExecutableDirective(Node);
832void StmtPrinter::VisitOMPInterchangeDirective(OMPInterchangeDirective *Node) {
833 Indent() <<
"#pragma omp interchange";
834 PrintOMPExecutableDirective(Node);
837void StmtPrinter::VisitOMPSplitDirective(OMPSplitDirective *Node) {
838 Indent() <<
"#pragma omp split";
839 PrintOMPExecutableDirective(Node);
842void StmtPrinter::VisitOMPFuseDirective(OMPFuseDirective *Node) {
843 Indent() <<
"#pragma omp fuse";
844 PrintOMPExecutableDirective(Node);
847void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) {
848 Indent() <<
"#pragma omp for";
849 PrintOMPExecutableDirective(Node);
852void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) {
853 Indent() <<
"#pragma omp for simd";
854 PrintOMPExecutableDirective(Node);
857void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) {
858 Indent() <<
"#pragma omp sections";
859 PrintOMPExecutableDirective(Node);
862void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) {
863 Indent() <<
"#pragma omp section";
864 PrintOMPExecutableDirective(Node);
867void StmtPrinter::VisitOMPScopeDirective(OMPScopeDirective *Node) {
868 Indent() <<
"#pragma omp scope";
869 PrintOMPExecutableDirective(Node);
872void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) {
873 Indent() <<
"#pragma omp single";
874 PrintOMPExecutableDirective(Node);
877void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) {
878 Indent() <<
"#pragma omp master";
879 PrintOMPExecutableDirective(Node);
882void StmtPrinter::VisitOMPCriticalDirective(OMPCriticalDirective *Node) {
883 Indent() <<
"#pragma omp critical";
889 PrintOMPExecutableDirective(Node);
892void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) {
893 Indent() <<
"#pragma omp parallel for";
894 PrintOMPExecutableDirective(Node);
897void StmtPrinter::VisitOMPParallelForSimdDirective(
898 OMPParallelForSimdDirective *Node) {
899 Indent() <<
"#pragma omp parallel for simd";
900 PrintOMPExecutableDirective(Node);
903void StmtPrinter::VisitOMPParallelMasterDirective(
904 OMPParallelMasterDirective *Node) {
905 Indent() <<
"#pragma omp parallel master";
906 PrintOMPExecutableDirective(Node);
909void StmtPrinter::VisitOMPParallelMaskedDirective(
910 OMPParallelMaskedDirective *Node) {
911 Indent() <<
"#pragma omp parallel masked";
912 PrintOMPExecutableDirective(Node);
915void StmtPrinter::VisitOMPParallelSectionsDirective(
916 OMPParallelSectionsDirective *Node) {
917 Indent() <<
"#pragma omp parallel sections";
918 PrintOMPExecutableDirective(Node);
921void StmtPrinter::VisitOMPTaskDirective(OMPTaskDirective *Node) {
922 Indent() <<
"#pragma omp task";
923 PrintOMPExecutableDirective(Node);
926void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) {
927 Indent() <<
"#pragma omp taskyield";
928 PrintOMPExecutableDirective(Node);
931void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) {
932 Indent() <<
"#pragma omp barrier";
933 PrintOMPExecutableDirective(Node);
936void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) {
937 Indent() <<
"#pragma omp taskwait";
938 PrintOMPExecutableDirective(Node);
941void StmtPrinter::VisitOMPAssumeDirective(OMPAssumeDirective *Node) {
942 Indent() <<
"#pragma omp assume";
943 PrintOMPExecutableDirective(Node);
946void StmtPrinter::VisitOMPErrorDirective(OMPErrorDirective *Node) {
947 Indent() <<
"#pragma omp error";
948 PrintOMPExecutableDirective(Node);
951void StmtPrinter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *Node) {
952 Indent() <<
"#pragma omp taskgroup";
953 PrintOMPExecutableDirective(Node);
956void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) {
957 Indent() <<
"#pragma omp flush";
958 PrintOMPExecutableDirective(Node);
961void StmtPrinter::VisitOMPDepobjDirective(OMPDepobjDirective *Node) {
962 Indent() <<
"#pragma omp depobj";
963 PrintOMPExecutableDirective(Node);
966void StmtPrinter::VisitOMPScanDirective(OMPScanDirective *Node) {
967 Indent() <<
"#pragma omp scan";
968 PrintOMPExecutableDirective(Node);
971void StmtPrinter::VisitOMPOrderedStandaloneDirective(
972 OMPOrderedStandaloneDirective *Node) {
973 Indent() <<
"#pragma omp ordered";
974 PrintOMPExecutableDirective(Node,
true);
977void StmtPrinter::VisitOMPOrderedBlockAssocDirective(
978 OMPOrderedBlockAssocDirective *Node) {
979 Indent() <<
"#pragma omp ordered";
980 PrintOMPExecutableDirective(Node);
983void StmtPrinter::VisitOMPAtomicDirective(OMPAtomicDirective *Node) {
984 Indent() <<
"#pragma omp atomic";
985 PrintOMPExecutableDirective(Node);
988void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) {
989 Indent() <<
"#pragma omp target";
990 PrintOMPExecutableDirective(Node);
993void StmtPrinter::VisitOMPTargetDataDirective(OMPTargetDataDirective *Node) {
994 Indent() <<
"#pragma omp target data";
995 PrintOMPExecutableDirective(Node);
998void StmtPrinter::VisitOMPTargetEnterDataDirective(
999 OMPTargetEnterDataDirective *Node) {
1000 Indent() <<
"#pragma omp target enter data";
1001 PrintOMPExecutableDirective(Node,
true);
1004void StmtPrinter::VisitOMPTargetExitDataDirective(
1005 OMPTargetExitDataDirective *Node) {
1006 Indent() <<
"#pragma omp target exit data";
1007 PrintOMPExecutableDirective(Node,
true);
1010void StmtPrinter::VisitOMPTargetParallelDirective(
1011 OMPTargetParallelDirective *Node) {
1012 Indent() <<
"#pragma omp target parallel";
1013 PrintOMPExecutableDirective(Node);
1016void StmtPrinter::VisitOMPTargetParallelForDirective(
1017 OMPTargetParallelForDirective *Node) {
1018 Indent() <<
"#pragma omp target parallel for";
1019 PrintOMPExecutableDirective(Node);
1022void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) {
1023 Indent() <<
"#pragma omp teams";
1024 PrintOMPExecutableDirective(Node);
1027void StmtPrinter::VisitOMPCancellationPointDirective(
1028 OMPCancellationPointDirective *Node) {
1029 llvm::omp::Version OpenMPVersion =
1031 : llvm::omp::FallbackVersion;
1032 Indent() <<
"#pragma omp cancellation point "
1034 PrintOMPExecutableDirective(Node);
1037void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) {
1038 llvm::omp::Version OpenMPVersion =
1040 : llvm::omp::FallbackVersion;
1041 Indent() <<
"#pragma omp cancel "
1043 PrintOMPExecutableDirective(Node);
1046void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) {
1047 Indent() <<
"#pragma omp taskloop";
1048 PrintOMPExecutableDirective(Node);
1051void StmtPrinter::VisitOMPTaskLoopSimdDirective(
1052 OMPTaskLoopSimdDirective *Node) {
1053 Indent() <<
"#pragma omp taskloop simd";
1054 PrintOMPExecutableDirective(Node);
1057void StmtPrinter::VisitOMPMasterTaskLoopDirective(
1058 OMPMasterTaskLoopDirective *Node) {
1059 Indent() <<
"#pragma omp master taskloop";
1060 PrintOMPExecutableDirective(Node);
1063void StmtPrinter::VisitOMPMaskedTaskLoopDirective(
1064 OMPMaskedTaskLoopDirective *Node) {
1065 Indent() <<
"#pragma omp masked taskloop";
1066 PrintOMPExecutableDirective(Node);
1069void StmtPrinter::VisitOMPMasterTaskLoopSimdDirective(
1070 OMPMasterTaskLoopSimdDirective *Node) {
1071 Indent() <<
"#pragma omp master taskloop simd";
1072 PrintOMPExecutableDirective(Node);
1075void StmtPrinter::VisitOMPMaskedTaskLoopSimdDirective(
1076 OMPMaskedTaskLoopSimdDirective *Node) {
1077 Indent() <<
"#pragma omp masked taskloop simd";
1078 PrintOMPExecutableDirective(Node);
1081void StmtPrinter::VisitOMPParallelMasterTaskLoopDirective(
1082 OMPParallelMasterTaskLoopDirective *Node) {
1083 Indent() <<
"#pragma omp parallel master taskloop";
1084 PrintOMPExecutableDirective(Node);
1087void StmtPrinter::VisitOMPParallelMaskedTaskLoopDirective(
1088 OMPParallelMaskedTaskLoopDirective *Node) {
1089 Indent() <<
"#pragma omp parallel masked taskloop";
1090 PrintOMPExecutableDirective(Node);
1093void StmtPrinter::VisitOMPParallelMasterTaskLoopSimdDirective(
1094 OMPParallelMasterTaskLoopSimdDirective *Node) {
1095 Indent() <<
"#pragma omp parallel master taskloop simd";
1096 PrintOMPExecutableDirective(Node);
1099void StmtPrinter::VisitOMPParallelMaskedTaskLoopSimdDirective(
1100 OMPParallelMaskedTaskLoopSimdDirective *Node) {
1101 Indent() <<
"#pragma omp parallel masked taskloop simd";
1102 PrintOMPExecutableDirective(Node);
1105void StmtPrinter::VisitOMPDistributeDirective(OMPDistributeDirective *Node) {
1106 Indent() <<
"#pragma omp distribute";
1107 PrintOMPExecutableDirective(Node);
1110void StmtPrinter::VisitOMPTargetUpdateDirective(
1111 OMPTargetUpdateDirective *Node) {
1112 Indent() <<
"#pragma omp target update";
1113 PrintOMPExecutableDirective(Node,
true);
1116void StmtPrinter::VisitOMPDistributeParallelForDirective(
1117 OMPDistributeParallelForDirective *Node) {
1118 Indent() <<
"#pragma omp distribute parallel for";
1119 PrintOMPExecutableDirective(Node);
1122void StmtPrinter::VisitOMPDistributeParallelForSimdDirective(
1123 OMPDistributeParallelForSimdDirective *Node) {
1124 Indent() <<
"#pragma omp distribute parallel for simd";
1125 PrintOMPExecutableDirective(Node);
1128void StmtPrinter::VisitOMPDistributeSimdDirective(
1129 OMPDistributeSimdDirective *Node) {
1130 Indent() <<
"#pragma omp distribute simd";
1131 PrintOMPExecutableDirective(Node);
1134void StmtPrinter::VisitOMPTargetParallelForSimdDirective(
1135 OMPTargetParallelForSimdDirective *Node) {
1136 Indent() <<
"#pragma omp target parallel for simd";
1137 PrintOMPExecutableDirective(Node);
1140void StmtPrinter::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *Node) {
1141 Indent() <<
"#pragma omp target simd";
1142 PrintOMPExecutableDirective(Node);
1145void StmtPrinter::VisitOMPTeamsDistributeDirective(
1146 OMPTeamsDistributeDirective *Node) {
1147 Indent() <<
"#pragma omp teams distribute";
1148 PrintOMPExecutableDirective(Node);
1151void StmtPrinter::VisitOMPTeamsDistributeSimdDirective(
1152 OMPTeamsDistributeSimdDirective *Node) {
1153 Indent() <<
"#pragma omp teams distribute simd";
1154 PrintOMPExecutableDirective(Node);
1157void StmtPrinter::VisitOMPTeamsDistributeParallelForSimdDirective(
1158 OMPTeamsDistributeParallelForSimdDirective *Node) {
1159 Indent() <<
"#pragma omp teams distribute parallel for simd";
1160 PrintOMPExecutableDirective(Node);
1163void StmtPrinter::VisitOMPTeamsDistributeParallelForDirective(
1164 OMPTeamsDistributeParallelForDirective *Node) {
1165 Indent() <<
"#pragma omp teams distribute parallel for";
1166 PrintOMPExecutableDirective(Node);
1169void StmtPrinter::VisitOMPTargetTeamsDirective(OMPTargetTeamsDirective *Node) {
1170 Indent() <<
"#pragma omp target teams";
1171 PrintOMPExecutableDirective(Node);
1174void StmtPrinter::VisitOMPTargetTeamsDistributeDirective(
1175 OMPTargetTeamsDistributeDirective *Node) {
1176 Indent() <<
"#pragma omp target teams distribute";
1177 PrintOMPExecutableDirective(Node);
1180void StmtPrinter::VisitOMPTargetTeamsDistributeParallelForDirective(
1181 OMPTargetTeamsDistributeParallelForDirective *Node) {
1182 Indent() <<
"#pragma omp target teams distribute parallel for";
1183 PrintOMPExecutableDirective(Node);
1186void StmtPrinter::VisitOMPTargetTeamsDistributeParallelForSimdDirective(
1187 OMPTargetTeamsDistributeParallelForSimdDirective *Node) {
1188 Indent() <<
"#pragma omp target teams distribute parallel for simd";
1189 PrintOMPExecutableDirective(Node);
1192void StmtPrinter::VisitOMPTargetTeamsDistributeSimdDirective(
1193 OMPTargetTeamsDistributeSimdDirective *Node) {
1194 Indent() <<
"#pragma omp target teams distribute simd";
1195 PrintOMPExecutableDirective(Node);
1198void StmtPrinter::VisitOMPInteropDirective(OMPInteropDirective *Node) {
1199 Indent() <<
"#pragma omp interop";
1200 PrintOMPExecutableDirective(Node);
1203void StmtPrinter::VisitOMPDispatchDirective(OMPDispatchDirective *Node) {
1204 Indent() <<
"#pragma omp dispatch";
1205 PrintOMPExecutableDirective(Node);
1208void StmtPrinter::VisitOMPMaskedDirective(OMPMaskedDirective *Node) {
1209 Indent() <<
"#pragma omp masked";
1210 PrintOMPExecutableDirective(Node);
1213void StmtPrinter::VisitOMPGenericLoopDirective(OMPGenericLoopDirective *Node) {
1214 Indent() <<
"#pragma omp loop";
1215 PrintOMPExecutableDirective(Node);
1218void StmtPrinter::VisitOMPTeamsGenericLoopDirective(
1219 OMPTeamsGenericLoopDirective *Node) {
1220 Indent() <<
"#pragma omp teams loop";
1221 PrintOMPExecutableDirective(Node);
1224void StmtPrinter::VisitOMPTargetTeamsGenericLoopDirective(
1225 OMPTargetTeamsGenericLoopDirective *Node) {
1226 Indent() <<
"#pragma omp target teams loop";
1227 PrintOMPExecutableDirective(Node);
1230void StmtPrinter::VisitOMPParallelGenericLoopDirective(
1231 OMPParallelGenericLoopDirective *Node) {
1232 Indent() <<
"#pragma omp parallel loop";
1233 PrintOMPExecutableDirective(Node);
1236void StmtPrinter::VisitOMPTargetParallelGenericLoopDirective(
1237 OMPTargetParallelGenericLoopDirective *Node) {
1238 Indent() <<
"#pragma omp target parallel loop";
1239 PrintOMPExecutableDirective(Node);
1245void StmtPrinter::PrintOpenACCClauseList(OpenACCConstructStmt *S) {
1248 OpenACCClausePrinter Printer(OS, Policy);
1249 Printer.VisitClauseList(S->
clauses());
1252void StmtPrinter::PrintOpenACCConstruct(OpenACCConstructStmt *S) {
1254 PrintOpenACCClauseList(S);
1258 PrintOpenACCConstruct(S);
1259 PrintStmt(S->getStructuredBlock());
1262void StmtPrinter::VisitOpenACCLoopConstruct(OpenACCLoopConstruct *S) {
1263 PrintOpenACCConstruct(S);
1267void StmtPrinter::VisitOpenACCCombinedConstruct(OpenACCCombinedConstruct *S) {
1268 PrintOpenACCConstruct(S);
1272void StmtPrinter::VisitOpenACCDataConstruct(OpenACCDataConstruct *S) {
1273 PrintOpenACCConstruct(S);
1276void StmtPrinter::VisitOpenACCHostDataConstruct(OpenACCHostDataConstruct *S) {
1277 PrintOpenACCConstruct(S);
1280void StmtPrinter::VisitOpenACCEnterDataConstruct(OpenACCEnterDataConstruct *S) {
1281 PrintOpenACCConstruct(S);
1283void StmtPrinter::VisitOpenACCExitDataConstruct(OpenACCExitDataConstruct *S) {
1284 PrintOpenACCConstruct(S);
1286void StmtPrinter::VisitOpenACCInitConstruct(OpenACCInitConstruct *S) {
1287 PrintOpenACCConstruct(S);
1289void StmtPrinter::VisitOpenACCShutdownConstruct(OpenACCShutdownConstruct *S) {
1290 PrintOpenACCConstruct(S);
1292void StmtPrinter::VisitOpenACCSetConstruct(OpenACCSetConstruct *S) {
1293 PrintOpenACCConstruct(S);
1295void StmtPrinter::VisitOpenACCUpdateConstruct(OpenACCUpdateConstruct *S) {
1296 PrintOpenACCConstruct(S);
1299void StmtPrinter::VisitOpenACCWaitConstruct(OpenACCWaitConstruct *S) {
1300 Indent() <<
"#pragma acc wait";
1313 E->printPretty(OS, nullptr, Policy);
1319 PrintOpenACCClauseList(S);
1323void StmtPrinter::VisitOpenACCAtomicConstruct(OpenACCAtomicConstruct *S) {
1324 Indent() <<
"#pragma acc atomic";
1329 PrintOpenACCClauseList(S);
1334void StmtPrinter::VisitOpenACCCacheConstruct(OpenACCCacheConstruct *S) {
1335 Indent() <<
"#pragma acc cache(";
1339 llvm::interleaveComma(S->
getVarList(), OS, [&](
const Expr *E) {
1340 E->printPretty(OS, nullptr, Policy);
1350void StmtPrinter::VisitSourceLocExpr(SourceLocExpr *Node) {
1354void StmtPrinter::VisitEmbedExpr(EmbedExpr *Node) {
1362void StmtPrinter::VisitConstantExpr(ConstantExpr *Node) {
1366void StmtPrinter::VisitDeclRefExpr(DeclRefExpr *Node) {
1367 ValueDecl *VD = Node->
getDecl();
1368 if (
const auto *OCED = dyn_cast<OMPCapturedExprDecl>(VD)) {
1369 OCED->getInit()->IgnoreImpCasts()->printPretty(OS,
nullptr, Policy);
1372 if (
const auto *TPOD = dyn_cast<TemplateParamObjectDecl>(VD)) {
1373 TPOD->printAsExpr(OS, Policy);
1376 bool ForceAnonymous =
1388 DeclarationNameInfo NameInfo = Node->
getNameInfo();
1392 if (CleanUglifiedParameter && ID)
1393 OS <<
ID->deuglifiedName();
1398 case Decl::NonTypeTemplateParm: {
1400 OS <<
"value-parameter-" << TD->getDepth() <<
'-' << TD->getIndex()
1404 case Decl::ParmVar: {
1406 OS <<
"function-parameter-" << PD->getFunctionScopeDepth() <<
'-'
1407 << PD->getFunctionScopeIndex();
1410 case Decl::Decomposition:
1411 OS <<
"decomposition";
1413 OS <<
'-' << I->getName();
1422 const TemplateParameterList *TPL =
nullptr;
1424 if (
auto *TD = dyn_cast<TemplateDecl>(VD))
1425 TPL = TD->getTemplateParameters();
1430void StmtPrinter::VisitDependentScopeDeclRefExpr(
1431 DependentScopeDeclRefExpr *Node) {
1440void StmtPrinter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) {
1450 if (
const auto *DRE = dyn_cast<DeclRefExpr>(E)) {
1451 if (
const auto *PD = dyn_cast<ImplicitParamDecl>(DRE->getDecl())) {
1453 DRE->getBeginLoc().isInvalid())
1460void StmtPrinter::VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
1471void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) {
1483 Getter->getSelector().print(OS);
1491void StmtPrinter::VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *Node) {
1498void StmtPrinter::VisitSYCLUniqueStableNameExpr(
1499 SYCLUniqueStableNameExpr *Node) {
1500 OS <<
"__builtin_sycl_unique_stable_name(";
1505void StmtPrinter::VisitUnresolvedSYCLKernelCallStmt(
1506 UnresolvedSYCLKernelCallStmt *Node) {
1510void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) {
1514void StmtPrinter::VisitOpenACCAsteriskSizeExpr(OpenACCAsteriskSizeExpr *Node) {
1518void StmtPrinter::VisitCharacterLiteral(CharacterLiteral *Node) {
1531 Context->getSourceManager(), Context->getLangOpts(), &
Invalid);
1539void StmtPrinter::VisitIntegerLiteral(IntegerLiteral *Node) {
1546 OS << (isSigned ?
"wb" :
"uwb");
1551 switch (Node->
getType()->
castAs<BuiltinType>()->getKind()) {
1552 default: llvm_unreachable(
"Unexpected type for integer literal!");
1553 case BuiltinType::Char_S:
1554 case BuiltinType::Char_U:
OS <<
"i8";
break;
1555 case BuiltinType::UChar:
OS <<
"Ui8";
break;
1556 case BuiltinType::SChar:
OS <<
"i8";
break;
1557 case BuiltinType::Short:
OS <<
"i16";
break;
1558 case BuiltinType::UShort:
OS <<
"Ui16";
break;
1559 case BuiltinType::Int:
break;
1560 case BuiltinType::UInt:
OS <<
'U';
break;
1561 case BuiltinType::Long:
OS <<
'L';
break;
1562 case BuiltinType::ULong:
OS <<
"UL";
break;
1563 case BuiltinType::LongLong:
OS <<
"LL";
break;
1564 case BuiltinType::ULongLong:
OS <<
"ULL";
break;
1565 case BuiltinType::Int128:
1567 case BuiltinType::UInt128:
1569 case BuiltinType::WChar_S:
1570 case BuiltinType::WChar_U:
1575void StmtPrinter::VisitFixedPointLiteral(FixedPointLiteral *Node) {
1580 switch (Node->
getType()->
castAs<BuiltinType>()->getKind()) {
1581 default: llvm_unreachable(
"Unexpected type for fixed point literal!");
1582 case BuiltinType::ShortFract:
OS <<
"hr";
break;
1583 case BuiltinType::ShortAccum:
OS <<
"hk";
break;
1584 case BuiltinType::UShortFract:
OS <<
"uhr";
break;
1585 case BuiltinType::UShortAccum:
OS <<
"uhk";
break;
1586 case BuiltinType::Fract:
OS <<
"r";
break;
1587 case BuiltinType::Accum:
OS <<
"k";
break;
1588 case BuiltinType::UFract:
OS <<
"ur";
break;
1589 case BuiltinType::UAccum:
OS <<
"uk";
break;
1590 case BuiltinType::LongFract:
OS <<
"lr";
break;
1591 case BuiltinType::LongAccum:
OS <<
"lk";
break;
1592 case BuiltinType::ULongFract:
OS <<
"ulr";
break;
1593 case BuiltinType::ULongAccum:
OS <<
"ulk";
break;
1602 if (Str.find_first_not_of(
"-0123456789") == StringRef::npos)
1610 default: llvm_unreachable(
"Unexpected type for float literal!");
1611 case BuiltinType::Half:
break;
1612 case BuiltinType::Ibm128:
break;
1613 case BuiltinType::Double:
break;
1614 case BuiltinType::Float16: OS <<
"F16";
break;
1615 case BuiltinType::Float: OS <<
'F';
break;
1616 case BuiltinType::LongDouble: OS <<
'L';
break;
1617 case BuiltinType::Float128: OS <<
'Q';
break;
1621void StmtPrinter::VisitFloatingLiteral(FloatingLiteral *Node) {
1627void StmtPrinter::VisitImaginaryLiteral(ImaginaryLiteral *Node) {
1632void StmtPrinter::VisitStringLiteral(StringLiteral *Str) {
1636void StmtPrinter::VisitParenExpr(ParenExpr *Node) {
1642void StmtPrinter::VisitUnaryOperator(UnaryOperator *Node) {
1668void StmtPrinter::VisitOffsetOfExpr(OffsetOfExpr *Node) {
1669 OS <<
"__builtin_offsetof(";
1672 bool PrintedSomething =
false;
1680 PrintedSomething =
true;
1693 if (PrintedSomething)
1696 PrintedSomething =
true;
1702void StmtPrinter::VisitUnaryExprOrTypeTraitExpr(
1703 UnaryExprOrTypeTraitExpr *Node) {
1705 if (Node->
getKind() == UETT_AlignOf) {
1707 Spelling =
"alignof";
1709 Spelling =
"_Alignof";
1711 Spelling =
"__alignof";
1726void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) {
1735 QualType
T = Assoc.getType();
1739 T.print(OS, Policy);
1741 PrintExpr(Assoc.getAssociationExpr());
1746void StmtPrinter::VisitArraySubscriptExpr(ArraySubscriptExpr *Node) {
1747 PrintExpr(Node->
getLHS());
1749 PrintExpr(Node->
getRHS());
1753void StmtPrinter::VisitMatrixSingleSubscriptExpr(
1754 MatrixSingleSubscriptExpr *Node) {
1761void StmtPrinter::VisitMatrixSubscriptExpr(MatrixSubscriptExpr *Node) {
1771void StmtPrinter::VisitArraySectionExpr(ArraySectionExpr *Node) {
1789void StmtPrinter::VisitOMPArrayShapingExpr(OMPArrayShapingExpr *Node) {
1800void StmtPrinter::VisitOMPIteratorExpr(OMPIteratorExpr *Node) {
1807 PrintExpr(
Range.Begin);
1809 PrintExpr(
Range.End);
1812 PrintExpr(
Range.Step);
1820void StmtPrinter::PrintCallArgs(CallExpr *
Call) {
1821 for (
unsigned i = 0, e =
Call->getNumArgs(); i != e; ++i) {
1828 PrintExpr(
Call->getArg(i));
1832void StmtPrinter::VisitCallExpr(CallExpr *
Call) {
1833 PrintExpr(
Call->getCallee());
1835 PrintCallArgs(
Call);
1840 if (
const auto *TE = dyn_cast<CXXThisExpr>(E))
1841 return TE->isImplicit();
1845void StmtPrinter::VisitMemberExpr(MemberExpr *Node) {
1849 auto *ParentMember = dyn_cast<MemberExpr>(Node->
getBase());
1850 FieldDecl *ParentDecl =
1851 ParentMember ? dyn_cast<FieldDecl>(ParentMember->getMemberDecl())
1859 if (FD->isAnonymousStructOrUnion())
1866 const TemplateParameterList *TPL =
nullptr;
1867 if (
auto *FD = dyn_cast<FunctionDecl>(Node->
getMemberDecl())) {
1869 if (
auto *FTD = FD->getPrimaryTemplate())
1870 TPL = FTD->getTemplateParameters();
1871 }
else if (
auto *VTSD =
1872 dyn_cast<VarTemplateSpecializationDecl>(Node->
getMemberDecl()))
1873 TPL = VTSD->getSpecializedTemplate()->getTemplateParameters();
1878void StmtPrinter::VisitObjCIsaExpr(ObjCIsaExpr *Node) {
1880 OS << (Node->
isArrow() ?
"->isa" :
".isa");
1883void StmtPrinter::VisitExtVectorElementExpr(ExtVectorElementExpr *Node) {
1889void StmtPrinter::VisitMatrixElementExpr(MatrixElementExpr *Node) {
1895void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) {
1900 const auto *IL = dyn_cast<IntegerLiteral>(Node->
getSubExpr());
1903 llvm::APInt Val = IL->getValue();
1905 llvm::find_if(ED->enumerators(), [&](
const EnumConstantDecl *ECD) {
1906 return llvm::APInt::isSameValue(ECD->getInitVal(), Val);
1908 if (ECD != ED->enumerator_end()) {
1909 ECD->printQualifiedName(OS, Policy);
1920void StmtPrinter::VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) {
1927void StmtPrinter::VisitImplicitCastExpr(ImplicitCastExpr *Node) {
1932void StmtPrinter::VisitBinComma(BinaryOperator *Node) {
1933 PrintExpr(Node->
getLHS());
1935 PrintExpr(Node->
getRHS());
1938void StmtPrinter::VisitBinaryOperator(BinaryOperator *Node) {
1939 PrintExpr(Node->
getLHS());
1941 PrintExpr(Node->
getRHS());
1944void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {
1945 PrintExpr(Node->
getLHS());
1947 PrintExpr(Node->
getRHS());
1950void StmtPrinter::VisitConditionalOperator(ConditionalOperator *Node) {
1953 PrintExpr(Node->
getLHS());
1955 PrintExpr(Node->
getRHS());
1961StmtPrinter::VisitBinaryConditionalOperator(BinaryConditionalOperator *Node) {
1967void StmtPrinter::VisitAddrLabelExpr(AddrLabelExpr *Node) {
1971void StmtPrinter::VisitStmtExpr(StmtExpr *E) {
1977void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) {
1978 OS <<
"__builtin_choose_expr(";
1981 PrintExpr(Node->
getLHS());
1983 PrintExpr(Node->
getRHS());
1987void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) {
1991void StmtPrinter::VisitShuffleVectorExpr(ShuffleVectorExpr *Node) {
1992 OS <<
"__builtin_shufflevector(";
2000void StmtPrinter::VisitConvertVectorExpr(ConvertVectorExpr *Node) {
2001 OS <<
"__builtin_convertvector(";
2008void StmtPrinter::VisitInitListExpr(InitListExpr* Node) {
2015 for (
unsigned i = 0, e = Node->
getNumInits(); i != e; ++i) {
2025void StmtPrinter::VisitArrayInitLoopExpr(ArrayInitLoopExpr *Node) {
2033void StmtPrinter::VisitArrayInitIndexExpr(ArrayInitIndexExpr *Node) {
2037void StmtPrinter::VisitParenListExpr(ParenListExpr* Node) {
2039 for (
unsigned i = 0, e = Node->
getNumExprs(); i != e; ++i) {
2046void StmtPrinter::VisitDesignatedInitExpr(DesignatedInitExpr *Node) {
2047 bool NeedsEquals =
true;
2048 for (
const DesignatedInitExpr::Designator &D : Node->
designators()) {
2049 if (D.isFieldDesignator()) {
2050 if (D.getDotLoc().isInvalid()) {
2051 if (
const IdentifierInfo *II = D.getFieldName()) {
2052 OS << II->getName() <<
":";
2053 NeedsEquals =
false;
2056 OS <<
"." << D.getFieldName()->getName();
2060 if (D.isArrayDesignator()) {
2078void StmtPrinter::VisitDesignatedInitUpdateExpr(
2079 DesignatedInitUpdateExpr *Node) {
2085 OS <<
"/*updater*/";
2090void StmtPrinter::VisitNoInitExpr(NoInitExpr *Node) {
2091 OS <<
"/*no init*/";
2094void StmtPrinter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) {
2096 OS <<
"/*implicit*/";
2100 OS <<
"/*implicit*/(";
2110void StmtPrinter::VisitVAArgExpr(VAArgExpr *Node) {
2111 OS <<
"__builtin_va_arg(";
2118void StmtPrinter::VisitPseudoObjectExpr(PseudoObjectExpr *Node) {
2122void StmtPrinter::VisitAtomicExpr(AtomicExpr *Node) {
2123 const char *Name =
nullptr;
2124 switch (Node->
getOp()) {
2125#define ATOMIC_BUILTIN(ID, TYPE, ATTRS) \
2126 case AtomicExpr::AO ## ID: \
2129#include "clang/Basic/Builtins.inc"
2134 PrintExpr(Node->
getPtr());
2139 if (Node->
getOp() == AtomicExpr::AO__atomic_exchange ||
2144 if (Node->
getOp() == AtomicExpr::AO__atomic_compare_exchange ||
2145 Node->
getOp() == AtomicExpr::AO__atomic_compare_exchange_n) {
2149 if (Node->
getOp() != AtomicExpr::AO__c11_atomic_init &&
2150 Node->
getOp() != AtomicExpr::AO__opencl_atomic_init) {
2162void StmtPrinter::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) {
2164 if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) {
2167 PrintExpr(Node->
getArg(0));
2169 PrintExpr(Node->
getArg(0));
2172 }
else if (Kind == OO_Arrow) {
2173 PrintExpr(Node->
getArg(0));
2174 }
else if (Kind == OO_Call || Kind == OO_Subscript) {
2175 PrintExpr(Node->
getArg(0));
2176 OS << (
Kind == OO_Call ?
'(' :
'[');
2177 for (
unsigned ArgIdx = 1; ArgIdx < Node->
getNumArgs(); ++ArgIdx) {
2181 PrintExpr(Node->
getArg(ArgIdx));
2183 OS << (
Kind == OO_Call ?
')' :
']');
2186 PrintExpr(Node->
getArg(0));
2188 PrintExpr(Node->
getArg(0));
2190 PrintExpr(Node->
getArg(1));
2192 llvm_unreachable(
"unknown overloaded operator");
2196void StmtPrinter::VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) {
2199 if (isa_and_nonnull<CXXConversionDecl>(MD)) {
2206void StmtPrinter::VisitCUDAKernelCallExpr(CUDAKernelCallExpr *Node) {
2211 PrintCallArgs(Node);
2215void StmtPrinter::VisitCXXRewrittenBinaryOperator(
2216 CXXRewrittenBinaryOperator *Node) {
2217 CXXRewrittenBinaryOperator::DecomposedForm Decomposed =
2219 PrintExpr(
const_cast<Expr*
>(Decomposed.
LHS));
2221 PrintExpr(
const_cast<Expr*
>(Decomposed.
RHS));
2224void StmtPrinter::VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) {
2232void StmtPrinter::VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) {
2233 VisitCXXNamedCastExpr(Node);
2236void StmtPrinter::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) {
2237 VisitCXXNamedCastExpr(Node);
2240void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) {
2241 VisitCXXNamedCastExpr(Node);
2244void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) {
2245 VisitCXXNamedCastExpr(Node);
2248void StmtPrinter::VisitBuiltinBitCastExpr(BuiltinBitCastExpr *Node) {
2249 OS <<
"__builtin_bit_cast(";
2256void StmtPrinter::VisitCXXAddrspaceCastExpr(CXXAddrspaceCastExpr *Node) {
2257 VisitCXXNamedCastExpr(Node);
2260void StmtPrinter::VisitCXXTypeidExpr(CXXTypeidExpr *Node) {
2270void StmtPrinter::VisitCXXUuidofExpr(CXXUuidofExpr *Node) {
2280void StmtPrinter::VisitMSPropertyRefExpr(MSPropertyRefExpr *Node) {
2290void StmtPrinter::VisitMSPropertySubscriptExpr(MSPropertySubscriptExpr *Node) {
2293 PrintExpr(Node->
getIdx());
2297void StmtPrinter::VisitUserDefinedLiteral(UserDefinedLiteral *Node) {
2304 const TemplateArgumentList *Args =
2309 const TemplateParameterList *TPL =
nullptr;
2310 if (!DRE->hadMultipleCandidates())
2311 if (
const auto *TD = dyn_cast<TemplateDecl>(DRE->getDecl()))
2312 TPL = TD->getTemplateParameters();
2314 printTemplateArgumentList(OS, Args->
asArray(), Policy, TPL);
2319 const TemplateArgument &Pack = Args->
get(0);
2321 char C = (char)P.getAsIntegral().getZExtValue();
2346void StmtPrinter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) {
2350void StmtPrinter::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) {
2354void StmtPrinter::VisitCXXThisExpr(CXXThisExpr *Node) {
2358void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) {
2367void StmtPrinter::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) {
2371void StmtPrinter::VisitCXXDefaultInitExpr(CXXDefaultInitExpr *Node) {
2375void StmtPrinter::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) {
2376 auto TargetType = Node->
getType();
2378 bool Bare =
Auto &&
Auto->isDeduced();
2383 TargetType.print(OS, Policy);
2395void StmtPrinter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) {
2399void StmtPrinter::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) {
2407 for (CXXTemporaryObjectExpr::arg_iterator Arg = Node->
arg_begin(),
2409 Arg != ArgEnd; ++Arg) {
2410 if ((*Arg)->isDefaultArgument())
2424void StmtPrinter::VisitLambdaExpr(
LambdaExpr *Node) {
2426 bool NeedComma =
false;
2445 if (
C->capturesVLAType())
2452 switch (
C->getCaptureKind()) {
2464 OS <<
C->getCapturedVar()->getName();
2468 OS <<
C->getCapturedVar()->getName();
2472 llvm_unreachable(
"VLA type in explicit captures.");
2475 if (
C->isPackExpansion())
2482 llvm::StringRef
Pre;
2483 llvm::StringRef
Post;
2493 PrintExpr(D->getInit());
2509 for (
const auto *P :
Method->parameters()) {
2515 std::string ParamStr =
2517 ? P->getIdentifier()->deuglifiedName().str()
2518 : P->getNameAsString();
2519 P->getOriginalType().print(OS, Policy, ParamStr);
2521 if (
Method->isVariadic()) {
2531 auto *Proto =
Method->getType()->castAs<FunctionProtoType>();
2532 Proto->printExceptionSpecification(OS, Policy);
2539 Proto->getReturnType().print(OS, Policy);
2551void StmtPrinter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) {
2553 TSInfo->getType().print(OS, Policy);
2559void StmtPrinter::VisitCXXNewExpr(CXXNewExpr *E) {
2567 for (
unsigned i = 1; i < NumPlace; ++i) {
2579 llvm::raw_string_ostream s(TypeS);
2582 (*Size)->printPretty(s, Helper, Policy);
2590 if (InitStyle != CXXNewInitializationStyle::None) {
2591 bool Bare = InitStyle == CXXNewInitializationStyle::Parens &&
2601void StmtPrinter::VisitCXXDeleteExpr(CXXDeleteExpr *E) {
2610void StmtPrinter::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) {
2620 OS << II->getName();
2625void StmtPrinter::VisitCXXConstructExpr(CXXConstructExpr *E) {
2629 for (
unsigned i = 0, e = E->
getNumArgs(); i != e; ++i) {
2643void StmtPrinter::VisitCXXInheritedCtorInitExpr(CXXInheritedCtorInitExpr *E) {
2645 OS <<
"<forwarded>";
2648void StmtPrinter::VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E) {
2652void StmtPrinter::VisitExprWithCleanups(ExprWithCleanups *E) {
2657void StmtPrinter::VisitCXXUnresolvedConstructExpr(
2658 CXXUnresolvedConstructExpr *Node) {
2662 for (
auto Arg = Node->
arg_begin(), ArgEnd = Node->
arg_end(); Arg != ArgEnd;
2672void StmtPrinter::VisitCXXReflectExpr(CXXReflectExpr *S) {
2674 assert(
false &&
"not implemented yet");
2677void StmtPrinter::VisitDependentTemplateIdExpr(DependentTemplateIdExpr *Node) {
2683void StmtPrinter::VisitCXXDependentScopeMemberExpr(
2684 CXXDependentScopeMemberExpr *Node) {
2697void StmtPrinter::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *Node) {
2710void StmtPrinter::VisitTypeTraitExpr(TypeTraitExpr *E) {
2712 for (
unsigned I = 0, N = E->
getNumArgs(); I != N; ++I) {
2720void StmtPrinter::VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E) {
2726void StmtPrinter::VisitExpressionTraitExpr(ExpressionTraitExpr *E) {
2732void StmtPrinter::VisitCXXNoexceptExpr(CXXNoexceptExpr *E) {
2738void StmtPrinter::VisitPackExpansionExpr(PackExpansionExpr *E) {
2743void StmtPrinter::VisitSizeOfPackExpr(SizeOfPackExpr *E) {
2744 OS <<
"sizeof...(" << *E->
getPack() <<
")";
2747void StmtPrinter::VisitPackIndexingExpr(PackIndexingExpr *E) {
2754void StmtPrinter::VisitSubstNonTypeTemplateParmPackExpr(
2755 SubstNonTypeTemplateParmPackExpr *Node) {
2759void StmtPrinter::VisitSubstNonTypeTemplateParmExpr(
2760 SubstNonTypeTemplateParmExpr *Node) {
2764void StmtPrinter::VisitFunctionParmPackExpr(FunctionParmPackExpr *E) {
2768void StmtPrinter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *Node){
2772void StmtPrinter::VisitCXXFoldExpr(CXXFoldExpr *E) {
2786void StmtPrinter::VisitCXXParenListInitExpr(CXXParenListInitExpr *Node) {
2788 [&](Expr *E) { PrintExpr(E); });
2791void StmtPrinter::VisitConceptSpecializationExpr(ConceptSpecializationExpr *E) {
2805 if (!LocalParameters.empty()) {
2807 for (ParmVarDecl *LocalParam : LocalParameters) {
2808 PrintRawDecl(LocalParam);
2809 if (LocalParam != LocalParameters.back())
2817 for (concepts::Requirement *Req : Requirements) {
2818 if (
auto *TypeReq = dyn_cast<concepts::TypeRequirement>(Req)) {
2819 if (TypeReq->isSubstitutionFailure())
2820 OS <<
"<<error-type>>";
2822 TypeReq->getType()->getType().print(OS, Policy);
2823 }
else if (
auto *ExprReq = dyn_cast<concepts::ExprRequirement>(Req)) {
2824 if (ExprReq->isCompound())
2826 if (ExprReq->isExprSubstitutionFailure())
2827 OS <<
"<<error-expression>>";
2829 PrintExpr(ExprReq->getExpr());
2830 if (ExprReq->isCompound()) {
2832 if (ExprReq->getNoexceptLoc().isValid())
2834 const auto &RetReq = ExprReq->getReturnTypeRequirement();
2835 if (!RetReq.isEmpty()) {
2837 if (RetReq.isSubstitutionFailure())
2838 OS <<
"<<error-type>>";
2839 else if (RetReq.isTypeConstraint())
2840 RetReq.getTypeConstraint()->print(OS, Policy);
2846 if (NestedReq->hasInvalidConstraint())
2847 OS <<
"<<error-expression>>";
2849 PrintExpr(NestedReq->getConstraintExpr());
2858void StmtPrinter::VisitCoroutineBodyStmt(CoroutineBodyStmt *S) {
2862void StmtPrinter::VisitCoreturnStmt(CoreturnStmt *S) {
2871void StmtPrinter::VisitCoawaitExpr(CoawaitExpr *S) {
2876void StmtPrinter::VisitDependentCoawaitExpr(DependentCoawaitExpr *S) {
2881void StmtPrinter::VisitCoyieldExpr(CoyieldExpr *S) {
2888void StmtPrinter::VisitObjCStringLiteral(ObjCStringLiteral *Node) {
2893void StmtPrinter::VisitObjCBoxedExpr(ObjCBoxedExpr *E) {
2898void StmtPrinter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) {
2900 ObjCArrayLiteral::child_range Ch = E->
children();
2901 for (
auto I = Ch.begin(), E = Ch.end(); I != E; ++I) {
2902 if (I != Ch.begin())
2909void StmtPrinter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
2918 Visit(Element.
Value);
2925void StmtPrinter::VisitObjCEncodeExpr(ObjCEncodeExpr *Node) {
2931void StmtPrinter::VisitObjCSelectorExpr(ObjCSelectorExpr *Node) {
2937void StmtPrinter::VisitObjCProtocolExpr(ObjCProtocolExpr *Node) {
2941void StmtPrinter::VisitObjCMessageExpr(ObjCMessageExpr *Mess) {
2963 for (
unsigned i = 0, e = Mess->
getNumArgs(); i != e; ++i) {
2965 if (i > 0)
OS <<
' ';
2973 PrintExpr(Mess->
getArg(i));
2979void StmtPrinter::VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Node) {
2980 OS << (Node->
getValue() ?
"__objc_yes" :
"__objc_no");
2984StmtPrinter::VisitObjCIndirectCopyRestoreExpr(ObjCIndirectCopyRestoreExpr *E) {
2989StmtPrinter::VisitObjCBridgedCastExpr(ObjCBridgedCastExpr *E) {
2996void StmtPrinter::VisitBlockExpr(BlockExpr *Node) {
3009 std::string ParamStr = (*AI)->getNameAsString();
3010 (*AI)->getType().print(OS, Policy, ParamStr);
3014 if (FT->isVariadic()) {
3023void StmtPrinter::VisitOpaqueValueExpr(OpaqueValueExpr *Node) {
3027void StmtPrinter::VisitRecoveryExpr(RecoveryExpr *Node) {
3028 OS <<
"<recovery-expr>(";
3029 const char *Sep =
"";
3038void StmtPrinter::VisitAsTypeExpr(AsTypeExpr *Node) {
3039 OS <<
"__builtin_astype(";
3046void StmtPrinter::VisitHLSLOutArgExpr(HLSLOutArgExpr *Node) {
3060 StringRef NL,
const ASTContext *Context)
const {
3061 StmtPrinter P(Out, Helper, Policy, Indentation, NL, Context);
3062 P.Visit(
const_cast<Stmt *
>(
this));
3067 unsigned Indentation, StringRef NL,
3069 StmtPrinter P(Out, Helper, Policy, Indentation, NL, Context);
3070 P.PrintControlledStmt(
const_cast<Stmt *
>(
this));
3076 llvm::raw_string_ostream TempOut(Buf);
Defines the clang::ASTContext interface.
Defines enumerations for traits support.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
This file defines OpenACC nodes for declarative directives.
This file defines OpenMP nodes for declarative directives.
Defines the C++ template declaration subclasses.
Defines the clang::Expr interface and subclasses for C++ expressions.
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines several types used to describe C++ lambda expressions that are shared between the parser and ...
This file defines OpenMP AST classes for clauses.
Defines some OpenMP-specific enums and functions.
Defines an enumeration for C++ overloaded operators.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
Defines the clang::SourceLocation class and associated facilities.
Defines the Objective-C statement AST node classes.
This file defines OpenMP AST classes for executable directives and clauses.
static bool isImplicitThis(const Expr *E)
static bool isImplicitSelf(const Expr *E)
static void PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node, bool PrintSuffix)
static bool printExprAsWritten(raw_ostream &OS, Expr *E, const ASTContext *Context)
Prints the given expression using the original source text.
This file defines SYCL AST classes used to represent calls to SYCL kernels.
C Language Family Type Representation.
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.
const Stmt * getAssociatedStmt() const
OpenACCAtomicKind getAtomicKind() const
ArrayRef< Expr * > getVarList() const
Stmt * getStructuredBlock()
Stmt * getStructuredBlock()
bool hasQueuesTag() const
bool hasDevNumExpr() const
ArrayRef< Expr * > getQueueIdExprs() const
SourceLocation getLParenLoc() const
Expr * getDevNumExpr() const
llvm::APInt getValue() const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
const LangOptions & getLangOpts() const
LabelDecl * getLabel() const
Expr * getSubExpr() const
Get the initializer to use for each array element.
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
Expr * getLHS()
An array access can be written A[4] or 4[A] (both are equivalent).
ArrayTypeTrait getTrait() const
QualType getQueriedType() const
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
unsigned getNumClobbers() const
unsigned getNumOutputs() const
unsigned getNumInputs() const
Expr * getOrderFail() const
bool hasVal1Operand() const
ArrayRef< const Attr * > getAttrs() const
Expr * getFalseExpr() const
getFalseExpr - Return the subexpression which will be evaluated if the condition evaluates to false; ...
Expr * getCommon() const
getCommon - Return the common expression, written to the left of the condition.
StringRef getOpcodeStr() const
param_iterator param_end()
MutableArrayRef< ParmVarDecl * >::iterator param_iterator
param_iterator param_begin()
const FunctionProtoType * getFunctionType() const
getFunctionType - Return the underlying function type for this block.
const BlockDecl * getBlockDecl() const
This class is used for builtin types like 'int'.
const CallExpr * getConfig() const
const Expr * getSubExpr() const
Stmt * getHandlerBlock() const
VarDecl * getExceptionDecl() const
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 isListInitialization() const
Whether this constructor call was written as list-initialization.
unsigned getNumArgs() const
Return the number of arguments to the constructor call.
bool isGlobalDelete() const
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies the member name.
const DeclarationNameInfo & getMemberNameInfo() const
Retrieve the name of the member that this expression refers to.
bool hasExplicitTemplateArgs() const
Determines whether this member expression actually had a C++ template argument list explicitly specif...
Expr * getBase() const
Retrieve the base object of this member expressions, e.g., the x in x.m.
bool hasTemplateKeyword() const
Determines whether the member name was preceded by the template keyword.
bool isImplicitAccess() const
True if this is an implicit access, i.e.
ArrayRef< TemplateArgumentLoc > template_arguments() const
InitListExpr * getRangeExpr()
DecompositionDecl * getDecompositionDecl()
const VarDecl * getRangeVar() const
Expr * getExpansionInitializer()
bool isDestructuring() const
VarDecl * getExpansionVariable()
BinaryOperatorKind getOperator() const
VarDecl * getLoopVariable()
bool isListInitialization() const
Determine whether this expression models list-initialization.
CXXMethodDecl * getMethodDecl() const
Retrieve the declaration of the called method.
Expr * getImplicitObjectArgument() const
Retrieve the implicit object argument for the member call.
const char * getCastName() const
getCastName - Get the name of the C++ cast being used, e.g., "static_cast", "dynamic_cast",...
QualType getAllocatedType() const
std::optional< Expr * > getArraySize()
This might return std::nullopt even if isArray() returns true, since there might not be an array size...
CXXNewInitializationStyle getInitializationStyle() const
The kind of initializer this new-expression has.
Expr * getPlacementArg(unsigned I)
unsigned getNumPlacementArgs() const
bool isParenTypeId() const
Expr * getInitializer()
The initializer of this new-expression.
Expr * getOperand() const
OverloadedOperatorKind getOperator() const
Returns the kind of overloaded operator that this expression refers to.
MutableArrayRef< Expr * > getUserSpecifiedInitExprs()
bool isArrow() const
Determine whether this pseudo-destructor expression was written using an '->' (otherwise,...
QualType getDestroyedType() const
Retrieve the type being destroyed.
NestedNameSpecifier getQualifier() const
If the member name was qualified, retrieves the nested-name-specifier that precedes the member name.
const IdentifierInfo * getDestroyedTypeIdentifier() const
In a dependent pseudo-destructor expression for which we do not have full type information on the des...
DecomposedForm getDecomposedForm() const LLVM_READONLY
Decompose this operator into its syntactic form.
TypeSourceInfo * getTypeSourceInfo() const
const Expr * getSubExpr() const
CXXCatchStmt * getHandler(unsigned i)
unsigned getNumHandlers() const
CompoundStmt * getTryBlock()
bool isTypeOperand() const
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
Expr * getExprOperand() const
bool isListInitialization() const
Determine whether this expression models list-initialization.
QualType getTypeAsWritten() const
Retrieve the type that is being constructed, as specified in the source code.
Expr * getExprOperand() const
bool isTypeOperand() const
TypeSourceInfo * getTypeOperandSourceInfo() const
Retrieve source information for the type operand.
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
unsigned getNumArgs() const
getNumArgs - Return the number of actual arguments to this call.
Stmt * getBody() const override
getBody - If this Decl represents a declaration for a body of code, such as a function or method defi...
CapturedDecl * getCapturedDecl()
Retrieve the outlined function declaration.
static CharSourceRange getTokenRange(SourceRange R)
static void print(unsigned val, CharacterLiteralKind Kind, raw_ostream &OS)
unsigned getValue() const
CharacterLiteralKind getKind() const
const Expr * getInitializer() const
CompoundStmt - This represents a group of statements like { stmt stmt }.
FPOptionsOverride getStoredFPFeatures() const
Get FPOptionsOverride from trailing storage.
bool hasStoredFPFeatures() const
const ASTTemplateArgumentListInfo * getTemplateArgsAsWritten() const
const NestedNameSpecifierLoc & getNestedNameSpecifierLoc() const
NamedDecl * getFoundDecl() const
ConceptDecl * getConceptDecl() const
SourceLocation getTemplateKWLoc() const
Expr * getCond() const
getCond - Return the expression representing the condition for the ?
Expr * getSrcExpr() const
getSrcExpr - Return the Expr to be converted.
Expr * getOperand() const
Retrieve the operand of the 'co_return' statement.
CompoundStmt * getBody() const
Retrieve the body of the coroutine as written.
Expr * getOperand() const
bool hasExplicitTemplateArgs() const
Determines whether this declaration reference was followed by an explicit template argument list.
NestedNameSpecifier getQualifier() const
If the name was qualified, retrieves the nested-name-specifier that precedes the name.
DeclarationNameInfo getNameInfo() const
ArrayRef< TemplateArgumentLoc > template_arguments() const
bool hadMultipleCandidates() const
Returns true if this expression refers to a function that was resolved from an overloaded set having ...
bool hasTemplateKeyword() const
Determines whether the name in this declaration reference was preceded by the template keyword.
bool isSingleDecl() const
isSingleDecl - This method returns true if this DeclStmt refers to a single Decl.
const Decl * getSingleDecl() const
ASTContext & getASTContext() const LLVM_READONLY
const char * getDeclKindName() const
static void printGroup(Decl **Begin, unsigned NumDecls, raw_ostream &Out, const PrintingPolicy &Policy, unsigned Indentation=0)
void print(raw_ostream &Out, unsigned Indentation=0, bool PrintInstantiation=false) const
IdentifierInfo * getAsIdentifierInfo() const
Retrieve the IdentifierInfo * stored in this declaration name, or null if this declaration name isn't...
NameKind getNameKind() const
Determine what kind of name this is.
Expr * getOperand() const
ArrayRef< TemplateArgumentLoc > template_arguments() const
bool hasExplicitTemplateArgs() const
Determines whether this lookup had explicit template arguments.
NestedNameSpecifier getQualifier() const
Retrieve the nested-name-specifier that qualifies this declaration.
bool hasTemplateKeyword() const
Determines whether the name was preceded by the template keyword.
const DeclarationNameInfo & getNameInfo() const
Retrieve the name that this expression refers to.
ArrayRef< TemplateArgumentLoc > template_arguments() const
TemplateTemplateParmDecl * getParameter() const
TemplateName getTemplateName() const
Expr * getArrayRangeEnd(const Designator &D) const
Expr * getArrayRangeStart(const Designator &D) const
MutableArrayRef< Designator > designators()
Expr * getArrayIndex(const Designator &D) const
Expr * getInit() const
Retrieve the initializer value.
InitListExpr * getUpdater() const
IdentifierInfo & getAccessor() const
const Expr * getBase() const
StringRef getFileName() const
TypeSourceInfo * getTypeInfoAsWritten() const
getTypeInfoAsWritten - Returns the type source info for the type that this expression is casting to.
QualType getTypeAsWritten() const
getTypeAsWritten - Returns the type that this expression is casting to, as written in the source code...
This represents one expression.
Expr * IgnoreImpCasts() LLVM_READONLY
Skip past any implicit casts which might surround this expression until reaching a fixed point.
Expr * getQueriedExpression() const
ExpressionTrait getTrait() const
bool isAnonymousStructOrUnion() const
Determines whether this field is a representative for an anonymous struct or union.
std::string getValueAsString(unsigned Radix) const
llvm::APFloat getValue() const
DeclStmt * getConditionVariableDeclStmt()
If this ForStmt has a condition variable, return the faux DeclStmt associated with the creation of th...
const Expr * getSubExpr() const
ValueDecl * getParameterPack() const
Get the parameter pack which this expression refers to.
unsigned getNumLabels() const
const Expr * getOutputConstraintExpr(unsigned i) const
StringRef getLabelName(unsigned i) const
StringRef getInputName(unsigned i) const
StringRef getOutputName(unsigned i) const
const Expr * getInputConstraintExpr(unsigned i) const
const Expr * getAsmStringExpr() const
Expr * getOutputExpr(unsigned i)
Expr * getClobberExpr(unsigned i)
Expr * getInputExpr(unsigned i)
AssociationTy< false > Association
TypeSourceInfo * getControllingType()
Return the controlling type of this generic selection expression.
bool isExprPredicate() const
Whether this generic selection uses an expression as its controlling argument.
association_range associations()
Expr * getControllingExpr()
Return the controlling expression of this generic selection expression.
LabelDecl * getLabel() const
const Expr * getArgLValue() const
Return the l-value expression that was written as the argument in source.
StringRef getName() const
Return the actual identifier string.
const Expr * getSubExpr() const
unsigned getNumInits() const
InitListExpr * getSyntacticForm() const
const Expr * getInit(unsigned Init) const
const char * getName() const
bool hasExplicitParameters() const
Determine whether this lambda has an explicit parameter list vs.
bool isMutable() const
Determine whether the lambda is mutable, meaning that any captures values can be modified.
bool isInitCapture(const LambdaCapture *Capture) const
Determine whether one of this lambda's captures is an init-capture.
CXXMethodDecl * getCallOperator() const
Retrieve the function call operator associated with this lambda expression.
const CompoundStmt * getCompoundStmtBody() const
Retrieve the CompoundStmt representing the body of the lambda.
bool hasExplicitResultType() const
Whether this lambda had its result type explicitly specified.
TemplateParameterList * getTemplateParameterList() const
If this is a generic lambda expression, retrieve the template parameter list associated with it,...
ArrayRef< NamedDecl * > getExplicitTemplateParameters() const
Get the template parameters were explicitly specified (as opposed to being invented by use of an auto...
capture_iterator explicit_capture_end() const
Retrieve an iterator pointing past the end of the sequence of explicit lambda captures.
const LambdaCapture * capture_iterator
An iterator that walks over the captures of the lambda, both implicit and explicit.
capture_iterator explicit_capture_begin() const
Retrieve an iterator pointing to the first explicit lambda capture.
LambdaCaptureDefault getCaptureDefault() const
Determine the default capture kind for this lambda.
CXXRecordDecl * getLambdaClass() const
Retrieve the class that corresponds to the lambda.
llvm::omp::Version getOpenMPVersion() const
Return the OpenMP version.
static StringRef getSourceText(CharSourceRange Range, const SourceManager &SM, const LangOptions &LangOpts, bool *Invalid=nullptr)
Returns a string for the source that the range encompasses.
LabelDecl * getLabelDecl()
bool hasLabelTarget() const
StringRef getAsmString() const
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...
NestedNameSpecifierLoc getQualifierLoc() const
MSPropertyDecl * getPropertyDecl() const
Expr * getBaseExpr() const
Expr * getSubExpr() const
Retrieve the temporary-generating subexpression whose value will be materialized into a glvalue.
ArrayRef< TemplateArgumentLoc > template_arguments() const
NestedNameSpecifier getQualifier() 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.
bool hasExplicitTemplateArgs() const
Determines whether the member name was followed by an explicit template argument list.
bool hadMultipleCandidates() const
Returns true if this member expression refers to a method that was resolved from an overloaded set ha...
bool hasTemplateKeyword() const
Determines whether the member name was preceded by the template keyword.
DeclarationNameInfo getMemberNameInfo() const
Retrieve the member declaration name info.
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
StringRef getName() const
Get the name of identifier for this declaration as a StringRef.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
void printQualifiedName(raw_ostream &OS) const
Returns a human-readable qualified name for this declaration, like A::B::i, for i being member of nam...
NestedNameSpecifier getNestedNameSpecifier() const
Retrieve the nested-name-specifier to which this instance refers.
void print(raw_ostream &OS, const PrintingPolicy &Policy, bool ResolveTemplateArguments=false, bool PrintFinalScopeResOp=true) const
Print this nested name specifier to the given output stream.
Expr * getBase()
Fetches base expression of array shaping expression.
ArrayRef< Expr * > getDimensions() const
Fetches the dimensions for array shaping expression.
IteratorRange getIteratorRange(unsigned I)
Gets the iterator range for the given iterator.
unsigned numOfIterators() const
Returns number of iterator definitions.
Decl * getIteratorDecl(unsigned I)
Gets the iterator declaration for the given iterator.
const Expr * getSynchExpr() const
const CompoundStmt * getSynchBody() const
const Expr * getThrowExpr() const
const ObjCAtFinallyStmt * getFinallyStmt() const
Retrieve the @finally statement, if any.
const Stmt * getTryBody() const
Retrieve the @try body.
catch_range catch_stmts()
const Stmt * getSubStmt() const
StringRef getBridgeKindName() const
Retrieve the kind of bridge being performed as a string.
unsigned getNumElements() const
getNumElements - Return number of elements of objective-c dictionary literal.
ObjCDictionaryElement getKeyValueElement(unsigned Index) const
QualType getEncodedType() const
const Expr * getBase() const
Expr * getArg(unsigned Arg)
getArg - Return the specified argument.
Expr * getInstanceReceiver()
Returns the object expression (receiver) for an instance message, or null for a message that is not a...
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.
QualType getClassReceiver() const
Returns the type of a class message send, or NULL if the message is not a class message.
ReceiverKind getReceiverKind() const
Determine the kind of receiver that this message is being sent to.
unsigned getNumArgs() const
Return the number of actual arguments in this message, not counting the receiver.
Selector getSelector() const
ObjCPropertyDecl * getExplicitProperty() const
ObjCMethodDecl * getImplicitPropertyGetter() const
const Expr * getBase() const
bool isObjectReceiver() const
bool isImplicitProperty() const
ObjCMethodDecl * getImplicitPropertySetter() const
ObjCInterfaceDecl * getClassReceiver() const
bool isClassReceiver() const
bool isSuperReceiver() const
ObjCProtocolDecl * getProtocol() const
Selector getSelector() const
StringLiteral * getString()
Expr * getKeyExpr() const
Expr * getBaseExpr() const
Expr * getIndexExpr(unsigned Idx)
const OffsetOfNode & getComponent(unsigned Idx) const
TypeSourceInfo * getTypeSourceInfo() const
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.
@ Array
An index into an array.
@ 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.
Expr * getSourceExpr() const
The source expression of an opaque value expression is the expression which originally generated the ...
OpenACCDirectiveKind getDirectiveKind() const
ArrayRef< const OpenACCClause * > clauses() const
bool hasExplicitTemplateArgs() const
Determines whether this expression had explicit template arguments.
NestedNameSpecifier getQualifier() const
Fetches the nested-name qualifier, if one was given.
const DeclarationNameInfo & getNameInfo() const
Gets the full name info.
bool hasTemplateKeyword() const
Determines whether the name was preceded by the template keyword.
ArrayRef< TemplateArgumentLoc > template_arguments() const
Expr * getPattern()
Retrieve the pattern of the pack expansion.
Expr * getIndexExpr() const
Expr * getPackIdExpression() const
const Expr * getSubExpr() const
Expr * getExpr(unsigned Init)
unsigned getNumExprs() const
Return the number of expressions in this paren list.
StringRef getIdentKindName() const
PredefinedIdentKind getIdentKind() const
Expr * getSyntacticForm()
Return the syntactic form of this expression, i.e.
void print(raw_ostream &OS, const PrintingPolicy &Policy, const Twine &PlaceHolder=Twine(), unsigned Indentation=0) const
ArrayRef< Expr * > subExpressions()
ArrayRef< concepts::Requirement * > getRequirements() const
ArrayRef< ParmVarDecl * > getLocalParameters() const
CompoundStmt * getBlock() const
Expr * getFilterExpr() const
CompoundStmt * getBlock() const
CompoundStmt * getTryBlock() const
SEHFinallyStmt * getFinallyHandler() const
SEHExceptStmt * getExceptHandler() const
Returns 0 if not defined.
CompoundStmt * getOriginalStmt()
TypeSourceInfo * getTypeSourceInfo()
static std::string getPropertyNameFromSetterSelector(Selector Sel)
Return the property name for the given setter selector.
StringRef getNameForSlot(unsigned argIndex) const
Retrieve the name at a given position in the selector.
const IdentifierInfo * getIdentifierInfoForSlot(unsigned argIndex) const
Retrieve the identifier at a given position in the selector.
void print(llvm::raw_ostream &OS) const
Prints the full selector name (e.g. "foo:bar:").
bool isUnarySelector() const
unsigned getNumArgs() const
unsigned getNumSubExprs() const
getNumSubExprs - Return the size of the SubExprs array.
Expr * getExpr(unsigned Index)
getExpr - Return the Expr at the specified index.
NamedDecl * getPack() const
Retrieve the parameter pack.
StringRef getBuiltinStr() const
Return a string representing the name of the specific builtin function.
bool isValid() const
Return true if this is a valid SourceLocation object.
CompoundStmt * getSubStmt()
StmtVisitor - This class implements a simple visitor for Stmt subclasses.
void printPretty(raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation=0, StringRef NewlineSymbol="\n", const ASTContext *Context=nullptr) const
void printJson(raw_ostream &Out, PrinterHelper *Helper, const PrintingPolicy &Policy, bool AddQuotes) const
Pretty-prints in JSON format.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
void printPrettyControlled(raw_ostream &OS, PrinterHelper *Helper, const PrintingPolicy &Policy, unsigned Indentation=0, StringRef NewlineSymbol="\n", const ASTContext *Context=nullptr) const
Stmt(StmtClass SC, EmptyShell)
Construct an empty statement.
void dumpPretty(const ASTContext &Context) const
dumpPretty/printPretty - These two methods do a "pretty print" of the AST back to its original source...
void outputString(raw_ostream &OS) const
Prints the contents of the string to OS.
Expr * getReplacement() const
NonTypeTemplateParmDecl * getParameterPack() const
Retrieve the non-type template parameter pack being substituted.
DeclStmt * getConditionVariableDeclStmt()
If this SwitchStmt has a condition variable, return the faux DeclStmt associated with the creation of...
unsigned size() const
Retrieve the number of template arguments in this template argument list.
const TemplateArgument & get(unsigned Idx) const
Retrieve the template argument at a given index.
ArrayRef< TemplateArgument > asArray() const
Produce this as an array ref.
ArrayRef< TemplateArgument > pack_elements() const
Iterator range referencing all of the elements of a template argument pack.
@ Pack
The template argument is actually a parameter pack.
ArgKind getKind() const
Return the kind of stored template argument.
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
void print(raw_ostream &OS, const PrintingPolicy &Policy, Qualified Qual=Qualified::AsWritten) const
Print the template name.
void print(raw_ostream &Out, const ASTContext &Context, bool OmitTemplateKW=false) const
QualType getType() const
Return the type wrapped by this type source info.
TypeSourceInfo * getArg(unsigned I) const
Retrieve the Ith argument.
unsigned getNumArgs() const
Determine the number of arguments to this type trait.
TypeTrait getTrait() const
Determine which type trait this expression uses.
bool isSignedIntegerType() const
Return true if this is an integer type that is signed, according to C99 6.2.5p4 [char,...
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
const T * castAs() const
Member-template castAs<specific type>.
bool isEnumeralType() const
DeducedType * getContainedDeducedType() const
Get the DeducedType whose type will be deduced for a variable with an initializer of this type.
EnumDecl * getAsEnumDecl() const
Retrieves the EnumDecl this type refers to.
bool isRecordType() const
QualType getArgumentType() const
bool isArgumentType() const
UnaryExprOrTypeTrait getKind() const
static bool isPostfix(Opcode Op)
isPostfix - Return true if this is a postfix operation, like x++.
Expr * getSubExpr() const
static StringRef getOpcodeStr(Opcode Op)
getOpcodeStr - Turn an Opcode enum value into the punctuation char it corresponds to,...
bool isArrow() const
Determine whether this member expression used the '->' operator; otherwise, it used the '.
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...
const DeclarationNameInfo & getMemberNameInfo() const
Retrieve the full name info for the member that this expression refers to.
CompoundStmt * getOriginalStmt()
LiteralOperatorKind getLiteralOperatorKind() const
Returns the kind of literal operator invocation which this expression represents.
const IdentifierInfo * getUDSuffix() const
Returns the ud-suffix specified for this literal.
Expr * getCookedLiteral()
If this is not a raw user-defined literal, get the underlying cooked literal (representing the litera...
@ LOK_String
operator "" X (const CharT *, size_t)
@ LOK_Raw
Raw form: operator "" X (const char *)
@ LOK_Floating
operator "" X (long double)
@ LOK_Integer
operator "" X (unsigned long long)
@ LOK_Template
Raw form: operator "" X<cs...> ()
@ LOK_Character
operator "" X (CharT)
const Expr * getSubExpr() const
@ CInit
C-style initialization with assignment.
@ CallInit
Call-style initialization (C++98)
const Expr * getInit() const
DeclStmt * getConditionVariableDeclStmt()
If this WhileStmt has a condition variable, return the faux DeclStmt associated with the creation of ...
@ OS
Indicates that the tracking object is a descendant of a referenced-counted OSObject,...
Top level wrappers for InstallAPI frontend operations.
const char * getTraitSpelling(TypeTrait T) LLVM_READONLY
Return the spelling of the trait T. Never null.
OverloadedOperatorKind
Enumeration specifying the different kinds of C++ overloaded operators.
bool isa(CodeGen::Address addr)
@ LCK_ByCopy
Capturing by copy (a.k.a., by value)
@ LCK_ByRef
Capturing by reference.
@ LCK_VLAType
Capturing variable-length array type.
@ LCK_StarThis
Capturing the *this object by copy.
@ LCK_This
Capturing the *this object by reference.
@ If
'if' clause, allowed on all the Compute Constructs, Data Constructs, Executable Constructs,...
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
OpenACCComputeConstruct(OpenACCDirectiveKind K, SourceLocation Start, SourceLocation DirectiveLoc, SourceLocation End, ArrayRef< const OpenACCClause * > Clauses, Stmt *StructuredBlock)
raw_ostream & Indent(raw_ostream &Out, const unsigned int Space, bool IsDot)
const FunctionProtoType * T
std::string JsonFormat(StringRef RawSR, bool AddQuotes)
const char * getOperatorSpelling(OverloadedOperatorKind Operator)
Retrieve the spelling of the given overloaded operator, without the preceding "operator" keyword.
U cast(CodeGen::Address addr)
@ ObjCSelf
Parameter for Objective-C 'self' argument.
CXXNewInitializationStyle
ArrayRef< TemplateArgumentLoc > arguments() const
DeclarationName getName() const
getName - Returns the embedded declaration name.
void printName(raw_ostream &OS, PrintingPolicy Policy) const
printName - Print the human-readable name to a stream.
Expr * Value
The value of the dictionary element.
bool isPackExpansion() const
Determines whether this dictionary element is a pack expansion.
Expr * Key
The key for the dictionary element.
Describes how types, statements, expressions, and declarations should be printed.
unsigned FullyQualifiedName
When true, print the fully qualified name of function declarations.
unsigned PrettyEnums
Whether to print enumerators with a matching enumerator name or via cast.
unsigned Alignof
Whether we can use 'alignof' rather than '__alignof'.
unsigned CleanUglifiedParameters
Whether to strip underscores when printing reserved parameter names.
unsigned ConstantsAsWritten
Whether we should print the constant expressions as written in the sources.
unsigned IncludeNewlines
When true, include newlines after statements like "break", etc.
unsigned TerseOutput
Provide a 'terse' output.
unsigned PrintAsCanonical
Whether to print entities as written or canonically.
unsigned SuppressLambdaBody
Whether to suppress printing the body of a lambda.
unsigned UnderscoreAlignof
Whether we can use '_Alignof' rather than '__alignof'.
unsigned SuppressImplicitBase
When true, don't print the implicit 'self' or 'this' expressions.