source: src/SynTree/Statement.cc @ c366ec6

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since c366ec6 was 50377a4, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Refactor tree print code to use Indenter

  • Property mode set to 100644
File size: 15.0 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
[6d49ea3]11// Last Modified By : Peter A. Buhr
[e612146c]12// Last Modified On : Sun Sep  3 20:46:44 2017
13// Update Count     : 68
[0dd3a2f]14//
15
[ea6332d]16#include "SynTree/Statement.h"
[51b7345]17
[ea6332d]18#include <stddef.h>                // for NULL
19#include <cassert>                 // for assert, assertf
20#include <iostream>                // for operator<<, basic_ostream, endl
21#include <list>                    // for list, list<>::const_iterator, _Lis...
22#include <string>                  // for operator<<, string, char_traits
23
24#include "Common/SemanticError.h"  // for SemanticError
25#include "Common/utility.h"        // for maybeClone, cloneAll, deleteAll
26#include "Declaration.h"           // for Declaration
27#include "Expression.h"            // for Expression, ConstantExpr
28#include "Statement.h"             // for Statement, ForStmt, AsmStmt, Catch...
29#include "SynTree/Label.h"         // for Label, operator<<
[51b7345]30
31using std::string;
32using std::endl;
33
[6d49ea3]34Statement::Statement( std::list<Label> labels ) : labels( labels ) {}
[51b7345]35
[50377a4]36void Statement::print( std::ostream & os, Indenter ) const {
37        if ( ! labels.empty() ) {
38                os << "Labels: {";
39                for ( const Label & l : labels ) {
40                        os << l << ",";
41                }
42                os << "}" << endl;
43        }
44}
[51b7345]45
46Statement::~Statement() {}
47
[6d49ea3]48ExprStmt::ExprStmt( std::list<Label> labels, Expression *expr ) : Statement( labels ), expr( expr ) {}
[51b7345]49
[3be261a]50ExprStmt::ExprStmt( const ExprStmt &other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
51
52ExprStmt::~ExprStmt() {
53        delete expr;
54}
[51b7345]55
[50377a4]56void ExprStmt::print( std::ostream &os, Indenter indent ) const {
57        os << "Expression Statement:" << endl << indent+1;
58        expr->print( os, indent+1 );
[3be261a]59}
[51b7345]60
[7f5566b]61
[e612146c]62AsmStmt::AsmStmt( std::list<Label> labels, bool voltile, Expression *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 ) {}
[7f5566b]63
[3be261a]64AsmStmt::AsmStmt( const AsmStmt & other ) : Statement( other ), voltile( other.voltile ), instruction( maybeClone( other.instruction ) ), gotolabels( other.gotolabels ) {
65  cloneAll( other.output, output );
66  cloneAll( other.input, input );
67  cloneAll( other.clobber, clobber );
68}
69
[7f5566b]70AsmStmt::~AsmStmt() {
71        delete instruction;
72        deleteAll( output );
73        deleteAll( input );
74        deleteAll( clobber );
75}
76
[50377a4]77void AsmStmt::print( std::ostream &os, Indenter indent ) const {
[7f5566b]78        os << "Assembler Statement:" << endl;
[50377a4]79        os << indent+1 << "instruction: " << endl << indent;
80        instruction->print( os, indent+1 );
[7f5566b]81        if ( ! output.empty() ) {
[50377a4]82                os << endl << indent+1 << "output: " << endl;
83                printAll( output, os, indent+1 );
[3be261a]84        } // if
[7f5566b]85        if ( ! input.empty() ) {
[50377a4]86                os << indent+1 << "input: " << endl;
87                printAll( input, os, indent+1 );
[7f5566b]88        } // if
89        if ( ! clobber.empty() ) {
[50377a4]90                os << indent+1 << "clobber: " << endl;
91                printAll( clobber, os, indent+1 );
[7f5566b]92        } // if
[3be261a]93}
[7f5566b]94
95
[51b7345]96const char *BranchStmt::brType[] = { "Goto", "Break", "Continue" };
97
[6d49ea3]98BranchStmt::BranchStmt( std::list<Label> labels, Label target, Type type ) throw ( SemanticError ) :
[b0dfbc4]99        Statement( labels ), originalTarget( target ), target( target ), computedTarget( nullptr ), type( type ) {
[0dd3a2f]100        //actually this is a syntactic error signaled by the parser
[b0dfbc4]101        if ( type == BranchStmt::Goto && target.empty() ) {
[0dd3a2f]102                throw SemanticError("goto without target");
[b0dfbc4]103        }
[51b7345]104}
105
[6d49ea3]106BranchStmt::BranchStmt( std::list<Label> labels, Expression *computedTarget, Type type ) throw ( SemanticError ) :
107        Statement( labels ), computedTarget( computedTarget ), type( type ) {
[b0dfbc4]108        if ( type != BranchStmt::Goto || computedTarget == nullptr ) {
[0dd3a2f]109                throw SemanticError("Computed target not valid in branch statement");
[b0dfbc4]110        }
[51b7345]111}
112
[50377a4]113void BranchStmt::print( std::ostream &os, Indenter indent ) const {
114        os << "Branch (" << brType[type] << ")" << endl ;
115        if ( target != "" ) os << indent+1 << "with target: " << target << endl;
116        if ( originalTarget != "" ) os << indent+1 << "with original target: " << originalTarget << endl;
117        if ( computedTarget != nullptr ) os << indent+1 << "with computed target: " << computedTarget << endl;
[51b7345]118}
119
[6d49ea3]120ReturnStmt::ReturnStmt( std::list<Label> labels, Expression *expr ) : Statement( labels ), expr( expr ) {}
[51b7345]121
[daf1af8]122ReturnStmt::ReturnStmt( const ReturnStmt & other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
[3be261a]123
[51b7345]124ReturnStmt::~ReturnStmt() {
[0dd3a2f]125        delete expr;
[51b7345]126}
127
[50377a4]128void ReturnStmt::print( std::ostream &os, Indenter indent ) const {
129        os << "Return Statement, returning: ";
130        if ( expr != nullptr ) {
131                os << endl << indent+1;
132                expr->print( os, indent+1 );
[89231bc]133        }
[0dd3a2f]134        os << endl;
[51b7345]135}
136
[6d49ea3]137IfStmt::IfStmt( std::list<Label> labels, Expression *condition, Statement *thenPart, Statement *elsePart, std::list<Statement *> initialization ):
138        Statement( labels ), condition( condition ), thenPart( thenPart ), elsePart( elsePart ), initialization( initialization ) {}
[51b7345]139
[3be261a]140IfStmt::IfStmt( const IfStmt & other ) :
[6d49ea3]141        Statement( other ), condition( maybeClone( other.condition ) ), thenPart( maybeClone( other.thenPart ) ), elsePart( maybeClone( other.elsePart ) ) {
142        cloneAll( other.initialization, initialization );
143}
[3be261a]144
[ac71a86]145IfStmt::~IfStmt() {
[6d49ea3]146        deleteAll( initialization );
[ac71a86]147        delete condition;
148        delete thenPart;
149        delete elsePart;
150}
[51b7345]151
[50377a4]152void IfStmt::print( std::ostream &os, Indenter indent ) const {
153        os << "If on condition: " << endl;
154        os << indent+1;
155        condition->print( os, indent+1 );
[51b7345]156
[6d49ea3]157        if ( !initialization.empty() ) {
[50377a4]158                os << indent << "... with initialization: \n";
159                for ( const Statement * stmt : initialization ) {
160                        os << indent+1;
161                        stmt->print( os, indent+1 );
[6d49ea3]162                }
163                os << endl;
164        }
165
[50377a4]166        os << indent << "... then: " << endl;
[51b7345]167
[50377a4]168        os << indent+1;
169        thenPart->print( os, indent+1 );
[51b7345]170
[0dd3a2f]171        if ( elsePart != 0 ) {
[50377a4]172                os << indent << "... else: " << endl;
173                os << indent+1;
174                elsePart->print( os, indent+1 );
[0dd3a2f]175        } // if
[51b7345]176}
177
[1dcd9554]178SwitchStmt::SwitchStmt( std::list<Label> labels, Expression * condition, const std::list<Statement *> &statements ):
[6d49ea3]179        Statement( labels ), condition( condition ), statements( statements ) {
[0dd3a2f]180}
[51b7345]181
[3be261a]182SwitchStmt::SwitchStmt( const SwitchStmt & other ):
183        Statement( other ), condition( maybeClone( other.condition ) ) {
[8688ce1]184        cloneAll( other.statements, statements );
[3be261a]185}
186
[51b7345]187SwitchStmt::~SwitchStmt() {
[0dd3a2f]188        delete condition;
[8688ce1]189        // destroy statements
[2037f82]190        deleteAll( statements );
[51b7345]191}
192
[50377a4]193void SwitchStmt::print( std::ostream &os, Indenter indent ) const {
[89231bc]194        os << "Switch on condition: ";
[0dd3a2f]195        condition->print( os );
196        os << endl;
[51b7345]197
[50377a4]198        for ( const Statement * stmt : statements ) {
199                stmt->print( os, indent+1 );
200        }
[51b7345]201}
202
[1dcd9554]203CaseStmt::CaseStmt( std::list<Label> labels, Expression *condition, const std::list<Statement *> &statements, bool deflt ) throw ( SemanticError ) :
[6d49ea3]204        Statement( labels ), condition( condition ), stmts( statements ), _isDefault( deflt ) {
[50377a4]205        if ( isDefault() && condition != 0 ) throw SemanticError("default case with condition: ", condition);
[51b7345]206}
207
[3be261a]208CaseStmt::CaseStmt( const CaseStmt & other ) :
209        Statement( other ), condition( maybeClone(other.condition ) ), _isDefault( other._isDefault ) {
210        cloneAll( other.stmts, stmts );
211}
212
[51b7345]213CaseStmt::~CaseStmt() {
[0dd3a2f]214        delete condition;
[2037f82]215        deleteAll( stmts );
[51b7345]216}
217
[8688ce1]218CaseStmt * CaseStmt::makeDefault( std::list<Label> labels, std::list<Statement *> stmts ) {
219        return new CaseStmt( labels, 0, stmts, true );
[b2152e7a]220}
221
[50377a4]222void CaseStmt::print( std::ostream &os, Indenter indent ) const {
223        if ( isDefault() ) os << "Default ";
[0dd3a2f]224        else {
225                os << "Case ";
[50377a4]226                condition->print( os, indent );
[0dd3a2f]227        } // if
228        os << endl;
[51b7345]229
[50377a4]230        for ( Statement * stmt : stmts ) {
231                stmt->print( os, indent+1 );
232        }
[51b7345]233}
234
[6d49ea3]235WhileStmt::WhileStmt( std::list<Label> labels, Expression *condition, Statement *body, bool isDoWhile ):
236        Statement( labels ), condition( condition), body( body), isDoWhile( isDoWhile) {
[0dd3a2f]237}
[51b7345]238
[3be261a]239WhileStmt::WhileStmt( const WhileStmt & other ):
240        Statement( other ), condition( maybeClone( other.condition ) ), body( maybeClone( other.body ) ), isDoWhile( other.isDoWhile ) {
241}
242
[a08ba92]243WhileStmt::~WhileStmt() {
[0dd3a2f]244        delete body;
[2037f82]245        delete condition;
[51b7345]246}
247
[50377a4]248void WhileStmt::print( std::ostream &os, Indenter indent ) const {
[89231bc]249        os << "While on condition: " << endl ;
[50377a4]250        condition->print( os, indent+1 );
[51b7345]251
[50377a4]252        os << indent << "... with body: " << endl;
[51b7345]253
[50377a4]254        if ( body != 0 ) body->print( os, indent+1 );
[51b7345]255}
256
[6d49ea3]257ForStmt::ForStmt( std::list<Label> labels, std::list<Statement *> initialization, Expression *condition, Expression *increment, Statement *body ):
258        Statement( labels ), initialization( initialization ), condition( condition ), increment( increment ), body( body ) {
[0dd3a2f]259}
[51b7345]260
[3be261a]261ForStmt::ForStmt( const ForStmt & other ):
262        Statement( other ), condition( maybeClone( other.condition ) ), increment( maybeClone( other.increment ) ), body( maybeClone( other.body ) ) {
263                cloneAll( other.initialization, initialization );
264
265}
266
[51b7345]267ForStmt::~ForStmt() {
[145f1fc]268        deleteAll( initialization );
[0dd3a2f]269        delete condition;
270        delete increment;
271        delete body;
[51b7345]272}
273
[50377a4]274void ForStmt::print( std::ostream &os, Indenter indent ) const {
275        Statement::print( os, indent ); // print labels
[be5aa1b]276
[50377a4]277        os << "For Statement" << endl;
[51b7345]278
[50377a4]279        if ( ! initialization.empty() ) {
280                os << indent << "... initialization: \n";
281                for ( Statement * stmt : initialization ) {
282                        os << indent+1;
283                        stmt->print( os, indent+1 );
284                }
[145f1fc]285        }
[51b7345]286
[50377a4]287        if ( condition != nullptr ) {
288                os << indent << "... condition: \n" << indent+1;
289                condition->print( os, indent+1 );
[bb8ea30]290        }
[51b7345]291
[50377a4]292        if ( increment != nullptr ) {
293                os << "\n" << indent << "... increment: \n" << indent+1;
294                increment->print( os, indent+1 );
[bb8ea30]295        }
[51b7345]296
[bb8ea30]297        if ( body != 0 ) {
[50377a4]298                os << "\n" << indent << "... with body: \n" << indent+1;
299                body->print( os, indent+1 );
[bb8ea30]300        }
[0dd3a2f]301        os << endl;
[51b7345]302}
303
[daf1af8]304ThrowStmt::ThrowStmt( std::list<Label> labels, Kind kind, Expression * expr, Expression * target ) :
305                Statement( labels ), kind(kind), expr(expr), target(target)     {
306        assertf(Resume == kind || nullptr == target, "Non-local termination throw is not accepted." );
307}
308
309ThrowStmt::ThrowStmt( const ThrowStmt &other ) :
310        Statement ( other ), kind( other.kind ), expr( maybeClone( other.expr ) ), target( maybeClone( other.target ) ) {
311}
312
313ThrowStmt::~ThrowStmt() {
314        delete expr;
315        delete target;
316}
317
[50377a4]318void ThrowStmt::print( std::ostream &os, Indenter indent) const {
319        if ( target ) os << "Non-Local ";
[daf1af8]320        os << "Throw Statement, raising: ";
[50377a4]321        expr->print(os, indent+1);
[daf1af8]322        if ( target ) {
[50377a4]323                os << "... at: ";
324                target->print(os, indent+1);
[daf1af8]325        }
326}
327
[6d49ea3]328TryStmt::TryStmt( std::list<Label> labels, CompoundStmt *tryBlock, std::list<CatchStmt *> &handlers, FinallyStmt *finallyBlock ) :
329        Statement( labels ), block( tryBlock ),  handlers( handlers ), finallyBlock( finallyBlock ) {
[0dd3a2f]330}
[51b7345]331
[3be261a]332TryStmt::TryStmt( const TryStmt &other ) : Statement( other ), block( maybeClone( other.block ) ), finallyBlock( maybeClone( other.finallyBlock ) ) {
333        cloneAll( other.handlers, handlers );
[51b7345]334}
335
[a08ba92]336TryStmt::~TryStmt() {
[0dd3a2f]337        delete block;
[2037f82]338        deleteAll( handlers );
339        delete finallyBlock;
[51b7345]340}
341
[50377a4]342void TryStmt::print( std::ostream &os, Indenter indent ) const {
[89231bc]343        os << "Try Statement" << endl;
[50377a4]344        os << indent << "... with block:" << endl << indent+1;
345        block->print( os, indent+1 );
[0dd3a2f]346
347        // handlers
[50377a4]348        os << indent << "... and handlers:" << endl;
349        for ( const CatchStmt * stmt : handlers ) {
350                os << indent+1;
351                stmt->print( os, indent+1 );
[406a6e6]352        }
[0dd3a2f]353
354        // finally block
355        if ( finallyBlock != 0 ) {
[50377a4]356                os << indent << "... and finally:" << endl << indent+1;
357                finallyBlock->print( os, indent+1 );
[0dd3a2f]358        } // if
[51b7345]359}
360
[6d49ea3]361CatchStmt::CatchStmt( std::list<Label> labels, Kind kind, Declaration *decl, Expression *cond, Statement *body ) :
362        Statement( labels ), kind ( kind ), decl ( decl ), cond ( cond ), body( body ) {
[50377a4]363                assertf( decl, "Catch clause must have a declaration." );
[0dd3a2f]364}
[51b7345]365
[3be261a]366CatchStmt::CatchStmt( const CatchStmt & other ) :
[ca78437]367        Statement( other ), kind ( other.kind ), decl ( maybeClone( other.decl ) ), cond ( maybeClone( other.cond ) ), body( maybeClone( other.body ) ) {
[3be261a]368}
369
[a08ba92]370CatchStmt::~CatchStmt() {
[0dd3a2f]371        delete decl;
372        delete body;
[51b7345]373}
374
[50377a4]375void CatchStmt::print( std::ostream &os, Indenter indent ) const {
[ca78437]376        os << "Catch " << ((Terminate == kind) ? "Terminate" : "Resume") << " Statement" << endl;
[0dd3a2f]377
[50377a4]378        os << indent << "... catching: ";
379        decl->printShort( os, indent+1 );
380        os << endl;
[406a6e6]381
382        if ( cond ) {
[50377a4]383                os << indent << "... with conditional:" << endl << indent+1;
384                cond->print( os, indent+1 );
[406a6e6]385        }
386
[50377a4]387        os << indent << "... with block:" << endl;
388        os << indent+1;
389        body->print( os, indent+1 );
[51b7345]390}
391
392
[6d49ea3]393FinallyStmt::FinallyStmt( std::list<Label> labels, CompoundStmt *block ) : Statement( labels ), block( block ) {
[0dd3a2f]394        assert( labels.empty() ); // finally statement cannot be labeled
[51b7345]395}
396
[3be261a]397FinallyStmt::FinallyStmt( const FinallyStmt & other ) : Statement( other ), block( maybeClone( other.block ) ) {
398}
399
[0dd3a2f]400FinallyStmt::~FinallyStmt() {
401        delete block;
[51b7345]402}
403
[50377a4]404void FinallyStmt::print( std::ostream &os, Indenter indent ) const {
[f1b1e4c]405        os << "Finally Statement" << endl;
[50377a4]406        os << indent << "... with block:" << endl << indent+1;
407        block->print( os, indent+1 );
[51b7345]408}
409
[135b431]410WaitForStmt::WaitForStmt( std::list<Label> labels ) : Statement( labels ) {
411        timeout.time      = nullptr;
412        timeout.statement = nullptr;
413        timeout.condition = nullptr;
414        orelse .statement = nullptr;
415        orelse .condition = nullptr;
416}
417
418WaitForStmt::WaitForStmt( const WaitForStmt & other ) : Statement( other ) {
419        clauses.reserve( other.clauses.size() );
420        for( auto & ocl : other.clauses ) {
421                clauses.emplace_back();
422                clauses.back().target.function = ocl.target.function->clone();
423                cloneAll( ocl.target.arguments, clauses.back().target.arguments );
424                clauses.back().statement = ocl.statement->clone();
425                clauses.back().condition = ocl.condition->clone();
426        }
427
428        timeout.time      = other.timeout.time     ->clone();
429        timeout.statement = other.timeout.statement->clone();
430        timeout.condition = other.timeout.condition->clone();
431        orelse .statement = other.orelse .statement->clone();
432        orelse .condition = other.orelse .condition->clone();
433}
434
435WaitForStmt::~WaitForStmt() {
436        for( auto & clause : clauses ) {
437                delete clause.target.function;
438                deleteAll( clause.target.arguments );
439                delete clause.statement;
440                delete clause.condition;
441        }
442
443        delete timeout.time;
444        delete timeout.statement;
445        delete timeout.condition;
446
447        delete orelse.statement;
448        delete orelse.condition;
449}
450
[50377a4]451void WaitForStmt::print( std::ostream &os, Indenter indent ) const {
[135b431]452        os << "Waitfor Statement" << endl;
[50377a4]453        os << indent << "... with block:" << endl << indent+1;
[135b431]454        // block->print( os, indent + 4 );
455}
456
[70d826cd]457NullStmt::NullStmt( std::list<Label> labels ) : Statement( labels ) {}
458NullStmt::NullStmt() : Statement( std::list<Label>() ) {}
[51b7345]459
[50377a4]460void NullStmt::print( std::ostream &os, Indenter ) const {
461        os << "Null Statement" << endl;
[51b7345]462}
463
[f1b1e4c]464ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( Statement * callStmt ) : Statement( std::list<Label>() ), callStmt( callStmt ) {
465        assert( callStmt );
466}
467
[74d1804]468ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ) : Statement( other ), callStmt( maybeClone( other.callStmt ) ) {
[f1b1e4c]469}
470
471ImplicitCtorDtorStmt::~ImplicitCtorDtorStmt() {
[74d1804]472        delete callStmt;
[f1b1e4c]473}
474
[50377a4]475void ImplicitCtorDtorStmt::print( std::ostream &os, Indenter indent ) const {
[f1b1e4c]476        os << "Implicit Ctor Dtor Statement" << endl;
[50377a4]477        os << indent << "... with Ctor/Dtor: ";
478        callStmt->print( os, indent+1);
[f1b1e4c]479        os << endl;
480}
481
[0dd3a2f]482// Local Variables: //
483// tab-width: 4 //
484// mode: c++ //
485// compile-command: "make install" //
486// End: //
Note: See TracBrowser for help on using the repository browser.