blob: 0bf6b32564ab85f7afb980c6e353fc4fb0e206b1 [file] [log] [blame]
Chris Lattnera3bcb7a2006-11-04 07:16:25 +00001//===--- StmtPrinter.cpp - Printing implementation for Stmt ASTs ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnera3bcb7a2006-11-04 07:16:25 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnercbe4f772007-08-08 22:51:59 +000010// This file implements the Stmt::dumpPretty/Stmt::printPretty methods, which
11// pretty print the AST back out to C code.
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "clang/AST/StmtVisitor.h"
Douglas Gregorc7acfdf2009-01-06 05:10:23 +000016#include "clang/AST/DeclCXX.h"
Ted Kremenek5c84c012007-10-17 18:36:42 +000017#include "clang/AST/DeclObjC.h"
Ted Kremenek04f3cee2007-08-31 21:30:12 +000018#include "clang/AST/PrettyPrinter.h"
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000019#include "llvm/Support/Compiler.h"
Ted Kremenek2d470fc2008-09-13 05:16:45 +000020#include "llvm/Support/Format.h"
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000021using namespace clang;
22
23//===----------------------------------------------------------------------===//
24// StmtPrinter Visitor
25//===----------------------------------------------------------------------===//
26
27namespace {
Chris Lattner62249a62007-08-21 04:04:25 +000028 class VISIBILITY_HIDDEN StmtPrinter : public StmtVisitor<StmtPrinter> {
Ted Kremenek2d470fc2008-09-13 05:16:45 +000029 llvm::raw_ostream &OS;
Eli Friedmanef334fd2009-05-30 05:03:24 +000030 ASTContext &Context;
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000031 unsigned IndentLevel;
Ted Kremenek04f3cee2007-08-31 21:30:12 +000032 clang::PrinterHelper* Helper;
Douglas Gregor7de59662009-05-29 20:38:28 +000033 PrintingPolicy Policy;
34
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000035 public:
Mike Stump11289f42009-09-09 15:08:12 +000036 StmtPrinter(llvm::raw_ostream &os, ASTContext &C, PrinterHelper* helper,
Chris Lattnerc61089a2009-06-30 01:26:17 +000037 const PrintingPolicy &Policy,
Douglas Gregor7de59662009-05-29 20:38:28 +000038 unsigned Indentation = 0)
Eli Friedmanef334fd2009-05-30 05:03:24 +000039 : OS(os), Context(C), IndentLevel(Indentation), Helper(helper),
40 Policy(Policy) {}
Mike Stump11289f42009-09-09 15:08:12 +000041
Douglas Gregor7de59662009-05-29 20:38:28 +000042 void PrintStmt(Stmt *S) {
43 PrintStmt(S, Policy.Indentation);
44 }
45
46 void PrintStmt(Stmt *S, int SubIndent) {
Chris Lattnerb9eb5a12007-05-20 22:52:15 +000047 IndentLevel += SubIndent;
Chris Lattnera076fde2007-05-31 18:21:33 +000048 if (S && isa<Expr>(S)) {
Chris Lattner882f7882006-11-04 18:52:07 +000049 // If this is an expr used in a stmt context, indent and newline it.
50 Indent();
Chris Lattner62249a62007-08-21 04:04:25 +000051 Visit(S);
Chris Lattnerfc068c12007-05-30 17:57:36 +000052 OS << ";\n";
Chris Lattner882f7882006-11-04 18:52:07 +000053 } else if (S) {
Chris Lattner62249a62007-08-21 04:04:25 +000054 Visit(S);
Chris Lattner882f7882006-11-04 18:52:07 +000055 } else {
Chris Lattner2f6ac262007-05-28 01:47:47 +000056 Indent() << "<<<NULL STATEMENT>>>\n";
Chris Lattner882f7882006-11-04 18:52:07 +000057 }
Chris Lattnerb9eb5a12007-05-20 22:52:15 +000058 IndentLevel -= SubIndent;
Chris Lattner882f7882006-11-04 18:52:07 +000059 }
Eli Friedman15ea8802009-05-30 00:19:54 +000060
Chris Lattner073926e2007-05-20 23:04:55 +000061 void PrintRawCompoundStmt(CompoundStmt *S);
Chris Lattnerfdc195a2007-06-05 20:52:47 +000062 void PrintRawDecl(Decl *D);
Ted Kremenek15e6b402008-10-06 18:39:36 +000063 void PrintRawDeclStmt(DeclStmt *S);
Chris Lattnerc0a38dd2007-06-11 22:26:23 +000064 void PrintRawIfStmt(IfStmt *If);
Sebastian Redl9b244a82008-12-22 21:35:02 +000065 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
Mike Stump11289f42009-09-09 15:08:12 +000066
Chris Lattner882f7882006-11-04 18:52:07 +000067 void PrintExpr(Expr *E) {
68 if (E)
Chris Lattner62249a62007-08-21 04:04:25 +000069 Visit(E);
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000070 else
Chris Lattner882f7882006-11-04 18:52:07 +000071 OS << "<null expr>";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000072 }
Mike Stump11289f42009-09-09 15:08:12 +000073
Mike Stump74a76472009-02-10 20:16:46 +000074 llvm::raw_ostream &Indent(int Delta = 0) {
Douglas Gregor7de59662009-05-29 20:38:28 +000075 for (int i = 0, e = IndentLevel+Delta; i < e; ++i)
76 OS << " ";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000077 return OS;
78 }
Mike Stump11289f42009-09-09 15:08:12 +000079
Chris Lattner98dbf0a2007-08-30 17:59:59 +000080 bool PrintOffsetOfDesignator(Expr *E);
81 void VisitUnaryOffsetOf(UnaryOperator *Node);
Mike Stump11289f42009-09-09 15:08:12 +000082
83 void Visit(Stmt* S) {
Ted Kremenek04f3cee2007-08-31 21:30:12 +000084 if (Helper && Helper->handledStmt(S,OS))
85 return;
86 else StmtVisitor<StmtPrinter>::Visit(S);
87 }
Mike Stump11289f42009-09-09 15:08:12 +000088
Chris Lattner62249a62007-08-21 04:04:25 +000089 void VisitStmt(Stmt *Node);
Douglas Gregorbe35ce92008-11-14 12:46:07 +000090#define STMT(CLASS, PARENT) \
Chris Lattner62249a62007-08-21 04:04:25 +000091 void Visit##CLASS(CLASS *Node);
Chris Lattnerf2174b62006-11-04 20:59:27 +000092#include "clang/AST/StmtNodes.def"
Chris Lattner71e23ce2006-11-04 20:18:38 +000093 };
Chris Lattnera3bcb7a2006-11-04 07:16:25 +000094}
95
Chris Lattner71e23ce2006-11-04 20:18:38 +000096//===----------------------------------------------------------------------===//
97// Stmt printing methods.
98//===----------------------------------------------------------------------===//
99
Chris Lattner882f7882006-11-04 18:52:07 +0000100void StmtPrinter::VisitStmt(Stmt *Node) {
101 Indent() << "<<unknown stmt type>>\n";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000102}
103
Chris Lattner073926e2007-05-20 23:04:55 +0000104/// PrintRawCompoundStmt - Print a compound stmt without indenting the {, and
105/// with no newline after the }.
106void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
107 OS << "{\n";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000108 for (CompoundStmt::body_iterator I = Node->body_begin(), E = Node->body_end();
Chris Lattner882f7882006-11-04 18:52:07 +0000109 I != E; ++I)
110 PrintStmt(*I);
Mike Stump11289f42009-09-09 15:08:12 +0000111
Chris Lattner073926e2007-05-20 23:04:55 +0000112 Indent() << "}";
113}
114
Chris Lattnerfdc195a2007-06-05 20:52:47 +0000115void StmtPrinter::PrintRawDecl(Decl *D) {
Argyrios Kyrtzidis8a803cc2009-06-30 02:35:04 +0000116 D->print(OS, Policy, IndentLevel);
Mike Stump74a76472009-02-10 20:16:46 +0000117}
118
Ted Kremenek15e6b402008-10-06 18:39:36 +0000119void StmtPrinter::PrintRawDeclStmt(DeclStmt *S) {
Eli Friedman15ea8802009-05-30 00:19:54 +0000120 DeclStmt::decl_iterator Begin = S->decl_begin(), End = S->decl_end();
Eli Friedman79635842009-05-30 04:20:30 +0000121 llvm::SmallVector<Decl*, 2> Decls;
Mike Stump11289f42009-09-09 15:08:12 +0000122 for ( ; Begin != End; ++Begin)
Eli Friedman79635842009-05-30 04:20:30 +0000123 Decls.push_back(*Begin);
Eli Friedman15ea8802009-05-30 00:19:54 +0000124
Argyrios Kyrtzidis8a803cc2009-06-30 02:35:04 +0000125 Decl::printGroup(Decls.data(), Decls.size(), OS, Policy, IndentLevel);
Ted Kremenek15e6b402008-10-06 18:39:36 +0000126}
Chris Lattnerfdc195a2007-06-05 20:52:47 +0000127
128void StmtPrinter::VisitNullStmt(NullStmt *Node) {
129 Indent() << ";\n";
130}
131
132void StmtPrinter::VisitDeclStmt(DeclStmt *Node) {
Eli Friedman15ea8802009-05-30 00:19:54 +0000133 Indent();
134 PrintRawDeclStmt(Node);
135 OS << ";\n";
Steve Naroff2a8ad182007-05-29 22:59:26 +0000136}
137
Chris Lattner073926e2007-05-20 23:04:55 +0000138void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
139 Indent();
140 PrintRawCompoundStmt(Node);
Chris Lattnerdf3cafb2007-05-31 05:08:56 +0000141 OS << "\n";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000142}
143
Chris Lattner6c0ff132006-11-05 00:19:50 +0000144void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
Chris Lattnerb9eb5a12007-05-20 22:52:15 +0000145 Indent(-1) << "case ";
Chris Lattner6c0ff132006-11-05 00:19:50 +0000146 PrintExpr(Node->getLHS());
147 if (Node->getRHS()) {
148 OS << " ... ";
149 PrintExpr(Node->getRHS());
150 }
151 OS << ":\n";
Mike Stump11289f42009-09-09 15:08:12 +0000152
Chris Lattnerb9eb5a12007-05-20 22:52:15 +0000153 PrintStmt(Node->getSubStmt(), 0);
Chris Lattner6c0ff132006-11-05 00:19:50 +0000154}
155
156void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) {
Chris Lattnerb9eb5a12007-05-20 22:52:15 +0000157 Indent(-1) << "default:\n";
158 PrintStmt(Node->getSubStmt(), 0);
Chris Lattner6c0ff132006-11-05 00:19:50 +0000159}
160
161void StmtPrinter::VisitLabelStmt(LabelStmt *Node) {
Chris Lattnereefa10e2007-05-28 06:56:27 +0000162 Indent(-1) << Node->getName() << ":\n";
Chris Lattnerb9eb5a12007-05-20 22:52:15 +0000163 PrintStmt(Node->getSubStmt(), 0);
Chris Lattner6c0ff132006-11-05 00:19:50 +0000164}
165
Chris Lattnerc0a38dd2007-06-11 22:26:23 +0000166void StmtPrinter::PrintRawIfStmt(IfStmt *If) {
Sebastian Redl7b7cec62009-02-07 20:05:48 +0000167 OS << "if (";
Chris Lattner882f7882006-11-04 18:52:07 +0000168 PrintExpr(If->getCond());
Sebastian Redl7b7cec62009-02-07 20:05:48 +0000169 OS << ')';
Mike Stump11289f42009-09-09 15:08:12 +0000170
Chris Lattner073926e2007-05-20 23:04:55 +0000171 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
172 OS << ' ';
173 PrintRawCompoundStmt(CS);
174 OS << (If->getElse() ? ' ' : '\n');
175 } else {
176 OS << '\n';
177 PrintStmt(If->getThen());
178 if (If->getElse()) Indent();
179 }
Mike Stump11289f42009-09-09 15:08:12 +0000180
Chris Lattner073926e2007-05-20 23:04:55 +0000181 if (Stmt *Else = If->getElse()) {
182 OS << "else";
Mike Stump11289f42009-09-09 15:08:12 +0000183
Chris Lattner073926e2007-05-20 23:04:55 +0000184 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
185 OS << ' ';
186 PrintRawCompoundStmt(CS);
187 OS << '\n';
Chris Lattnerc0a38dd2007-06-11 22:26:23 +0000188 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
189 OS << ' ';
190 PrintRawIfStmt(ElseIf);
Chris Lattner073926e2007-05-20 23:04:55 +0000191 } else {
192 OS << '\n';
193 PrintStmt(If->getElse());
194 }
Chris Lattner882f7882006-11-04 18:52:07 +0000195 }
Chris Lattner85ed8732006-11-04 20:40:44 +0000196}
197
Chris Lattnerc0a38dd2007-06-11 22:26:23 +0000198void StmtPrinter::VisitIfStmt(IfStmt *If) {
199 Indent();
200 PrintRawIfStmt(If);
201}
202
Chris Lattnerf2174b62006-11-04 20:59:27 +0000203void StmtPrinter::VisitSwitchStmt(SwitchStmt *Node) {
204 Indent() << "switch (";
205 PrintExpr(Node->getCond());
Chris Lattner073926e2007-05-20 23:04:55 +0000206 OS << ")";
Mike Stump11289f42009-09-09 15:08:12 +0000207
Chris Lattner073926e2007-05-20 23:04:55 +0000208 // Pretty print compoundstmt bodies (very common).
209 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
210 OS << " ";
211 PrintRawCompoundStmt(CS);
212 OS << "\n";
213 } else {
214 OS << "\n";
215 PrintStmt(Node->getBody());
216 }
Chris Lattnerf2174b62006-11-04 20:59:27 +0000217}
218
Anders Carlsson51873c22007-07-22 07:07:56 +0000219void StmtPrinter::VisitSwitchCase(SwitchCase*) {
220 assert(0 && "SwitchCase is an abstract class");
221}
222
Chris Lattner85ed8732006-11-04 20:40:44 +0000223void StmtPrinter::VisitWhileStmt(WhileStmt *Node) {
224 Indent() << "while (";
225 PrintExpr(Node->getCond());
226 OS << ")\n";
227 PrintStmt(Node->getBody());
228}
229
230void StmtPrinter::VisitDoStmt(DoStmt *Node) {
Chris Lattner5a4e9d22007-09-15 21:49:37 +0000231 Indent() << "do ";
232 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
233 PrintRawCompoundStmt(CS);
234 OS << " ";
235 } else {
236 OS << "\n";
237 PrintStmt(Node->getBody());
238 Indent();
239 }
Mike Stump11289f42009-09-09 15:08:12 +0000240
Eli Friedman8f1d33e2009-05-17 01:05:34 +0000241 OS << "while (";
Chris Lattner85ed8732006-11-04 20:40:44 +0000242 PrintExpr(Node->getCond());
Eli Friedman8f1d33e2009-05-17 01:05:34 +0000243 OS << ");\n";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000244}
245
Chris Lattner71e23ce2006-11-04 20:18:38 +0000246void StmtPrinter::VisitForStmt(ForStmt *Node) {
247 Indent() << "for (";
Chris Lattnerfdc195a2007-06-05 20:52:47 +0000248 if (Node->getInit()) {
249 if (DeclStmt *DS = dyn_cast<DeclStmt>(Node->getInit()))
Ted Kremenek15e6b402008-10-06 18:39:36 +0000250 PrintRawDeclStmt(DS);
Chris Lattnerfdc195a2007-06-05 20:52:47 +0000251 else
252 PrintExpr(cast<Expr>(Node->getInit()));
253 }
Chris Lattner5a4e9d22007-09-15 21:49:37 +0000254 OS << ";";
255 if (Node->getCond()) {
256 OS << " ";
Chris Lattnerfdc195a2007-06-05 20:52:47 +0000257 PrintExpr(Node->getCond());
Chris Lattner5a4e9d22007-09-15 21:49:37 +0000258 }
259 OS << ";";
260 if (Node->getInc()) {
261 OS << " ";
Chris Lattnerfdc195a2007-06-05 20:52:47 +0000262 PrintExpr(Node->getInc());
Chris Lattner5a4e9d22007-09-15 21:49:37 +0000263 }
264 OS << ") ";
Mike Stump11289f42009-09-09 15:08:12 +0000265
Chris Lattner5a4e9d22007-09-15 21:49:37 +0000266 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
267 PrintRawCompoundStmt(CS);
268 OS << "\n";
269 } else {
270 OS << "\n";
271 PrintStmt(Node->getBody());
272 }
Chris Lattner71e23ce2006-11-04 20:18:38 +0000273}
274
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000275void StmtPrinter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) {
Fariborz Jahanian83615522008-01-02 22:54:34 +0000276 Indent() << "for (";
277 if (DeclStmt *DS = dyn_cast<DeclStmt>(Node->getElement()))
Ted Kremenek15e6b402008-10-06 18:39:36 +0000278 PrintRawDeclStmt(DS);
Fariborz Jahanian83615522008-01-02 22:54:34 +0000279 else
280 PrintExpr(cast<Expr>(Node->getElement()));
281 OS << " in ";
282 PrintExpr(Node->getCollection());
283 OS << ") ";
Mike Stump11289f42009-09-09 15:08:12 +0000284
Fariborz Jahanian83615522008-01-02 22:54:34 +0000285 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
286 PrintRawCompoundStmt(CS);
287 OS << "\n";
288 } else {
289 OS << "\n";
290 PrintStmt(Node->getBody());
291 }
292}
293
Chris Lattner16976d32006-11-05 01:46:01 +0000294void StmtPrinter::VisitGotoStmt(GotoStmt *Node) {
Chris Lattnereefa10e2007-05-28 06:56:27 +0000295 Indent() << "goto " << Node->getLabel()->getName() << ";\n";
Chris Lattner16976d32006-11-05 01:46:01 +0000296}
297
298void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) {
Chris Lattner36ad1232006-11-05 01:51:06 +0000299 Indent() << "goto *";
Chris Lattner16976d32006-11-05 01:46:01 +0000300 PrintExpr(Node->getTarget());
Chris Lattnerb4619482007-05-31 06:00:14 +0000301 OS << ";\n";
Chris Lattner16976d32006-11-05 01:46:01 +0000302}
303
304void StmtPrinter::VisitContinueStmt(ContinueStmt *Node) {
Chris Lattnerb4619482007-05-31 06:00:14 +0000305 Indent() << "continue;\n";
Chris Lattner16976d32006-11-05 01:46:01 +0000306}
307
308void StmtPrinter::VisitBreakStmt(BreakStmt *Node) {
Chris Lattnerb4619482007-05-31 06:00:14 +0000309 Indent() << "break;\n";
Chris Lattner16976d32006-11-05 01:46:01 +0000310}
311
312
Chris Lattner882f7882006-11-04 18:52:07 +0000313void StmtPrinter::VisitReturnStmt(ReturnStmt *Node) {
314 Indent() << "return";
315 if (Node->getRetValue()) {
316 OS << " ";
317 PrintExpr(Node->getRetValue());
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000318 }
Chris Lattnerb4619482007-05-31 06:00:14 +0000319 OS << ";\n";
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000320}
321
Chris Lattner73c56c02007-10-29 04:04:16 +0000322
323void StmtPrinter::VisitAsmStmt(AsmStmt *Node) {
Anders Carlsson660bdd12007-11-23 23:12:25 +0000324 Indent() << "asm ";
Mike Stump11289f42009-09-09 15:08:12 +0000325
Anders Carlsson660bdd12007-11-23 23:12:25 +0000326 if (Node->isVolatile())
327 OS << "volatile ";
Mike Stump11289f42009-09-09 15:08:12 +0000328
Anders Carlsson660bdd12007-11-23 23:12:25 +0000329 OS << "(";
Anders Carlsson81a5a692007-11-20 19:21:03 +0000330 VisitStringLiteral(Node->getAsmString());
Mike Stump11289f42009-09-09 15:08:12 +0000331
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000332 // Outputs
333 if (Node->getNumOutputs() != 0 || Node->getNumInputs() != 0 ||
334 Node->getNumClobbers() != 0)
335 OS << " : ";
Mike Stump11289f42009-09-09 15:08:12 +0000336
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000337 for (unsigned i = 0, e = Node->getNumOutputs(); i != e; ++i) {
338 if (i != 0)
339 OS << ", ";
Mike Stump11289f42009-09-09 15:08:12 +0000340
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000341 if (!Node->getOutputName(i).empty()) {
342 OS << '[';
343 OS << Node->getOutputName(i);
344 OS << "] ";
345 }
Mike Stump11289f42009-09-09 15:08:12 +0000346
Chris Lattner72bbf172009-03-10 04:59:06 +0000347 VisitStringLiteral(Node->getOutputConstraintLiteral(i));
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000348 OS << " ";
349 Visit(Node->getOutputExpr(i));
350 }
Mike Stump11289f42009-09-09 15:08:12 +0000351
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000352 // Inputs
353 if (Node->getNumInputs() != 0 || Node->getNumClobbers() != 0)
354 OS << " : ";
Mike Stump11289f42009-09-09 15:08:12 +0000355
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000356 for (unsigned i = 0, e = Node->getNumInputs(); i != e; ++i) {
357 if (i != 0)
358 OS << ", ";
Mike Stump11289f42009-09-09 15:08:12 +0000359
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000360 if (!Node->getInputName(i).empty()) {
361 OS << '[';
362 OS << Node->getInputName(i);
363 OS << "] ";
364 }
Mike Stump11289f42009-09-09 15:08:12 +0000365
Chris Lattner72bbf172009-03-10 04:59:06 +0000366 VisitStringLiteral(Node->getInputConstraintLiteral(i));
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000367 OS << " ";
368 Visit(Node->getInputExpr(i));
369 }
Mike Stump11289f42009-09-09 15:08:12 +0000370
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000371 // Clobbers
372 if (Node->getNumClobbers() != 0)
373 OS << " : ";
Mike Stump11289f42009-09-09 15:08:12 +0000374
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000375 for (unsigned i = 0, e = Node->getNumClobbers(); i != e; ++i) {
376 if (i != 0)
377 OS << ", ";
Mike Stump11289f42009-09-09 15:08:12 +0000378
Anders Carlsson94ea8aa2007-11-22 01:36:19 +0000379 VisitStringLiteral(Node->getClobber(i));
380 }
Mike Stump11289f42009-09-09 15:08:12 +0000381
Anders Carlsson81a5a692007-11-20 19:21:03 +0000382 OS << ");\n";
Chris Lattner73c56c02007-10-29 04:04:16 +0000383}
384
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000385void StmtPrinter::VisitObjCAtTryStmt(ObjCAtTryStmt *Node) {
Fariborz Jahanian88157952007-11-02 18:16:07 +0000386 Indent() << "@try";
387 if (CompoundStmt *TS = dyn_cast<CompoundStmt>(Node->getTryBody())) {
388 PrintRawCompoundStmt(TS);
389 OS << "\n";
390 }
Mike Stump11289f42009-09-09 15:08:12 +0000391
392 for (ObjCAtCatchStmt *catchStmt =
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000393 static_cast<ObjCAtCatchStmt *>(Node->getCatchStmts());
Mike Stump11289f42009-09-09 15:08:12 +0000394 catchStmt;
395 catchStmt =
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000396 static_cast<ObjCAtCatchStmt *>(catchStmt->getNextCatchStmt())) {
Fariborz Jahanian88157952007-11-02 18:16:07 +0000397 Indent() << "@catch(";
Steve Naroff371b8fb2009-03-03 19:52:17 +0000398 if (catchStmt->getCatchParamDecl()) {
399 if (Decl *DS = catchStmt->getCatchParamDecl())
400 PrintRawDecl(DS);
Fariborz Jahanian88157952007-11-02 18:16:07 +0000401 }
402 OS << ")";
Mike Stump11289f42009-09-09 15:08:12 +0000403 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody())) {
404 PrintRawCompoundStmt(CS);
405 OS << "\n";
406 }
Fariborz Jahanian88157952007-11-02 18:16:07 +0000407 }
Mike Stump11289f42009-09-09 15:08:12 +0000408
409 if (ObjCAtFinallyStmt *FS = static_cast<ObjCAtFinallyStmt *>(
410 Node->getFinallyStmt())) {
Fariborz Jahaniandefbf9a2007-11-07 00:46:42 +0000411 Indent() << "@finally";
412 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(FS->getFinallyBody()));
Fariborz Jahanian88157952007-11-02 18:16:07 +0000413 OS << "\n";
Mike Stump11289f42009-09-09 15:08:12 +0000414 }
Fariborz Jahanian65590b22007-11-01 21:12:44 +0000415}
416
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000417void StmtPrinter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) {
Fariborz Jahanian65590b22007-11-01 21:12:44 +0000418}
419
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000420void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) {
Fariborz Jahanian65590b22007-11-01 21:12:44 +0000421 Indent() << "@catch (...) { /* todo */ } \n";
422}
423
Fariborz Jahanian049fa582008-01-30 17:38:29 +0000424void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) {
Fariborz Jahanianadfbbc32007-11-07 02:00:49 +0000425 Indent() << "@throw";
426 if (Node->getThrowExpr()) {
427 OS << " ";
428 PrintExpr(Node->getThrowExpr());
429 }
430 OS << ";\n";
431}
432
Fariborz Jahanian049fa582008-01-30 17:38:29 +0000433void StmtPrinter::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) {
Fariborz Jahanianf89ca382008-01-29 18:21:32 +0000434 Indent() << "@synchronized (";
435 PrintExpr(Node->getSynchExpr());
436 OS << ")";
Fariborz Jahanian049fa582008-01-30 17:38:29 +0000437 PrintRawCompoundStmt(Node->getSynchBody());
438 OS << "\n";
Fariborz Jahanianf89ca382008-01-29 18:21:32 +0000439}
440
Sebastian Redl9b244a82008-12-22 21:35:02 +0000441void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) {
442 OS << "catch (";
Sebastian Redl54c04d42008-12-22 19:15:10 +0000443 if (Decl *ExDecl = Node->getExceptionDecl())
444 PrintRawDecl(ExDecl);
445 else
446 OS << "...";
447 OS << ") ";
448 PrintRawCompoundStmt(cast<CompoundStmt>(Node->getHandlerBlock()));
Sebastian Redl9b244a82008-12-22 21:35:02 +0000449}
450
451void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) {
452 Indent();
453 PrintRawCXXCatchStmt(Node);
454 OS << "\n";
455}
456
457void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) {
458 Indent() << "try ";
459 PrintRawCompoundStmt(Node->getTryBlock());
Mike Stump11289f42009-09-09 15:08:12 +0000460 for (unsigned i = 0, e = Node->getNumHandlers(); i < e; ++i) {
Sebastian Redl9b244a82008-12-22 21:35:02 +0000461 OS << " ";
462 PrintRawCXXCatchStmt(Node->getHandler(i));
463 }
Sebastian Redl54c04d42008-12-22 19:15:10 +0000464 OS << "\n";
465}
466
Chris Lattner71e23ce2006-11-04 20:18:38 +0000467//===----------------------------------------------------------------------===//
468// Expr printing methods.
469//===----------------------------------------------------------------------===//
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000470
Chris Lattner882f7882006-11-04 18:52:07 +0000471void StmtPrinter::VisitExpr(Expr *Node) {
472 OS << "<<unknown expr type>>";
473}
474
475void StmtPrinter::VisitDeclRefExpr(DeclRefExpr *Node) {
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000476 if (NestedNameSpecifier *Qualifier = Node->getQualifier())
477 Qualifier->print(OS, Policy);
Chris Lattner1cbaacc2008-11-24 04:00:27 +0000478 OS << Node->getDecl()->getNameAsString();
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000479 if (Node->hasExplicitTemplateArgumentList())
480 OS << TemplateSpecializationType::PrintTemplateArgumentList(
481 Node->getTemplateArgs(),
482 Node->getNumTemplateArgs(),
483 Policy);
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000484}
485
John McCall8cd78132009-11-19 22:55:06 +0000486void StmtPrinter::VisitDependentScopeDeclRefExpr(
487 DependentScopeDeclRefExpr *Node) {
Douglas Gregor7de59662009-05-29 20:38:28 +0000488 Node->getQualifier()->print(OS, Policy);
Douglas Gregor90a1a652009-03-19 17:26:29 +0000489 OS << Node->getDeclName().getAsString();
490}
491
Douglas Gregora727cb92009-06-30 22:34:41 +0000492void StmtPrinter::VisitTemplateIdRefExpr(TemplateIdRefExpr *Node) {
493 if (Node->getQualifier())
494 Node->getQualifier()->print(OS, Policy);
495 Node->getTemplateName().print(OS, Policy, true);
Douglas Gregora727cb92009-06-30 22:34:41 +0000496 OS << TemplateSpecializationType::PrintTemplateArgumentList(
497 Node->getTemplateArgs(),
498 Node->getNumTemplateArgs(),
499 Policy);
Douglas Gregora727cb92009-06-30 22:34:41 +0000500}
501
Steve Naroffe46504b2007-11-12 14:29:37 +0000502void StmtPrinter::VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
Fariborz Jahanian21f54ee2007-11-12 22:29:28 +0000503 if (Node->getBase()) {
504 PrintExpr(Node->getBase());
505 OS << (Node->isArrow() ? "->" : ".");
506 }
Chris Lattner1cbaacc2008-11-24 04:00:27 +0000507 OS << Node->getDecl()->getNameAsString();
Steve Naroffe46504b2007-11-12 14:29:37 +0000508}
509
Steve Naroffec944032008-05-30 00:40:33 +0000510void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) {
511 if (Node->getBase()) {
512 PrintExpr(Node->getBase());
513 OS << ".";
514 }
Steve Naroff4588d0f2008-12-04 16:24:46 +0000515 OS << Node->getProperty()->getNameAsCString();
Steve Naroffec944032008-05-30 00:40:33 +0000516}
517
Fariborz Jahanian9a846652009-08-20 17:02:02 +0000518void StmtPrinter::VisitObjCImplicitSetterGetterRefExpr(
519 ObjCImplicitSetterGetterRefExpr *Node) {
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +0000520 if (Node->getBase()) {
521 PrintExpr(Node->getBase());
522 OS << ".";
523 }
Fariborz Jahanian88cc2342009-08-18 20:50:23 +0000524 if (Node->getGetterMethod())
525 OS << Node->getGetterMethod()->getNameAsString();
Mike Stump11289f42009-09-09 15:08:12 +0000526
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +0000527}
528
Chris Lattner6307f192008-08-10 01:53:14 +0000529void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) {
Anders Carlsson625bfc82007-07-21 05:21:51 +0000530 switch (Node->getIdentType()) {
531 default:
532 assert(0 && "unknown case");
Chris Lattner6307f192008-08-10 01:53:14 +0000533 case PredefinedExpr::Func:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000534 OS << "__func__";
535 break;
Chris Lattner6307f192008-08-10 01:53:14 +0000536 case PredefinedExpr::Function:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000537 OS << "__FUNCTION__";
538 break;
Chris Lattner6307f192008-08-10 01:53:14 +0000539 case PredefinedExpr::PrettyFunction:
Anders Carlsson625bfc82007-07-21 05:21:51 +0000540 OS << "__PRETTY_FUNCTION__";
541 break;
542 }
543}
544
Steve Naroffae4143e2007-04-26 20:39:23 +0000545void StmtPrinter::VisitCharacterLiteral(CharacterLiteral *Node) {
Chris Lattner6e9d9b32007-07-13 05:18:11 +0000546 unsigned value = Node->getValue();
Chris Lattnera5678cc2008-06-07 22:35:38 +0000547 if (Node->isWide())
548 OS << "L";
Chris Lattner666115c2007-07-13 23:58:20 +0000549 switch (value) {
550 case '\\':
551 OS << "'\\\\'";
552 break;
553 case '\'':
554 OS << "'\\''";
555 break;
556 case '\a':
557 // TODO: K&R: the meaning of '\\a' is different in traditional C
558 OS << "'\\a'";
559 break;
560 case '\b':
561 OS << "'\\b'";
562 break;
563 // Nonstandard escape sequence.
564 /*case '\e':
565 OS << "'\\e'";
566 break;*/
567 case '\f':
568 OS << "'\\f'";
569 break;
570 case '\n':
571 OS << "'\\n'";
572 break;
573 case '\r':
574 OS << "'\\r'";
575 break;
576 case '\t':
577 OS << "'\\t'";
578 break;
579 case '\v':
580 OS << "'\\v'";
581 break;
582 default:
Ted Kremenek652d18e2008-02-23 00:52:04 +0000583 if (value < 256 && isprint(value)) {
Chris Lattner666115c2007-07-13 23:58:20 +0000584 OS << "'" << (char)value << "'";
585 } else if (value < 256) {
Ted Kremenek2d470fc2008-09-13 05:16:45 +0000586 OS << "'\\x" << llvm::format("%x", value) << "'";
Chris Lattner666115c2007-07-13 23:58:20 +0000587 } else {
588 // FIXME what to really do here?
589 OS << value;
590 }
Chris Lattner6e9d9b32007-07-13 05:18:11 +0000591 }
Steve Naroffae4143e2007-04-26 20:39:23 +0000592}
593
Steve Naroffdf7855b2007-02-21 23:46:25 +0000594void StmtPrinter::VisitIntegerLiteral(IntegerLiteral *Node) {
Chris Lattner06430412007-05-21 05:45:03 +0000595 bool isSigned = Node->getType()->isSignedIntegerType();
596 OS << Node->getValue().toString(10, isSigned);
Mike Stump11289f42009-09-09 15:08:12 +0000597
Chris Lattner06430412007-05-21 05:45:03 +0000598 // Emit suffixes. Integer literals are always a builtin integer type.
John McCall9dd450b2009-09-21 23:43:11 +0000599 switch (Node->getType()->getAs<BuiltinType>()->getKind()) {
Chris Lattner06430412007-05-21 05:45:03 +0000600 default: assert(0 && "Unexpected type for integer literal!");
601 case BuiltinType::Int: break; // no suffix.
602 case BuiltinType::UInt: OS << 'U'; break;
603 case BuiltinType::Long: OS << 'L'; break;
604 case BuiltinType::ULong: OS << "UL"; break;
605 case BuiltinType::LongLong: OS << "LL"; break;
606 case BuiltinType::ULongLong: OS << "ULL"; break;
607 }
Chris Lattner882f7882006-11-04 18:52:07 +0000608}
Steve Naroffab624882007-02-21 22:05:47 +0000609void StmtPrinter::VisitFloatingLiteral(FloatingLiteral *Node) {
Chris Lattnerbf2f3862007-08-01 00:23:58 +0000610 // FIXME: print value more precisely.
Chris Lattnera0173132008-06-07 22:13:43 +0000611 OS << Node->getValueAsApproximateDouble();
Chris Lattner882f7882006-11-04 18:52:07 +0000612}
Chris Lattner1c20a172007-08-26 03:42:43 +0000613
614void StmtPrinter::VisitImaginaryLiteral(ImaginaryLiteral *Node) {
615 PrintExpr(Node->getSubExpr());
616 OS << "i";
617}
618
Steve Naroffdf7855b2007-02-21 23:46:25 +0000619void StmtPrinter::VisitStringLiteral(StringLiteral *Str) {
Chris Lattner882f7882006-11-04 18:52:07 +0000620 if (Str->isWide()) OS << 'L';
Chris Lattner5d8f4942006-11-04 20:29:31 +0000621 OS << '"';
Anders Carlssoncbfc4b82007-10-15 02:50:23 +0000622
Chris Lattner5d8f4942006-11-04 20:29:31 +0000623 // FIXME: this doesn't print wstrings right.
624 for (unsigned i = 0, e = Str->getByteLength(); i != e; ++i) {
Chris Lattnerbb96cc42009-01-16 19:25:18 +0000625 unsigned char Char = Str->getStrData()[i];
Mike Stump11289f42009-09-09 15:08:12 +0000626
Chris Lattnerbb96cc42009-01-16 19:25:18 +0000627 switch (Char) {
628 default:
629 if (isprint(Char))
630 OS << (char)Char;
631 else // Output anything hard as an octal escape.
632 OS << '\\'
633 << (char)('0'+ ((Char >> 6) & 7))
634 << (char)('0'+ ((Char >> 3) & 7))
635 << (char)('0'+ ((Char >> 0) & 7));
636 break;
637 // Handle some common non-printable cases to make dumps prettier.
Chris Lattner5d8f4942006-11-04 20:29:31 +0000638 case '\\': OS << "\\\\"; break;
639 case '"': OS << "\\\""; break;
640 case '\n': OS << "\\n"; break;
641 case '\t': OS << "\\t"; break;
642 case '\a': OS << "\\a"; break;
643 case '\b': OS << "\\b"; break;
644 }
645 }
646 OS << '"';
Chris Lattner882f7882006-11-04 18:52:07 +0000647}
648void StmtPrinter::VisitParenExpr(ParenExpr *Node) {
649 OS << "(";
650 PrintExpr(Node->getSubExpr());
Chris Lattnera076fde2007-05-31 18:21:33 +0000651 OS << ")";
Chris Lattner882f7882006-11-04 18:52:07 +0000652}
653void StmtPrinter::VisitUnaryOperator(UnaryOperator *Node) {
Chris Lattnere5b60442007-08-23 21:46:40 +0000654 if (!Node->isPostfix()) {
Chris Lattner15768702006-11-05 23:54:51 +0000655 OS << UnaryOperator::getOpcodeStr(Node->getOpcode());
Mike Stump11289f42009-09-09 15:08:12 +0000656
Eli Friedman1cf25362009-06-14 22:39:26 +0000657 // Print a space if this is an "identifier operator" like __real, or if
658 // it might be concatenated incorrectly like '+'.
Chris Lattnere5b60442007-08-23 21:46:40 +0000659 switch (Node->getOpcode()) {
660 default: break;
Chris Lattnere5b60442007-08-23 21:46:40 +0000661 case UnaryOperator::Real:
662 case UnaryOperator::Imag:
663 case UnaryOperator::Extension:
664 OS << ' ';
665 break;
Eli Friedman1cf25362009-06-14 22:39:26 +0000666 case UnaryOperator::Plus:
667 case UnaryOperator::Minus:
668 if (isa<UnaryOperator>(Node->getSubExpr()))
669 OS << ' ';
670 break;
Chris Lattnere5b60442007-08-23 21:46:40 +0000671 }
672 }
Chris Lattner882f7882006-11-04 18:52:07 +0000673 PrintExpr(Node->getSubExpr());
Mike Stump11289f42009-09-09 15:08:12 +0000674
Chris Lattner15768702006-11-05 23:54:51 +0000675 if (Node->isPostfix())
676 OS << UnaryOperator::getOpcodeStr(Node->getOpcode());
Chris Lattner882f7882006-11-04 18:52:07 +0000677}
Chris Lattner98dbf0a2007-08-30 17:59:59 +0000678
679bool StmtPrinter::PrintOffsetOfDesignator(Expr *E) {
Eli Friedman988a16b2009-02-27 06:44:11 +0000680 if (isa<UnaryOperator>(E)) {
Chris Lattner98dbf0a2007-08-30 17:59:59 +0000681 // Base case, print the type and comma.
682 OS << E->getType().getAsString() << ", ";
683 return true;
684 } else if (ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
685 PrintOffsetOfDesignator(ASE->getLHS());
686 OS << "[";
687 PrintExpr(ASE->getRHS());
688 OS << "]";
689 return false;
690 } else {
691 MemberExpr *ME = cast<MemberExpr>(E);
692 bool IsFirst = PrintOffsetOfDesignator(ME->getBase());
Chris Lattner1cbaacc2008-11-24 04:00:27 +0000693 OS << (IsFirst ? "" : ".") << ME->getMemberDecl()->getNameAsString();
Chris Lattner98dbf0a2007-08-30 17:59:59 +0000694 return false;
695 }
696}
697
698void StmtPrinter::VisitUnaryOffsetOf(UnaryOperator *Node) {
699 OS << "__builtin_offsetof(";
700 PrintOffsetOfDesignator(Node->getSubExpr());
701 OS << ")";
702}
703
Sebastian Redl6f282892008-11-11 17:56:53 +0000704void StmtPrinter::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *Node) {
705 OS << (Node->isSizeOf() ? "sizeof" : "__alignof");
706 if (Node->isArgumentType())
707 OS << "(" << Node->getArgumentType().getAsString() << ")";
708 else {
709 OS << " ";
710 PrintExpr(Node->getArgumentExpr());
711 }
Chris Lattner882f7882006-11-04 18:52:07 +0000712}
713void StmtPrinter::VisitArraySubscriptExpr(ArraySubscriptExpr *Node) {
Ted Kremenekc81614d2007-08-20 16:18:38 +0000714 PrintExpr(Node->getLHS());
Chris Lattner882f7882006-11-04 18:52:07 +0000715 OS << "[";
Ted Kremenekc81614d2007-08-20 16:18:38 +0000716 PrintExpr(Node->getRHS());
Chris Lattner882f7882006-11-04 18:52:07 +0000717 OS << "]";
718}
719
720void StmtPrinter::VisitCallExpr(CallExpr *Call) {
721 PrintExpr(Call->getCallee());
722 OS << "(";
723 for (unsigned i = 0, e = Call->getNumArgs(); i != e; ++i) {
Chris Lattneraa9c7ae2008-04-08 04:40:51 +0000724 if (isa<CXXDefaultArgExpr>(Call->getArg(i))) {
725 // Don't print any defaulted arguments
726 break;
727 }
728
Chris Lattner882f7882006-11-04 18:52:07 +0000729 if (i) OS << ", ";
730 PrintExpr(Call->getArg(i));
731 }
732 OS << ")";
733}
734void StmtPrinter::VisitMemberExpr(MemberExpr *Node) {
Douglas Gregore4b414c2009-01-08 22:45:41 +0000735 // FIXME: Suppress printing implicit bases (like "this")
736 PrintExpr(Node->getBase());
737 OS << (Node->isArrow() ? "->" : ".");
738 // FIXME: Suppress printing references to unnamed objects
739 // representing anonymous unions/structs
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000740 if (NestedNameSpecifier *Qualifier = Node->getQualifier())
741 Qualifier->print(OS, Policy);
742
Douglas Gregor2eedc3a2008-12-20 23:49:58 +0000743 OS << Node->getMemberDecl()->getNameAsString();
Mike Stump11289f42009-09-09 15:08:12 +0000744
Douglas Gregor84f14dd2009-09-01 00:37:14 +0000745 if (Node->hasExplicitTemplateArgumentList())
746 OS << TemplateSpecializationType::PrintTemplateArgumentList(
747 Node->getTemplateArgs(),
748 Node->getNumTemplateArgs(),
749 Policy);
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000750}
Steve Naroffe87026a2009-07-24 17:54:45 +0000751void StmtPrinter::VisitObjCIsaExpr(ObjCIsaExpr *Node) {
752 PrintExpr(Node->getBase());
753 OS << (Node->isArrow() ? "->isa" : ".isa");
754}
755
Nate Begemance4d7fc2008-04-18 23:10:10 +0000756void StmtPrinter::VisitExtVectorElementExpr(ExtVectorElementExpr *Node) {
Steve Narofff7a5da12007-07-28 23:10:27 +0000757 PrintExpr(Node->getBase());
758 OS << ".";
759 OS << Node->getAccessor().getName();
760}
Argyrios Kyrtzidis3bab3d22008-08-18 23:01:59 +0000761void StmtPrinter::VisitCastExpr(CastExpr *) {
762 assert(0 && "CastExpr is an abstract class");
763}
Douglas Gregore200adc2008-10-27 19:41:14 +0000764void StmtPrinter::VisitExplicitCastExpr(ExplicitCastExpr *) {
765 assert(0 && "ExplicitCastExpr is an abstract class");
766}
Douglas Gregorf19b2312008-10-28 15:36:24 +0000767void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) {
Chris Lattner51aff8b2007-07-15 23:54:50 +0000768 OS << "(" << Node->getType().getAsString() << ")";
Chris Lattner882f7882006-11-04 18:52:07 +0000769 PrintExpr(Node->getSubExpr());
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000770}
Steve Naroff57eb2c52007-07-19 21:32:11 +0000771void StmtPrinter::VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) {
772 OS << "(" << Node->getType().getAsString() << ")";
773 PrintExpr(Node->getInitializer());
774}
Steve Naroff7a5af782007-07-13 16:58:59 +0000775void StmtPrinter::VisitImplicitCastExpr(ImplicitCastExpr *Node) {
Steve Naroffb8ea4fb2007-07-13 23:32:42 +0000776 // No need to print anything, simply forward to the sub expression.
777 PrintExpr(Node->getSubExpr());
Steve Naroff7a5af782007-07-13 16:58:59 +0000778}
Chris Lattner882f7882006-11-04 18:52:07 +0000779void StmtPrinter::VisitBinaryOperator(BinaryOperator *Node) {
780 PrintExpr(Node->getLHS());
781 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " ";
782 PrintExpr(Node->getRHS());
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000783}
Chris Lattner86928112007-08-25 02:00:02 +0000784void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {
785 PrintExpr(Node->getLHS());
786 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " ";
787 PrintExpr(Node->getRHS());
788}
Chris Lattner882f7882006-11-04 18:52:07 +0000789void StmtPrinter::VisitConditionalOperator(ConditionalOperator *Node) {
790 PrintExpr(Node->getCond());
Mike Stump11289f42009-09-09 15:08:12 +0000791
Ted Kremenekebb1c0c2007-11-26 18:27:54 +0000792 if (Node->getLHS()) {
793 OS << " ? ";
794 PrintExpr(Node->getLHS());
795 OS << " : ";
796 }
Douglas Gregor278f52e2009-05-30 00:08:05 +0000797 else { // Handle GCC extension where LHS can be NULL.
Ted Kremenekebb1c0c2007-11-26 18:27:54 +0000798 OS << " ?: ";
799 }
Mike Stump11289f42009-09-09 15:08:12 +0000800
Chris Lattner882f7882006-11-04 18:52:07 +0000801 PrintExpr(Node->getRHS());
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000802}
Chris Lattnera3bcb7a2006-11-04 07:16:25 +0000803
Chris Lattnereefa10e2007-05-28 06:56:27 +0000804// GNU extensions.
805
Chris Lattnerd268a7a2007-08-03 17:31:20 +0000806void StmtPrinter::VisitAddrLabelExpr(AddrLabelExpr *Node) {
Chris Lattnereefa10e2007-05-28 06:56:27 +0000807 OS << "&&" << Node->getLabel()->getName();
Chris Lattnereefa10e2007-05-28 06:56:27 +0000808}
809
Chris Lattner366727f2007-07-24 16:58:17 +0000810void StmtPrinter::VisitStmtExpr(StmtExpr *E) {
811 OS << "(";
812 PrintRawCompoundStmt(E->getSubStmt());
813 OS << ")";
814}
815
Steve Naroff78864672007-08-01 22:05:33 +0000816void StmtPrinter::VisitTypesCompatibleExpr(TypesCompatibleExpr *Node) {
817 OS << "__builtin_types_compatible_p(";
818 OS << Node->getArgType1().getAsString() << ",";
819 OS << Node->getArgType2().getAsString() << ")";
820}
821
Steve Naroff9efdabc2007-08-03 21:21:27 +0000822void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) {
823 OS << "__builtin_choose_expr(";
824 PrintExpr(Node->getCond());
Chris Lattner81a96882007-08-04 00:20:15 +0000825 OS << ", ";
Steve Naroff9efdabc2007-08-03 21:21:27 +0000826 PrintExpr(Node->getLHS());
Chris Lattner81a96882007-08-04 00:20:15 +0000827 OS << ", ";
Steve Naroff9efdabc2007-08-03 21:21:27 +0000828 PrintExpr(Node->getRHS());
829 OS << ")";
830}
Chris Lattner366727f2007-07-24 16:58:17 +0000831
Douglas Gregor3be4b122008-11-29 04:51:27 +0000832void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) {
833 OS << "__null";
834}
835
Eli Friedmana1b4ed82008-05-14 19:38:39 +0000836void StmtPrinter::VisitShuffleVectorExpr(ShuffleVectorExpr *Node) {
837 OS << "__builtin_shufflevector(";
838 for (unsigned i = 0, e = Node->getNumSubExprs(); i != e; ++i) {
839 if (i) OS << ", ";
840 PrintExpr(Node->getExpr(i));
841 }
842 OS << ")";
843}
844
Anders Carlsson4692db02007-08-31 04:56:16 +0000845void StmtPrinter::VisitInitListExpr(InitListExpr* Node) {
Douglas Gregor36098ff2009-05-30 00:56:08 +0000846 if (Node->getSyntacticForm()) {
847 Visit(Node->getSyntacticForm());
848 return;
849 }
850
Anders Carlsson4692db02007-08-31 04:56:16 +0000851 OS << "{ ";
852 for (unsigned i = 0, e = Node->getNumInits(); i != e; ++i) {
853 if (i) OS << ", ";
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000854 if (Node->getInit(i))
855 PrintExpr(Node->getInit(i));
856 else
857 OS << "0";
Anders Carlsson4692db02007-08-31 04:56:16 +0000858 }
859 OS << " }";
860}
861
Nate Begeman5ec4b312009-08-10 23:49:36 +0000862void StmtPrinter::VisitParenListExpr(ParenListExpr* Node) {
863 OS << "( ";
864 for (unsigned i = 0, e = Node->getNumExprs(); i != e; ++i) {
865 if (i) OS << ", ";
866 PrintExpr(Node->getExpr(i));
867 }
868 OS << " )";
869}
870
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000871void StmtPrinter::VisitDesignatedInitExpr(DesignatedInitExpr *Node) {
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000872 for (DesignatedInitExpr::designators_iterator D = Node->designators_begin(),
873 DEnd = Node->designators_end();
874 D != DEnd; ++D) {
875 if (D->isFieldDesignator()) {
876 if (D->getDotLoc().isInvalid())
877 OS << D->getFieldName()->getName() << ":";
878 else
879 OS << "." << D->getFieldName()->getName();
880 } else {
881 OS << "[";
882 if (D->isArrayDesignator()) {
883 PrintExpr(Node->getArrayIndex(*D));
884 } else {
885 PrintExpr(Node->getArrayRangeStart(*D));
886 OS << " ... ";
Mike Stump11289f42009-09-09 15:08:12 +0000887 PrintExpr(Node->getArrayRangeEnd(*D));
Douglas Gregor347f7ea2009-01-28 21:54:33 +0000888 }
889 OS << "]";
890 }
891 }
892
893 OS << " = ";
894 PrintExpr(Node->getInit());
Douglas Gregore4a0bb72009-01-22 00:58:24 +0000895}
896
Douglas Gregor0202cb42009-01-29 17:44:32 +0000897void StmtPrinter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) {
Chris Lattnerc61089a2009-06-30 01:26:17 +0000898 if (Policy.LangOpts.CPlusPlus)
Douglas Gregor278f52e2009-05-30 00:08:05 +0000899 OS << "/*implicit*/" << Node->getType().getAsString(Policy) << "()";
900 else {
901 OS << "/*implicit*/(" << Node->getType().getAsString(Policy) << ")";
902 if (Node->getType()->isRecordType())
903 OS << "{}";
904 else
905 OS << 0;
906 }
Douglas Gregor0202cb42009-01-29 17:44:32 +0000907}
908
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000909void StmtPrinter::VisitVAArgExpr(VAArgExpr *Node) {
Eli Friedman79635842009-05-30 04:20:30 +0000910 OS << "__builtin_va_arg(";
Anders Carlsson7e13ab82007-10-15 20:28:48 +0000911 PrintExpr(Node->getSubExpr());
912 OS << ", ";
913 OS << Node->getType().getAsString();
914 OS << ")";
915}
916
Chris Lattnereefa10e2007-05-28 06:56:27 +0000917// C++
Douglas Gregor993603d2008-11-14 16:09:21 +0000918void StmtPrinter::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) {
919 const char *OpStrings[NUM_OVERLOADED_OPERATORS] = {
920 "",
921#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
922 Spelling,
923#include "clang/Basic/OperatorKinds.def"
924 };
925
926 OverloadedOperatorKind Kind = Node->getOperator();
927 if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) {
928 if (Node->getNumArgs() == 1) {
929 OS << OpStrings[Kind] << ' ';
930 PrintExpr(Node->getArg(0));
931 } else {
932 PrintExpr(Node->getArg(0));
933 OS << ' ' << OpStrings[Kind];
934 }
935 } else if (Kind == OO_Call) {
936 PrintExpr(Node->getArg(0));
937 OS << '(';
938 for (unsigned ArgIdx = 1; ArgIdx < Node->getNumArgs(); ++ArgIdx) {
939 if (ArgIdx > 1)
940 OS << ", ";
941 if (!isa<CXXDefaultArgExpr>(Node->getArg(ArgIdx)))
942 PrintExpr(Node->getArg(ArgIdx));
943 }
944 OS << ')';
945 } else if (Kind == OO_Subscript) {
946 PrintExpr(Node->getArg(0));
947 OS << '[';
948 PrintExpr(Node->getArg(1));
949 OS << ']';
950 } else if (Node->getNumArgs() == 1) {
951 OS << OpStrings[Kind] << ' ';
952 PrintExpr(Node->getArg(0));
953 } else if (Node->getNumArgs() == 2) {
954 PrintExpr(Node->getArg(0));
955 OS << ' ' << OpStrings[Kind] << ' ';
956 PrintExpr(Node->getArg(1));
957 } else {
958 assert(false && "unknown overloaded operator");
959 }
960}
Chris Lattnereefa10e2007-05-28 06:56:27 +0000961
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000962void StmtPrinter::VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) {
963 VisitCallExpr(cast<CallExpr>(Node));
964}
965
Douglas Gregore200adc2008-10-27 19:41:14 +0000966void StmtPrinter::VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) {
967 OS << Node->getCastName() << '<';
968 OS << Node->getTypeAsWritten().getAsString() << ">(";
Chris Lattnereefa10e2007-05-28 06:56:27 +0000969 PrintExpr(Node->getSubExpr());
970 OS << ")";
971}
972
Douglas Gregore200adc2008-10-27 19:41:14 +0000973void StmtPrinter::VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) {
974 VisitCXXNamedCastExpr(Node);
975}
976
977void StmtPrinter::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) {
978 VisitCXXNamedCastExpr(Node);
979}
980
981void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) {
982 VisitCXXNamedCastExpr(Node);
983}
984
985void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) {
986 VisitCXXNamedCastExpr(Node);
987}
988
Sebastian Redlc4704762008-11-11 11:37:55 +0000989void StmtPrinter::VisitCXXTypeidExpr(CXXTypeidExpr *Node) {
990 OS << "typeid(";
991 if (Node->isTypeOperand()) {
992 OS << Node->getTypeOperand().getAsString();
993 } else {
994 PrintExpr(Node->getExprOperand());
995 }
996 OS << ")";
997}
998
Chris Lattnereefa10e2007-05-28 06:56:27 +0000999void StmtPrinter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) {
1000 OS << (Node->getValue() ? "true" : "false");
1001}
1002
Sebastian Redl576fd422009-05-10 18:38:11 +00001003void StmtPrinter::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) {
1004 OS << "nullptr";
1005}
1006
Douglas Gregor97a9c812008-11-04 14:32:21 +00001007void StmtPrinter::VisitCXXThisExpr(CXXThisExpr *Node) {
1008 OS << "this";
1009}
1010
Chris Lattnerb7e656b2008-02-26 00:51:44 +00001011void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) {
1012 if (Node->getSubExpr() == 0)
1013 OS << "throw";
1014 else {
1015 OS << "throw ";
1016 PrintExpr(Node->getSubExpr());
1017 }
1018}
1019
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00001020void StmtPrinter::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) {
1021 // Nothing to print: we picked up the default argument
1022}
1023
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001024void StmtPrinter::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) {
1025 OS << Node->getType().getAsString();
1026 OS << "(";
1027 PrintExpr(Node->getSubExpr());
1028 OS << ")";
1029}
1030
Anders Carlsson993a4b32009-05-30 20:03:25 +00001031void StmtPrinter::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) {
1032 PrintExpr(Node->getSubExpr());
1033}
1034
Douglas Gregordd04d332009-01-16 18:33:17 +00001035void StmtPrinter::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) {
1036 OS << Node->getType().getAsString();
1037 OS << "(";
1038 for (CXXTemporaryObjectExpr::arg_iterator Arg = Node->arg_begin(),
Mike Stump11289f42009-09-09 15:08:12 +00001039 ArgEnd = Node->arg_end();
Douglas Gregordd04d332009-01-16 18:33:17 +00001040 Arg != ArgEnd; ++Arg) {
1041 if (Arg != Node->arg_begin())
1042 OS << ", ";
1043 PrintExpr(*Arg);
1044 }
1045 OS << ")";
1046}
1047
Argyrios Kyrtzidis857fcc22008-08-22 15:38:55 +00001048void StmtPrinter::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *Node) {
1049 OS << Node->getType().getAsString() << "()";
1050}
1051
Argyrios Kyrtzidisaa479132008-09-09 23:47:53 +00001052void
1053StmtPrinter::VisitCXXConditionDeclExpr(CXXConditionDeclExpr *E) {
1054 PrintRawDecl(E->getVarDecl());
1055}
1056
Sebastian Redlbd150f42008-11-21 19:14:01 +00001057void StmtPrinter::VisitCXXNewExpr(CXXNewExpr *E) {
1058 if (E->isGlobalNew())
1059 OS << "::";
1060 OS << "new ";
1061 unsigned NumPlace = E->getNumPlacementArgs();
1062 if (NumPlace > 0) {
1063 OS << "(";
1064 PrintExpr(E->getPlacementArg(0));
1065 for (unsigned i = 1; i < NumPlace; ++i) {
1066 OS << ", ";
1067 PrintExpr(E->getPlacementArg(i));
1068 }
1069 OS << ") ";
1070 }
1071 if (E->isParenTypeId())
1072 OS << "(";
Sebastian Redld6d55ee2008-12-02 22:08:59 +00001073 std::string TypeS;
1074 if (Expr *Size = E->getArraySize()) {
1075 llvm::raw_string_ostream s(TypeS);
Eli Friedmanc4fc8392009-05-30 05:32:46 +00001076 Size->printPretty(s, Context, Helper, Policy);
Sebastian Redld6d55ee2008-12-02 22:08:59 +00001077 s.flush();
1078 TypeS = "[" + TypeS + "]";
1079 }
Douglas Gregor7de59662009-05-29 20:38:28 +00001080 E->getAllocatedType().getAsStringInternal(TypeS, Policy);
Sebastian Redld6d55ee2008-12-02 22:08:59 +00001081 OS << TypeS;
Sebastian Redlbd150f42008-11-21 19:14:01 +00001082 if (E->isParenTypeId())
1083 OS << ")";
1084
1085 if (E->hasInitializer()) {
1086 OS << "(";
1087 unsigned NumCons = E->getNumConstructorArgs();
1088 if (NumCons > 0) {
1089 PrintExpr(E->getConstructorArg(0));
1090 for (unsigned i = 1; i < NumCons; ++i) {
1091 OS << ", ";
1092 PrintExpr(E->getConstructorArg(i));
1093 }
1094 }
1095 OS << ")";
1096 }
1097}
1098
1099void StmtPrinter::VisitCXXDeleteExpr(CXXDeleteExpr *E) {
1100 if (E->isGlobalDelete())
1101 OS << "::";
1102 OS << "delete ";
1103 if (E->isArrayForm())
1104 OS << "[] ";
1105 PrintExpr(E->getArgument());
1106}
1107
Douglas Gregorad8a3362009-09-04 17:36:40 +00001108void StmtPrinter::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) {
1109 PrintExpr(E->getBase());
1110 if (E->isArrow())
1111 OS << "->";
1112 else
1113 OS << '.';
1114 if (E->getQualifier())
1115 E->getQualifier()->print(OS, Policy);
Mike Stump11289f42009-09-09 15:08:12 +00001116
Douglas Gregorad8a3362009-09-04 17:36:40 +00001117 std::string TypeS;
1118 E->getDestroyedType().getAsStringInternal(TypeS, Policy);
1119 OS << TypeS;
1120}
1121
Douglas Gregorb8a9a412009-02-04 15:01:18 +00001122void StmtPrinter::VisitUnresolvedFunctionNameExpr(UnresolvedFunctionNameExpr *E) {
1123 OS << E->getName().getAsString();
Douglas Gregorb0846b02008-12-06 00:22:45 +00001124}
1125
Anders Carlsson0781ce72009-04-23 02:32:43 +00001126void StmtPrinter::VisitCXXConstructExpr(CXXConstructExpr *E) {
1127 // Nothing to print.
1128}
1129
Anders Carlssonf58c2432009-05-01 22:18:43 +00001130void StmtPrinter::VisitCXXExprWithTemporaries(CXXExprWithTemporaries *E) {
Anders Carlssondefc6442009-04-24 22:47:04 +00001131 // Just forward to the sub expression.
1132 PrintExpr(E->getSubExpr());
1133}
1134
Mike Stump11289f42009-09-09 15:08:12 +00001135void
Douglas Gregorce934142009-05-20 18:46:25 +00001136StmtPrinter::VisitCXXUnresolvedConstructExpr(
1137 CXXUnresolvedConstructExpr *Node) {
1138 OS << Node->getTypeAsWritten().getAsString();
1139 OS << "(";
1140 for (CXXUnresolvedConstructExpr::arg_iterator Arg = Node->arg_begin(),
Mike Stump11289f42009-09-09 15:08:12 +00001141 ArgEnd = Node->arg_end();
Douglas Gregorce934142009-05-20 18:46:25 +00001142 Arg != ArgEnd; ++Arg) {
1143 if (Arg != Node->arg_begin())
1144 OS << ", ";
1145 PrintExpr(*Arg);
1146 }
1147 OS << ")";
1148}
1149
John McCall8cd78132009-11-19 22:55:06 +00001150void StmtPrinter::VisitCXXDependentScopeMemberExpr(
1151 CXXDependentScopeMemberExpr *Node) {
Douglas Gregora8db9542009-05-22 21:13:27 +00001152 PrintExpr(Node->getBase());
1153 OS << (Node->isArrow() ? "->" : ".");
Douglas Gregorc26e0f62009-09-03 16:14:30 +00001154 if (NestedNameSpecifier *Qualifier = Node->getQualifier())
1155 Qualifier->print(OS, Policy);
Douglas Gregor308047d2009-09-09 00:23:06 +00001156 else if (Node->hasExplicitTemplateArgumentList())
1157 // FIXME: Track use of "template" keyword explicitly?
1158 OS << "template ";
Mike Stump11289f42009-09-09 15:08:12 +00001159
Douglas Gregora8db9542009-05-22 21:13:27 +00001160 OS << Node->getMember().getAsString();
Mike Stump11289f42009-09-09 15:08:12 +00001161
Douglas Gregor308047d2009-09-09 00:23:06 +00001162 if (Node->hasExplicitTemplateArgumentList()) {
1163 OS << TemplateSpecializationType::PrintTemplateArgumentList(
1164 Node->getTemplateArgs(),
1165 Node->getNumTemplateArgs(),
1166 Policy);
1167 }
Douglas Gregora8db9542009-05-22 21:13:27 +00001168}
1169
Sebastian Redlbaad4e72009-01-05 20:52:13 +00001170static const char *getTypeTraitName(UnaryTypeTrait UTT) {
1171 switch (UTT) {
1172 default: assert(false && "Unknown type trait");
1173 case UTT_HasNothrowAssign: return "__has_nothrow_assign";
1174 case UTT_HasNothrowCopy: return "__has_nothrow_copy";
1175 case UTT_HasNothrowConstructor: return "__has_nothrow_constructor";
1176 case UTT_HasTrivialAssign: return "__has_trivial_assign";
1177 case UTT_HasTrivialCopy: return "__has_trivial_copy";
1178 case UTT_HasTrivialConstructor: return "__has_trivial_constructor";
1179 case UTT_HasTrivialDestructor: return "__has_trivial_destructor";
1180 case UTT_HasVirtualDestructor: return "__has_virtual_destructor";
1181 case UTT_IsAbstract: return "__is_abstract";
1182 case UTT_IsClass: return "__is_class";
1183 case UTT_IsEmpty: return "__is_empty";
1184 case UTT_IsEnum: return "__is_enum";
1185 case UTT_IsPOD: return "__is_pod";
1186 case UTT_IsPolymorphic: return "__is_polymorphic";
1187 case UTT_IsUnion: return "__is_union";
1188 }
1189}
1190
1191void StmtPrinter::VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *E) {
1192 OS << getTypeTraitName(E->getTrait()) << "("
1193 << E->getQueriedType().getAsString() << ")";
1194}
1195
Mike Stump11289f42009-09-09 15:08:12 +00001196// Obj-C
Anders Carlsson76f4a902007-08-21 17:43:55 +00001197
1198void StmtPrinter::VisitObjCStringLiteral(ObjCStringLiteral *Node) {
1199 OS << "@";
1200 VisitStringLiteral(Node->getString());
1201}
Chris Lattnereefa10e2007-05-28 06:56:27 +00001202
Anders Carlssonc5a81eb2007-08-22 15:14:15 +00001203void StmtPrinter::VisitObjCEncodeExpr(ObjCEncodeExpr *Node) {
Chris Lattner1cbaacc2008-11-24 04:00:27 +00001204 OS << "@encode(" << Node->getEncodedType().getAsString() << ')';
Anders Carlssonc5a81eb2007-08-22 15:14:15 +00001205}
1206
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00001207void StmtPrinter::VisitObjCSelectorExpr(ObjCSelectorExpr *Node) {
Chris Lattner1cbaacc2008-11-24 04:00:27 +00001208 OS << "@selector(" << Node->getSelector().getAsString() << ')';
Fariborz Jahanian4bef4622007-10-16 20:40:23 +00001209}
1210
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00001211void StmtPrinter::VisitObjCProtocolExpr(ObjCProtocolExpr *Node) {
Chris Lattner1cbaacc2008-11-24 04:00:27 +00001212 OS << "@protocol(" << Node->getProtocol()->getNameAsString() << ')';
Fariborz Jahaniana32aaef2007-10-17 16:58:11 +00001213}
1214
Steve Naroffd54978b2007-09-18 23:55:05 +00001215void StmtPrinter::VisitObjCMessageExpr(ObjCMessageExpr *Mess) {
1216 OS << "[";
Steve Naroffc6814ea2007-10-02 20:01:56 +00001217 Expr *receiver = Mess->getReceiver();
1218 if (receiver) PrintExpr(receiver);
1219 else OS << Mess->getClassName()->getName();
Ted Kremeneka06e7122008-05-02 17:32:38 +00001220 OS << ' ';
Ted Kremenekb65a67d2008-04-16 04:30:16 +00001221 Selector selector = Mess->getSelector();
Steve Naroffc6814ea2007-10-02 20:01:56 +00001222 if (selector.isUnarySelector()) {
Ted Kremeneka06e7122008-05-02 17:32:38 +00001223 OS << selector.getIdentifierInfoForSlot(0)->getName();
Steve Naroffc6814ea2007-10-02 20:01:56 +00001224 } else {
1225 for (unsigned i = 0, e = Mess->getNumArgs(); i != e; ++i) {
Ted Kremeneka06e7122008-05-02 17:32:38 +00001226 if (i < selector.getNumArgs()) {
1227 if (i > 0) OS << ' ';
1228 if (selector.getIdentifierInfoForSlot(i))
Chris Lattner1cbaacc2008-11-24 04:00:27 +00001229 OS << selector.getIdentifierInfoForSlot(i)->getName() << ':';
Ted Kremeneka06e7122008-05-02 17:32:38 +00001230 else
1231 OS << ":";
1232 }
1233 else OS << ", "; // Handle variadic methods.
Mike Stump11289f42009-09-09 15:08:12 +00001234
Steve Naroffc6814ea2007-10-02 20:01:56 +00001235 PrintExpr(Mess->getArg(i));
1236 }
Steve Naroffd54978b2007-09-18 23:55:05 +00001237 }
1238 OS << "]";
1239}
1240
Douglas Gregor8ea1f532008-11-04 14:56:14 +00001241void StmtPrinter::VisitObjCSuperExpr(ObjCSuperExpr *) {
1242 OS << "super";
1243}
1244
Steve Naroffc540d662008-09-03 18:15:37 +00001245void StmtPrinter::VisitBlockExpr(BlockExpr *Node) {
Steve Naroff415d3d52008-10-08 17:01:13 +00001246 BlockDecl *BD = Node->getBlockDecl();
Steve Naroffc540d662008-09-03 18:15:37 +00001247 OS << "^";
Mike Stump11289f42009-09-09 15:08:12 +00001248
Steve Naroffc540d662008-09-03 18:15:37 +00001249 const FunctionType *AFT = Node->getFunctionType();
Mike Stump11289f42009-09-09 15:08:12 +00001250
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001251 if (isa<FunctionNoProtoType>(AFT)) {
Steve Naroffc540d662008-09-03 18:15:37 +00001252 OS << "()";
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001253 } else if (!BD->param_empty() || cast<FunctionProtoType>(AFT)->isVariadic()) {
Steve Naroffc540d662008-09-03 18:15:37 +00001254 OS << '(';
1255 std::string ParamStr;
Steve Naroff415d3d52008-10-08 17:01:13 +00001256 for (BlockDecl::param_iterator AI = BD->param_begin(),
1257 E = BD->param_end(); AI != E; ++AI) {
1258 if (AI != BD->param_begin()) OS << ", ";
Chris Lattner1cbaacc2008-11-24 04:00:27 +00001259 ParamStr = (*AI)->getNameAsString();
Douglas Gregor7de59662009-05-29 20:38:28 +00001260 (*AI)->getType().getAsStringInternal(ParamStr, Policy);
Steve Naroffc540d662008-09-03 18:15:37 +00001261 OS << ParamStr;
1262 }
Mike Stump11289f42009-09-09 15:08:12 +00001263
Douglas Gregordeaad8c2009-02-26 23:50:07 +00001264 const FunctionProtoType *FT = cast<FunctionProtoType>(AFT);
Steve Naroffc540d662008-09-03 18:15:37 +00001265 if (FT->isVariadic()) {
Steve Naroff415d3d52008-10-08 17:01:13 +00001266 if (!BD->param_empty()) OS << ", ";
Steve Naroffc540d662008-09-03 18:15:37 +00001267 OS << "...";
1268 }
1269 OS << ')';
1270 }
1271}
1272
Steve Naroffc540d662008-09-03 18:15:37 +00001273void StmtPrinter::VisitBlockDeclRefExpr(BlockDeclRefExpr *Node) {
Chris Lattner1cbaacc2008-11-24 04:00:27 +00001274 OS << Node->getDecl()->getNameAsString();
Steve Naroffc540d662008-09-03 18:15:37 +00001275}
Chris Lattnera3bcb7a2006-11-04 07:16:25 +00001276//===----------------------------------------------------------------------===//
1277// Stmt method implementations
1278//===----------------------------------------------------------------------===//
1279
Eli Friedmanef334fd2009-05-30 05:03:24 +00001280void Stmt::dumpPretty(ASTContext& Context) const {
Chris Lattnerc61089a2009-06-30 01:26:17 +00001281 printPretty(llvm::errs(), Context, 0,
1282 PrintingPolicy(Context.getLangOptions()));
Chris Lattnera3bcb7a2006-11-04 07:16:25 +00001283}
1284
Eli Friedmanef334fd2009-05-30 05:03:24 +00001285void Stmt::printPretty(llvm::raw_ostream &OS, ASTContext& Context,
1286 PrinterHelper* Helper,
Douglas Gregor7de59662009-05-29 20:38:28 +00001287 const PrintingPolicy &Policy,
1288 unsigned Indentation) const {
Chris Lattner882f7882006-11-04 18:52:07 +00001289 if (this == 0) {
1290 OS << "<NULL>";
1291 return;
1292 }
1293
Douglas Gregor8655e882009-10-16 22:46:09 +00001294 if (Policy.Dump && &Context) {
Argyrios Kyrtzidisb0c86d42009-07-14 03:20:38 +00001295 dump(Context.getSourceManager());
Douglas Gregor278f52e2009-05-30 00:08:05 +00001296 return;
1297 }
Mike Stump11289f42009-09-09 15:08:12 +00001298
Eli Friedmanef334fd2009-05-30 05:03:24 +00001299 StmtPrinter P(OS, Context, Helper, Policy, Indentation);
Chris Lattner62249a62007-08-21 04:04:25 +00001300 P.Visit(const_cast<Stmt*>(this));
Chris Lattnera3bcb7a2006-11-04 07:16:25 +00001301}
Ted Kremenek04f3cee2007-08-31 21:30:12 +00001302
1303//===----------------------------------------------------------------------===//
1304// PrinterHelper
1305//===----------------------------------------------------------------------===//
1306
1307// Implement virtual destructor.
Gabor Greif412af032007-09-11 15:32:40 +00001308PrinterHelper::~PrinterHelper() {}