1 | //
|
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
3 | //
|
---|
4 | // The contents of this file are covered under the licence agreement in the
|
---|
5 | // file "LICENCE" distributed with Cforall.
|
---|
6 | //
|
---|
7 | // Statement.cc --
|
---|
8 | //
|
---|
9 | // Author : Richard C. Bilson
|
---|
10 | // Created On : Mon May 18 07:44:20 2015
|
---|
11 | // Last Modified By : Peter A. Buhr
|
---|
12 | // Last Modified On : Thu Aug 4 11:25:20 2016
|
---|
13 | // Update Count : 61
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include <functional>
|
---|
17 | #include <algorithm>
|
---|
18 | #include <iostream>
|
---|
19 | #include <list>
|
---|
20 | #include <cassert>
|
---|
21 |
|
---|
22 | #include "Statement.h"
|
---|
23 | #include "Expression.h"
|
---|
24 | #include "Declaration.h"
|
---|
25 | #include "Common/SemanticError.h"
|
---|
26 |
|
---|
27 | using std::string;
|
---|
28 | using std::endl;
|
---|
29 |
|
---|
30 | Statement::Statement( std::list<Label> _labels ) : labels( _labels ) {}
|
---|
31 |
|
---|
32 | void Statement::print( std::ostream &, int indent ) const {}
|
---|
33 |
|
---|
34 | Statement::~Statement() {}
|
---|
35 |
|
---|
36 | ExprStmt::ExprStmt( std::list<Label> _labels, Expression *_expr ) : Statement( _labels ), expr( _expr ) {}
|
---|
37 |
|
---|
38 | ExprStmt::ExprStmt( const ExprStmt &other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
|
---|
39 |
|
---|
40 | ExprStmt::~ExprStmt() {
|
---|
41 | delete expr;
|
---|
42 | }
|
---|
43 |
|
---|
44 | void ExprStmt::print( std::ostream &os, int indent ) const {
|
---|
45 | os << "Expression Statement:" << endl << std::string( indent + 2, ' ' );
|
---|
46 | expr->print( os, indent + 2 );
|
---|
47 | }
|
---|
48 |
|
---|
49 |
|
---|
50 | AsmStmt::AsmStmt( std::list<Label> labels, bool voltile, ConstantExpr *instruction, std::list<Expression *> output, std::list<Expression *> input, std::list<ConstantExpr *> clobber, std::list<Label> gotolabels ) : Statement( labels ), voltile( voltile ), instruction( instruction ), output( output ), input( input ), clobber( clobber ), gotolabels( gotolabels ) {}
|
---|
51 |
|
---|
52 | AsmStmt::AsmStmt( const AsmStmt & other ) : Statement( other ), voltile( other.voltile ), instruction( maybeClone( other.instruction ) ), gotolabels( other.gotolabels ) {
|
---|
53 | cloneAll( other.output, output );
|
---|
54 | cloneAll( other.input, input );
|
---|
55 | cloneAll( other.clobber, clobber );
|
---|
56 | }
|
---|
57 |
|
---|
58 | AsmStmt::~AsmStmt() {
|
---|
59 | delete instruction;
|
---|
60 | deleteAll( output );
|
---|
61 | deleteAll( input );
|
---|
62 | deleteAll( clobber );
|
---|
63 | }
|
---|
64 |
|
---|
65 | void AsmStmt::print( std::ostream &os, int indent ) const {
|
---|
66 | os << "Assembler Statement:" << endl;
|
---|
67 | os << std::string( indent, ' ' ) << "instruction: " << endl << std::string( indent, ' ' );
|
---|
68 | instruction->print( os, indent + 2 );
|
---|
69 | if ( ! output.empty() ) {
|
---|
70 | os << endl << std::string( indent, ' ' ) << "output: " << endl;
|
---|
71 | printAll( output, os, indent + 2 );
|
---|
72 | } // if
|
---|
73 | if ( ! input.empty() ) {
|
---|
74 | os << std::string( indent, ' ' ) << "input: " << endl << std::string( indent, ' ' );
|
---|
75 | printAll( input, os, indent + 2 );
|
---|
76 | } // if
|
---|
77 | if ( ! clobber.empty() ) {
|
---|
78 | os << std::string( indent, ' ' ) << "clobber: " << endl;
|
---|
79 | printAll( clobber, os, indent + 2 );
|
---|
80 | } // if
|
---|
81 | }
|
---|
82 |
|
---|
83 |
|
---|
84 | const char *BranchStmt::brType[] = { "Goto", "Break", "Continue" };
|
---|
85 |
|
---|
86 | BranchStmt::BranchStmt( std::list<Label> labels, Label _target, Type _type ) throw ( SemanticError ) :
|
---|
87 | Statement( labels ), originalTarget( _target ), target( _target ), computedTarget( NULL ), type( _type ) {
|
---|
88 | //actually this is a syntactic error signaled by the parser
|
---|
89 | if ( type == BranchStmt::Goto && target.empty() )
|
---|
90 | throw SemanticError("goto without target");
|
---|
91 | }
|
---|
92 |
|
---|
93 | BranchStmt::BranchStmt( std::list<Label> labels, Expression *_computedTarget, Type _type ) throw ( SemanticError ) :
|
---|
94 | Statement( labels ), computedTarget( _computedTarget ), type( _type ) {
|
---|
95 | if ( type != BranchStmt::Goto || computedTarget == 0 )
|
---|
96 | throw SemanticError("Computed target not valid in branch statement");
|
---|
97 | }
|
---|
98 |
|
---|
99 | void BranchStmt::print( std::ostream &os, int indent ) const {
|
---|
100 | os << string( indent, ' ' ) << "Branch (" << brType[type] << ")" << endl ;
|
---|
101 | }
|
---|
102 |
|
---|
103 | ReturnStmt::ReturnStmt( std::list<Label> labels, Expression *_expr, bool throwP ) : Statement( labels ), expr( _expr ), isThrow( throwP ) {}
|
---|
104 |
|
---|
105 | ReturnStmt::ReturnStmt( const ReturnStmt & other ) : Statement( other ), expr( maybeClone( other.expr ) ), isThrow( other.isThrow ) {}
|
---|
106 |
|
---|
107 | ReturnStmt::~ReturnStmt() {
|
---|
108 | delete expr;
|
---|
109 | }
|
---|
110 |
|
---|
111 | void ReturnStmt::print( std::ostream &os, int indent ) const {
|
---|
112 | os << string ( isThrow? "Throw":"Return" ) << " Statement, returning: ";
|
---|
113 | if ( expr != 0 ) {
|
---|
114 | os << endl << string( indent+2, ' ' );
|
---|
115 | expr->print( os, indent + 2 );
|
---|
116 | }
|
---|
117 | os << endl;
|
---|
118 | }
|
---|
119 |
|
---|
120 | IfStmt::IfStmt( std::list<Label> _labels, Expression *_condition, Statement *_thenPart, Statement *_elsePart ):
|
---|
121 | Statement( _labels ), condition( _condition ), thenPart( _thenPart ), elsePart( _elsePart ) {}
|
---|
122 |
|
---|
123 | IfStmt::IfStmt( const IfStmt & other ) :
|
---|
124 | Statement( other ), condition( maybeClone( other.condition ) ), thenPart( maybeClone( other.thenPart ) ), elsePart( maybeClone( other.elsePart ) ) {}
|
---|
125 |
|
---|
126 | IfStmt::~IfStmt() {}
|
---|
127 |
|
---|
128 | void IfStmt::print( std::ostream &os, int indent ) const {
|
---|
129 | os << "If on condition: " << endl ;
|
---|
130 | os << string( indent+4, ' ' );
|
---|
131 | condition->print( os, indent + 4 );
|
---|
132 |
|
---|
133 | os << string( indent+2, ' ' ) << "... then: " << endl;
|
---|
134 |
|
---|
135 | os << string( indent+4, ' ' );
|
---|
136 | thenPart->print( os, indent + 4 );
|
---|
137 |
|
---|
138 | if ( elsePart != 0 ) {
|
---|
139 | os << string( indent+2, ' ' ) << "... else: " << endl;
|
---|
140 | os << string( indent+4, ' ' );
|
---|
141 | elsePart->print( os, indent + 4 );
|
---|
142 | } // if
|
---|
143 | }
|
---|
144 |
|
---|
145 | SwitchStmt::SwitchStmt( std::list<Label> _labels, Expression * _condition, std::list<Statement *> &_statements ):
|
---|
146 | Statement( _labels ), condition( _condition ), statements( _statements ) {
|
---|
147 | }
|
---|
148 |
|
---|
149 | SwitchStmt::SwitchStmt( const SwitchStmt & other ):
|
---|
150 | Statement( other ), condition( maybeClone( other.condition ) ) {
|
---|
151 | cloneAll( other.statements, statements );
|
---|
152 | }
|
---|
153 |
|
---|
154 | SwitchStmt::~SwitchStmt() {
|
---|
155 | delete condition;
|
---|
156 | // destroy statements
|
---|
157 | }
|
---|
158 |
|
---|
159 | void SwitchStmt::print( std::ostream &os, int indent ) const {
|
---|
160 | os << "Switch on condition: ";
|
---|
161 | condition->print( os );
|
---|
162 | os << endl;
|
---|
163 |
|
---|
164 | // statements
|
---|
165 | std::list<Statement *>::const_iterator i;
|
---|
166 | for ( i = statements.begin(); i != statements.end(); i++)
|
---|
167 | (*i)->print( os, indent + 4 );
|
---|
168 |
|
---|
169 | //for_each( statements.begin(), statements.end(), mem_fun( bind1st(&Statement::print ), os ));
|
---|
170 | }
|
---|
171 |
|
---|
172 | CaseStmt::CaseStmt( std::list<Label> _labels, Expression *_condition, std::list<Statement *> &_statements, bool deflt ) throw ( SemanticError ) :
|
---|
173 | Statement( _labels ), condition( _condition ), stmts( _statements ), _isDefault( deflt ) {
|
---|
174 | if ( isDefault() && condition != 0 )
|
---|
175 | throw SemanticError("default with conditions");
|
---|
176 | }
|
---|
177 |
|
---|
178 | CaseStmt::CaseStmt( const CaseStmt & other ) :
|
---|
179 | Statement( other ), condition( maybeClone(other.condition ) ), _isDefault( other._isDefault ) {
|
---|
180 | cloneAll( other.stmts, stmts );
|
---|
181 | }
|
---|
182 |
|
---|
183 | CaseStmt::~CaseStmt() {
|
---|
184 | delete condition;
|
---|
185 | }
|
---|
186 |
|
---|
187 | CaseStmt * CaseStmt::makeDefault( std::list<Label> labels, std::list<Statement *> stmts ) {
|
---|
188 | return new CaseStmt( labels, 0, stmts, true );
|
---|
189 | }
|
---|
190 |
|
---|
191 | void CaseStmt::print( std::ostream &os, int indent ) const {
|
---|
192 | os << string( indent, ' ' );
|
---|
193 |
|
---|
194 | if ( isDefault() )
|
---|
195 | os << "Default ";
|
---|
196 | else {
|
---|
197 | os << "Case ";
|
---|
198 | condition->print( os );
|
---|
199 | } // if
|
---|
200 |
|
---|
201 | os << endl;
|
---|
202 |
|
---|
203 | std::list<Statement *>::const_iterator i;
|
---|
204 | for ( i = stmts.begin(); i != stmts.end(); i++)
|
---|
205 | (*i )->print( os, indent + 4 );
|
---|
206 | }
|
---|
207 |
|
---|
208 | WhileStmt::WhileStmt( std::list<Label> labels, Expression *condition_, Statement *body_, bool isDoWhile_ ):
|
---|
209 | Statement( labels ), condition( condition_), body( body_), isDoWhile( isDoWhile_) {
|
---|
210 | }
|
---|
211 |
|
---|
212 | WhileStmt::WhileStmt( const WhileStmt & other ):
|
---|
213 | Statement( other ), condition( maybeClone( other.condition ) ), body( maybeClone( other.body ) ), isDoWhile( other.isDoWhile ) {
|
---|
214 | }
|
---|
215 |
|
---|
216 | WhileStmt::~WhileStmt() {
|
---|
217 | delete body;
|
---|
218 | }
|
---|
219 |
|
---|
220 | void WhileStmt::print( std::ostream &os, int indent ) const {
|
---|
221 | os << "While on condition: " << endl ;
|
---|
222 | condition->print( os, indent + 4 );
|
---|
223 |
|
---|
224 | os << string( indent, ' ' ) << ".... with body: " << endl;
|
---|
225 |
|
---|
226 | if ( body != 0 ) body->print( os, indent + 4 );
|
---|
227 | }
|
---|
228 |
|
---|
229 | ForStmt::ForStmt( std::list<Label> labels, std::list<Statement *> initialization_, Expression *condition_, Expression *increment_, Statement *body_ ):
|
---|
230 | Statement( labels ), initialization( initialization_ ), condition( condition_ ), increment( increment_ ), body( body_ ) {
|
---|
231 | }
|
---|
232 |
|
---|
233 | ForStmt::ForStmt( const ForStmt & other ):
|
---|
234 | Statement( other ), condition( maybeClone( other.condition ) ), increment( maybeClone( other.increment ) ), body( maybeClone( other.body ) ) {
|
---|
235 | cloneAll( other.initialization, initialization );
|
---|
236 |
|
---|
237 | }
|
---|
238 |
|
---|
239 | ForStmt::~ForStmt() {
|
---|
240 | deleteAll( initialization );
|
---|
241 | delete condition;
|
---|
242 | delete increment;
|
---|
243 | delete body;
|
---|
244 | }
|
---|
245 |
|
---|
246 | void ForStmt::print( std::ostream &os, int indent ) const {
|
---|
247 | os << "Labels: {";
|
---|
248 | for ( std::list<Label>::const_iterator it = get_labels().begin(); it != get_labels().end(); ++it) {
|
---|
249 | os << *it << ",";
|
---|
250 | }
|
---|
251 | os << "}" << endl;
|
---|
252 |
|
---|
253 | os << string( indent, ' ' ) << "For Statement" << endl ;
|
---|
254 |
|
---|
255 | os << string( indent + 2, ' ' ) << "initialization: \n";
|
---|
256 | for ( std::list<Statement *>::const_iterator it = initialization.begin(); it != initialization.end(); ++it ) {
|
---|
257 | os << string( indent + 4, ' ' );
|
---|
258 | (*it)->print( os, indent + 4 );
|
---|
259 | }
|
---|
260 |
|
---|
261 | os << "\n" << string( indent + 2, ' ' ) << "condition: \n";
|
---|
262 | if ( condition != 0 ) {
|
---|
263 | os << string( indent + 4, ' ' );
|
---|
264 | condition->print( os, indent + 4 );
|
---|
265 | }
|
---|
266 |
|
---|
267 | os << "\n" << string( indent + 2, ' ' ) << "increment: \n";
|
---|
268 | if ( increment != 0 ) {
|
---|
269 | os << string( indent + 4, ' ' );
|
---|
270 | increment->print( os, indent + 4 );
|
---|
271 | }
|
---|
272 |
|
---|
273 | os << "\n" << string( indent + 2, ' ' ) << "statement block: \n";
|
---|
274 | if ( body != 0 ) {
|
---|
275 | os << string( indent + 4, ' ' );
|
---|
276 | body->print( os, indent + 4 );
|
---|
277 | }
|
---|
278 |
|
---|
279 | os << endl;
|
---|
280 | }
|
---|
281 |
|
---|
282 | TryStmt::TryStmt( std::list<Label> labels, CompoundStmt *tryBlock, std::list<Statement *> &_handlers, FinallyStmt *_finallyBlock ) :
|
---|
283 | Statement( labels ), block( tryBlock ), handlers( _handlers ), finallyBlock( _finallyBlock ) {
|
---|
284 | }
|
---|
285 |
|
---|
286 | TryStmt::TryStmt( const TryStmt &other ) : Statement( other ), block( maybeClone( other.block ) ), finallyBlock( maybeClone( other.finallyBlock ) ) {
|
---|
287 | cloneAll( other.handlers, handlers );
|
---|
288 | }
|
---|
289 |
|
---|
290 | TryStmt::~TryStmt() {
|
---|
291 | delete block;
|
---|
292 | }
|
---|
293 |
|
---|
294 | void TryStmt::print( std::ostream &os, int indent ) const {
|
---|
295 | os << "Try Statement" << endl;
|
---|
296 | os << string( indent + 2, ' ' ) << "with block: " << endl;
|
---|
297 | block->print( os, indent + 4 );
|
---|
298 |
|
---|
299 | // handlers
|
---|
300 | os << string( indent + 2, ' ' ) << "and handlers: " << endl;
|
---|
301 | for ( std::list<Statement *>::const_iterator i = handlers.begin(); i != handlers.end(); i++)
|
---|
302 | (*i )->print( os, indent + 4 );
|
---|
303 |
|
---|
304 | // finally block
|
---|
305 | if ( finallyBlock != 0 ) {
|
---|
306 | os << string( indent + 2, ' ' ) << "Finally block: " << endl;
|
---|
307 | finallyBlock->print( os, indent + 4 );
|
---|
308 | } // if
|
---|
309 | }
|
---|
310 |
|
---|
311 | CatchStmt::CatchStmt( std::list<Label> labels, Declaration *_decl, Statement *_body, bool isCatchRest ) :
|
---|
312 | Statement( labels ), decl ( _decl ), body( _body ), catchRest ( isCatchRest ) {
|
---|
313 | }
|
---|
314 |
|
---|
315 | CatchStmt::CatchStmt( const CatchStmt & other ) :
|
---|
316 | Statement( other ), decl ( maybeClone( other.decl ) ), body( maybeClone( other.body ) ), catchRest ( other.catchRest ) {
|
---|
317 | }
|
---|
318 |
|
---|
319 | CatchStmt::~CatchStmt() {
|
---|
320 | delete decl;
|
---|
321 | delete body;
|
---|
322 | }
|
---|
323 |
|
---|
324 | void CatchStmt::print( std::ostream &os, int indent ) const {
|
---|
325 | os << "Catch Statement" << endl;
|
---|
326 |
|
---|
327 | os << string( indent, ' ' ) << "... catching" << endl;
|
---|
328 | if ( decl ) {
|
---|
329 | decl->printShort( os, indent + 4 );
|
---|
330 | os << endl;
|
---|
331 | } else if ( catchRest )
|
---|
332 | os << string( indent + 4 , ' ' ) << "the rest" << endl;
|
---|
333 | else
|
---|
334 | os << string( indent + 4 , ' ' ) << ">>> Error: this catch clause must have a declaration <<<" << endl;
|
---|
335 | }
|
---|
336 |
|
---|
337 |
|
---|
338 | FinallyStmt::FinallyStmt( std::list<Label> labels, CompoundStmt *_block ) : Statement( labels ), block( _block ) {
|
---|
339 | assert( labels.empty() ); // finally statement cannot be labeled
|
---|
340 | }
|
---|
341 |
|
---|
342 | FinallyStmt::FinallyStmt( const FinallyStmt & other ) : Statement( other ), block( maybeClone( other.block ) ) {
|
---|
343 | }
|
---|
344 |
|
---|
345 | FinallyStmt::~FinallyStmt() {
|
---|
346 | delete block;
|
---|
347 | }
|
---|
348 |
|
---|
349 | void FinallyStmt::print( std::ostream &os, int indent ) const {
|
---|
350 | os << "Finally Statement" << endl;
|
---|
351 | os << string( indent + 2, ' ' ) << "with block: " << endl;
|
---|
352 | block->print( os, indent + 4 );
|
---|
353 | }
|
---|
354 |
|
---|
355 | NullStmt::NullStmt( std::list<Label> labels ) : CompoundStmt( labels ) {}
|
---|
356 | NullStmt::NullStmt() : CompoundStmt( std::list<Label>() ) {}
|
---|
357 |
|
---|
358 | void NullStmt::print( std::ostream &os, int indent ) const {
|
---|
359 | os << "Null Statement" << endl ;
|
---|
360 | }
|
---|
361 |
|
---|
362 | ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( Statement * callStmt ) : Statement( std::list<Label>() ), callStmt( callStmt ) {
|
---|
363 | assert( callStmt );
|
---|
364 | }
|
---|
365 |
|
---|
366 | ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ) : Statement( other ), callStmt( maybeClone( other.callStmt ) ) {
|
---|
367 | }
|
---|
368 |
|
---|
369 | ImplicitCtorDtorStmt::~ImplicitCtorDtorStmt() {
|
---|
370 | delete callStmt;
|
---|
371 | }
|
---|
372 |
|
---|
373 | void ImplicitCtorDtorStmt::print( std::ostream &os, int indent ) const {
|
---|
374 | os << "Implicit Ctor Dtor Statement" << endl;
|
---|
375 | os << string( indent + 2, ' ' ) << "with Ctor/Dtor: ";
|
---|
376 | callStmt->print( os, indent + 2);
|
---|
377 | os << endl;
|
---|
378 | }
|
---|
379 |
|
---|
380 | std::ostream & operator<<( std::ostream & out, Statement * statement ) {
|
---|
381 | statement->print( out );
|
---|
382 | return out;
|
---|
383 | }
|
---|
384 |
|
---|
385 | // Local Variables: //
|
---|
386 | // tab-width: 4 //
|
---|
387 | // mode: c++ //
|
---|
388 | // compile-command: "make install" //
|
---|
389 | // End: //
|
---|