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