source: src/SynTree/Statement.cc @ 60089f4

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 60089f4 was 60089f4, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

fix printing in CommaExpr?, CompoundStmt?, ForStmt?, etc.

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