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