1 //===- StmtPrinter.cpp - Printing implementation for Stmt ASTs ------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file implements the Stmt::dumpPretty/Stmt::printPretty methods, which 11 // pretty print the AST back out to C code. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Attr.h" 17 #include "clang/AST/Decl.h" 18 #include "clang/AST/DeclBase.h" 19 #include "clang/AST/DeclCXX.h" 20 #include "clang/AST/DeclObjC.h" 21 #include "clang/AST/DeclOpenMP.h" 22 #include "clang/AST/DeclTemplate.h" 23 #include "clang/AST/Expr.h" 24 #include "clang/AST/ExprCXX.h" 25 #include "clang/AST/ExprObjC.h" 26 #include "clang/AST/ExprOpenMP.h" 27 #include "clang/AST/NestedNameSpecifier.h" 28 #include "clang/AST/OpenMPClause.h" 29 #include "clang/AST/PrettyPrinter.h" 30 #include "clang/AST/Stmt.h" 31 #include "clang/AST/StmtCXX.h" 32 #include "clang/AST/StmtObjC.h" 33 #include "clang/AST/StmtOpenMP.h" 34 #include "clang/AST/StmtVisitor.h" 35 #include "clang/AST/TemplateBase.h" 36 #include "clang/AST/Type.h" 37 #include "clang/Basic/CharInfo.h" 38 #include "clang/Basic/ExpressionTraits.h" 39 #include "clang/Basic/IdentifierTable.h" 40 #include "clang/Basic/LLVM.h" 41 #include "clang/Basic/Lambda.h" 42 #include "clang/Basic/OpenMPKinds.h" 43 #include "clang/Basic/OperatorKinds.h" 44 #include "clang/Basic/SourceLocation.h" 45 #include "clang/Basic/TypeTraits.h" 46 #include "clang/Lex/Lexer.h" 47 #include "llvm/ADT/ArrayRef.h" 48 #include "llvm/ADT/SmallString.h" 49 #include "llvm/ADT/SmallVector.h" 50 #include "llvm/ADT/StringRef.h" 51 #include "llvm/Support/Casting.h" 52 #include "llvm/Support/Compiler.h" 53 #include "llvm/Support/ErrorHandling.h" 54 #include "llvm/Support/Format.h" 55 #include "llvm/Support/raw_ostream.h" 56 #include <cassert> 57 #include <string> 58 59 using namespace clang; 60 61 //===----------------------------------------------------------------------===// 62 // StmtPrinter Visitor 63 //===----------------------------------------------------------------------===// 64 65 namespace { 66 67 class StmtPrinter : public StmtVisitor<StmtPrinter> { 68 raw_ostream &OS; 69 unsigned IndentLevel; 70 PrinterHelper* Helper; 71 PrintingPolicy Policy; 72 const ASTContext *Context; 73 74 public: 75 StmtPrinter(raw_ostream &os, PrinterHelper *helper, 76 const PrintingPolicy &Policy, unsigned Indentation = 0, 77 const ASTContext *Context = nullptr) 78 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy), 79 Context(Context) {} 80 81 void PrintStmt(Stmt *S) { 82 PrintStmt(S, Policy.Indentation); 83 } 84 85 void PrintStmt(Stmt *S, int SubIndent) { 86 IndentLevel += SubIndent; 87 if (S && isa<Expr>(S)) { 88 // If this is an expr used in a stmt context, indent and newline it. 89 Indent(); 90 Visit(S); 91 OS << ";\n"; 92 } else if (S) { 93 Visit(S); 94 } else { 95 Indent() << "<<<NULL STATEMENT>>>\n"; 96 } 97 IndentLevel -= SubIndent; 98 } 99 100 void PrintRawCompoundStmt(CompoundStmt *S); 101 void PrintRawDecl(Decl *D); 102 void PrintRawDeclStmt(const DeclStmt *S); 103 void PrintRawIfStmt(IfStmt *If); 104 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch); 105 void PrintCallArgs(CallExpr *E); 106 void PrintRawSEHExceptHandler(SEHExceptStmt *S); 107 void PrintRawSEHFinallyStmt(SEHFinallyStmt *S); 108 void PrintOMPExecutableDirective(OMPExecutableDirective *S, 109 bool ForceNoStmt = false); 110 111 void PrintExpr(Expr *E) { 112 if (E) 113 Visit(E); 114 else 115 OS << "<null expr>"; 116 } 117 118 raw_ostream &Indent(int Delta = 0) { 119 for (int i = 0, e = IndentLevel+Delta; i < e; ++i) 120 OS << " "; 121 return OS; 122 } 123 124 void Visit(Stmt* S) { 125 if (Helper && Helper->handledStmt(S,OS)) 126 return; 127 else StmtVisitor<StmtPrinter>::Visit(S); 128 } 129 130 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { 131 Indent() << "<<unknown stmt type>>\n"; 132 } 133 134 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { 135 OS << "<<unknown expr type>>"; 136 } 137 138 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node); 139 140 #define ABSTRACT_STMT(CLASS) 141 #define STMT(CLASS, PARENT) \ 142 void Visit##CLASS(CLASS *Node); 143 #include "clang/AST/StmtNodes.inc" 144 }; 145 146 } // namespace 147 148 //===----------------------------------------------------------------------===// 149 // Stmt printing methods. 150 //===----------------------------------------------------------------------===// 151 152 /// PrintRawCompoundStmt - Print a compound stmt without indenting the {, and 153 /// with no newline after the }. 154 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { 155 OS << "{\n"; 156 for (auto *I : Node->body()) 157 PrintStmt(I); 158 159 Indent() << "}"; 160 } 161 162 void StmtPrinter::PrintRawDecl(Decl *D) { 163 D->print(OS, Policy, IndentLevel); 164 } 165 166 void StmtPrinter::PrintRawDeclStmt(const DeclStmt *S) { 167 SmallVector<Decl *, 2> Decls(S->decls()); 168 Decl::printGroup(Decls.data(), Decls.size(), OS, Policy, IndentLevel); 169 } 170 171 void StmtPrinter::VisitNullStmt(NullStmt *Node) { 172 Indent() << ";\n"; 173 } 174 175 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { 176 Indent(); 177 PrintRawDeclStmt(Node); 178 OS << ";\n"; 179 } 180 181 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { 182 Indent(); 183 PrintRawCompoundStmt(Node); 184 OS << "\n"; 185 } 186 187 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) { 188 Indent(-1) << "case "; 189 PrintExpr(Node->getLHS()); 190 if (Node->getRHS()) { 191 OS << " ... "; 192 PrintExpr(Node->getRHS()); 193 } 194 OS << ":\n"; 195 196 PrintStmt(Node->getSubStmt(), 0); 197 } 198 199 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { 200 Indent(-1) << "default:\n"; 201 PrintStmt(Node->getSubStmt(), 0); 202 } 203 204 void StmtPrinter::VisitLabelStmt(LabelStmt *Node) { 205 Indent(-1) << Node->getName() << ":\n"; 206 PrintStmt(Node->getSubStmt(), 0); 207 } 208 209 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { 210 for (const auto *Attr : Node->getAttrs()) { 211 Attr->printPretty(OS, Policy); 212 } 213 214 PrintStmt(Node->getSubStmt(), 0); 215 } 216 217 void StmtPrinter::PrintRawIfStmt(IfStmt *If) { 218 OS << "if ("; 219 if (const DeclStmt *DS = If->getConditionVariableDeclStmt()) 220 PrintRawDeclStmt(DS); 221 else 222 PrintExpr(If->getCond()); 223 OS << ')'; 224 225 if (auto *CS = dyn_cast<CompoundStmt>(If->getThen())) { 226 OS << ' '; 227 PrintRawCompoundStmt(CS); 228 OS << (If->getElse() ? ' ' : '\n'); 229 } else { 230 OS << '\n'; 231 PrintStmt(If->getThen()); 232 if (If->getElse()) Indent(); 233 } 234 235 if (Stmt *Else = If->getElse()) { 236 OS << "else"; 237 238 if (auto *CS = dyn_cast<CompoundStmt>(Else)) { 239 OS << ' '; 240 PrintRawCompoundStmt(CS); 241 OS << '\n'; 242 } else if (auto *ElseIf = dyn_cast<IfStmt>(Else)) { 243 OS << ' '; 244 PrintRawIfStmt(ElseIf); 245 } else { 246 OS << '\n'; 247 PrintStmt(If->getElse()); 248 } 249 } 250 } 251 252 void StmtPrinter::VisitIfStmt(IfStmt *If) { 253 Indent(); 254 PrintRawIfStmt(If); 255 } 256 257 void StmtPrinter::VisitSwitchStmt(SwitchStmt *Node) { 258 Indent() << "switch ("; 259 if (const DeclStmt *DS = Node->getConditionVariableDeclStmt()) 260 PrintRawDeclStmt(DS); 261 else 262 PrintExpr(Node->getCond()); 263 OS << ")"; 264 265 // Pretty print compoundstmt bodies (very common). 266 if (auto *CS = dyn_cast<CompoundStmt>(Node->getBody())) { 267 OS << " "; 268 PrintRawCompoundStmt(CS); 269 OS << "\n"; 270 } else { 271 OS << "\n"; 272 PrintStmt(Node->getBody()); 273 } 274 } 275 276 void StmtPrinter::VisitWhileStmt(WhileStmt *Node) { 277 Indent() << "while ("; 278 if (const DeclStmt *DS = Node->getConditionVariableDeclStmt()) 279 PrintRawDeclStmt(DS); 280 else 281 PrintExpr(Node->getCond()); 282 OS << ")\n"; 283 PrintStmt(Node->getBody()); 284 } 285 286 void StmtPrinter::VisitDoStmt(DoStmt *Node) { 287 Indent() << "do "; 288 if (auto *CS = dyn_cast<CompoundStmt>(Node->getBody())) { 289 PrintRawCompoundStmt(CS); 290 OS << " "; 291 } else { 292 OS << "\n"; 293 PrintStmt(Node->getBody()); 294 Indent(); 295 } 296 297 OS << "while ("; 298 PrintExpr(Node->getCond()); 299 OS << ");\n"; 300 } 301 302 void StmtPrinter::VisitForStmt(ForStmt *Node) { 303 Indent() << "for ("; 304 if (Node->getInit()) { 305 if (auto *DS = dyn_cast<DeclStmt>(Node->getInit())) 306 PrintRawDeclStmt(DS); 307 else 308 PrintExpr(cast<Expr>(Node->getInit())); 309 } 310 OS << ";"; 311 if (Node->getCond()) { 312 OS << " "; 313 PrintExpr(Node->getCond()); 314 } 315 OS << ";"; 316 if (Node->getInc()) { 317 OS << " "; 318 PrintExpr(Node->getInc()); 319 } 320 OS << ") "; 321 322 if (auto *CS = dyn_cast<CompoundStmt>(Node->getBody())) { 323 PrintRawCompoundStmt(CS); 324 OS << "\n"; 325 } else { 326 OS << "\n"; 327 PrintStmt(Node->getBody()); 328 } 329 } 330 331 void StmtPrinter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) { 332 Indent() << "for ("; 333 if (auto *DS = dyn_cast<DeclStmt>(Node->getElement())) 334 PrintRawDeclStmt(DS); 335 else 336 PrintExpr(cast<Expr>(Node->getElement())); 337 OS << " in "; 338 PrintExpr(Node->getCollection()); 339 OS << ") "; 340 341 if (auto *CS = dyn_cast<CompoundStmt>(Node->getBody())) { 342 PrintRawCompoundStmt(CS); 343 OS << "\n"; 344 } else { 345 OS << "\n"; 346 PrintStmt(Node->getBody()); 347 } 348 } 349 350 void StmtPrinter::VisitCXXForRangeStmt(CXXForRangeStmt *Node) { 351 Indent() << "for ("; 352 PrintingPolicy SubPolicy(Policy); 353 SubPolicy.SuppressInitializers = true; 354 Node->getLoopVariable()->print(OS, SubPolicy, IndentLevel); 355 OS << " : "; 356 PrintExpr(Node->getRangeInit()); 357 OS << ") {\n"; 358 PrintStmt(Node->getBody()); 359 Indent() << "}"; 360 if (Policy.IncludeNewlines) OS << "\n"; 361 } 362 363 void StmtPrinter::VisitMSDependentExistsStmt(MSDependentExistsStmt *Node) { 364 Indent(); 365 if (Node->isIfExists()) 366 OS << "__if_exists ("; 367 else 368 OS << "__if_not_exists ("; 369 370 if (NestedNameSpecifier *Qualifier 371 = Node->getQualifierLoc().getNestedNameSpecifier()) 372 Qualifier->print(OS, Policy); 373 374 OS << Node->getNameInfo() << ") "; 375 376 PrintRawCompoundStmt(Node->getSubStmt()); 377 } 378 379 void StmtPrinter::VisitGotoStmt(GotoStmt *Node) { 380 Indent() << "goto " << Node->getLabel()->getName() << ";"; 381 if (Policy.IncludeNewlines) OS << "\n"; 382 } 383 384 void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) { 385 Indent() << "goto *"; 386 PrintExpr(Node->getTarget()); 387 OS << ";"; 388 if (Policy.IncludeNewlines) OS << "\n"; 389 } 390 391 void StmtPrinter::VisitContinueStmt(ContinueStmt *Node) { 392 Indent() << "continue;"; 393 if (Policy.IncludeNewlines) OS << "\n"; 394 } 395 396 void StmtPrinter::VisitBreakStmt(BreakStmt *Node) { 397 Indent() << "break;"; 398 if (Policy.IncludeNewlines) OS << "\n"; 399 } 400 401 void StmtPrinter::VisitReturnStmt(ReturnStmt *Node) { 402 Indent() << "return"; 403 if (Node->getRetValue()) { 404 OS << " "; 405 PrintExpr(Node->getRetValue()); 406 } 407 OS << ";"; 408 if (Policy.IncludeNewlines) OS << "\n"; 409 } 410 411 void StmtPrinter::VisitGCCAsmStmt(GCCAsmStmt *Node) { 412 Indent() << "asm "; 413 414 if (Node->isVolatile()) 415 OS << "volatile "; 416 417 OS << "("; 418 VisitStringLiteral(Node->getAsmString()); 419 420 // Outputs 421 if (Node->getNumOutputs() != 0 || Node->getNumInputs() != 0 || 422 Node->getNumClobbers() != 0) 423 OS << " : "; 424 425 for (unsigned i = 0, e = Node->getNumOutputs(); i != e; ++i) { 426 if (i != 0) 427 OS << ", "; 428 429 if (!Node->getOutputName(i).empty()) { 430 OS << '['; 431 OS << Node->getOutputName(i); 432 OS << "] "; 433 } 434 435 VisitStringLiteral(Node->getOutputConstraintLiteral(i)); 436 OS << " ("; 437 Visit(Node->getOutputExpr(i)); 438 OS << ")"; 439 } 440 441 // Inputs 442 if (Node->getNumInputs() != 0 || Node->getNumClobbers() != 0) 443 OS << " : "; 444 445 for (unsigned i = 0, e = Node->getNumInputs(); i != e; ++i) { 446 if (i != 0) 447 OS << ", "; 448 449 if (!Node->getInputName(i).empty()) { 450 OS << '['; 451 OS << Node->getInputName(i); 452 OS << "] "; 453 } 454 455 VisitStringLiteral(Node->getInputConstraintLiteral(i)); 456 OS << " ("; 457 Visit(Node->getInputExpr(i)); 458 OS << ")"; 459 } 460 461 // Clobbers 462 if (Node->getNumClobbers() != 0) 463 OS << " : "; 464 465 for (unsigned i = 0, e = Node->getNumClobbers(); i != e; ++i) { 466 if (i != 0) 467 OS << ", "; 468 469 VisitStringLiteral(Node->getClobberStringLiteral(i)); 470 } 471 472 OS << ");"; 473 if (Policy.IncludeNewlines) OS << "\n"; 474 } 475 476 void StmtPrinter::VisitMSAsmStmt(MSAsmStmt *Node) { 477 // FIXME: Implement MS style inline asm statement printer. 478 Indent() << "__asm "; 479 if (Node->hasBraces()) 480 OS << "{\n"; 481 OS << Node->getAsmString() << "\n"; 482 if (Node->hasBraces()) 483 Indent() << "}\n"; 484 } 485 486 void StmtPrinter::VisitCapturedStmt(CapturedStmt *Node) { 487 PrintStmt(Node->getCapturedDecl()->getBody()); 488 } 489 490 void StmtPrinter::VisitObjCAtTryStmt(ObjCAtTryStmt *Node) { 491 Indent() << "@try"; 492 if (auto *TS = dyn_cast<CompoundStmt>(Node->getTryBody())) { 493 PrintRawCompoundStmt(TS); 494 OS << "\n"; 495 } 496 497 for (unsigned I = 0, N = Node->getNumCatchStmts(); I != N; ++I) { 498 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); 499 Indent() << "@catch("; 500 if (catchStmt->getCatchParamDecl()) { 501 if (Decl *DS = catchStmt->getCatchParamDecl()) 502 PrintRawDecl(DS); 503 } 504 OS << ")"; 505 if (auto *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody())) { 506 PrintRawCompoundStmt(CS); 507 OS << "\n"; 508 } 509 } 510 511 if (auto *FS = static_cast<ObjCAtFinallyStmt *>(Node->getFinallyStmt())) { 512 Indent() << "@finally"; 513 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(FS->getFinallyBody())); 514 OS << "\n"; 515 } 516 } 517 518 void StmtPrinter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) { 519 } 520 521 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { 522 Indent() << "@catch (...) { /* todo */ } \n"; 523 } 524 525 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { 526 Indent() << "@throw"; 527 if (Node->getThrowExpr()) { 528 OS << " "; 529 PrintExpr(Node->getThrowExpr()); 530 } 531 OS << ";\n"; 532 } 533 534 void StmtPrinter::VisitObjCAvailabilityCheckExpr( 535 ObjCAvailabilityCheckExpr *Node) { 536 OS << "@available(...)"; 537 } 538 539 void StmtPrinter::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) { 540 Indent() << "@synchronized ("; 541 PrintExpr(Node->getSynchExpr()); 542 OS << ")"; 543 PrintRawCompoundStmt(Node->getSynchBody()); 544 OS << "\n"; 545 } 546 547 void StmtPrinter::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *Node) { 548 Indent() << "@autoreleasepool"; 549 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(Node->getSubStmt())); 550 OS << "\n"; 551 } 552 553 void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) { 554 OS << "catch ("; 555 if (Decl *ExDecl = Node->getExceptionDecl()) 556 PrintRawDecl(ExDecl); 557 else 558 OS << "..."; 559 OS << ") "; 560 PrintRawCompoundStmt(cast<CompoundStmt>(Node->getHandlerBlock())); 561 } 562 563 void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) { 564 Indent(); 565 PrintRawCXXCatchStmt(Node); 566 OS << "\n"; 567 } 568 569 void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) { 570 Indent() << "try "; 571 PrintRawCompoundStmt(Node->getTryBlock()); 572 for (unsigned i = 0, e = Node->getNumHandlers(); i < e; ++i) { 573 OS << " "; 574 PrintRawCXXCatchStmt(Node->getHandler(i)); 575 } 576 OS << "\n"; 577 } 578 579 void StmtPrinter::VisitSEHTryStmt(SEHTryStmt *Node) { 580 Indent() << (Node->getIsCXXTry() ? "try " : "__try "); 581 PrintRawCompoundStmt(Node->getTryBlock()); 582 SEHExceptStmt *E = Node->getExceptHandler(); 583 SEHFinallyStmt *F = Node->getFinallyHandler(); 584 if(E) 585 PrintRawSEHExceptHandler(E); 586 else { 587 assert(F && "Must have a finally block..."); 588 PrintRawSEHFinallyStmt(F); 589 } 590 OS << "\n"; 591 } 592 593 void StmtPrinter::PrintRawSEHFinallyStmt(SEHFinallyStmt *Node) { 594 OS << "__finally "; 595 PrintRawCompoundStmt(Node->getBlock()); 596 OS << "\n"; 597 } 598 599 void StmtPrinter::PrintRawSEHExceptHandler(SEHExceptStmt *Node) { 600 OS << "__except ("; 601 VisitExpr(Node->getFilterExpr()); 602 OS << ")\n"; 603 PrintRawCompoundStmt(Node->getBlock()); 604 OS << "\n"; 605 } 606 607 void StmtPrinter::VisitSEHExceptStmt(SEHExceptStmt *Node) { 608 Indent(); 609 PrintRawSEHExceptHandler(Node); 610 OS << "\n"; 611 } 612 613 void StmtPrinter::VisitSEHFinallyStmt(SEHFinallyStmt *Node) { 614 Indent(); 615 PrintRawSEHFinallyStmt(Node); 616 OS << "\n"; 617 } 618 619 void StmtPrinter::VisitSEHLeaveStmt(SEHLeaveStmt *Node) { 620 Indent() << "__leave;"; 621 if (Policy.IncludeNewlines) OS << "\n"; 622 } 623 624 //===----------------------------------------------------------------------===// 625 // OpenMP clauses printing methods 626 //===----------------------------------------------------------------------===// 627 628 namespace { 629 630 class OMPClausePrinter : public OMPClauseVisitor<OMPClausePrinter> { 631 raw_ostream &OS; 632 const PrintingPolicy &Policy; 633 634 /// \brief Process clauses with list of variables. 635 template <typename T> 636 void VisitOMPClauseList(T *Node, char StartSym); 637 638 public: 639 OMPClausePrinter(raw_ostream &OS, const PrintingPolicy &Policy) 640 : OS(OS), Policy(Policy) {} 641 642 #define OPENMP_CLAUSE(Name, Class) \ 643 void Visit##Class(Class *S); 644 #include "clang/Basic/OpenMPKinds.def" 645 }; 646 647 } // namespace 648 649 void OMPClausePrinter::VisitOMPIfClause(OMPIfClause *Node) { 650 OS << "if("; 651 if (Node->getNameModifier() != OMPD_unknown) 652 OS << getOpenMPDirectiveName(Node->getNameModifier()) << ": "; 653 Node->getCondition()->printPretty(OS, nullptr, Policy, 0); 654 OS << ")"; 655 } 656 657 void OMPClausePrinter::VisitOMPFinalClause(OMPFinalClause *Node) { 658 OS << "final("; 659 Node->getCondition()->printPretty(OS, nullptr, Policy, 0); 660 OS << ")"; 661 } 662 663 void OMPClausePrinter::VisitOMPNumThreadsClause(OMPNumThreadsClause *Node) { 664 OS << "num_threads("; 665 Node->getNumThreads()->printPretty(OS, nullptr, Policy, 0); 666 OS << ")"; 667 } 668 669 void OMPClausePrinter::VisitOMPSafelenClause(OMPSafelenClause *Node) { 670 OS << "safelen("; 671 Node->getSafelen()->printPretty(OS, nullptr, Policy, 0); 672 OS << ")"; 673 } 674 675 void OMPClausePrinter::VisitOMPSimdlenClause(OMPSimdlenClause *Node) { 676 OS << "simdlen("; 677 Node->getSimdlen()->printPretty(OS, nullptr, Policy, 0); 678 OS << ")"; 679 } 680 681 void OMPClausePrinter::VisitOMPCollapseClause(OMPCollapseClause *Node) { 682 OS << "collapse("; 683 Node->getNumForLoops()->printPretty(OS, nullptr, Policy, 0); 684 OS << ")"; 685 } 686 687 void OMPClausePrinter::VisitOMPDefaultClause(OMPDefaultClause *Node) { 688 OS << "default(" 689 << getOpenMPSimpleClauseTypeName(OMPC_default, Node->getDefaultKind()) 690 << ")"; 691 } 692 693 void OMPClausePrinter::VisitOMPProcBindClause(OMPProcBindClause *Node) { 694 OS << "proc_bind(" 695 << getOpenMPSimpleClauseTypeName(OMPC_proc_bind, Node->getProcBindKind()) 696 << ")"; 697 } 698 699 void OMPClausePrinter::VisitOMPScheduleClause(OMPScheduleClause *Node) { 700 OS << "schedule("; 701 if (Node->getFirstScheduleModifier() != OMPC_SCHEDULE_MODIFIER_unknown) { 702 OS << getOpenMPSimpleClauseTypeName(OMPC_schedule, 703 Node->getFirstScheduleModifier()); 704 if (Node->getSecondScheduleModifier() != OMPC_SCHEDULE_MODIFIER_unknown) { 705 OS << ", "; 706 OS << getOpenMPSimpleClauseTypeName(OMPC_schedule, 707 Node->getSecondScheduleModifier()); 708 } 709 OS << ": "; 710 } 711 OS << getOpenMPSimpleClauseTypeName(OMPC_schedule, Node->getScheduleKind()); 712 if (auto *E = Node->getChunkSize()) { 713 OS << ", "; 714 E->printPretty(OS, nullptr, Policy); 715 } 716 OS << ")"; 717 } 718 719 void OMPClausePrinter::VisitOMPOrderedClause(OMPOrderedClause *Node) { 720 OS << "ordered"; 721 if (auto *Num = Node->getNumForLoops()) { 722 OS << "("; 723 Num->printPretty(OS, nullptr, Policy, 0); 724 OS << ")"; 725 } 726 } 727 728 void OMPClausePrinter::VisitOMPNowaitClause(OMPNowaitClause *) { 729 OS << "nowait"; 730 } 731 732 void OMPClausePrinter::VisitOMPUntiedClause(OMPUntiedClause *) { 733 OS << "untied"; 734 } 735 736 void OMPClausePrinter::VisitOMPNogroupClause(OMPNogroupClause *) { 737 OS << "nogroup"; 738 } 739 740 void OMPClausePrinter::VisitOMPMergeableClause(OMPMergeableClause *) { 741 OS << "mergeable"; 742 } 743 744 void OMPClausePrinter::VisitOMPReadClause(OMPReadClause *) { OS << "read"; } 745 746 void OMPClausePrinter::VisitOMPWriteClause(OMPWriteClause *) { OS << "write"; } 747 748 void OMPClausePrinter::VisitOMPUpdateClause(OMPUpdateClause *) { 749 OS << "update"; 750 } 751 752 void OMPClausePrinter::VisitOMPCaptureClause(OMPCaptureClause *) { 753 OS << "capture"; 754 } 755 756 void OMPClausePrinter::VisitOMPSeqCstClause(OMPSeqCstClause *) { 757 OS << "seq_cst"; 758 } 759 760 void OMPClausePrinter::VisitOMPThreadsClause(OMPThreadsClause *) { 761 OS << "threads"; 762 } 763 764 void OMPClausePrinter::VisitOMPSIMDClause(OMPSIMDClause *) { OS << "simd"; } 765 766 void OMPClausePrinter::VisitOMPDeviceClause(OMPDeviceClause *Node) { 767 OS << "device("; 768 Node->getDevice()->printPretty(OS, nullptr, Policy, 0); 769 OS << ")"; 770 } 771 772 void OMPClausePrinter::VisitOMPNumTeamsClause(OMPNumTeamsClause *Node) { 773 OS << "num_teams("; 774 Node->getNumTeams()->printPretty(OS, nullptr, Policy, 0); 775 OS << ")"; 776 } 777 778 void OMPClausePrinter::VisitOMPThreadLimitClause(OMPThreadLimitClause *Node) { 779 OS << "thread_limit("; 780 Node->getThreadLimit()->printPretty(OS, nullptr, Policy, 0); 781 OS << ")"; 782 } 783 784 void OMPClausePrinter::VisitOMPPriorityClause(OMPPriorityClause *Node) { 785 OS << "priority("; 786 Node->getPriority()->printPretty(OS, nullptr, Policy, 0); 787 OS << ")"; 788 } 789 790 void OMPClausePrinter::VisitOMPGrainsizeClause(OMPGrainsizeClause *Node) { 791 OS << "grainsize("; 792 Node->getGrainsize()->printPretty(OS, nullptr, Policy, 0); 793 OS << ")"; 794 } 795 796 void OMPClausePrinter::VisitOMPNumTasksClause(OMPNumTasksClause *Node) { 797 OS << "num_tasks("; 798 Node->getNumTasks()->printPretty(OS, nullptr, Policy, 0); 799 OS << ")"; 800 } 801 802 void OMPClausePrinter::VisitOMPHintClause(OMPHintClause *Node) { 803 OS << "hint("; 804 Node->getHint()->printPretty(OS, nullptr, Policy, 0); 805 OS << ")"; 806 } 807 808 template<typename T> 809 void OMPClausePrinter::VisitOMPClauseList(T *Node, char StartSym) { 810 for (typename T::varlist_iterator I = Node->varlist_begin(), 811 E = Node->varlist_end(); 812 I != E; ++I) { 813 assert(*I && "Expected non-null Stmt"); 814 OS << (I == Node->varlist_begin() ? StartSym : ','); 815 if (auto *DRE = dyn_cast<DeclRefExpr>(*I)) { 816 if (isa<OMPCapturedExprDecl>(DRE->getDecl())) 817 DRE->printPretty(OS, nullptr, Policy, 0); 818 else 819 DRE->getDecl()->printQualifiedName(OS); 820 } else 821 (*I)->printPretty(OS, nullptr, Policy, 0); 822 } 823 } 824 825 void OMPClausePrinter::VisitOMPPrivateClause(OMPPrivateClause *Node) { 826 if (!Node->varlist_empty()) { 827 OS << "private"; 828 VisitOMPClauseList(Node, '('); 829 OS << ")"; 830 } 831 } 832 833 void OMPClausePrinter::VisitOMPFirstprivateClause(OMPFirstprivateClause *Node) { 834 if (!Node->varlist_empty()) { 835 OS << "firstprivate"; 836 VisitOMPClauseList(Node, '('); 837 OS << ")"; 838 } 839 } 840 841 void OMPClausePrinter::VisitOMPLastprivateClause(OMPLastprivateClause *Node) { 842 if (!Node->varlist_empty()) { 843 OS << "lastprivate"; 844 VisitOMPClauseList(Node, '('); 845 OS << ")"; 846 } 847 } 848 849 void OMPClausePrinter::VisitOMPSharedClause(OMPSharedClause *Node) { 850 if (!Node->varlist_empty()) { 851 OS << "shared"; 852 VisitOMPClauseList(Node, '('); 853 OS << ")"; 854 } 855 } 856 857 void OMPClausePrinter::VisitOMPReductionClause(OMPReductionClause *Node) { 858 if (!Node->varlist_empty()) { 859 OS << "reduction("; 860 NestedNameSpecifier *QualifierLoc = 861 Node->getQualifierLoc().getNestedNameSpecifier(); 862 OverloadedOperatorKind OOK = 863 Node->getNameInfo().getName().getCXXOverloadedOperator(); 864 if (QualifierLoc == nullptr && OOK != OO_None) { 865 // Print reduction identifier in C format 866 OS << getOperatorSpelling(OOK); 867 } else { 868 // Use C++ format 869 if (QualifierLoc != nullptr) 870 QualifierLoc->print(OS, Policy); 871 OS << Node->getNameInfo(); 872 } 873 OS << ":"; 874 VisitOMPClauseList(Node, ' '); 875 OS << ")"; 876 } 877 } 878 879 void OMPClausePrinter::VisitOMPTaskReductionClause( 880 OMPTaskReductionClause *Node) { 881 if (!Node->varlist_empty()) { 882 OS << "task_reduction("; 883 NestedNameSpecifier *QualifierLoc = 884 Node->getQualifierLoc().getNestedNameSpecifier(); 885 OverloadedOperatorKind OOK = 886 Node->getNameInfo().getName().getCXXOverloadedOperator(); 887 if (QualifierLoc == nullptr && OOK != OO_None) { 888 // Print reduction identifier in C format 889 OS << getOperatorSpelling(OOK); 890 } else { 891 // Use C++ format 892 if (QualifierLoc != nullptr) 893 QualifierLoc->print(OS, Policy); 894 OS << Node->getNameInfo(); 895 } 896 OS << ":"; 897 VisitOMPClauseList(Node, ' '); 898 OS << ")"; 899 } 900 } 901 902 void OMPClausePrinter::VisitOMPInReductionClause(OMPInReductionClause *Node) { 903 if (!Node->varlist_empty()) { 904 OS << "in_reduction("; 905 NestedNameSpecifier *QualifierLoc = 906 Node->getQualifierLoc().getNestedNameSpecifier(); 907 OverloadedOperatorKind OOK = 908 Node->getNameInfo().getName().getCXXOverloadedOperator(); 909 if (QualifierLoc == nullptr && OOK != OO_None) { 910 // Print reduction identifier in C format 911 OS << getOperatorSpelling(OOK); 912 } else { 913 // Use C++ format 914 if (QualifierLoc != nullptr) 915 QualifierLoc->print(OS, Policy); 916 OS << Node->getNameInfo(); 917 } 918 OS << ":"; 919 VisitOMPClauseList(Node, ' '); 920 OS << ")"; 921 } 922 } 923 924 void OMPClausePrinter::VisitOMPLinearClause(OMPLinearClause *Node) { 925 if (!Node->varlist_empty()) { 926 OS << "linear"; 927 if (Node->getModifierLoc().isValid()) { 928 OS << '(' 929 << getOpenMPSimpleClauseTypeName(OMPC_linear, Node->getModifier()); 930 } 931 VisitOMPClauseList(Node, '('); 932 if (Node->getModifierLoc().isValid()) 933 OS << ')'; 934 if (Node->getStep() != nullptr) { 935 OS << ": "; 936 Node->getStep()->printPretty(OS, nullptr, Policy, 0); 937 } 938 OS << ")"; 939 } 940 } 941 942 void OMPClausePrinter::VisitOMPAlignedClause(OMPAlignedClause *Node) { 943 if (!Node->varlist_empty()) { 944 OS << "aligned"; 945 VisitOMPClauseList(Node, '('); 946 if (Node->getAlignment() != nullptr) { 947 OS << ": "; 948 Node->getAlignment()->printPretty(OS, nullptr, Policy, 0); 949 } 950 OS << ")"; 951 } 952 } 953 954 void OMPClausePrinter::VisitOMPCopyinClause(OMPCopyinClause *Node) { 955 if (!Node->varlist_empty()) { 956 OS << "copyin"; 957 VisitOMPClauseList(Node, '('); 958 OS << ")"; 959 } 960 } 961 962 void OMPClausePrinter::VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) { 963 if (!Node->varlist_empty()) { 964 OS << "copyprivate"; 965 VisitOMPClauseList(Node, '('); 966 OS << ")"; 967 } 968 } 969 970 void OMPClausePrinter::VisitOMPFlushClause(OMPFlushClause *Node) { 971 if (!Node->varlist_empty()) { 972 VisitOMPClauseList(Node, '('); 973 OS << ")"; 974 } 975 } 976 977 void OMPClausePrinter::VisitOMPDependClause(OMPDependClause *Node) { 978 OS << "depend("; 979 OS << getOpenMPSimpleClauseTypeName(Node->getClauseKind(), 980 Node->getDependencyKind()); 981 if (!Node->varlist_empty()) { 982 OS << " :"; 983 VisitOMPClauseList(Node, ' '); 984 } 985 OS << ")"; 986 } 987 988 void OMPClausePrinter::VisitOMPMapClause(OMPMapClause *Node) { 989 if (!Node->varlist_empty()) { 990 OS << "map("; 991 if (Node->getMapType() != OMPC_MAP_unknown) { 992 if (Node->getMapTypeModifier() != OMPC_MAP_unknown) { 993 OS << getOpenMPSimpleClauseTypeName(OMPC_map, 994 Node->getMapTypeModifier()); 995 OS << ','; 996 } 997 OS << getOpenMPSimpleClauseTypeName(OMPC_map, Node->getMapType()); 998 OS << ':'; 999 } 1000 VisitOMPClauseList(Node, ' '); 1001 OS << ")"; 1002 } 1003 } 1004 1005 void OMPClausePrinter::VisitOMPToClause(OMPToClause *Node) { 1006 if (!Node->varlist_empty()) { 1007 OS << "to"; 1008 VisitOMPClauseList(Node, '('); 1009 OS << ")"; 1010 } 1011 } 1012 1013 void OMPClausePrinter::VisitOMPFromClause(OMPFromClause *Node) { 1014 if (!Node->varlist_empty()) { 1015 OS << "from"; 1016 VisitOMPClauseList(Node, '('); 1017 OS << ")"; 1018 } 1019 } 1020 1021 void OMPClausePrinter::VisitOMPDistScheduleClause(OMPDistScheduleClause *Node) { 1022 OS << "dist_schedule(" << getOpenMPSimpleClauseTypeName( 1023 OMPC_dist_schedule, Node->getDistScheduleKind()); 1024 if (auto *E = Node->getChunkSize()) { 1025 OS << ", "; 1026 E->printPretty(OS, nullptr, Policy); 1027 } 1028 OS << ")"; 1029 } 1030 1031 void OMPClausePrinter::VisitOMPDefaultmapClause(OMPDefaultmapClause *Node) { 1032 OS << "defaultmap("; 1033 OS << getOpenMPSimpleClauseTypeName(OMPC_defaultmap, 1034 Node->getDefaultmapModifier()); 1035 OS << ": "; 1036 OS << getOpenMPSimpleClauseTypeName(OMPC_defaultmap, 1037 Node->getDefaultmapKind()); 1038 OS << ")"; 1039 } 1040 1041 void OMPClausePrinter::VisitOMPUseDevicePtrClause(OMPUseDevicePtrClause *Node) { 1042 if (!Node->varlist_empty()) { 1043 OS << "use_device_ptr"; 1044 VisitOMPClauseList(Node, '('); 1045 OS << ")"; 1046 } 1047 } 1048 1049 void OMPClausePrinter::VisitOMPIsDevicePtrClause(OMPIsDevicePtrClause *Node) { 1050 if (!Node->varlist_empty()) { 1051 OS << "is_device_ptr"; 1052 VisitOMPClauseList(Node, '('); 1053 OS << ")"; 1054 } 1055 } 1056 1057 //===----------------------------------------------------------------------===// 1058 // OpenMP directives printing methods 1059 //===----------------------------------------------------------------------===// 1060 1061 void StmtPrinter::PrintOMPExecutableDirective(OMPExecutableDirective *S, 1062 bool ForceNoStmt) { 1063 OMPClausePrinter Printer(OS, Policy); 1064 ArrayRef<OMPClause *> Clauses = S->clauses(); 1065 for (auto *Clause : Clauses) 1066 if (Clause && !Clause->isImplicit()) { 1067 OS << ' '; 1068 Printer.Visit(Clause); 1069 } 1070 OS << "\n"; 1071 if (!ForceNoStmt && S->hasAssociatedStmt()) 1072 PrintStmt(S->getInnermostCapturedStmt()->getCapturedStmt()); 1073 } 1074 1075 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { 1076 Indent() << "#pragma omp parallel"; 1077 PrintOMPExecutableDirective(Node); 1078 } 1079 1080 void StmtPrinter::VisitOMPSimdDirective(OMPSimdDirective *Node) { 1081 Indent() << "#pragma omp simd"; 1082 PrintOMPExecutableDirective(Node); 1083 } 1084 1085 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { 1086 Indent() << "#pragma omp for"; 1087 PrintOMPExecutableDirective(Node); 1088 } 1089 1090 void StmtPrinter::VisitOMPForSimdDirective(OMPForSimdDirective *Node) { 1091 Indent() << "#pragma omp for simd"; 1092 PrintOMPExecutableDirective(Node); 1093 } 1094 1095 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { 1096 Indent() << "#pragma omp sections"; 1097 PrintOMPExecutableDirective(Node); 1098 } 1099 1100 void StmtPrinter::VisitOMPSectionDirective(OMPSectionDirective *Node) { 1101 Indent() << "#pragma omp section"; 1102 PrintOMPExecutableDirective(Node); 1103 } 1104 1105 void StmtPrinter::VisitOMPSingleDirective(OMPSingleDirective *Node) { 1106 Indent() << "#pragma omp single"; 1107 PrintOMPExecutableDirective(Node); 1108 } 1109 1110 void StmtPrinter::VisitOMPMasterDirective(OMPMasterDirective *Node) { 1111 Indent() << "#pragma omp master"; 1112 PrintOMPExecutableDirective(Node); 1113 } 1114 1115 void StmtPrinter::VisitOMPCriticalDirective(OMPCriticalDirective *Node) { 1116 Indent() << "#pragma omp critical"; 1117 if (Node->getDirectiveName().getName()) { 1118 OS << " ("; 1119 Node->getDirectiveName().printName(OS); 1120 OS << ")"; 1121 } 1122 PrintOMPExecutableDirective(Node); 1123 } 1124 1125 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { 1126 Indent() << "#pragma omp parallel for"; 1127 PrintOMPExecutableDirective(Node); 1128 } 1129 1130 void StmtPrinter::VisitOMPParallelForSimdDirective( 1131 OMPParallelForSimdDirective *Node) { 1132 Indent() << "#pragma omp parallel for simd"; 1133 PrintOMPExecutableDirective(Node); 1134 } 1135 1136 void StmtPrinter::VisitOMPParallelSectionsDirective( 1137 OMPParallelSectionsDirective *Node) { 1138 Indent() << "#pragma omp parallel sections"; 1139 PrintOMPExecutableDirective(Node); 1140 } 1141 1142 void StmtPrinter::VisitOMPTaskDirective(OMPTaskDirective *Node) { 1143 Indent() << "#pragma omp task"; 1144 PrintOMPExecutableDirective(Node); 1145 } 1146 1147 void StmtPrinter::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) { 1148 Indent() << "#pragma omp taskyield"; 1149 PrintOMPExecutableDirective(Node); 1150 } 1151 1152 void StmtPrinter::VisitOMPBarrierDirective(OMPBarrierDirective *Node) { 1153 Indent() << "#pragma omp barrier"; 1154 PrintOMPExecutableDirective(Node); 1155 } 1156 1157 void StmtPrinter::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) { 1158 Indent() << "#pragma omp taskwait"; 1159 PrintOMPExecutableDirective(Node); 1160 } 1161 1162 void StmtPrinter::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *Node) { 1163 Indent() << "#pragma omp taskgroup"; 1164 PrintOMPExecutableDirective(Node); 1165 } 1166 1167 void StmtPrinter::VisitOMPFlushDirective(OMPFlushDirective *Node) { 1168 Indent() << "#pragma omp flush"; 1169 PrintOMPExecutableDirective(Node); 1170 } 1171 1172 void StmtPrinter::VisitOMPOrderedDirective(OMPOrderedDirective *Node) { 1173 Indent() << "#pragma omp ordered"; 1174 PrintOMPExecutableDirective(Node, Node->hasClausesOfKind<OMPDependClause>()); 1175 } 1176 1177 void StmtPrinter::VisitOMPAtomicDirective(OMPAtomicDirective *Node) { 1178 Indent() << "#pragma omp atomic"; 1179 PrintOMPExecutableDirective(Node); 1180 } 1181 1182 void StmtPrinter::VisitOMPTargetDirective(OMPTargetDirective *Node) { 1183 Indent() << "#pragma omp target"; 1184 PrintOMPExecutableDirective(Node); 1185 } 1186 1187 void StmtPrinter::VisitOMPTargetDataDirective(OMPTargetDataDirective *Node) { 1188 Indent() << "#pragma omp target data"; 1189 PrintOMPExecutableDirective(Node); 1190 } 1191 1192 void StmtPrinter::VisitOMPTargetEnterDataDirective( 1193 OMPTargetEnterDataDirective *Node) { 1194 Indent() << "#pragma omp target enter data"; 1195 PrintOMPExecutableDirective(Node, /*ForceNoStmt=*/true); 1196 } 1197 1198 void StmtPrinter::VisitOMPTargetExitDataDirective( 1199 OMPTargetExitDataDirective *Node) { 1200 Indent() << "#pragma omp target exit data"; 1201 PrintOMPExecutableDirective(Node, /*ForceNoStmt=*/true); 1202 } 1203 1204 void StmtPrinter::VisitOMPTargetParallelDirective( 1205 OMPTargetParallelDirective *Node) { 1206 Indent() << "#pragma omp target parallel"; 1207 PrintOMPExecutableDirective(Node); 1208 } 1209 1210 void StmtPrinter::VisitOMPTargetParallelForDirective( 1211 OMPTargetParallelForDirective *Node) { 1212 Indent() << "#pragma omp target parallel for"; 1213 PrintOMPExecutableDirective(Node); 1214 } 1215 1216 void StmtPrinter::VisitOMPTeamsDirective(OMPTeamsDirective *Node) { 1217 Indent() << "#pragma omp teams"; 1218 PrintOMPExecutableDirective(Node); 1219 } 1220 1221 void StmtPrinter::VisitOMPCancellationPointDirective( 1222 OMPCancellationPointDirective *Node) { 1223 Indent() << "#pragma omp cancellation point " 1224 << getOpenMPDirectiveName(Node->getCancelRegion()); 1225 PrintOMPExecutableDirective(Node); 1226 } 1227 1228 void StmtPrinter::VisitOMPCancelDirective(OMPCancelDirective *Node) { 1229 Indent() << "#pragma omp cancel " 1230 << getOpenMPDirectiveName(Node->getCancelRegion()); 1231 PrintOMPExecutableDirective(Node); 1232 } 1233 1234 void StmtPrinter::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *Node) { 1235 Indent() << "#pragma omp taskloop"; 1236 PrintOMPExecutableDirective(Node); 1237 } 1238 1239 void StmtPrinter::VisitOMPTaskLoopSimdDirective( 1240 OMPTaskLoopSimdDirective *Node) { 1241 Indent() << "#pragma omp taskloop simd"; 1242 PrintOMPExecutableDirective(Node); 1243 } 1244 1245 void StmtPrinter::VisitOMPDistributeDirective(OMPDistributeDirective *Node) { 1246 Indent() << "#pragma omp distribute"; 1247 PrintOMPExecutableDirective(Node); 1248 } 1249 1250 void StmtPrinter::VisitOMPTargetUpdateDirective( 1251 OMPTargetUpdateDirective *Node) { 1252 Indent() << "#pragma omp target update"; 1253 PrintOMPExecutableDirective(Node, /*ForceNoStmt=*/true); 1254 } 1255 1256 void StmtPrinter::VisitOMPDistributeParallelForDirective( 1257 OMPDistributeParallelForDirective *Node) { 1258 Indent() << "#pragma omp distribute parallel for"; 1259 PrintOMPExecutableDirective(Node); 1260 } 1261 1262 void StmtPrinter::VisitOMPDistributeParallelForSimdDirective( 1263 OMPDistributeParallelForSimdDirective *Node) { 1264 Indent() << "#pragma omp distribute parallel for simd"; 1265 PrintOMPExecutableDirective(Node); 1266 } 1267 1268 void StmtPrinter::VisitOMPDistributeSimdDirective( 1269 OMPDistributeSimdDirective *Node) { 1270 Indent() << "#pragma omp distribute simd"; 1271 PrintOMPExecutableDirective(Node); 1272 } 1273 1274 void StmtPrinter::VisitOMPTargetParallelForSimdDirective( 1275 OMPTargetParallelForSimdDirective *Node) { 1276 Indent() << "#pragma omp target parallel for simd"; 1277 PrintOMPExecutableDirective(Node); 1278 } 1279 1280 void StmtPrinter::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *Node) { 1281 Indent() << "#pragma omp target simd"; 1282 PrintOMPExecutableDirective(Node); 1283 } 1284 1285 void StmtPrinter::VisitOMPTeamsDistributeDirective( 1286 OMPTeamsDistributeDirective *Node) { 1287 Indent() << "#pragma omp teams distribute"; 1288 PrintOMPExecutableDirective(Node); 1289 } 1290 1291 void StmtPrinter::VisitOMPTeamsDistributeSimdDirective( 1292 OMPTeamsDistributeSimdDirective *Node) { 1293 Indent() << "#pragma omp teams distribute simd"; 1294 PrintOMPExecutableDirective(Node); 1295 } 1296 1297 void StmtPrinter::VisitOMPTeamsDistributeParallelForSimdDirective( 1298 OMPTeamsDistributeParallelForSimdDirective *Node) { 1299 Indent() << "#pragma omp teams distribute parallel for simd"; 1300 PrintOMPExecutableDirective(Node); 1301 } 1302 1303 void StmtPrinter::VisitOMPTeamsDistributeParallelForDirective( 1304 OMPTeamsDistributeParallelForDirective *Node) { 1305 Indent() << "#pragma omp teams distribute parallel for"; 1306 PrintOMPExecutableDirective(Node); 1307 } 1308 1309 void StmtPrinter::VisitOMPTargetTeamsDirective(OMPTargetTeamsDirective *Node) { 1310 Indent() << "#pragma omp target teams"; 1311 PrintOMPExecutableDirective(Node); 1312 } 1313 1314 void StmtPrinter::VisitOMPTargetTeamsDistributeDirective( 1315 OMPTargetTeamsDistributeDirective *Node) { 1316 Indent() << "#pragma omp target teams distribute"; 1317 PrintOMPExecutableDirective(Node); 1318 } 1319 1320 void StmtPrinter::VisitOMPTargetTeamsDistributeParallelForDirective( 1321 OMPTargetTeamsDistributeParallelForDirective *Node) { 1322 Indent() << "#pragma omp target teams distribute parallel for"; 1323 PrintOMPExecutableDirective(Node); 1324 } 1325 1326 void StmtPrinter::VisitOMPTargetTeamsDistributeParallelForSimdDirective( 1327 OMPTargetTeamsDistributeParallelForSimdDirective *Node) { 1328 Indent() << "#pragma omp target teams distribute parallel for simd"; 1329 PrintOMPExecutableDirective(Node); 1330 } 1331 1332 void StmtPrinter::VisitOMPTargetTeamsDistributeSimdDirective( 1333 OMPTargetTeamsDistributeSimdDirective *Node) { 1334 Indent() << "#pragma omp target teams distribute simd"; 1335 PrintOMPExecutableDirective(Node); 1336 } 1337 1338 //===----------------------------------------------------------------------===// 1339 // Expr printing methods. 1340 //===----------------------------------------------------------------------===// 1341 1342 void StmtPrinter::VisitDeclRefExpr(DeclRefExpr *Node) { 1343 if (const auto *OCED = dyn_cast<OMPCapturedExprDecl>(Node->getDecl())) { 1344 OCED->getInit()->IgnoreImpCasts()->printPretty(OS, nullptr, Policy); 1345 return; 1346 } 1347 if (NestedNameSpecifier *Qualifier = Node->getQualifier()) 1348 Qualifier->print(OS, Policy); 1349 if (Node->hasTemplateKeyword()) 1350 OS << "template "; 1351 OS << Node->getNameInfo(); 1352 if (Node->hasExplicitTemplateArgs()) 1353 printTemplateArgumentList(OS, Node->template_arguments(), Policy); 1354 } 1355 1356 void StmtPrinter::VisitDependentScopeDeclRefExpr( 1357 DependentScopeDeclRefExpr *Node) { 1358 if (NestedNameSpecifier *Qualifier = Node->getQualifier()) 1359 Qualifier->print(OS, Policy); 1360 if (Node->hasTemplateKeyword()) 1361 OS << "template "; 1362 OS << Node->getNameInfo(); 1363 if (Node->hasExplicitTemplateArgs()) 1364 printTemplateArgumentList(OS, Node->template_arguments(), Policy); 1365 } 1366 1367 void StmtPrinter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) { 1368 if (Node->getQualifier()) 1369 Node->getQualifier()->print(OS, Policy); 1370 if (Node->hasTemplateKeyword()) 1371 OS << "template "; 1372 OS << Node->getNameInfo(); 1373 if (Node->hasExplicitTemplateArgs()) 1374 printTemplateArgumentList(OS, Node->template_arguments(), Policy); 1375 } 1376 1377 static bool isImplicitSelf(const Expr *E) { 1378 if (const auto *DRE = dyn_cast<DeclRefExpr>(E)) { 1379 if (const auto *PD = dyn_cast<ImplicitParamDecl>(DRE->getDecl())) { 1380 if (PD->getParameterKind() == ImplicitParamDecl::ObjCSelf && 1381 DRE->getLocStart().isInvalid()) 1382 return true; 1383 } 1384 } 1385 return false; 1386 } 1387 1388 void StmtPrinter::VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) { 1389 if (Node->getBase()) { 1390 if (!Policy.SuppressImplicitBase || 1391 !isImplicitSelf(Node->getBase()->IgnoreImpCasts())) { 1392 PrintExpr(Node->getBase()); 1393 OS << (Node->isArrow() ? "->" : "."); 1394 } 1395 } 1396 OS << *Node->getDecl(); 1397 } 1398 1399 void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) { 1400 if (Node->isSuperReceiver()) 1401 OS << "super."; 1402 else if (Node->isObjectReceiver() && Node->getBase()) { 1403 PrintExpr(Node->getBase()); 1404 OS << "."; 1405 } else if (Node->isClassReceiver() && Node->getClassReceiver()) { 1406 OS << Node->getClassReceiver()->getName() << "."; 1407 } 1408 1409 if (Node->isImplicitProperty()) 1410 Node->getImplicitPropertyGetter()->getSelector().print(OS); 1411 else 1412 OS << Node->getExplicitProperty()->getName(); 1413 } 1414 1415 void StmtPrinter::VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *Node) { 1416 PrintExpr(Node->getBaseExpr()); 1417 OS << "["; 1418 PrintExpr(Node->getKeyExpr()); 1419 OS << "]"; 1420 } 1421 1422 void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) { 1423 OS << PredefinedExpr::getIdentTypeName(Node->getIdentType()); 1424 } 1425 1426 void StmtPrinter::VisitCharacterLiteral(CharacterLiteral *Node) { 1427 unsigned value = Node->getValue(); 1428 1429 switch (Node->getKind()) { 1430 case CharacterLiteral::Ascii: break; // no prefix. 1431 case CharacterLiteral::Wide: OS << 'L'; break; 1432 case CharacterLiteral::UTF8: OS << "u8"; break; 1433 case CharacterLiteral::UTF16: OS << 'u'; break; 1434 case CharacterLiteral::UTF32: OS << 'U'; break; 1435 } 1436 1437 switch (value) { 1438 case '\\': 1439 OS << "'\\\\'"; 1440 break; 1441 case '\'': 1442 OS << "'\\''"; 1443 break; 1444 case '\a': 1445 // TODO: K&R: the meaning of '\\a' is different in traditional C 1446 OS << "'\\a'"; 1447 break; 1448 case '\b': 1449 OS << "'\\b'"; 1450 break; 1451 // Nonstandard escape sequence. 1452 /*case '\e': 1453 OS << "'\\e'"; 1454 break;*/ 1455 case '\f': 1456 OS << "'\\f'"; 1457 break; 1458 case '\n': 1459 OS << "'\\n'"; 1460 break; 1461 case '\r': 1462 OS << "'\\r'"; 1463 break; 1464 case '\t': 1465 OS << "'\\t'"; 1466 break; 1467 case '\v': 1468 OS << "'\\v'"; 1469 break; 1470 default: 1471 // A character literal might be sign-extended, which 1472 // would result in an invalid \U escape sequence. 1473 // FIXME: multicharacter literals such as '\xFF\xFF\xFF\xFF' 1474 // are not correctly handled. 1475 if ((value & ~0xFFu) == ~0xFFu && Node->getKind() == CharacterLiteral::Ascii) 1476 value &= 0xFFu; 1477 if (value < 256 && isPrintable((unsigned char)value)) 1478 OS << "'" << (char)value << "'"; 1479 else if (value < 256) 1480 OS << "'\\x" << llvm::format("%02x", value) << "'"; 1481 else if (value <= 0xFFFF) 1482 OS << "'\\u" << llvm::format("%04x", value) << "'"; 1483 else 1484 OS << "'\\U" << llvm::format("%08x", value) << "'"; 1485 } 1486 } 1487 1488 /// Prints the given expression using the original source text. Returns true on 1489 /// success, false otherwise. 1490 static bool printExprAsWritten(raw_ostream &OS, Expr *E, 1491 const ASTContext *Context) { 1492 if (!Context) 1493 return false; 1494 bool Invalid = false; 1495 StringRef Source = Lexer::getSourceText( 1496 CharSourceRange::getTokenRange(E->getSourceRange()), 1497 Context->getSourceManager(), Context->getLangOpts(), &Invalid); 1498 if (!Invalid) { 1499 OS << Source; 1500 return true; 1501 } 1502 return false; 1503 } 1504 1505 void StmtPrinter::VisitIntegerLiteral(IntegerLiteral *Node) { 1506 if (Policy.ConstantsAsWritten && printExprAsWritten(OS, Node, Context)) 1507 return; 1508 bool isSigned = Node->getType()->isSignedIntegerType(); 1509 OS << Node->getValue().toString(10, isSigned); 1510 1511 // Emit suffixes. Integer literals are always a builtin integer type. 1512 switch (Node->getType()->getAs<BuiltinType>()->getKind()) { 1513 default: llvm_unreachable("Unexpected type for integer literal!"); 1514 case BuiltinType::Char_S: 1515 case BuiltinType::Char_U: OS << "i8"; break; 1516 case BuiltinType::UChar: OS << "Ui8"; break; 1517 case BuiltinType::Short: OS << "i16"; break; 1518 case BuiltinType::UShort: OS << "Ui16"; break; 1519 case BuiltinType::Int: break; // no suffix. 1520 case BuiltinType::UInt: OS << 'U'; break; 1521 case BuiltinType::Long: OS << 'L'; break; 1522 case BuiltinType::ULong: OS << "UL"; break; 1523 case BuiltinType::LongLong: OS << "LL"; break; 1524 case BuiltinType::ULongLong: OS << "ULL"; break; 1525 } 1526 } 1527 1528 static void PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node, 1529 bool PrintSuffix) { 1530 SmallString<16> Str; 1531 Node->getValue().toString(Str); 1532 OS << Str; 1533 if (Str.find_first_not_of("-0123456789") == StringRef::npos) 1534 OS << '.'; // Trailing dot in order to separate from ints. 1535 1536 if (!PrintSuffix) 1537 return; 1538 1539 // Emit suffixes. Float literals are always a builtin float type. 1540 switch (Node->getType()->getAs<BuiltinType>()->getKind()) { 1541 default: llvm_unreachable("Unexpected type for float literal!"); 1542 case BuiltinType::Half: break; // FIXME: suffix? 1543 case BuiltinType::Double: break; // no suffix. 1544 case BuiltinType::Float16: OS << "F16"; break; 1545 case BuiltinType::Float: OS << 'F'; break; 1546 case BuiltinType::LongDouble: OS << 'L'; break; 1547 case BuiltinType::Float128: OS << 'Q'; break; 1548 } 1549 } 1550 1551 void StmtPrinter::VisitFloatingLiteral(FloatingLiteral *Node) { 1552 if (Policy.ConstantsAsWritten && printExprAsWritten(OS, Node, Context)) 1553 return; 1554 PrintFloatingLiteral(OS, Node, /*PrintSuffix=*/true); 1555 } 1556 1557 void StmtPrinter::VisitImaginaryLiteral(ImaginaryLiteral *Node) { 1558 PrintExpr(Node->getSubExpr()); 1559 OS << "i"; 1560 } 1561 1562 void StmtPrinter::VisitStringLiteral(StringLiteral *Str) { 1563 Str->outputString(OS); 1564 } 1565 1566 void StmtPrinter::VisitParenExpr(ParenExpr *Node) { 1567 OS << "("; 1568 PrintExpr(Node->getSubExpr()); 1569 OS << ")"; 1570 } 1571 1572 void StmtPrinter::VisitUnaryOperator(UnaryOperator *Node) { 1573 if (!Node->isPostfix()) { 1574 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); 1575 1576 // Print a space if this is an "identifier operator" like __real, or if 1577 // it might be concatenated incorrectly like '+'. 1578 switch (Node->getOpcode()) { 1579 default: break; 1580 case UO_Real: 1581 case UO_Imag: 1582 case UO_Extension: 1583 OS << ' '; 1584 break; 1585 case UO_Plus: 1586 case UO_Minus: 1587 if (isa<UnaryOperator>(Node->getSubExpr())) 1588 OS << ' '; 1589 break; 1590 } 1591 } 1592 PrintExpr(Node->getSubExpr()); 1593 1594 if (Node->isPostfix()) 1595 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); 1596 } 1597 1598 void StmtPrinter::VisitOffsetOfExpr(OffsetOfExpr *Node) { 1599 OS << "__builtin_offsetof("; 1600 Node->getTypeSourceInfo()->getType().print(OS, Policy); 1601 OS << ", "; 1602 bool PrintedSomething = false; 1603 for (unsigned i = 0, n = Node->getNumComponents(); i < n; ++i) { 1604 OffsetOfNode ON = Node->getComponent(i); 1605 if (ON.getKind() == OffsetOfNode::Array) { 1606 // Array node 1607 OS << "["; 1608 PrintExpr(Node->getIndexExpr(ON.getArrayExprIndex())); 1609 OS << "]"; 1610 PrintedSomething = true; 1611 continue; 1612 } 1613 1614 // Skip implicit base indirections. 1615 if (ON.getKind() == OffsetOfNode::Base) 1616 continue; 1617 1618 // Field or identifier node. 1619 IdentifierInfo *Id = ON.getFieldName(); 1620 if (!Id) 1621 continue; 1622 1623 if (PrintedSomething) 1624 OS << "."; 1625 else 1626 PrintedSomething = true; 1627 OS << Id->getName(); 1628 } 1629 OS << ")"; 1630 } 1631 1632 void StmtPrinter::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *Node){ 1633 switch(Node->getKind()) { 1634 case UETT_SizeOf: 1635 OS << "sizeof"; 1636 break; 1637 case UETT_AlignOf: 1638 if (Policy.Alignof) 1639 OS << "alignof"; 1640 else if (Policy.UnderscoreAlignof) 1641 OS << "_Alignof"; 1642 else 1643 OS << "__alignof"; 1644 break; 1645 case UETT_VecStep: 1646 OS << "vec_step"; 1647 break; 1648 case UETT_OpenMPRequiredSimdAlign: 1649 OS << "__builtin_omp_required_simd_align"; 1650 break; 1651 } 1652 if (Node->isArgumentType()) { 1653 OS << '('; 1654 Node->getArgumentType().print(OS, Policy); 1655 OS << ')'; 1656 } else { 1657 OS << " "; 1658 PrintExpr(Node->getArgumentExpr()); 1659 } 1660 } 1661 1662 void StmtPrinter::VisitGenericSelectionExpr(GenericSelectionExpr *Node) { 1663 OS << "_Generic("; 1664 PrintExpr(Node->getControllingExpr()); 1665 for (unsigned i = 0; i != Node->getNumAssocs(); ++i) { 1666 OS << ", "; 1667 QualType T = Node->getAssocType(i); 1668 if (T.isNull()) 1669 OS << "default"; 1670 else 1671 T.print(OS, Policy); 1672 OS << ": "; 1673 PrintExpr(Node->getAssocExpr(i)); 1674 } 1675 OS << ")"; 1676 } 1677 1678 void StmtPrinter::VisitArraySubscriptExpr(ArraySubscriptExpr *Node) { 1679 PrintExpr(Node->getLHS()); 1680 OS << "["; 1681 PrintExpr(Node->getRHS()); 1682 OS << "]"; 1683 } 1684 1685 void StmtPrinter::VisitOMPArraySectionExpr(OMPArraySectionExpr *Node) { 1686 PrintExpr(Node->getBase()); 1687 OS << "["; 1688 if (Node->getLowerBound()) 1689 PrintExpr(Node->getLowerBound()); 1690 if (Node->getColonLoc().isValid()) { 1691 OS << ":"; 1692 if (Node->getLength()) 1693 PrintExpr(Node->getLength()); 1694 } 1695 OS << "]"; 1696 } 1697 1698 void StmtPrinter::PrintCallArgs(CallExpr *Call) { 1699 for (unsigned i = 0, e = Call->getNumArgs(); i != e; ++i) { 1700 if (isa<CXXDefaultArgExpr>(Call->getArg(i))) { 1701 // Don't print any defaulted arguments 1702 break; 1703 } 1704 1705 if (i) OS << ", "; 1706 PrintExpr(Call->getArg(i)); 1707 } 1708 } 1709 1710 void StmtPrinter::VisitCallExpr(CallExpr *Call) { 1711 PrintExpr(Call->getCallee()); 1712 OS << "("; 1713 PrintCallArgs(Call); 1714 OS << ")"; 1715 } 1716 1717 static bool isImplicitThis(const Expr *E) { 1718 if (const auto *TE = dyn_cast<CXXThisExpr>(E)) 1719 return TE->isImplicit(); 1720 return false; 1721 } 1722 1723 void StmtPrinter::VisitMemberExpr(MemberExpr *Node) { 1724 if (!Policy.SuppressImplicitBase || !isImplicitThis(Node->getBase())) { 1725 PrintExpr(Node->getBase()); 1726 1727 auto *ParentMember = dyn_cast<MemberExpr>(Node->getBase()); 1728 FieldDecl *ParentDecl = 1729 ParentMember ? dyn_cast<FieldDecl>(ParentMember->getMemberDecl()) 1730 : nullptr; 1731 1732 if (!ParentDecl || !ParentDecl->isAnonymousStructOrUnion()) 1733 OS << (Node->isArrow() ? "->" : "."); 1734 } 1735 1736 if (auto *FD = dyn_cast<FieldDecl>(Node->getMemberDecl())) 1737 if (FD->isAnonymousStructOrUnion()) 1738 return; 1739 1740 if (NestedNameSpecifier *Qualifier = Node->getQualifier()) 1741 Qualifier->print(OS, Policy); 1742 if (Node->hasTemplateKeyword()) 1743 OS << "template "; 1744 OS << Node->getMemberNameInfo(); 1745 if (Node->hasExplicitTemplateArgs()) 1746 printTemplateArgumentList(OS, Node->template_arguments(), Policy); 1747 } 1748 1749 void StmtPrinter::VisitObjCIsaExpr(ObjCIsaExpr *Node) { 1750 PrintExpr(Node->getBase()); 1751 OS << (Node->isArrow() ? "->isa" : ".isa"); 1752 } 1753 1754 void StmtPrinter::VisitExtVectorElementExpr(ExtVectorElementExpr *Node) { 1755 PrintExpr(Node->getBase()); 1756 OS << "."; 1757 OS << Node->getAccessor().getName(); 1758 } 1759 1760 void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) { 1761 OS << '('; 1762 Node->getTypeAsWritten().print(OS, Policy); 1763 OS << ')'; 1764 PrintExpr(Node->getSubExpr()); 1765 } 1766 1767 void StmtPrinter::VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) { 1768 OS << '('; 1769 Node->getType().print(OS, Policy); 1770 OS << ')'; 1771 PrintExpr(Node->getInitializer()); 1772 } 1773 1774 void StmtPrinter::VisitImplicitCastExpr(ImplicitCastExpr *Node) { 1775 // No need to print anything, simply forward to the subexpression. 1776 PrintExpr(Node->getSubExpr()); 1777 } 1778 1779 void StmtPrinter::VisitBinaryOperator(BinaryOperator *Node) { 1780 PrintExpr(Node->getLHS()); 1781 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; 1782 PrintExpr(Node->getRHS()); 1783 } 1784 1785 void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) { 1786 PrintExpr(Node->getLHS()); 1787 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; 1788 PrintExpr(Node->getRHS()); 1789 } 1790 1791 void StmtPrinter::VisitConditionalOperator(ConditionalOperator *Node) { 1792 PrintExpr(Node->getCond()); 1793 OS << " ? "; 1794 PrintExpr(Node->getLHS()); 1795 OS << " : "; 1796 PrintExpr(Node->getRHS()); 1797 } 1798 1799 // GNU extensions. 1800 1801 void 1802 StmtPrinter::VisitBinaryConditionalOperator(BinaryConditionalOperator *Node) { 1803 PrintExpr(Node->getCommon()); 1804 OS << " ?: "; 1805 PrintExpr(Node->getFalseExpr()); 1806 } 1807 1808 void StmtPrinter::VisitAddrLabelExpr(AddrLabelExpr *Node) { 1809 OS << "&&" << Node->getLabel()->getName(); 1810 } 1811 1812 void StmtPrinter::VisitStmtExpr(StmtExpr *E) { 1813 OS << "("; 1814 PrintRawCompoundStmt(E->getSubStmt()); 1815 OS << ")"; 1816 } 1817 1818 void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) { 1819 OS << "__builtin_choose_expr("; 1820 PrintExpr(Node->getCond()); 1821 OS << ", "; 1822 PrintExpr(Node->getLHS()); 1823 OS << ", "; 1824 PrintExpr(Node->getRHS()); 1825 OS << ")"; 1826 } 1827 1828 void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) { 1829 OS << "__null"; 1830 } 1831 1832 void StmtPrinter::VisitShuffleVectorExpr(ShuffleVectorExpr *Node) { 1833 OS << "__builtin_shufflevector("; 1834 for (unsigned i = 0, e = Node->getNumSubExprs(); i != e; ++i) { 1835 if (i) OS << ", "; 1836 PrintExpr(Node->getExpr(i)); 1837 } 1838 OS << ")"; 1839 } 1840 1841 void StmtPrinter::VisitConvertVectorExpr(ConvertVectorExpr *Node) { 1842 OS << "__builtin_convertvector("; 1843 PrintExpr(Node->getSrcExpr()); 1844 OS << ", "; 1845 Node->getType().print(OS, Policy); 1846 OS << ")"; 1847 } 1848 1849 void StmtPrinter::VisitInitListExpr(InitListExpr* Node) { 1850 if (Node->getSyntacticForm()) { 1851 Visit(Node->getSyntacticForm()); 1852 return; 1853 } 1854 1855 OS << "{"; 1856 for (unsigned i = 0, e = Node->getNumInits(); i != e; ++i) { 1857 if (i) OS << ", "; 1858 if (Node->getInit(i)) 1859 PrintExpr(Node->getInit(i)); 1860 else 1861 OS << "{}"; 1862 } 1863 OS << "}"; 1864 } 1865 1866 void StmtPrinter::VisitArrayInitLoopExpr(ArrayInitLoopExpr *Node) { 1867 // There's no way to express this expression in any of our supported 1868 // languages, so just emit something terse and (hopefully) clear. 1869 OS << "{"; 1870 PrintExpr(Node->getSubExpr()); 1871 OS << "}"; 1872 } 1873 1874 void StmtPrinter::VisitArrayInitIndexExpr(ArrayInitIndexExpr *Node) { 1875 OS << "*"; 1876 } 1877 1878 void StmtPrinter::VisitParenListExpr(ParenListExpr* Node) { 1879 OS << "("; 1880 for (unsigned i = 0, e = Node->getNumExprs(); i != e; ++i) { 1881 if (i) OS << ", "; 1882 PrintExpr(Node->getExpr(i)); 1883 } 1884 OS << ")"; 1885 } 1886 1887 void StmtPrinter::VisitDesignatedInitExpr(DesignatedInitExpr *Node) { 1888 bool NeedsEquals = true; 1889 for (const DesignatedInitExpr::Designator &D : Node->designators()) { 1890 if (D.isFieldDesignator()) { 1891 if (D.getDotLoc().isInvalid()) { 1892 if (IdentifierInfo *II = D.getFieldName()) { 1893 OS << II->getName() << ":"; 1894 NeedsEquals = false; 1895 } 1896 } else { 1897 OS << "." << D.getFieldName()->getName(); 1898 } 1899 } else { 1900 OS << "["; 1901 if (D.isArrayDesignator()) { 1902 PrintExpr(Node->getArrayIndex(D)); 1903 } else { 1904 PrintExpr(Node->getArrayRangeStart(D)); 1905 OS << " ... "; 1906 PrintExpr(Node->getArrayRangeEnd(D)); 1907 } 1908 OS << "]"; 1909 } 1910 } 1911 1912 if (NeedsEquals) 1913 OS << " = "; 1914 else 1915 OS << " "; 1916 PrintExpr(Node->getInit()); 1917 } 1918 1919 void StmtPrinter::VisitDesignatedInitUpdateExpr( 1920 DesignatedInitUpdateExpr *Node) { 1921 OS << "{"; 1922 OS << "/*base*/"; 1923 PrintExpr(Node->getBase()); 1924 OS << ", "; 1925 1926 OS << "/*updater*/"; 1927 PrintExpr(Node->getUpdater()); 1928 OS << "}"; 1929 } 1930 1931 void StmtPrinter::VisitNoInitExpr(NoInitExpr *Node) { 1932 OS << "/*no init*/"; 1933 } 1934 1935 void StmtPrinter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) { 1936 if (Node->getType()->getAsCXXRecordDecl()) { 1937 OS << "/*implicit*/"; 1938 Node->getType().print(OS, Policy); 1939 OS << "()"; 1940 } else { 1941 OS << "/*implicit*/("; 1942 Node->getType().print(OS, Policy); 1943 OS << ')'; 1944 if (Node->getType()->isRecordType()) 1945 OS << "{}"; 1946 else 1947 OS << 0; 1948 } 1949 } 1950 1951 void StmtPrinter::VisitVAArgExpr(VAArgExpr *Node) { 1952 OS << "__builtin_va_arg("; 1953 PrintExpr(Node->getSubExpr()); 1954 OS << ", "; 1955 Node->getType().print(OS, Policy); 1956 OS << ")"; 1957 } 1958 1959 void StmtPrinter::VisitPseudoObjectExpr(PseudoObjectExpr *Node) { 1960 PrintExpr(Node->getSyntacticForm()); 1961 } 1962 1963 void StmtPrinter::VisitAtomicExpr(AtomicExpr *Node) { 1964 const char *Name = nullptr; 1965 switch (Node->getOp()) { 1966 #define BUILTIN(ID, TYPE, ATTRS) 1967 #define ATOMIC_BUILTIN(ID, TYPE, ATTRS) \ 1968 case AtomicExpr::AO ## ID: \ 1969 Name = #ID "("; \ 1970 break; 1971 #include "clang/Basic/Builtins.def" 1972 } 1973 OS << Name; 1974 1975 // AtomicExpr stores its subexpressions in a permuted order. 1976 PrintExpr(Node->getPtr()); 1977 if (Node->getOp() != AtomicExpr::AO__c11_atomic_load && 1978 Node->getOp() != AtomicExpr::AO__atomic_load_n && 1979 Node->getOp() != AtomicExpr::AO__opencl_atomic_load) { 1980 OS << ", "; 1981 PrintExpr(Node->getVal1()); 1982 } 1983 if (Node->getOp() == AtomicExpr::AO__atomic_exchange || 1984 Node->isCmpXChg()) { 1985 OS << ", "; 1986 PrintExpr(Node->getVal2()); 1987 } 1988 if (Node->getOp() == AtomicExpr::AO__atomic_compare_exchange || 1989 Node->getOp() == AtomicExpr::AO__atomic_compare_exchange_n) { 1990 OS << ", "; 1991 PrintExpr(Node->getWeak()); 1992 } 1993 if (Node->getOp() != AtomicExpr::AO__c11_atomic_init && 1994 Node->getOp() != AtomicExpr::AO__opencl_atomic_init) { 1995 OS << ", "; 1996 PrintExpr(Node->getOrder()); 1997 } 1998 if (Node->isCmpXChg()) { 1999 OS << ", "; 2000 PrintExpr(Node->getOrderFail()); 2001 } 2002 OS << ")"; 2003 } 2004 2005 // C++ 2006 void StmtPrinter::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) { 2007 const char *OpStrings[NUM_OVERLOADED_OPERATORS] = { 2008 "", 2009 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \ 2010 Spelling, 2011 #include "clang/Basic/OperatorKinds.def" 2012 }; 2013 2014 OverloadedOperatorKind Kind = Node->getOperator(); 2015 if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) { 2016 if (Node->getNumArgs() == 1) { 2017 OS << OpStrings[Kind] << ' '; 2018 PrintExpr(Node->getArg(0)); 2019 } else { 2020 PrintExpr(Node->getArg(0)); 2021 OS << ' ' << OpStrings[Kind]; 2022 } 2023 } else if (Kind == OO_Arrow) { 2024 PrintExpr(Node->getArg(0)); 2025 } else if (Kind == OO_Call) { 2026 PrintExpr(Node->getArg(0)); 2027 OS << '('; 2028 for (unsigned ArgIdx = 1; ArgIdx < Node->getNumArgs(); ++ArgIdx) { 2029 if (ArgIdx > 1) 2030 OS << ", "; 2031 if (!isa<CXXDefaultArgExpr>(Node->getArg(ArgIdx))) 2032 PrintExpr(Node->getArg(ArgIdx)); 2033 } 2034 OS << ')'; 2035 } else if (Kind == OO_Subscript) { 2036 PrintExpr(Node->getArg(0)); 2037 OS << '['; 2038 PrintExpr(Node->getArg(1)); 2039 OS << ']'; 2040 } else if (Node->getNumArgs() == 1) { 2041 OS << OpStrings[Kind] << ' '; 2042 PrintExpr(Node->getArg(0)); 2043 } else if (Node->getNumArgs() == 2) { 2044 PrintExpr(Node->getArg(0)); 2045 OS << ' ' << OpStrings[Kind] << ' '; 2046 PrintExpr(Node->getArg(1)); 2047 } else { 2048 llvm_unreachable("unknown overloaded operator"); 2049 } 2050 } 2051 2052 void StmtPrinter::VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) { 2053 // If we have a conversion operator call only print the argument. 2054 CXXMethodDecl *MD = Node->getMethodDecl(); 2055 if (MD && isa<CXXConversionDecl>(MD)) { 2056 PrintExpr(Node->getImplicitObjectArgument()); 2057 return; 2058 } 2059 VisitCallExpr(cast<CallExpr>(Node)); 2060 } 2061 2062 void StmtPrinter::VisitCUDAKernelCallExpr(CUDAKernelCallExpr *Node) { 2063 PrintExpr(Node->getCallee()); 2064 OS << "<<<"; 2065 PrintCallArgs(Node->getConfig()); 2066 OS << ">>>("; 2067 PrintCallArgs(Node); 2068 OS << ")"; 2069 } 2070 2071 void StmtPrinter::VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) { 2072 OS << Node->getCastName() << '<'; 2073 Node->getTypeAsWritten().print(OS, Policy); 2074 OS << ">("; 2075 PrintExpr(Node->getSubExpr()); 2076 OS << ")"; 2077 } 2078 2079 void StmtPrinter::VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) { 2080 VisitCXXNamedCastExpr(Node); 2081 } 2082 2083 void StmtPrinter::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) { 2084 VisitCXXNamedCastExpr(Node); 2085 } 2086 2087 void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) { 2088 VisitCXXNamedCastExpr(Node); 2089 } 2090 2091 void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) { 2092 VisitCXXNamedCastExpr(Node); 2093 } 2094 2095 void StmtPrinter::VisitCXXTypeidExpr(CXXTypeidExpr *Node) { 2096 OS << "typeid("; 2097 if (Node->isTypeOperand()) { 2098 Node->getTypeOperandSourceInfo()->getType().print(OS, Policy); 2099 } else { 2100 PrintExpr(Node->getExprOperand()); 2101 } 2102 OS << ")"; 2103 } 2104 2105 void StmtPrinter::VisitCXXUuidofExpr(CXXUuidofExpr *Node) { 2106 OS << "__uuidof("; 2107 if (Node->isTypeOperand()) { 2108 Node->getTypeOperandSourceInfo()->getType().print(OS, Policy); 2109 } else { 2110 PrintExpr(Node->getExprOperand()); 2111 } 2112 OS << ")"; 2113 } 2114 2115 void StmtPrinter::VisitMSPropertyRefExpr(MSPropertyRefExpr *Node) { 2116 PrintExpr(Node->getBaseExpr()); 2117 if (Node->isArrow()) 2118 OS << "->"; 2119 else 2120 OS << "."; 2121 if (NestedNameSpecifier *Qualifier = 2122 Node->getQualifierLoc().getNestedNameSpecifier()) 2123 Qualifier->print(OS, Policy); 2124 OS << Node->getPropertyDecl()->getDeclName(); 2125 } 2126 2127 void StmtPrinter::VisitMSPropertySubscriptExpr(MSPropertySubscriptExpr *Node) { 2128 PrintExpr(Node->getBase()); 2129 OS << "["; 2130 PrintExpr(Node->getIdx()); 2131 OS << "]"; 2132 } 2133 2134 void StmtPrinter::VisitUserDefinedLiteral(UserDefinedLiteral *Node) { 2135 switch (Node->getLiteralOperatorKind()) { 2136 case UserDefinedLiteral::LOK_Raw: 2137 OS << cast<StringLiteral>(Node->getArg(0)->IgnoreImpCasts())->getString(); 2138 break; 2139 case UserDefinedLiteral::LOK_Template: { 2140 const auto *DRE = cast<DeclRefExpr>(Node->getCallee()->IgnoreImpCasts()); 2141 const TemplateArgumentList *Args = 2142 cast<FunctionDecl>(DRE->getDecl())->getTemplateSpecializationArgs(); 2143 assert(Args); 2144 2145 if (Args->size() != 1) { 2146 OS << "operator\"\"" << Node->getUDSuffix()->getName(); 2147 printTemplateArgumentList(OS, Args->asArray(), Policy); 2148 OS << "()"; 2149 return; 2150 } 2151 2152 const TemplateArgument &Pack = Args->get(0); 2153 for (const auto &P : Pack.pack_elements()) { 2154 char C = (char)P.getAsIntegral().getZExtValue(); 2155 OS << C; 2156 } 2157 break; 2158 } 2159 case UserDefinedLiteral::LOK_Integer: { 2160 // Print integer literal without suffix. 2161 const auto *Int = cast<IntegerLiteral>(Node->getCookedLiteral()); 2162 OS << Int->getValue().toString(10, /*isSigned*/false); 2163 break; 2164 } 2165 case UserDefinedLiteral::LOK_Floating: { 2166 // Print floating literal without suffix. 2167 auto *Float = cast<FloatingLiteral>(Node->getCookedLiteral()); 2168 PrintFloatingLiteral(OS, Float, /*PrintSuffix=*/false); 2169 break; 2170 } 2171 case UserDefinedLiteral::LOK_String: 2172 case UserDefinedLiteral::LOK_Character: 2173 PrintExpr(Node->getCookedLiteral()); 2174 break; 2175 } 2176 OS << Node->getUDSuffix()->getName(); 2177 } 2178 2179 void StmtPrinter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) { 2180 OS << (Node->getValue() ? "true" : "false"); 2181 } 2182 2183 void StmtPrinter::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) { 2184 OS << "nullptr"; 2185 } 2186 2187 void StmtPrinter::VisitCXXThisExpr(CXXThisExpr *Node) { 2188 OS << "this"; 2189 } 2190 2191 void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) { 2192 if (!Node->getSubExpr()) 2193 OS << "throw"; 2194 else { 2195 OS << "throw "; 2196 PrintExpr(Node->getSubExpr()); 2197 } 2198 } 2199 2200 void StmtPrinter::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) { 2201 // Nothing to print: we picked up the default argument. 2202 } 2203 2204 void StmtPrinter::VisitCXXDefaultInitExpr(CXXDefaultInitExpr *Node) { 2205 // Nothing to print: we picked up the default initializer. 2206 } 2207 2208 void StmtPrinter::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) { 2209 Node->getType().print(OS, Policy); 2210 // If there are no parens, this is list-initialization, and the braces are 2211 // part of the syntax of the inner construct. 2212 if (Node->getLParenLoc().isValid()) 2213 OS << "("; 2214 PrintExpr(Node->getSubExpr()); 2215 if (Node->getLParenLoc().isValid()) 2216 OS << ")"; 2217 } 2218 2219 void StmtPrinter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) { 2220 PrintExpr(Node->getSubExpr()); 2221 } 2222 2223 void StmtPrinter::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) { 2224 Node->getType().print(OS, Policy); 2225 if (Node->isStdInitListInitialization()) 2226 /* Nothing to do; braces are part of creating the std::initializer_list. */; 2227 else if (Node->isListInitialization()) 2228 OS << "{"; 2229 else 2230 OS << "("; 2231 for (CXXTemporaryObjectExpr::arg_iterator Arg = Node->arg_begin(), 2232 ArgEnd = Node->arg_end(); 2233 Arg != ArgEnd; ++Arg) { 2234 if ((*Arg)->isDefaultArgument()) 2235 break; 2236 if (Arg != Node->arg_begin()) 2237 OS << ", "; 2238 PrintExpr(*Arg); 2239 } 2240 if (Node->isStdInitListInitialization()) 2241 /* See above. */; 2242 else if (Node->isListInitialization()) 2243 OS << "}"; 2244 else 2245 OS << ")"; 2246 } 2247 2248 void StmtPrinter::VisitLambdaExpr(LambdaExpr *Node) { 2249 OS << '['; 2250 bool NeedComma = false; 2251 switch (Node->getCaptureDefault()) { 2252 case LCD_None: 2253 break; 2254 2255 case LCD_ByCopy: 2256 OS << '='; 2257 NeedComma = true; 2258 break; 2259 2260 case LCD_ByRef: 2261 OS << '&'; 2262 NeedComma = true; 2263 break; 2264 } 2265 for (LambdaExpr::capture_iterator C = Node->explicit_capture_begin(), 2266 CEnd = Node->explicit_capture_end(); 2267 C != CEnd; 2268 ++C) { 2269 if (C->capturesVLAType()) 2270 continue; 2271 2272 if (NeedComma) 2273 OS << ", "; 2274 NeedComma = true; 2275 2276 switch (C->getCaptureKind()) { 2277 case LCK_This: 2278 OS << "this"; 2279 break; 2280 2281 case LCK_StarThis: 2282 OS << "*this"; 2283 break; 2284 2285 case LCK_ByRef: 2286 if (Node->getCaptureDefault() != LCD_ByRef || Node->isInitCapture(C)) 2287 OS << '&'; 2288 OS << C->getCapturedVar()->getName(); 2289 break; 2290 2291 case LCK_ByCopy: 2292 OS << C->getCapturedVar()->getName(); 2293 break; 2294 2295 case LCK_VLAType: 2296 llvm_unreachable("VLA type in explicit captures."); 2297 } 2298 2299 if (Node->isInitCapture(C)) 2300 PrintExpr(C->getCapturedVar()->getInit()); 2301 } 2302 OS << ']'; 2303 2304 if (Node->hasExplicitParameters()) { 2305 OS << " ("; 2306 CXXMethodDecl *Method = Node->getCallOperator(); 2307 NeedComma = false; 2308 for (const auto *P : Method->parameters()) { 2309 if (NeedComma) { 2310 OS << ", "; 2311 } else { 2312 NeedComma = true; 2313 } 2314 std::string ParamStr = P->getNameAsString(); 2315 P->getOriginalType().print(OS, Policy, ParamStr); 2316 } 2317 if (Method->isVariadic()) { 2318 if (NeedComma) 2319 OS << ", "; 2320 OS << "..."; 2321 } 2322 OS << ')'; 2323 2324 if (Node->isMutable()) 2325 OS << " mutable"; 2326 2327 auto *Proto = Method->getType()->getAs<FunctionProtoType>(); 2328 Proto->printExceptionSpecification(OS, Policy); 2329 2330 // FIXME: Attributes 2331 2332 // Print the trailing return type if it was specified in the source. 2333 if (Node->hasExplicitResultType()) { 2334 OS << " -> "; 2335 Proto->getReturnType().print(OS, Policy); 2336 } 2337 } 2338 2339 // Print the body. 2340 CompoundStmt *Body = Node->getBody(); 2341 OS << ' '; 2342 PrintStmt(Body); 2343 } 2344 2345 void StmtPrinter::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) { 2346 if (TypeSourceInfo *TSInfo = Node->getTypeSourceInfo()) 2347 TSInfo->getType().print(OS, Policy); 2348 else 2349 Node->getType().print(OS, Policy); 2350 OS << "()"; 2351 } 2352 2353 void StmtPrinter::VisitCXXNewExpr(CXXNewExpr *E) { 2354 if (E->isGlobalNew()) 2355 OS << "::"; 2356 OS << "new "; 2357 unsigned NumPlace = E->getNumPlacementArgs(); 2358 if (NumPlace > 0 && !isa<CXXDefaultArgExpr>(E->getPlacementArg(0))) { 2359 OS << "("; 2360 PrintExpr(E->getPlacementArg(0)); 2361 for (unsigned i = 1; i < NumPlace; ++i) { 2362 if (isa<CXXDefaultArgExpr>(E->getPlacementArg(i))) 2363 break; 2364 OS << ", "; 2365 PrintExpr(E->getPlacementArg(i)); 2366 } 2367 OS << ") "; 2368 } 2369 if (E->isParenTypeId()) 2370 OS << "("; 2371 std::string TypeS; 2372 if (Expr *Size = E->getArraySize()) { 2373 llvm::raw_string_ostream s(TypeS); 2374 s << '['; 2375 Size->printPretty(s, Helper, Policy); 2376 s << ']'; 2377 } 2378 E->getAllocatedType().print(OS, Policy, TypeS); 2379 if (E->isParenTypeId()) 2380 OS << ")"; 2381 2382 CXXNewExpr::InitializationStyle InitStyle = E->getInitializationStyle(); 2383 if (InitStyle) { 2384 if (InitStyle == CXXNewExpr::CallInit) 2385 OS << "("; 2386 PrintExpr(E->getInitializer()); 2387 if (InitStyle == CXXNewExpr::CallInit) 2388 OS << ")"; 2389 } 2390 } 2391 2392 void StmtPrinter::VisitCXXDeleteExpr(CXXDeleteExpr *E) { 2393 if (E->isGlobalDelete()) 2394 OS << "::"; 2395 OS << "delete "; 2396 if (E->isArrayForm()) 2397 OS << "[] "; 2398 PrintExpr(E->getArgument()); 2399 } 2400 2401 void StmtPrinter::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) { 2402 PrintExpr(E->getBase()); 2403 if (E->isArrow()) 2404 OS << "->"; 2405 else 2406 OS << '.'; 2407 if (E->getQualifier()) 2408 E->getQualifier()->print(OS, Policy); 2409 OS << "~"; 2410 2411 if (IdentifierInfo *II = E->getDestroyedTypeIdentifier()) 2412 OS << II->getName(); 2413 else 2414 E->getDestroyedType().print(OS, Policy); 2415 } 2416 2417 void StmtPrinter::VisitCXXConstructExpr(CXXConstructExpr *E) { 2418 if (E->isListInitialization() && !E->isStdInitListInitialization()) 2419 OS << "{"; 2420 2421 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) { 2422 if (isa<CXXDefaultArgExpr>(E->getArg(i))) { 2423 // Don't print any defaulted arguments 2424 break; 2425 } 2426 2427 if (i) OS << ", "; 2428 PrintExpr(E->getArg(i)); 2429 } 2430 2431 if (E->isListInitialization() && !E->isStdInitListInitialization()) 2432 OS << "}"; 2433 } 2434 2435 void StmtPrinter::VisitCXXInheritedCtorInitExpr(CXXInheritedCtorInitExpr *E) { 2436 // Parens are printed by the surrounding context. 2437 OS << "<forwarded>"; 2438 } 2439 2440 void StmtPrinter::VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E) { 2441 PrintExpr(E->getSubExpr()); 2442 } 2443 2444 void StmtPrinter::VisitExprWithCleanups(ExprWithCleanups *E) { 2445 // Just forward to the subexpression. 2446 PrintExpr(E->getSubExpr()); 2447 } 2448 2449 void 2450 StmtPrinter::VisitCXXUnresolvedConstructExpr( 2451 CXXUnresolvedConstructExpr *Node) { 2452 Node->getTypeAsWritten().print(OS, Policy); 2453 OS << "("; 2454 for (CXXUnresolvedConstructExpr::arg_iterator Arg = Node->arg_begin(), 2455 ArgEnd = Node->arg_end(); 2456 Arg != ArgEnd; ++Arg) { 2457 if (Arg != Node->arg_begin()) 2458 OS << ", "; 2459 PrintExpr(*Arg); 2460 } 2461 OS << ")"; 2462 } 2463 2464 void StmtPrinter::VisitCXXDependentScopeMemberExpr( 2465 CXXDependentScopeMemberExpr *Node) { 2466 if (!Node->isImplicitAccess()) { 2467 PrintExpr(Node->getBase()); 2468 OS << (Node->isArrow() ? "->" : "."); 2469 } 2470 if (NestedNameSpecifier *Qualifier = Node->getQualifier()) 2471 Qualifier->print(OS, Policy); 2472 if (Node->hasTemplateKeyword()) 2473 OS << "template "; 2474 OS << Node->getMemberNameInfo(); 2475 if (Node->hasExplicitTemplateArgs()) 2476 printTemplateArgumentList(OS, Node->template_arguments(), Policy); 2477 } 2478 2479 void StmtPrinter::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *Node) { 2480 if (!Node->isImplicitAccess()) { 2481 PrintExpr(Node->getBase()); 2482 OS << (Node->isArrow() ? "->" : "."); 2483 } 2484 if (NestedNameSpecifier *Qualifier = Node->getQualifier()) 2485 Qualifier->print(OS, Policy); 2486 if (Node->hasTemplateKeyword()) 2487 OS << "template "; 2488 OS << Node->getMemberNameInfo(); 2489 if (Node->hasExplicitTemplateArgs()) 2490 printTemplateArgumentList(OS, Node->template_arguments(), Policy); 2491 } 2492 2493 static const char *getTypeTraitName(TypeTrait TT) { 2494 switch (TT) { 2495 #define TYPE_TRAIT_1(Spelling, Name, Key) \ 2496 case clang::UTT_##Name: return #Spelling; 2497 #define TYPE_TRAIT_2(Spelling, Name, Key) \ 2498 case clang::BTT_##Name: return #Spelling; 2499 #define TYPE_TRAIT_N(Spelling, Name, Key) \ 2500 case clang::TT_##Name: return #Spelling; 2501 #include "clang/Basic/TokenKinds.def" 2502 } 2503 llvm_unreachable("Type trait not covered by switch"); 2504 } 2505 2506 static const char *getTypeTraitName(ArrayTypeTrait ATT) { 2507 switch (ATT) { 2508 case ATT_ArrayRank: return "__array_rank"; 2509 case ATT_ArrayExtent: return "__array_extent"; 2510 } 2511 llvm_unreachable("Array type trait not covered by switch"); 2512 } 2513 2514 static const char *getExpressionTraitName(ExpressionTrait ET) { 2515 switch (ET) { 2516 case ET_IsLValueExpr: return "__is_lvalue_expr"; 2517 case ET_IsRValueExpr: return "__is_rvalue_expr"; 2518 } 2519 llvm_unreachable("Expression type trait not covered by switch"); 2520 } 2521 2522 void StmtPrinter::VisitTypeTraitExpr(TypeTraitExpr *E) { 2523 OS << getTypeTraitName(E->getTrait()) << "("; 2524 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I) { 2525 if (I > 0) 2526 OS << ", "; 2527 E->getArg(I)->getType().print(OS, Policy); 2528 } 2529 OS << ")"; 2530 } 2531 2532 void StmtPrinter::VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E) { 2533 OS << getTypeTraitName(E->getTrait()) << '('; 2534 E->getQueriedType().print(OS, Policy); 2535 OS << ')'; 2536 } 2537 2538 void StmtPrinter::VisitExpressionTraitExpr(ExpressionTraitExpr *E) { 2539 OS << getExpressionTraitName(E->getTrait()) << '('; 2540 PrintExpr(E->getQueriedExpression()); 2541 OS << ')'; 2542 } 2543 2544 void StmtPrinter::VisitCXXNoexceptExpr(CXXNoexceptExpr *E) { 2545 OS << "noexcept("; 2546 PrintExpr(E->getOperand()); 2547 OS << ")"; 2548 } 2549 2550 void StmtPrinter::VisitPackExpansionExpr(PackExpansionExpr *E) { 2551 PrintExpr(E->getPattern()); 2552 OS << "..."; 2553 } 2554 2555 void StmtPrinter::VisitSizeOfPackExpr(SizeOfPackExpr *E) { 2556 OS << "sizeof...(" << *E->getPack() << ")"; 2557 } 2558 2559 void StmtPrinter::VisitSubstNonTypeTemplateParmPackExpr( 2560 SubstNonTypeTemplateParmPackExpr *Node) { 2561 OS << *Node->getParameterPack(); 2562 } 2563 2564 void StmtPrinter::VisitSubstNonTypeTemplateParmExpr( 2565 SubstNonTypeTemplateParmExpr *Node) { 2566 Visit(Node->getReplacement()); 2567 } 2568 2569 void StmtPrinter::VisitFunctionParmPackExpr(FunctionParmPackExpr *E) { 2570 OS << *E->getParameterPack(); 2571 } 2572 2573 void StmtPrinter::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *Node){ 2574 PrintExpr(Node->GetTemporaryExpr()); 2575 } 2576 2577 void StmtPrinter::VisitCXXFoldExpr(CXXFoldExpr *E) { 2578 OS << "("; 2579 if (E->getLHS()) { 2580 PrintExpr(E->getLHS()); 2581 OS << " " << BinaryOperator::getOpcodeStr(E->getOperator()) << " "; 2582 } 2583 OS << "..."; 2584 if (E->getRHS()) { 2585 OS << " " << BinaryOperator::getOpcodeStr(E->getOperator()) << " "; 2586 PrintExpr(E->getRHS()); 2587 } 2588 OS << ")"; 2589 } 2590 2591 // C++ Coroutines TS 2592 2593 void StmtPrinter::VisitCoroutineBodyStmt(CoroutineBodyStmt *S) { 2594 Visit(S->getBody()); 2595 } 2596 2597 void StmtPrinter::VisitCoreturnStmt(CoreturnStmt *S) { 2598 OS << "co_return"; 2599 if (S->getOperand()) { 2600 OS << " "; 2601 Visit(S->getOperand()); 2602 } 2603 OS << ";"; 2604 } 2605 2606 void StmtPrinter::VisitCoawaitExpr(CoawaitExpr *S) { 2607 OS << "co_await "; 2608 PrintExpr(S->getOperand()); 2609 } 2610 2611 void StmtPrinter::VisitDependentCoawaitExpr(DependentCoawaitExpr *S) { 2612 OS << "co_await "; 2613 PrintExpr(S->getOperand()); 2614 } 2615 2616 void StmtPrinter::VisitCoyieldExpr(CoyieldExpr *S) { 2617 OS << "co_yield "; 2618 PrintExpr(S->getOperand()); 2619 } 2620 2621 // Obj-C 2622 2623 void StmtPrinter::VisitObjCStringLiteral(ObjCStringLiteral *Node) { 2624 OS << "@"; 2625 VisitStringLiteral(Node->getString()); 2626 } 2627 2628 void StmtPrinter::VisitObjCBoxedExpr(ObjCBoxedExpr *E) { 2629 OS << "@"; 2630 Visit(E->getSubExpr()); 2631 } 2632 2633 void StmtPrinter::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { 2634 OS << "@[ "; 2635 ObjCArrayLiteral::child_range Ch = E->children(); 2636 for (auto I = Ch.begin(), E = Ch.end(); I != E; ++I) { 2637 if (I != Ch.begin()) 2638 OS << ", "; 2639 Visit(*I); 2640 } 2641 OS << " ]"; 2642 } 2643 2644 void StmtPrinter::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { 2645 OS << "@{ "; 2646 for (unsigned I = 0, N = E->getNumElements(); I != N; ++I) { 2647 if (I > 0) 2648 OS << ", "; 2649 2650 ObjCDictionaryElement Element = E->getKeyValueElement(I); 2651 Visit(Element.Key); 2652 OS << " : "; 2653 Visit(Element.Value); 2654 if (Element.isPackExpansion()) 2655 OS << "..."; 2656 } 2657 OS << " }"; 2658 } 2659 2660 void StmtPrinter::VisitObjCEncodeExpr(ObjCEncodeExpr *Node) { 2661 OS << "@encode("; 2662 Node->getEncodedType().print(OS, Policy); 2663 OS << ')'; 2664 } 2665 2666 void StmtPrinter::VisitObjCSelectorExpr(ObjCSelectorExpr *Node) { 2667 OS << "@selector("; 2668 Node->getSelector().print(OS); 2669 OS << ')'; 2670 } 2671 2672 void StmtPrinter::VisitObjCProtocolExpr(ObjCProtocolExpr *Node) { 2673 OS << "@protocol(" << *Node->getProtocol() << ')'; 2674 } 2675 2676 void StmtPrinter::VisitObjCMessageExpr(ObjCMessageExpr *Mess) { 2677 OS << "["; 2678 switch (Mess->getReceiverKind()) { 2679 case ObjCMessageExpr::Instance: 2680 PrintExpr(Mess->getInstanceReceiver()); 2681 break; 2682 2683 case ObjCMessageExpr::Class: 2684 Mess->getClassReceiver().print(OS, Policy); 2685 break; 2686 2687 case ObjCMessageExpr::SuperInstance: 2688 case ObjCMessageExpr::SuperClass: 2689 OS << "Super"; 2690 break; 2691 } 2692 2693 OS << ' '; 2694 Selector selector = Mess->getSelector(); 2695 if (selector.isUnarySelector()) { 2696 OS << selector.getNameForSlot(0); 2697 } else { 2698 for (unsigned i = 0, e = Mess->getNumArgs(); i != e; ++i) { 2699 if (i < selector.getNumArgs()) { 2700 if (i > 0) OS << ' '; 2701 if (selector.getIdentifierInfoForSlot(i)) 2702 OS << selector.getIdentifierInfoForSlot(i)->getName() << ':'; 2703 else 2704 OS << ":"; 2705 } 2706 else OS << ", "; // Handle variadic methods. 2707 2708 PrintExpr(Mess->getArg(i)); 2709 } 2710 } 2711 OS << "]"; 2712 } 2713 2714 void StmtPrinter::VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Node) { 2715 OS << (Node->getValue() ? "__objc_yes" : "__objc_no"); 2716 } 2717 2718 void 2719 StmtPrinter::VisitObjCIndirectCopyRestoreExpr(ObjCIndirectCopyRestoreExpr *E) { 2720 PrintExpr(E->getSubExpr()); 2721 } 2722 2723 void 2724 StmtPrinter::VisitObjCBridgedCastExpr(ObjCBridgedCastExpr *E) { 2725 OS << '(' << E->getBridgeKindName(); 2726 E->getType().print(OS, Policy); 2727 OS << ')'; 2728 PrintExpr(E->getSubExpr()); 2729 } 2730 2731 void StmtPrinter::VisitBlockExpr(BlockExpr *Node) { 2732 BlockDecl *BD = Node->getBlockDecl(); 2733 OS << "^"; 2734 2735 const FunctionType *AFT = Node->getFunctionType(); 2736 2737 if (isa<FunctionNoProtoType>(AFT)) { 2738 OS << "()"; 2739 } else if (!BD->param_empty() || cast<FunctionProtoType>(AFT)->isVariadic()) { 2740 OS << '('; 2741 for (BlockDecl::param_iterator AI = BD->param_begin(), 2742 E = BD->param_end(); AI != E; ++AI) { 2743 if (AI != BD->param_begin()) OS << ", "; 2744 std::string ParamStr = (*AI)->getNameAsString(); 2745 (*AI)->getType().print(OS, Policy, ParamStr); 2746 } 2747 2748 const auto *FT = cast<FunctionProtoType>(AFT); 2749 if (FT->isVariadic()) { 2750 if (!BD->param_empty()) OS << ", "; 2751 OS << "..."; 2752 } 2753 OS << ')'; 2754 } 2755 OS << "{ }"; 2756 } 2757 2758 void StmtPrinter::VisitOpaqueValueExpr(OpaqueValueExpr *Node) { 2759 PrintExpr(Node->getSourceExpr()); 2760 } 2761 2762 void StmtPrinter::VisitTypoExpr(TypoExpr *Node) { 2763 // TODO: Print something reasonable for a TypoExpr, if necessary. 2764 llvm_unreachable("Cannot print TypoExpr nodes"); 2765 } 2766 2767 void StmtPrinter::VisitAsTypeExpr(AsTypeExpr *Node) { 2768 OS << "__builtin_astype("; 2769 PrintExpr(Node->getSrcExpr()); 2770 OS << ", "; 2771 Node->getType().print(OS, Policy); 2772 OS << ")"; 2773 } 2774 2775 //===----------------------------------------------------------------------===// 2776 // Stmt method implementations 2777 //===----------------------------------------------------------------------===// 2778 2779 void Stmt::dumpPretty(const ASTContext &Context) const { 2780 printPretty(llvm::errs(), nullptr, PrintingPolicy(Context.getLangOpts())); 2781 } 2782 2783 void Stmt::printPretty(raw_ostream &OS, PrinterHelper *Helper, 2784 const PrintingPolicy &Policy, unsigned Indentation, 2785 const ASTContext *Context) const { 2786 StmtPrinter P(OS, Helper, Policy, Indentation, Context); 2787 P.Visit(const_cast<Stmt*>(this)); 2788 } 2789 2790 //===----------------------------------------------------------------------===// 2791 // PrinterHelper 2792 //===----------------------------------------------------------------------===// 2793 2794 // Implement virtual destructor. 2795 PrinterHelper::~PrinterHelper() = default; 2796