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