blob: 6ed996613553018e1d7372d8de7db1ddcdd1f251 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- Stmt.cpp - Statement AST Node Implementation ---------------------===//
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//
10// This file implements the Stmt class and statement subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Stmt.h"
15#include "clang/AST/ExprCXX.h"
16#include "clang/AST/StmtVisitor.h"
Chris Lattnerc7229c32007-10-07 08:58:51 +000017#include "clang/Basic/IdentifierTable.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018using namespace clang;
19
Reid Spencer5f016e22007-07-11 17:01:13 +000020static struct StmtClassNameTable {
Chris Lattner63381352007-08-25 01:42:24 +000021 const char *Name;
22 unsigned Counter;
23 unsigned Size;
Chris Lattner1f683e92007-08-25 01:55:00 +000024} StmtClassInfo[Stmt::lastExprConstant+1];
Chris Lattner63381352007-08-25 01:42:24 +000025
26static StmtClassNameTable &getStmtInfoTableEntry(Stmt::StmtClass E) {
27 static bool Initialized = false;
28 if (Initialized)
29 return StmtClassInfo[E];
30
31 // Intialize the table on the first use.
32 Initialized = true;
33#define STMT(N, CLASS, PARENT) \
34 StmtClassInfo[N].Name = #CLASS; \
35 StmtClassInfo[N].Size = sizeof(CLASS);
Reid Spencer5f016e22007-07-11 17:01:13 +000036#include "clang/AST/StmtNodes.def"
Reid Spencer5f016e22007-07-11 17:01:13 +000037
Chris Lattner63381352007-08-25 01:42:24 +000038 return StmtClassInfo[E];
39}
40
Reid Spencer5f016e22007-07-11 17:01:13 +000041const char *Stmt::getStmtClassName() const {
Chris Lattner63381352007-08-25 01:42:24 +000042 return getStmtInfoTableEntry(sClass).Name;
Reid Spencer5f016e22007-07-11 17:01:13 +000043}
44
Ted Kremenek27f8a282008-05-20 00:43:19 +000045void Stmt::DestroyChildren(ASTContext& C) {
Ted Kremenek9c1863e2008-05-19 22:02:12 +000046 for (child_iterator I = child_begin(), E = child_end(); I !=E; ++I)
Ted Kremenek27f8a282008-05-20 00:43:19 +000047 if (Stmt* Child = *I) Child->Destroy(C);
48}
49
50void Stmt::Destroy(ASTContext& C) {
51 DestroyChildren(C);
Ted Kremenekf809e3b2008-05-20 04:10:52 +000052 // FIXME: Eventually all Stmts should be allocated with the allocator
53 // in ASTContext, just like with Decls.
54 // this->~Stmt();
55 delete this;
Ted Kremenek9c1863e2008-05-19 22:02:12 +000056}
57
Reid Spencer5f016e22007-07-11 17:01:13 +000058void Stmt::PrintStats() {
Chris Lattner63381352007-08-25 01:42:24 +000059 // Ensure the table is primed.
60 getStmtInfoTableEntry(Stmt::NullStmtClass);
61
Reid Spencer5f016e22007-07-11 17:01:13 +000062 unsigned sum = 0;
63 fprintf(stderr, "*** Stmt/Expr Stats:\n");
Chris Lattner1f683e92007-08-25 01:55:00 +000064 for (int i = 0; i != Stmt::lastExprConstant+1; i++) {
Chris Lattner63381352007-08-25 01:42:24 +000065 if (StmtClassInfo[i].Name == 0) continue;
66 sum += StmtClassInfo[i].Counter;
Reid Spencer5f016e22007-07-11 17:01:13 +000067 }
68 fprintf(stderr, " %d stmts/exprs total.\n", sum);
69 sum = 0;
Chris Lattner1f683e92007-08-25 01:55:00 +000070 for (int i = 0; i != Stmt::lastExprConstant+1; i++) {
Chris Lattner63381352007-08-25 01:42:24 +000071 if (StmtClassInfo[i].Name == 0) continue;
Reid Spencer5f016e22007-07-11 17:01:13 +000072 fprintf(stderr, " %d %s, %d each (%d bytes)\n",
Chris Lattner63381352007-08-25 01:42:24 +000073 StmtClassInfo[i].Counter, StmtClassInfo[i].Name,
74 StmtClassInfo[i].Size,
75 StmtClassInfo[i].Counter*StmtClassInfo[i].Size);
76 sum += StmtClassInfo[i].Counter*StmtClassInfo[i].Size;
Reid Spencer5f016e22007-07-11 17:01:13 +000077 }
78 fprintf(stderr, "Total bytes = %d\n", sum);
79}
80
81void Stmt::addStmtClass(StmtClass s) {
Chris Lattner63381352007-08-25 01:42:24 +000082 ++getStmtInfoTableEntry(s).Counter;
Reid Spencer5f016e22007-07-11 17:01:13 +000083}
84
85static bool StatSwitch = false;
86
87bool Stmt::CollectingStats(bool enable) {
88 if (enable) StatSwitch = true;
Chris Lattner63381352007-08-25 01:42:24 +000089 return StatSwitch;
Reid Spencer5f016e22007-07-11 17:01:13 +000090}
91
92
Reid Spencer5f016e22007-07-11 17:01:13 +000093const char *LabelStmt::getName() const {
94 return getID()->getName();
95}
96
Steve Naroff507f2d52007-08-31 23:49:30 +000097// This is defined here to avoid polluting Stmt.h with importing Expr.h
98SourceRange ReturnStmt::getSourceRange() const {
99 if (RetExpr)
100 return SourceRange(RetLoc, RetExpr->getLocEnd());
101 else
102 return SourceRange(RetLoc);
103}
104
Ted Kremenekd48ade62007-10-01 16:34:52 +0000105bool Stmt::hasImplicitControlFlow() const {
106 switch (sClass) {
107 default:
108 return false;
109
110 case CallExprClass:
111 case ConditionalOperatorClass:
112 case ChooseExprClass:
113 case StmtExprClass:
114 case DeclStmtClass:
115 return true;
116
117 case Stmt::BinaryOperatorClass: {
118 const BinaryOperator* B = cast<BinaryOperator>(this);
119 if (B->isLogicalOp() || B->getOpcode() == BinaryOperator::Comma)
120 return true;
121 else
122 return false;
123 }
124 }
125}
126
Chris Lattnerdb6ed172008-01-30 05:01:46 +0000127//===----------------------------------------------------------------------===//
128// Constructors
129//===----------------------------------------------------------------------===//
130
Anders Carlssondfab34a2008-02-05 23:03:50 +0000131AsmStmt::AsmStmt(SourceLocation asmloc, bool issimple, bool isvolatile,
Chris Lattnerdb6ed172008-01-30 05:01:46 +0000132 unsigned numoutputs, unsigned numinputs,
133 std::string *names, StringLiteral **constraints,
134 Expr **exprs, StringLiteral *asmstr, unsigned numclobbers,
135 StringLiteral **clobbers, SourceLocation rparenloc)
Anders Carlssonb235fc22007-11-22 01:36:19 +0000136 : Stmt(AsmStmtClass), AsmLoc(asmloc), RParenLoc(rparenloc), AsmStr(asmstr)
Anders Carlssondfab34a2008-02-05 23:03:50 +0000137 , IsSimple(issimple), IsVolatile(isvolatile)
138 , NumOutputs(numoutputs), NumInputs(numinputs) {
Anders Carlssonb235fc22007-11-22 01:36:19 +0000139 for (unsigned i = 0, e = numinputs + numoutputs; i != e; i++) {
140 Names.push_back(names[i]);
141 Exprs.push_back(exprs[i]);
142 Constraints.push_back(constraints[i]);
143 }
144
145 for (unsigned i = 0; i != numclobbers; i++)
146 Clobbers.push_back(clobbers[i]);
147}
148
Chris Lattnerdb6ed172008-01-30 05:01:46 +0000149ObjCForCollectionStmt::ObjCForCollectionStmt(Stmt *Elem, Expr *Collect,
150 Stmt *Body, SourceLocation FCL,
151 SourceLocation RPL)
152: Stmt(ObjCForCollectionStmtClass) {
153 SubExprs[ELEM] = Elem;
154 SubExprs[COLLECTION] = reinterpret_cast<Stmt*>(Collect);
155 SubExprs[BODY] = Body;
156 ForLoc = FCL;
157 RParenLoc = RPL;
158}
159
160
161ObjCAtCatchStmt::ObjCAtCatchStmt(SourceLocation atCatchLoc,
162 SourceLocation rparenloc,
163 Stmt *catchVarStmtDecl, Stmt *atCatchStmt,
164 Stmt *atCatchList)
165: Stmt(ObjCAtCatchStmtClass) {
166 SubExprs[SELECTOR] = catchVarStmtDecl;
167 SubExprs[BODY] = atCatchStmt;
168 if (!atCatchList)
Ted Kremenekff981022008-02-01 21:28:59 +0000169 SubExprs[NEXT_CATCH] = NULL;
Chris Lattnerdb6ed172008-01-30 05:01:46 +0000170 else {
Ted Kremenekff981022008-02-01 21:28:59 +0000171 ObjCAtCatchStmt *AtCatchList = static_cast<ObjCAtCatchStmt*>(atCatchList);
172
173 while (ObjCAtCatchStmt* NextCatch = AtCatchList->getNextCatchStmt())
174 AtCatchList = NextCatch;
175
176 AtCatchList->SubExprs[NEXT_CATCH] = this;
Chris Lattnerdb6ed172008-01-30 05:01:46 +0000177 }
178 AtCatchLoc = atCatchLoc;
179 RParenLoc = rparenloc;
180}
181
182
Ted Kremenek82977772007-08-24 21:09:09 +0000183//===----------------------------------------------------------------------===//
184// Child Iterators for iterating over subexpressions/substatements
185//===----------------------------------------------------------------------===//
186
187// DeclStmt
Ted Kremenek9ac59282007-10-18 23:28:49 +0000188Stmt::child_iterator DeclStmt::child_begin() { return getDecl(); }
189Stmt::child_iterator DeclStmt::child_end() { return child_iterator(); }
Ted Kremenek82977772007-08-24 21:09:09 +0000190
191// NullStmt
Ted Kremenek9ac59282007-10-18 23:28:49 +0000192Stmt::child_iterator NullStmt::child_begin() { return child_iterator(); }
193Stmt::child_iterator NullStmt::child_end() { return child_iterator(); }
Ted Kremenek82977772007-08-24 21:09:09 +0000194
195// CompoundStmt
196Stmt::child_iterator CompoundStmt::child_begin() { return &Body[0]; }
197Stmt::child_iterator CompoundStmt::child_end() { return &Body[0]+Body.size(); }
198
Ted Kremenekd97bb6c2007-08-30 16:50:46 +0000199// CaseStmt
200Stmt::child_iterator CaseStmt::child_begin() { return &SubExprs[0]; }
201Stmt::child_iterator CaseStmt::child_end() { return &SubExprs[END_EXPR]; }
202
203// DefaultStmt
204Stmt::child_iterator DefaultStmt::child_begin() { return &SubStmt; }
205Stmt::child_iterator DefaultStmt::child_end() { return &SubStmt+1; }
Ted Kremenek82977772007-08-24 21:09:09 +0000206
207// LabelStmt
208Stmt::child_iterator LabelStmt::child_begin() { return &SubStmt; }
Chris Lattnerb3938792007-08-30 00:53:54 +0000209Stmt::child_iterator LabelStmt::child_end() { return &SubStmt+1; }
Ted Kremenek82977772007-08-24 21:09:09 +0000210
211// IfStmt
212Stmt::child_iterator IfStmt::child_begin() { return &SubExprs[0]; }
213Stmt::child_iterator IfStmt::child_end() { return &SubExprs[0]+END_EXPR; }
214
215// SwitchStmt
216Stmt::child_iterator SwitchStmt::child_begin() { return &SubExprs[0]; }
217Stmt::child_iterator SwitchStmt::child_end() { return &SubExprs[0]+END_EXPR; }
218
219// WhileStmt
220Stmt::child_iterator WhileStmt::child_begin() { return &SubExprs[0]; }
221Stmt::child_iterator WhileStmt::child_end() { return &SubExprs[0]+END_EXPR; }
222
223// DoStmt
224Stmt::child_iterator DoStmt::child_begin() { return &SubExprs[0]; }
225Stmt::child_iterator DoStmt::child_end() { return &SubExprs[0]+END_EXPR; }
226
227// ForStmt
228Stmt::child_iterator ForStmt::child_begin() { return &SubExprs[0]; }
229Stmt::child_iterator ForStmt::child_end() { return &SubExprs[0]+END_EXPR; }
230
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000231// ObjCForCollectionStmt
232Stmt::child_iterator ObjCForCollectionStmt::child_begin() {
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000233 return &SubExprs[0];
234}
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000235Stmt::child_iterator ObjCForCollectionStmt::child_end() {
Fariborz Jahanian0196cab2008-01-02 22:54:34 +0000236 return &SubExprs[0]+END_EXPR;
237}
238
Ted Kremenek82977772007-08-24 21:09:09 +0000239// GotoStmt
Ted Kremenek9ac59282007-10-18 23:28:49 +0000240Stmt::child_iterator GotoStmt::child_begin() { return child_iterator(); }
241Stmt::child_iterator GotoStmt::child_end() { return child_iterator(); }
Ted Kremenek82977772007-08-24 21:09:09 +0000242
243// IndirectGotoStmt
244Stmt::child_iterator IndirectGotoStmt::child_begin() {
245 return reinterpret_cast<Stmt**>(&Target);
246}
247
Ted Kremenek9caf8b12007-10-18 00:24:38 +0000248Stmt::child_iterator IndirectGotoStmt::child_end() { return ++child_begin(); }
Ted Kremenek82977772007-08-24 21:09:09 +0000249
250// ContinueStmt
Ted Kremenek9ac59282007-10-18 23:28:49 +0000251Stmt::child_iterator ContinueStmt::child_begin() { return child_iterator(); }
252Stmt::child_iterator ContinueStmt::child_end() { return child_iterator(); }
Ted Kremenek82977772007-08-24 21:09:09 +0000253
254// BreakStmt
Ted Kremenek9ac59282007-10-18 23:28:49 +0000255Stmt::child_iterator BreakStmt::child_begin() { return child_iterator(); }
256Stmt::child_iterator BreakStmt::child_end() { return child_iterator(); }
Ted Kremenek82977772007-08-24 21:09:09 +0000257
258// ReturnStmt
Ted Kremenek2298f912007-08-27 20:58:16 +0000259Stmt::child_iterator ReturnStmt::child_begin() {
260 if (RetExpr) return reinterpret_cast<Stmt**>(&RetExpr);
Ted Kremenek9ac59282007-10-18 23:28:49 +0000261 else return child_iterator();
Ted Kremenek82977772007-08-24 21:09:09 +0000262}
263
Ted Kremenek2298f912007-08-27 20:58:16 +0000264Stmt::child_iterator ReturnStmt::child_end() {
265 if (RetExpr) return reinterpret_cast<Stmt**>(&RetExpr)+1;
Ted Kremenek9ac59282007-10-18 23:28:49 +0000266 else return child_iterator();
Ted Kremenek2298f912007-08-27 20:58:16 +0000267}
Ted Kremenek82977772007-08-24 21:09:09 +0000268
Chris Lattnerfe795952007-10-29 04:04:16 +0000269// AsmStmt
270Stmt::child_iterator AsmStmt::child_begin() { return child_iterator(); }
271Stmt::child_iterator AsmStmt::child_end() { return child_iterator(); }
272
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000273// ObjCAtCatchStmt
274Stmt::child_iterator ObjCAtCatchStmt::child_begin() { return &SubExprs[0]; }
275Stmt::child_iterator ObjCAtCatchStmt::child_end() {
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +0000276 return &SubExprs[0]+END_EXPR;
277}
Fariborz Jahanianb210bd02007-11-01 21:12:44 +0000278
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000279// ObjCAtFinallyStmt
280Stmt::child_iterator ObjCAtFinallyStmt::child_begin() { return &AtFinallyStmt; }
281Stmt::child_iterator ObjCAtFinallyStmt::child_end() { return &AtFinallyStmt+1; }
Fariborz Jahanianb210bd02007-11-01 21:12:44 +0000282
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000283// ObjCAtTryStmt
284Stmt::child_iterator ObjCAtTryStmt::child_begin() { return &SubStmts[0]; }
285Stmt::child_iterator ObjCAtTryStmt::child_end() {
Fariborz Jahanian89079ea2007-11-07 17:43:16 +0000286 return &SubStmts[0]+END_EXPR;
Fariborz Jahanian3b1191d2007-11-01 23:59:59 +0000287}
Fariborz Jahanianb210bd02007-11-01 21:12:44 +0000288
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000289// ObjCAtThrowStmt
290Stmt::child_iterator ObjCAtThrowStmt::child_begin() {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +0000291 return &Throw;
292}
293
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000294Stmt::child_iterator ObjCAtThrowStmt::child_end() {
Fariborz Jahanian39f8f152007-11-07 02:00:49 +0000295 return &Throw+1;
296}
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +0000297
298// ObjCAtSynchronizedStmt
299Stmt::child_iterator ObjCAtSynchronizedStmt::child_begin() {
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000300 return &SubStmts[0];
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +0000301}
302
303Stmt::child_iterator ObjCAtSynchronizedStmt::child_end() {
Fariborz Jahaniana0f55792008-01-29 22:59:37 +0000304 return &SubStmts[0]+END_EXPR;
Fariborz Jahanianfa3ee8e2008-01-29 19:14:59 +0000305}
306