blob: 81e158e657e65ab11d00a5efa8d8540c7c5eae9b [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- StmtPrinter.cpp - Printing implementation for Stmt ASTs ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
Chris Lattner6000dac2007-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.
Reid Spencer5f016e22007-07-11 17:01:13 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "clang/AST/StmtVisitor.h"
Ted Kremenek91d1d7a2007-10-17 18:36:42 +000016#include "clang/AST/DeclObjC.h"
Ted Kremenek42a509f2007-08-31 21:30:12 +000017#include "clang/AST/PrettyPrinter.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "llvm/Support/Compiler.h"
Ted Kremenek51221ec2007-11-26 22:50:46 +000019#include "llvm/Support/Streams.h"
Ted Kremeneka95d3752008-09-13 05:16:45 +000020#include "llvm/Support/Format.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021using namespace clang;
22
23//===----------------------------------------------------------------------===//
24// StmtPrinter Visitor
25//===----------------------------------------------------------------------===//
26
27namespace {
Chris Lattnerc5598cb2007-08-21 04:04:25 +000028 class VISIBILITY_HIDDEN StmtPrinter : public StmtVisitor<StmtPrinter> {
Ted Kremeneka95d3752008-09-13 05:16:45 +000029 llvm::raw_ostream &OS;
Reid Spencer5f016e22007-07-11 17:01:13 +000030 unsigned IndentLevel;
Ted Kremenek42a509f2007-08-31 21:30:12 +000031 clang::PrinterHelper* Helper;
Reid Spencer5f016e22007-07-11 17:01:13 +000032 public:
Ted Kremeneka95d3752008-09-13 05:16:45 +000033 StmtPrinter(llvm::raw_ostream &os, PrinterHelper* helper) :
Ted Kremenek42a509f2007-08-31 21:30:12 +000034 OS(os), IndentLevel(0), Helper(helper) {}
Reid Spencer5f016e22007-07-11 17:01:13 +000035
36 void PrintStmt(Stmt *S, int SubIndent = 1) {
37 IndentLevel += SubIndent;
38 if (S && isa<Expr>(S)) {
39 // If this is an expr used in a stmt context, indent and newline it.
40 Indent();
Chris Lattnerc5598cb2007-08-21 04:04:25 +000041 Visit(S);
Reid Spencer5f016e22007-07-11 17:01:13 +000042 OS << ";\n";
43 } else if (S) {
Chris Lattnerc5598cb2007-08-21 04:04:25 +000044 Visit(S);
Reid Spencer5f016e22007-07-11 17:01:13 +000045 } else {
46 Indent() << "<<<NULL STATEMENT>>>\n";
47 }
48 IndentLevel -= SubIndent;
49 }
50
51 void PrintRawCompoundStmt(CompoundStmt *S);
52 void PrintRawDecl(Decl *D);
Ted Kremenekecd64c52008-10-06 18:39:36 +000053 void PrintRawDeclStmt(DeclStmt *S);
Reid Spencer5f016e22007-07-11 17:01:13 +000054 void PrintRawIfStmt(IfStmt *If);
55
56 void PrintExpr(Expr *E) {
57 if (E)
Chris Lattnerc5598cb2007-08-21 04:04:25 +000058 Visit(E);
Reid Spencer5f016e22007-07-11 17:01:13 +000059 else
60 OS << "<null expr>";
61 }
62
Ted Kremeneka95d3752008-09-13 05:16:45 +000063 llvm::raw_ostream &Indent(int Delta = 0) const {
Reid Spencer5f016e22007-07-11 17:01:13 +000064 for (int i = 0, e = IndentLevel+Delta; i < e; ++i)
65 OS << " ";
66 return OS;
67 }
68
Chris Lattner704fe352007-08-30 17:59:59 +000069 bool PrintOffsetOfDesignator(Expr *E);
70 void VisitUnaryOffsetOf(UnaryOperator *Node);
71
Ted Kremenek42a509f2007-08-31 21:30:12 +000072 void Visit(Stmt* S) {
73 if (Helper && Helper->handledStmt(S,OS))
74 return;
75 else StmtVisitor<StmtPrinter>::Visit(S);
76 }
77
Chris Lattnerc5598cb2007-08-21 04:04:25 +000078 void VisitStmt(Stmt *Node);
Douglas Gregorf2cad862008-11-14 12:46:07 +000079#define STMT(CLASS, PARENT) \
Chris Lattnerc5598cb2007-08-21 04:04:25 +000080 void Visit##CLASS(CLASS *Node);
Reid Spencer5f016e22007-07-11 17:01:13 +000081#include "clang/AST/StmtNodes.def"
82 };
83}
84
85//===----------------------------------------------------------------------===//
86// Stmt printing methods.
87//===----------------------------------------------------------------------===//
88
89void StmtPrinter::VisitStmt(Stmt *Node) {
90 Indent() << "<<unknown stmt type>>\n";
91}
92
93/// PrintRawCompoundStmt - Print a compound stmt without indenting the {, and
94/// with no newline after the }.
95void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
96 OS << "{\n";
97 for (CompoundStmt::body_iterator I = Node->body_begin(), E = Node->body_end();
98 I != E; ++I)
99 PrintStmt(*I);
100
101 Indent() << "}";
102}
103
104void StmtPrinter::PrintRawDecl(Decl *D) {
105 // FIXME: Need to complete/beautify this... this code simply shows the
106 // nodes are where they need to be.
107 if (TypedefDecl *localType = dyn_cast<TypedefDecl>(D)) {
108 OS << "typedef " << localType->getUnderlyingType().getAsString();
Chris Lattner39f34e92008-11-24 04:00:27 +0000109 OS << " " << localType->getNameAsString();
Reid Spencer5f016e22007-07-11 17:01:13 +0000110 } else if (ValueDecl *VD = dyn_cast<ValueDecl>(D)) {
111 // Emit storage class for vardecls.
112 if (VarDecl *V = dyn_cast<VarDecl>(VD)) {
113 switch (V->getStorageClass()) {
114 default: assert(0 && "Unknown storage class!");
115 case VarDecl::None: break;
116 case VarDecl::Extern: OS << "extern "; break;
117 case VarDecl::Static: OS << "static "; break;
118 case VarDecl::Auto: OS << "auto "; break;
119 case VarDecl::Register: OS << "register "; break;
120 }
121 }
122
Chris Lattner39f34e92008-11-24 04:00:27 +0000123 std::string Name = VD->getNameAsString();
Reid Spencer5f016e22007-07-11 17:01:13 +0000124 VD->getType().getAsStringInternal(Name);
125 OS << Name;
126
Chris Lattner24c39902007-07-12 00:36:32 +0000127 // If this is a vardecl with an initializer, emit it.
128 if (VarDecl *V = dyn_cast<VarDecl>(VD)) {
129 if (V->getInit()) {
130 OS << " = ";
131 PrintExpr(V->getInit());
132 }
133 }
Steve Naroff91578f32007-11-17 21:21:01 +0000134 } else if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
135 // print a free standing tag decl (e.g. "struct x;").
136 OS << TD->getKindName();
137 OS << " ";
138 if (const IdentifierInfo *II = TD->getIdentifier())
139 OS << II->getName();
140 else
141 OS << "<anonymous>";
142 // FIXME: print tag bodies.
Reid Spencer5f016e22007-07-11 17:01:13 +0000143 } else {
Reid Spencer5f016e22007-07-11 17:01:13 +0000144 assert(0 && "Unexpected decl");
145 }
146}
147
Ted Kremenekecd64c52008-10-06 18:39:36 +0000148void StmtPrinter::PrintRawDeclStmt(DeclStmt *S) {
149 bool isFirst = false;
150
151 for (DeclStmt::decl_iterator I = S->decl_begin(), E = S->decl_end();
152 I != E; ++I) {
153
154 if (!isFirst) OS << ", ";
155 else isFirst = false;
156
157 PrintRawDecl(*I);
158 }
159}
Reid Spencer5f016e22007-07-11 17:01:13 +0000160
161void StmtPrinter::VisitNullStmt(NullStmt *Node) {
162 Indent() << ";\n";
163}
164
165void StmtPrinter::VisitDeclStmt(DeclStmt *Node) {
Ted Kremenekecd64c52008-10-06 18:39:36 +0000166 for (DeclStmt::decl_iterator I = Node->decl_begin(), E = Node->decl_end();
167 I!=E; ++I) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000168 Indent();
Ted Kremenekecd64c52008-10-06 18:39:36 +0000169 PrintRawDecl(*I);
Reid Spencer5f016e22007-07-11 17:01:13 +0000170 OS << ";\n";
171 }
172}
173
174void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) {
175 Indent();
176 PrintRawCompoundStmt(Node);
177 OS << "\n";
178}
179
180void StmtPrinter::VisitCaseStmt(CaseStmt *Node) {
181 Indent(-1) << "case ";
182 PrintExpr(Node->getLHS());
183 if (Node->getRHS()) {
184 OS << " ... ";
185 PrintExpr(Node->getRHS());
186 }
187 OS << ":\n";
188
189 PrintStmt(Node->getSubStmt(), 0);
190}
191
192void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) {
193 Indent(-1) << "default:\n";
194 PrintStmt(Node->getSubStmt(), 0);
195}
196
197void StmtPrinter::VisitLabelStmt(LabelStmt *Node) {
198 Indent(-1) << Node->getName() << ":\n";
199 PrintStmt(Node->getSubStmt(), 0);
200}
201
202void StmtPrinter::PrintRawIfStmt(IfStmt *If) {
203 OS << "if ";
204 PrintExpr(If->getCond());
205
206 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
207 OS << ' ';
208 PrintRawCompoundStmt(CS);
209 OS << (If->getElse() ? ' ' : '\n');
210 } else {
211 OS << '\n';
212 PrintStmt(If->getThen());
213 if (If->getElse()) Indent();
214 }
215
216 if (Stmt *Else = If->getElse()) {
217 OS << "else";
218
219 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
220 OS << ' ';
221 PrintRawCompoundStmt(CS);
222 OS << '\n';
223 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) {
224 OS << ' ';
225 PrintRawIfStmt(ElseIf);
226 } else {
227 OS << '\n';
228 PrintStmt(If->getElse());
229 }
230 }
231}
232
233void StmtPrinter::VisitIfStmt(IfStmt *If) {
234 Indent();
235 PrintRawIfStmt(If);
236}
237
238void StmtPrinter::VisitSwitchStmt(SwitchStmt *Node) {
239 Indent() << "switch (";
240 PrintExpr(Node->getCond());
241 OS << ")";
242
243 // Pretty print compoundstmt bodies (very common).
244 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
245 OS << " ";
246 PrintRawCompoundStmt(CS);
247 OS << "\n";
248 } else {
249 OS << "\n";
250 PrintStmt(Node->getBody());
251 }
252}
253
Anders Carlssonc1fcb772007-07-22 07:07:56 +0000254void StmtPrinter::VisitSwitchCase(SwitchCase*) {
255 assert(0 && "SwitchCase is an abstract class");
256}
257
Reid Spencer5f016e22007-07-11 17:01:13 +0000258void StmtPrinter::VisitWhileStmt(WhileStmt *Node) {
259 Indent() << "while (";
260 PrintExpr(Node->getCond());
261 OS << ")\n";
262 PrintStmt(Node->getBody());
263}
264
265void StmtPrinter::VisitDoStmt(DoStmt *Node) {
Chris Lattner8bdcc472007-09-15 21:49:37 +0000266 Indent() << "do ";
267 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
268 PrintRawCompoundStmt(CS);
269 OS << " ";
270 } else {
271 OS << "\n";
272 PrintStmt(Node->getBody());
273 Indent();
274 }
275
276 OS << "while ";
Reid Spencer5f016e22007-07-11 17:01:13 +0000277 PrintExpr(Node->getCond());
278 OS << ";\n";
279}
280
281void StmtPrinter::VisitForStmt(ForStmt *Node) {
282 Indent() << "for (";
283 if (Node->getInit()) {
284 if (DeclStmt *DS = dyn_cast<DeclStmt>(Node->getInit()))
Ted Kremenekecd64c52008-10-06 18:39:36 +0000285 PrintRawDeclStmt(DS);
Reid Spencer5f016e22007-07-11 17:01:13 +0000286 else
287 PrintExpr(cast<Expr>(Node->getInit()));
288 }
Chris Lattner8bdcc472007-09-15 21:49:37 +0000289 OS << ";";
290 if (Node->getCond()) {
291 OS << " ";
Reid Spencer5f016e22007-07-11 17:01:13 +0000292 PrintExpr(Node->getCond());
Chris Lattner8bdcc472007-09-15 21:49:37 +0000293 }
294 OS << ";";
295 if (Node->getInc()) {
296 OS << " ";
Reid Spencer5f016e22007-07-11 17:01:13 +0000297 PrintExpr(Node->getInc());
Chris Lattner8bdcc472007-09-15 21:49:37 +0000298 }
299 OS << ") ";
300
301 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
302 PrintRawCompoundStmt(CS);
303 OS << "\n";
304 } else {
305 OS << "\n";
306 PrintStmt(Node->getBody());
307 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000308}
309
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000310void StmtPrinter::VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) {
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000311 Indent() << "for (";
312 if (DeclStmt *DS = dyn_cast<DeclStmt>(Node->getElement()))
Ted Kremenekecd64c52008-10-06 18:39:36 +0000313 PrintRawDeclStmt(DS);
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000314 else
315 PrintExpr(cast<Expr>(Node->getElement()));
316 OS << " in ";
317 PrintExpr(Node->getCollection());
318 OS << ") ";
319
320 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
321 PrintRawCompoundStmt(CS);
322 OS << "\n";
323 } else {
324 OS << "\n";
325 PrintStmt(Node->getBody());
326 }
327}
328
Reid Spencer5f016e22007-07-11 17:01:13 +0000329void StmtPrinter::VisitGotoStmt(GotoStmt *Node) {
330 Indent() << "goto " << Node->getLabel()->getName() << ";\n";
331}
332
333void StmtPrinter::VisitIndirectGotoStmt(IndirectGotoStmt *Node) {
334 Indent() << "goto *";
335 PrintExpr(Node->getTarget());
336 OS << ";\n";
337}
338
339void StmtPrinter::VisitContinueStmt(ContinueStmt *Node) {
340 Indent() << "continue;\n";
341}
342
343void StmtPrinter::VisitBreakStmt(BreakStmt *Node) {
344 Indent() << "break;\n";
345}
346
347
348void StmtPrinter::VisitReturnStmt(ReturnStmt *Node) {
349 Indent() << "return";
350 if (Node->getRetValue()) {
351 OS << " ";
352 PrintExpr(Node->getRetValue());
353 }
354 OS << ";\n";
355}
356
Chris Lattnerfe795952007-10-29 04:04:16 +0000357
358void StmtPrinter::VisitAsmStmt(AsmStmt *Node) {
Anders Carlsson39c47b52007-11-23 23:12:25 +0000359 Indent() << "asm ";
360
361 if (Node->isVolatile())
362 OS << "volatile ";
363
364 OS << "(";
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000365 VisitStringLiteral(Node->getAsmString());
Anders Carlssonb235fc22007-11-22 01:36:19 +0000366
367 // Outputs
368 if (Node->getNumOutputs() != 0 || Node->getNumInputs() != 0 ||
369 Node->getNumClobbers() != 0)
370 OS << " : ";
371
372 for (unsigned i = 0, e = Node->getNumOutputs(); i != e; ++i) {
373 if (i != 0)
374 OS << ", ";
375
376 if (!Node->getOutputName(i).empty()) {
377 OS << '[';
378 OS << Node->getOutputName(i);
379 OS << "] ";
380 }
381
382 VisitStringLiteral(Node->getOutputConstraint(i));
383 OS << " ";
384 Visit(Node->getOutputExpr(i));
385 }
386
387 // Inputs
388 if (Node->getNumInputs() != 0 || Node->getNumClobbers() != 0)
389 OS << " : ";
390
391 for (unsigned i = 0, e = Node->getNumInputs(); i != e; ++i) {
392 if (i != 0)
393 OS << ", ";
394
395 if (!Node->getInputName(i).empty()) {
396 OS << '[';
397 OS << Node->getInputName(i);
398 OS << "] ";
399 }
400
401 VisitStringLiteral(Node->getInputConstraint(i));
402 OS << " ";
403 Visit(Node->getInputExpr(i));
404 }
405
406 // Clobbers
407 if (Node->getNumClobbers() != 0)
408 OS << " : ";
409
410 for (unsigned i = 0, e = Node->getNumClobbers(); i != e; ++i) {
411 if (i != 0)
412 OS << ", ";
413
414 VisitStringLiteral(Node->getClobber(i));
415 }
416
Anders Carlsson6a0ef4b2007-11-20 19:21:03 +0000417 OS << ");\n";
Chris Lattnerfe795952007-10-29 04:04:16 +0000418}
419
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000420void StmtPrinter::VisitObjCAtTryStmt(ObjCAtTryStmt *Node) {
Fariborz Jahanian7794cb82007-11-02 18:16:07 +0000421 Indent() << "@try";
422 if (CompoundStmt *TS = dyn_cast<CompoundStmt>(Node->getTryBody())) {
423 PrintRawCompoundStmt(TS);
424 OS << "\n";
425 }
426
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000427 for (ObjCAtCatchStmt *catchStmt =
428 static_cast<ObjCAtCatchStmt *>(Node->getCatchStmts());
Fariborz Jahanian7794cb82007-11-02 18:16:07 +0000429 catchStmt;
430 catchStmt =
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000431 static_cast<ObjCAtCatchStmt *>(catchStmt->getNextCatchStmt())) {
Fariborz Jahanian7794cb82007-11-02 18:16:07 +0000432 Indent() << "@catch(";
433 if (catchStmt->getCatchParamStmt()) {
434 if (DeclStmt *DS = dyn_cast<DeclStmt>(catchStmt->getCatchParamStmt()))
Ted Kremenekecd64c52008-10-06 18:39:36 +0000435 PrintRawDeclStmt(DS);
Fariborz Jahanian7794cb82007-11-02 18:16:07 +0000436 }
437 OS << ")";
438 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(catchStmt->getCatchBody()))
439 {
440 PrintRawCompoundStmt(CS);
441 OS << "\n";
442 }
443 }
444
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000445 if (ObjCAtFinallyStmt *FS =static_cast<ObjCAtFinallyStmt *>(
Fariborz Jahanian1e7eab42007-11-07 00:46:42 +0000446 Node->getFinallyStmt())) {
447 Indent() << "@finally";
448 PrintRawCompoundStmt(dyn_cast<CompoundStmt>(FS->getFinallyBody()));
Fariborz Jahanian7794cb82007-11-02 18:16:07 +0000449 OS << "\n";
450 }
Fariborz Jahanianb210bd02007-11-01 21:12:44 +0000451}
452
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000453void StmtPrinter::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) {
Fariborz Jahanianb210bd02007-11-01 21:12:44 +0000454}
455
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000456void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) {
Fariborz Jahanianb210bd02007-11-01 21:12:44 +0000457 Indent() << "@catch (...) { /* todo */ } \n";
458}
459
Fariborz Jahanian78a677b2008-01-30 17:38:29 +0000460void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +0000461 Indent() << "@throw";
462 if (Node->getThrowExpr()) {
463 OS << " ";
464 PrintExpr(Node->getThrowExpr());
465 }
466 OS << ";\n";
467}
468
Fariborz Jahanian78a677b2008-01-30 17:38:29 +0000469void StmtPrinter::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) {
Fariborz Jahanianc385c902008-01-29 18:21:32 +0000470 Indent() << "@synchronized (";
471 PrintExpr(Node->getSynchExpr());
472 OS << ")";
Fariborz Jahanian78a677b2008-01-30 17:38:29 +0000473 PrintRawCompoundStmt(Node->getSynchBody());
474 OS << "\n";
Fariborz Jahanianc385c902008-01-29 18:21:32 +0000475}
476
Reid Spencer5f016e22007-07-11 17:01:13 +0000477//===----------------------------------------------------------------------===//
478// Expr printing methods.
479//===----------------------------------------------------------------------===//
480
481void StmtPrinter::VisitExpr(Expr *Node) {
482 OS << "<<unknown expr type>>";
483}
484
485void StmtPrinter::VisitDeclRefExpr(DeclRefExpr *Node) {
Chris Lattner39f34e92008-11-24 04:00:27 +0000486 OS << Node->getDecl()->getNameAsString();
Reid Spencer5f016e22007-07-11 17:01:13 +0000487}
488
Steve Naroff7779db42007-11-12 14:29:37 +0000489void StmtPrinter::VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) {
Fariborz Jahanian232220c2007-11-12 22:29:28 +0000490 if (Node->getBase()) {
491 PrintExpr(Node->getBase());
492 OS << (Node->isArrow() ? "->" : ".");
493 }
Chris Lattner39f34e92008-11-24 04:00:27 +0000494 OS << Node->getDecl()->getNameAsString();
Steve Naroff7779db42007-11-12 14:29:37 +0000495}
496
Steve Naroffae784072008-05-30 00:40:33 +0000497void StmtPrinter::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) {
498 if (Node->getBase()) {
499 PrintExpr(Node->getBase());
500 OS << ".";
501 }
Steve Naroffc77a6362008-12-04 16:24:46 +0000502 OS << Node->getProperty()->getNameAsCString();
Steve Naroffae784072008-05-30 00:40:33 +0000503}
504
Fariborz Jahanian5daf5702008-11-22 18:39:36 +0000505void StmtPrinter::VisitObjCKVCRefExpr(ObjCKVCRefExpr *Node) {
506 if (Node->getBase()) {
507 PrintExpr(Node->getBase());
508 OS << ".";
509 }
510 // FIXME: Setter/Getter names
511}
512
Chris Lattnerd9f69102008-08-10 01:53:14 +0000513void StmtPrinter::VisitPredefinedExpr(PredefinedExpr *Node) {
Anders Carlsson22742662007-07-21 05:21:51 +0000514 switch (Node->getIdentType()) {
515 default:
516 assert(0 && "unknown case");
Chris Lattnerd9f69102008-08-10 01:53:14 +0000517 case PredefinedExpr::Func:
Anders Carlsson22742662007-07-21 05:21:51 +0000518 OS << "__func__";
519 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000520 case PredefinedExpr::Function:
Anders Carlsson22742662007-07-21 05:21:51 +0000521 OS << "__FUNCTION__";
522 break;
Chris Lattnerd9f69102008-08-10 01:53:14 +0000523 case PredefinedExpr::PrettyFunction:
Anders Carlsson22742662007-07-21 05:21:51 +0000524 OS << "__PRETTY_FUNCTION__";
525 break;
526 }
527}
528
Reid Spencer5f016e22007-07-11 17:01:13 +0000529void StmtPrinter::VisitCharacterLiteral(CharacterLiteral *Node) {
Chris Lattnerb0a721a2007-07-13 05:18:11 +0000530 unsigned value = Node->getValue();
Chris Lattnerc250aae2008-06-07 22:35:38 +0000531 if (Node->isWide())
532 OS << "L";
Chris Lattner8bf9f072007-07-13 23:58:20 +0000533 switch (value) {
534 case '\\':
535 OS << "'\\\\'";
536 break;
537 case '\'':
538 OS << "'\\''";
539 break;
540 case '\a':
541 // TODO: K&R: the meaning of '\\a' is different in traditional C
542 OS << "'\\a'";
543 break;
544 case '\b':
545 OS << "'\\b'";
546 break;
547 // Nonstandard escape sequence.
548 /*case '\e':
549 OS << "'\\e'";
550 break;*/
551 case '\f':
552 OS << "'\\f'";
553 break;
554 case '\n':
555 OS << "'\\n'";
556 break;
557 case '\r':
558 OS << "'\\r'";
559 break;
560 case '\t':
561 OS << "'\\t'";
562 break;
563 case '\v':
564 OS << "'\\v'";
565 break;
566 default:
Ted Kremenek471733d2008-02-23 00:52:04 +0000567 if (value < 256 && isprint(value)) {
Chris Lattner8bf9f072007-07-13 23:58:20 +0000568 OS << "'" << (char)value << "'";
569 } else if (value < 256) {
Ted Kremeneka95d3752008-09-13 05:16:45 +0000570 OS << "'\\x" << llvm::format("%x", value) << "'";
Chris Lattner8bf9f072007-07-13 23:58:20 +0000571 } else {
572 // FIXME what to really do here?
573 OS << value;
574 }
Chris Lattnerb0a721a2007-07-13 05:18:11 +0000575 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000576}
577
578void StmtPrinter::VisitIntegerLiteral(IntegerLiteral *Node) {
579 bool isSigned = Node->getType()->isSignedIntegerType();
580 OS << Node->getValue().toString(10, isSigned);
581
582 // Emit suffixes. Integer literals are always a builtin integer type.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000583 switch (Node->getType()->getAsBuiltinType()->getKind()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000584 default: assert(0 && "Unexpected type for integer literal!");
585 case BuiltinType::Int: break; // no suffix.
586 case BuiltinType::UInt: OS << 'U'; break;
587 case BuiltinType::Long: OS << 'L'; break;
588 case BuiltinType::ULong: OS << "UL"; break;
589 case BuiltinType::LongLong: OS << "LL"; break;
590 case BuiltinType::ULongLong: OS << "ULL"; break;
591 }
592}
593void StmtPrinter::VisitFloatingLiteral(FloatingLiteral *Node) {
Chris Lattner86e499d2007-08-01 00:23:58 +0000594 // FIXME: print value more precisely.
Chris Lattnerda8249e2008-06-07 22:13:43 +0000595 OS << Node->getValueAsApproximateDouble();
Reid Spencer5f016e22007-07-11 17:01:13 +0000596}
Chris Lattner5d661452007-08-26 03:42:43 +0000597
598void StmtPrinter::VisitImaginaryLiteral(ImaginaryLiteral *Node) {
599 PrintExpr(Node->getSubExpr());
600 OS << "i";
601}
602
Reid Spencer5f016e22007-07-11 17:01:13 +0000603void StmtPrinter::VisitStringLiteral(StringLiteral *Str) {
604 if (Str->isWide()) OS << 'L';
605 OS << '"';
Anders Carlssonee98ac52007-10-15 02:50:23 +0000606
Reid Spencer5f016e22007-07-11 17:01:13 +0000607 // FIXME: this doesn't print wstrings right.
608 for (unsigned i = 0, e = Str->getByteLength(); i != e; ++i) {
609 switch (Str->getStrData()[i]) {
610 default: OS << Str->getStrData()[i]; break;
611 // Handle some common ones to make dumps prettier.
612 case '\\': OS << "\\\\"; break;
613 case '"': OS << "\\\""; break;
614 case '\n': OS << "\\n"; break;
615 case '\t': OS << "\\t"; break;
616 case '\a': OS << "\\a"; break;
617 case '\b': OS << "\\b"; break;
618 }
619 }
620 OS << '"';
621}
622void StmtPrinter::VisitParenExpr(ParenExpr *Node) {
623 OS << "(";
624 PrintExpr(Node->getSubExpr());
625 OS << ")";
626}
627void StmtPrinter::VisitUnaryOperator(UnaryOperator *Node) {
Chris Lattner296bf192007-08-23 21:46:40 +0000628 if (!Node->isPostfix()) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000629 OS << UnaryOperator::getOpcodeStr(Node->getOpcode());
Chris Lattner296bf192007-08-23 21:46:40 +0000630
Sebastian Redl05189992008-11-11 17:56:53 +0000631 // Print a space if this is an "identifier operator" like __real.
Chris Lattner296bf192007-08-23 21:46:40 +0000632 switch (Node->getOpcode()) {
633 default: break;
Chris Lattner296bf192007-08-23 21:46:40 +0000634 case UnaryOperator::Real:
635 case UnaryOperator::Imag:
636 case UnaryOperator::Extension:
637 OS << ' ';
638 break;
639 }
640 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000641 PrintExpr(Node->getSubExpr());
642
643 if (Node->isPostfix())
644 OS << UnaryOperator::getOpcodeStr(Node->getOpcode());
Reid Spencer5f016e22007-07-11 17:01:13 +0000645}
Chris Lattner704fe352007-08-30 17:59:59 +0000646
647bool StmtPrinter::PrintOffsetOfDesignator(Expr *E) {
648 if (isa<CompoundLiteralExpr>(E)) {
649 // Base case, print the type and comma.
650 OS << E->getType().getAsString() << ", ";
651 return true;
652 } else if (ArraySubscriptExpr *ASE = dyn_cast<ArraySubscriptExpr>(E)) {
653 PrintOffsetOfDesignator(ASE->getLHS());
654 OS << "[";
655 PrintExpr(ASE->getRHS());
656 OS << "]";
657 return false;
658 } else {
659 MemberExpr *ME = cast<MemberExpr>(E);
660 bool IsFirst = PrintOffsetOfDesignator(ME->getBase());
Chris Lattner39f34e92008-11-24 04:00:27 +0000661 OS << (IsFirst ? "" : ".") << ME->getMemberDecl()->getNameAsString();
Chris Lattner704fe352007-08-30 17:59:59 +0000662 return false;
663 }
664}
665
666void StmtPrinter::VisitUnaryOffsetOf(UnaryOperator *Node) {
667 OS << "__builtin_offsetof(";
668 PrintOffsetOfDesignator(Node->getSubExpr());
669 OS << ")";
670}
671
Sebastian Redl05189992008-11-11 17:56:53 +0000672void StmtPrinter::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *Node) {
673 OS << (Node->isSizeOf() ? "sizeof" : "__alignof");
674 if (Node->isArgumentType())
675 OS << "(" << Node->getArgumentType().getAsString() << ")";
676 else {
677 OS << " ";
678 PrintExpr(Node->getArgumentExpr());
679 }
Reid Spencer5f016e22007-07-11 17:01:13 +0000680}
681void StmtPrinter::VisitArraySubscriptExpr(ArraySubscriptExpr *Node) {
Ted Kremenek23245122007-08-20 16:18:38 +0000682 PrintExpr(Node->getLHS());
Reid Spencer5f016e22007-07-11 17:01:13 +0000683 OS << "[";
Ted Kremenek23245122007-08-20 16:18:38 +0000684 PrintExpr(Node->getRHS());
Reid Spencer5f016e22007-07-11 17:01:13 +0000685 OS << "]";
686}
687
688void StmtPrinter::VisitCallExpr(CallExpr *Call) {
689 PrintExpr(Call->getCallee());
690 OS << "(";
691 for (unsigned i = 0, e = Call->getNumArgs(); i != e; ++i) {
Chris Lattner04421082008-04-08 04:40:51 +0000692 if (isa<CXXDefaultArgExpr>(Call->getArg(i))) {
693 // Don't print any defaulted arguments
694 break;
695 }
696
Reid Spencer5f016e22007-07-11 17:01:13 +0000697 if (i) OS << ", ";
698 PrintExpr(Call->getArg(i));
699 }
700 OS << ")";
701}
702void StmtPrinter::VisitMemberExpr(MemberExpr *Node) {
703 PrintExpr(Node->getBase());
704 OS << (Node->isArrow() ? "->" : ".");
Douglas Gregor86f19402008-12-20 23:49:58 +0000705 OS << Node->getMemberDecl()->getNameAsString();
Reid Spencer5f016e22007-07-11 17:01:13 +0000706}
Nate Begeman213541a2008-04-18 23:10:10 +0000707void StmtPrinter::VisitExtVectorElementExpr(ExtVectorElementExpr *Node) {
Steve Naroff31a45842007-07-28 23:10:27 +0000708 PrintExpr(Node->getBase());
709 OS << ".";
710 OS << Node->getAccessor().getName();
711}
Argyrios Kyrtzidis0835a3c2008-08-18 23:01:59 +0000712void StmtPrinter::VisitCastExpr(CastExpr *) {
713 assert(0 && "CastExpr is an abstract class");
714}
Douglas Gregor49badde2008-10-27 19:41:14 +0000715void StmtPrinter::VisitExplicitCastExpr(ExplicitCastExpr *) {
716 assert(0 && "ExplicitCastExpr is an abstract class");
717}
Douglas Gregor6eec8e82008-10-28 15:36:24 +0000718void StmtPrinter::VisitCStyleCastExpr(CStyleCastExpr *Node) {
Chris Lattner26dc7b32007-07-15 23:54:50 +0000719 OS << "(" << Node->getType().getAsString() << ")";
Reid Spencer5f016e22007-07-11 17:01:13 +0000720 PrintExpr(Node->getSubExpr());
721}
Steve Naroffaff1edd2007-07-19 21:32:11 +0000722void StmtPrinter::VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) {
723 OS << "(" << Node->getType().getAsString() << ")";
724 PrintExpr(Node->getInitializer());
725}
Steve Naroff49b45262007-07-13 16:58:59 +0000726void StmtPrinter::VisitImplicitCastExpr(ImplicitCastExpr *Node) {
Steve Naroff90045e82007-07-13 23:32:42 +0000727 // No need to print anything, simply forward to the sub expression.
728 PrintExpr(Node->getSubExpr());
Steve Naroff49b45262007-07-13 16:58:59 +0000729}
Reid Spencer5f016e22007-07-11 17:01:13 +0000730void StmtPrinter::VisitBinaryOperator(BinaryOperator *Node) {
731 PrintExpr(Node->getLHS());
732 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " ";
733 PrintExpr(Node->getRHS());
734}
Chris Lattnereb14fe82007-08-25 02:00:02 +0000735void StmtPrinter::VisitCompoundAssignOperator(CompoundAssignOperator *Node) {
736 PrintExpr(Node->getLHS());
737 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " ";
738 PrintExpr(Node->getRHS());
739}
Reid Spencer5f016e22007-07-11 17:01:13 +0000740void StmtPrinter::VisitConditionalOperator(ConditionalOperator *Node) {
741 PrintExpr(Node->getCond());
Ted Kremenek8e911c42007-11-26 18:27:54 +0000742
743 if (Node->getLHS()) {
744 OS << " ? ";
745 PrintExpr(Node->getLHS());
746 OS << " : ";
747 }
748 else { // Handle GCC extention where LHS can be NULL.
749 OS << " ?: ";
750 }
751
Reid Spencer5f016e22007-07-11 17:01:13 +0000752 PrintExpr(Node->getRHS());
753}
754
755// GNU extensions.
756
Chris Lattner6481a572007-08-03 17:31:20 +0000757void StmtPrinter::VisitAddrLabelExpr(AddrLabelExpr *Node) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000758 OS << "&&" << Node->getLabel()->getName();
Reid Spencer5f016e22007-07-11 17:01:13 +0000759}
760
Chris Lattnerab18c4c2007-07-24 16:58:17 +0000761void StmtPrinter::VisitStmtExpr(StmtExpr *E) {
762 OS << "(";
763 PrintRawCompoundStmt(E->getSubStmt());
764 OS << ")";
765}
766
Steve Naroffd34e9152007-08-01 22:05:33 +0000767void StmtPrinter::VisitTypesCompatibleExpr(TypesCompatibleExpr *Node) {
768 OS << "__builtin_types_compatible_p(";
769 OS << Node->getArgType1().getAsString() << ",";
770 OS << Node->getArgType2().getAsString() << ")";
771}
772
Steve Naroffd04fdd52007-08-03 21:21:27 +0000773void StmtPrinter::VisitChooseExpr(ChooseExpr *Node) {
774 OS << "__builtin_choose_expr(";
775 PrintExpr(Node->getCond());
Chris Lattner94f05e32007-08-04 00:20:15 +0000776 OS << ", ";
Steve Naroffd04fdd52007-08-03 21:21:27 +0000777 PrintExpr(Node->getLHS());
Chris Lattner94f05e32007-08-04 00:20:15 +0000778 OS << ", ";
Steve Naroffd04fdd52007-08-03 21:21:27 +0000779 PrintExpr(Node->getRHS());
780 OS << ")";
781}
Chris Lattnerab18c4c2007-07-24 16:58:17 +0000782
Douglas Gregor2d8b2732008-11-29 04:51:27 +0000783void StmtPrinter::VisitGNUNullExpr(GNUNullExpr *) {
784 OS << "__null";
785}
786
Nate Begemane2ce1d92008-01-17 17:46:27 +0000787void StmtPrinter::VisitOverloadExpr(OverloadExpr *Node) {
788 OS << "__builtin_overload(";
Nate Begeman67295d02008-01-30 20:50:20 +0000789 for (unsigned i = 0, e = Node->getNumSubExprs(); i != e; ++i) {
Nate Begemane2ce1d92008-01-17 17:46:27 +0000790 if (i) OS << ", ";
Nate Begeman67295d02008-01-30 20:50:20 +0000791 PrintExpr(Node->getExpr(i));
Nate Begemane2ce1d92008-01-17 17:46:27 +0000792 }
793 OS << ")";
794}
795
Eli Friedmand38617c2008-05-14 19:38:39 +0000796void StmtPrinter::VisitShuffleVectorExpr(ShuffleVectorExpr *Node) {
797 OS << "__builtin_shufflevector(";
798 for (unsigned i = 0, e = Node->getNumSubExprs(); i != e; ++i) {
799 if (i) OS << ", ";
800 PrintExpr(Node->getExpr(i));
801 }
802 OS << ")";
803}
804
Anders Carlsson66b5a8a2007-08-31 04:56:16 +0000805void StmtPrinter::VisitInitListExpr(InitListExpr* Node) {
806 OS << "{ ";
807 for (unsigned i = 0, e = Node->getNumInits(); i != e; ++i) {
808 if (i) OS << ", ";
809 PrintExpr(Node->getInit(i));
810 }
811 OS << " }";
812}
813
Anders Carlsson7c50aca2007-10-15 20:28:48 +0000814void StmtPrinter::VisitVAArgExpr(VAArgExpr *Node) {
815 OS << "va_arg(";
816 PrintExpr(Node->getSubExpr());
817 OS << ", ";
818 OS << Node->getType().getAsString();
819 OS << ")";
820}
821
Reid Spencer5f016e22007-07-11 17:01:13 +0000822// C++
Douglas Gregorb4609802008-11-14 16:09:21 +0000823void StmtPrinter::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) {
824 const char *OpStrings[NUM_OVERLOADED_OPERATORS] = {
825 "",
826#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
827 Spelling,
828#include "clang/Basic/OperatorKinds.def"
829 };
830
831 OverloadedOperatorKind Kind = Node->getOperator();
832 if (Kind == OO_PlusPlus || Kind == OO_MinusMinus) {
833 if (Node->getNumArgs() == 1) {
834 OS << OpStrings[Kind] << ' ';
835 PrintExpr(Node->getArg(0));
836 } else {
837 PrintExpr(Node->getArg(0));
838 OS << ' ' << OpStrings[Kind];
839 }
840 } else if (Kind == OO_Call) {
841 PrintExpr(Node->getArg(0));
842 OS << '(';
843 for (unsigned ArgIdx = 1; ArgIdx < Node->getNumArgs(); ++ArgIdx) {
844 if (ArgIdx > 1)
845 OS << ", ";
846 if (!isa<CXXDefaultArgExpr>(Node->getArg(ArgIdx)))
847 PrintExpr(Node->getArg(ArgIdx));
848 }
849 OS << ')';
850 } else if (Kind == OO_Subscript) {
851 PrintExpr(Node->getArg(0));
852 OS << '[';
853 PrintExpr(Node->getArg(1));
854 OS << ']';
855 } else if (Node->getNumArgs() == 1) {
856 OS << OpStrings[Kind] << ' ';
857 PrintExpr(Node->getArg(0));
858 } else if (Node->getNumArgs() == 2) {
859 PrintExpr(Node->getArg(0));
860 OS << ' ' << OpStrings[Kind] << ' ';
861 PrintExpr(Node->getArg(1));
862 } else {
863 assert(false && "unknown overloaded operator");
864 }
865}
Reid Spencer5f016e22007-07-11 17:01:13 +0000866
Douglas Gregor88a35142008-12-22 05:46:06 +0000867void StmtPrinter::VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) {
868 VisitCallExpr(cast<CallExpr>(Node));
869}
870
Douglas Gregor49badde2008-10-27 19:41:14 +0000871void StmtPrinter::VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) {
872 OS << Node->getCastName() << '<';
873 OS << Node->getTypeAsWritten().getAsString() << ">(";
Reid Spencer5f016e22007-07-11 17:01:13 +0000874 PrintExpr(Node->getSubExpr());
875 OS << ")";
876}
877
Douglas Gregor49badde2008-10-27 19:41:14 +0000878void StmtPrinter::VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) {
879 VisitCXXNamedCastExpr(Node);
880}
881
882void StmtPrinter::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) {
883 VisitCXXNamedCastExpr(Node);
884}
885
886void StmtPrinter::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) {
887 VisitCXXNamedCastExpr(Node);
888}
889
890void StmtPrinter::VisitCXXConstCastExpr(CXXConstCastExpr *Node) {
891 VisitCXXNamedCastExpr(Node);
892}
893
Sebastian Redlc42e1182008-11-11 11:37:55 +0000894void StmtPrinter::VisitCXXTypeidExpr(CXXTypeidExpr *Node) {
895 OS << "typeid(";
896 if (Node->isTypeOperand()) {
897 OS << Node->getTypeOperand().getAsString();
898 } else {
899 PrintExpr(Node->getExprOperand());
900 }
901 OS << ")";
902}
903
Reid Spencer5f016e22007-07-11 17:01:13 +0000904void StmtPrinter::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) {
905 OS << (Node->getValue() ? "true" : "false");
906}
907
Douglas Gregor796da182008-11-04 14:32:21 +0000908void StmtPrinter::VisitCXXThisExpr(CXXThisExpr *Node) {
909 OS << "this";
910}
911
Chris Lattner50dd2892008-02-26 00:51:44 +0000912void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) {
913 if (Node->getSubExpr() == 0)
914 OS << "throw";
915 else {
916 OS << "throw ";
917 PrintExpr(Node->getSubExpr());
918 }
919}
920
Chris Lattner04421082008-04-08 04:40:51 +0000921void StmtPrinter::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) {
922 // Nothing to print: we picked up the default argument
923}
924
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000925void StmtPrinter::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) {
926 OS << Node->getType().getAsString();
927 OS << "(";
928 PrintExpr(Node->getSubExpr());
929 OS << ")";
930}
931
932void StmtPrinter::VisitCXXZeroInitValueExpr(CXXZeroInitValueExpr *Node) {
933 OS << Node->getType().getAsString() << "()";
934}
935
Argyrios Kyrtzidis9e922b12008-09-09 23:47:53 +0000936void
937StmtPrinter::VisitCXXConditionDeclExpr(CXXConditionDeclExpr *E) {
938 PrintRawDecl(E->getVarDecl());
939}
940
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000941void StmtPrinter::VisitCXXNewExpr(CXXNewExpr *E) {
942 if (E->isGlobalNew())
943 OS << "::";
944 OS << "new ";
945 unsigned NumPlace = E->getNumPlacementArgs();
946 if (NumPlace > 0) {
947 OS << "(";
948 PrintExpr(E->getPlacementArg(0));
949 for (unsigned i = 1; i < NumPlace; ++i) {
950 OS << ", ";
951 PrintExpr(E->getPlacementArg(i));
952 }
953 OS << ") ";
954 }
955 if (E->isParenTypeId())
956 OS << "(";
Sebastian Redl6fec6482008-12-02 22:08:59 +0000957 std::string TypeS;
958 if (Expr *Size = E->getArraySize()) {
959 llvm::raw_string_ostream s(TypeS);
960 Size->printPretty(s);
961 s.flush();
962 TypeS = "[" + TypeS + "]";
963 }
964 E->getAllocatedType().getAsStringInternal(TypeS);
965 OS << TypeS;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000966 if (E->isParenTypeId())
967 OS << ")";
968
969 if (E->hasInitializer()) {
970 OS << "(";
971 unsigned NumCons = E->getNumConstructorArgs();
972 if (NumCons > 0) {
973 PrintExpr(E->getConstructorArg(0));
974 for (unsigned i = 1; i < NumCons; ++i) {
975 OS << ", ";
976 PrintExpr(E->getConstructorArg(i));
977 }
978 }
979 OS << ")";
980 }
981}
982
983void StmtPrinter::VisitCXXDeleteExpr(CXXDeleteExpr *E) {
984 if (E->isGlobalDelete())
985 OS << "::";
986 OS << "delete ";
987 if (E->isArrayForm())
988 OS << "[] ";
989 PrintExpr(E->getArgument());
990}
991
Douglas Gregor5c37de72008-12-06 00:22:45 +0000992void StmtPrinter::VisitCXXDependentNameExpr(CXXDependentNameExpr *E) {
993 OS << E->getName()->getName();
994}
995
Anders Carlsson55085182007-08-21 17:43:55 +0000996// Obj-C
997
998void StmtPrinter::VisitObjCStringLiteral(ObjCStringLiteral *Node) {
999 OS << "@";
1000 VisitStringLiteral(Node->getString());
1001}
Reid Spencer5f016e22007-07-11 17:01:13 +00001002
Anders Carlssonf9bcf012007-08-22 15:14:15 +00001003void StmtPrinter::VisitObjCEncodeExpr(ObjCEncodeExpr *Node) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001004 OS << "@encode(" << Node->getEncodedType().getAsString() << ')';
Anders Carlssonf9bcf012007-08-22 15:14:15 +00001005}
1006
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001007void StmtPrinter::VisitObjCSelectorExpr(ObjCSelectorExpr *Node) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001008 OS << "@selector(" << Node->getSelector().getAsString() << ')';
Fariborz Jahanianb62f6812007-10-16 20:40:23 +00001009}
1010
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001011void StmtPrinter::VisitObjCProtocolExpr(ObjCProtocolExpr *Node) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001012 OS << "@protocol(" << Node->getProtocol()->getNameAsString() << ')';
Fariborz Jahanian390d50a2007-10-17 16:58:11 +00001013}
1014
Steve Naroff563477d2007-09-18 23:55:05 +00001015void StmtPrinter::VisitObjCMessageExpr(ObjCMessageExpr *Mess) {
1016 OS << "[";
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001017 Expr *receiver = Mess->getReceiver();
1018 if (receiver) PrintExpr(receiver);
1019 else OS << Mess->getClassName()->getName();
Ted Kremenekc29efd82008-05-02 17:32:38 +00001020 OS << ' ';
Ted Kremenek97b7f262008-04-16 04:30:16 +00001021 Selector selector = Mess->getSelector();
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001022 if (selector.isUnarySelector()) {
Ted Kremenekc29efd82008-05-02 17:32:38 +00001023 OS << selector.getIdentifierInfoForSlot(0)->getName();
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001024 } else {
1025 for (unsigned i = 0, e = Mess->getNumArgs(); i != e; ++i) {
Ted Kremenekc29efd82008-05-02 17:32:38 +00001026 if (i < selector.getNumArgs()) {
1027 if (i > 0) OS << ' ';
1028 if (selector.getIdentifierInfoForSlot(i))
Chris Lattner39f34e92008-11-24 04:00:27 +00001029 OS << selector.getIdentifierInfoForSlot(i)->getName() << ':';
Ted Kremenekc29efd82008-05-02 17:32:38 +00001030 else
1031 OS << ":";
1032 }
1033 else OS << ", "; // Handle variadic methods.
1034
Steve Naroff6a8a9a42007-10-02 20:01:56 +00001035 PrintExpr(Mess->getArg(i));
1036 }
Steve Naroff563477d2007-09-18 23:55:05 +00001037 }
1038 OS << "]";
1039}
1040
Douglas Gregorcd9b46e2008-11-04 14:56:14 +00001041void StmtPrinter::VisitObjCSuperExpr(ObjCSuperExpr *) {
1042 OS << "super";
1043}
1044
Steve Naroff4eb206b2008-09-03 18:15:37 +00001045void StmtPrinter::VisitBlockExpr(BlockExpr *Node) {
Steve Naroff56ee6892008-10-08 17:01:13 +00001046 BlockDecl *BD = Node->getBlockDecl();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001047 OS << "^";
1048
1049 const FunctionType *AFT = Node->getFunctionType();
1050
1051 if (isa<FunctionTypeNoProto>(AFT)) {
1052 OS << "()";
Steve Naroff56ee6892008-10-08 17:01:13 +00001053 } else if (!BD->param_empty() || cast<FunctionTypeProto>(AFT)->isVariadic()) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00001054 OS << '(';
1055 std::string ParamStr;
Steve Naroff56ee6892008-10-08 17:01:13 +00001056 for (BlockDecl::param_iterator AI = BD->param_begin(),
1057 E = BD->param_end(); AI != E; ++AI) {
1058 if (AI != BD->param_begin()) OS << ", ";
Chris Lattner39f34e92008-11-24 04:00:27 +00001059 ParamStr = (*AI)->getNameAsString();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001060 (*AI)->getType().getAsStringInternal(ParamStr);
1061 OS << ParamStr;
1062 }
1063
Steve Naroff56ee6892008-10-08 17:01:13 +00001064 const FunctionTypeProto *FT = cast<FunctionTypeProto>(AFT);
Steve Naroff4eb206b2008-09-03 18:15:37 +00001065 if (FT->isVariadic()) {
Steve Naroff56ee6892008-10-08 17:01:13 +00001066 if (!BD->param_empty()) OS << ", ";
Steve Naroff4eb206b2008-09-03 18:15:37 +00001067 OS << "...";
1068 }
1069 OS << ')';
1070 }
1071}
1072
Steve Naroff4eb206b2008-09-03 18:15:37 +00001073void StmtPrinter::VisitBlockDeclRefExpr(BlockDeclRefExpr *Node) {
Chris Lattner39f34e92008-11-24 04:00:27 +00001074 OS << Node->getDecl()->getNameAsString();
Steve Naroff4eb206b2008-09-03 18:15:37 +00001075}
Reid Spencer5f016e22007-07-11 17:01:13 +00001076//===----------------------------------------------------------------------===//
1077// Stmt method implementations
1078//===----------------------------------------------------------------------===//
1079
Chris Lattner6000dac2007-08-08 22:51:59 +00001080void Stmt::dumpPretty() const {
Ted Kremeneka95d3752008-09-13 05:16:45 +00001081 printPretty(llvm::errs());
Reid Spencer5f016e22007-07-11 17:01:13 +00001082}
1083
Ted Kremeneka95d3752008-09-13 05:16:45 +00001084void Stmt::printPretty(llvm::raw_ostream &OS, PrinterHelper* Helper) const {
Reid Spencer5f016e22007-07-11 17:01:13 +00001085 if (this == 0) {
1086 OS << "<NULL>";
1087 return;
1088 }
1089
Ted Kremenek42a509f2007-08-31 21:30:12 +00001090 StmtPrinter P(OS, Helper);
Chris Lattnerc5598cb2007-08-21 04:04:25 +00001091 P.Visit(const_cast<Stmt*>(this));
Reid Spencer5f016e22007-07-11 17:01:13 +00001092}
Ted Kremenek42a509f2007-08-31 21:30:12 +00001093
1094//===----------------------------------------------------------------------===//
1095// PrinterHelper
1096//===----------------------------------------------------------------------===//
1097
1098// Implement virtual destructor.
Gabor Greif84675832007-09-11 15:32:40 +00001099PrinterHelper::~PrinterHelper() {}