[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 | // |
---|
| 7 | // Statement.cc -- |
---|
| 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Mon May 18 07:44:20 2015 |
---|
[44b5ca0] | 11 | // Last Modified By : Peter A. Buhr |
---|
[2871210] | 12 | // Last Modified On : Mon Jun 29 17:37:10 2015 |
---|
| 13 | // Update Count : 22 |
---|
[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 | |
---|
| 27 | using std::string; |
---|
| 28 | using std::endl; |
---|
| 29 | |
---|
[2871210] | 30 | Statement::Statement( std::list<Label> _labels ) : labels( _labels ) {} |
---|
[51b7345] | 31 | |
---|
[de62360d] | 32 | void Statement::print( std::ostream &, int indent ) const {} |
---|
[51b7345] | 33 | |
---|
| 34 | Statement::~Statement() {} |
---|
| 35 | |
---|
[2871210] | 36 | ExprStmt::ExprStmt( std::list<Label> _labels, Expression *_expr ) : Statement( _labels ), expr( _expr ) {} |
---|
[51b7345] | 37 | |
---|
| 38 | ExprStmt::~ExprStmt() {} |
---|
| 39 | |
---|
[de62360d] | 40 | void ExprStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 41 | os << string( indent, ' ' ) << "Expression Statement:" << endl; |
---|
[0dd3a2f] | 42 | expr->print( os, indent + 2 ); |
---|
[51b7345] | 43 | } |
---|
| 44 | |
---|
| 45 | const char *BranchStmt::brType[] = { "Goto", "Break", "Continue" }; |
---|
| 46 | |
---|
[0dd3a2f] | 47 | BranchStmt::BranchStmt( std::list<Label> labels, Label _target, Type _type ) throw ( SemanticError ) : |
---|
[2871210] | 48 | Statement( labels ), originalTarget( _target ), target( _target ), computedTarget( NULL ), type( _type ) { |
---|
[0dd3a2f] | 49 | //actually this is a syntactic error signaled by the parser |
---|
| 50 | if ( type == BranchStmt::Goto && target.size() == 0 ) |
---|
| 51 | throw SemanticError("goto without target"); |
---|
[51b7345] | 52 | } |
---|
| 53 | |
---|
[0dd3a2f] | 54 | BranchStmt::BranchStmt( std::list<Label> labels, Expression *_computedTarget, Type _type ) throw ( SemanticError ) : |
---|
[2871210] | 55 | Statement( labels ), computedTarget( _computedTarget ), type( _type ) { |
---|
[0dd3a2f] | 56 | if ( type != BranchStmt::Goto || computedTarget == 0 ) |
---|
| 57 | throw SemanticError("Computed target not valid in branch statement"); |
---|
[51b7345] | 58 | } |
---|
| 59 | |
---|
[de62360d] | 60 | void BranchStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 61 | os << string( indent, ' ' ) << "Branch (" << brType[type] << ")" << endl ; |
---|
[51b7345] | 62 | } |
---|
| 63 | |
---|
[0dd3a2f] | 64 | ReturnStmt::ReturnStmt( std::list<Label> labels, Expression *_expr, bool throwP ) : Statement( labels ), expr( _expr ), isThrow( throwP ) {} |
---|
[51b7345] | 65 | |
---|
| 66 | ReturnStmt::~ReturnStmt() { |
---|
[0dd3a2f] | 67 | delete expr; |
---|
[51b7345] | 68 | } |
---|
| 69 | |
---|
[de62360d] | 70 | void ReturnStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 71 | os << std::string( indent, ' ' ) << string ( isThrow? "Throw":"Return" ) << " Statement, returning: "; |
---|
[0dd3a2f] | 72 | if ( expr != 0 ) expr->print( os ); |
---|
| 73 | os << endl; |
---|
[51b7345] | 74 | } |
---|
| 75 | |
---|
| 76 | IfStmt::IfStmt( std::list<Label> _labels, Expression *_condition, Statement *_thenPart, Statement *_elsePart ): |
---|
[2871210] | 77 | Statement( _labels ), condition( _condition ), thenPart( _thenPart ), elsePart( _elsePart ) {} |
---|
[51b7345] | 78 | |
---|
| 79 | IfStmt::~IfStmt() {} |
---|
| 80 | |
---|
[de62360d] | 81 | void IfStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 82 | os << string( indent, ' ' ) << "If on condition: " << endl ; |
---|
[0dd3a2f] | 83 | condition->print( os, indent + 4 ); |
---|
[51b7345] | 84 | |
---|
[44b5ca0] | 85 | os << string( indent, ' ' ) << ".... and branches: " << endl; |
---|
[51b7345] | 86 | |
---|
[0dd3a2f] | 87 | thenPart->print( os, indent + 4 ); |
---|
[51b7345] | 88 | |
---|
[0dd3a2f] | 89 | if ( elsePart != 0 ) { |
---|
| 90 | elsePart->print( os, indent + 4 ); |
---|
| 91 | } // if |
---|
[51b7345] | 92 | } |
---|
| 93 | |
---|
[0dd3a2f] | 94 | SwitchStmt::SwitchStmt( std::list<Label> _labels, Expression * _condition, std::list<Statement *> &_branches ): |
---|
[2871210] | 95 | Statement( _labels ), condition( _condition ), branches( _branches ) { |
---|
[0dd3a2f] | 96 | } |
---|
[51b7345] | 97 | |
---|
| 98 | SwitchStmt::~SwitchStmt() { |
---|
[0dd3a2f] | 99 | delete condition; |
---|
| 100 | // destroy branches |
---|
[51b7345] | 101 | } |
---|
| 102 | |
---|
[0dd3a2f] | 103 | void SwitchStmt::add_case( CaseStmt *c ) {} |
---|
[51b7345] | 104 | |
---|
[de62360d] | 105 | void SwitchStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 106 | os << string( indent, ' ' ) << "Switch on condition: "; |
---|
[0dd3a2f] | 107 | condition->print( os ); |
---|
| 108 | os << endl; |
---|
[51b7345] | 109 | |
---|
[0dd3a2f] | 110 | // branches |
---|
[de62360d] | 111 | std::list<Statement *>::const_iterator i; |
---|
[0dd3a2f] | 112 | for ( i = branches.begin(); i != branches.end(); i++) |
---|
[de62360d] | 113 | (*i)->print( os, indent + 4 ); |
---|
[51b7345] | 114 | |
---|
[0dd3a2f] | 115 | //for_each( branches.begin(), branches.end(), mem_fun( bind1st(&Statement::print ), os )); |
---|
[51b7345] | 116 | } |
---|
| 117 | |
---|
[0dd3a2f] | 118 | CaseStmt::CaseStmt( std::list<Label> _labels, Expression *_condition, std::list<Statement *> &_statements, bool deflt ) throw ( SemanticError ) : |
---|
[2871210] | 119 | Statement( _labels ), condition( _condition ), stmts( _statements ), _isDefault( deflt ) { |
---|
[0dd3a2f] | 120 | if ( isDefault() && condition != 0 ) |
---|
| 121 | throw SemanticError("default with conditions"); |
---|
[51b7345] | 122 | } |
---|
| 123 | |
---|
| 124 | CaseStmt::~CaseStmt() { |
---|
[0dd3a2f] | 125 | delete condition; |
---|
[51b7345] | 126 | } |
---|
| 127 | |
---|
[b2152e7a] | 128 | CaseStmt * CaseStmt::makeDefault( std::list<Label> labels, std::list<Statement *> branches ) { |
---|
| 129 | return new CaseStmt( labels, 0, branches, true ); |
---|
| 130 | } |
---|
| 131 | |
---|
[de62360d] | 132 | void CaseStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 133 | os << string( indent, ' ' ); |
---|
[51b7345] | 134 | |
---|
[de62360d] | 135 | if ( isDefault() ) |
---|
[0dd3a2f] | 136 | os << "Default "; |
---|
| 137 | else { |
---|
| 138 | os << "Case "; |
---|
| 139 | condition->print( os ); |
---|
| 140 | } // if |
---|
[51b7345] | 141 | |
---|
[0dd3a2f] | 142 | os << endl; |
---|
[51b7345] | 143 | |
---|
[de62360d] | 144 | std::list<Statement *>::const_iterator i; |
---|
[0dd3a2f] | 145 | for ( i = stmts.begin(); i != stmts.end(); i++) |
---|
| 146 | (*i )->print( os, indent + 4 ); |
---|
[51b7345] | 147 | } |
---|
| 148 | |
---|
| 149 | //ChooseStmt::ChooseStmt( std::list<Label> labels, Expression *condition, Statement *body ) {} |
---|
[0dd3a2f] | 150 | ChooseStmt::ChooseStmt( std::list<Label> _labels, Expression * _condition, std::list<Statement *> &_branches ): |
---|
[2871210] | 151 | Statement( _labels ), condition( _condition ), branches( _branches ) { |
---|
[0dd3a2f] | 152 | } |
---|
[51b7345] | 153 | |
---|
| 154 | ChooseStmt::~ChooseStmt() { |
---|
[0dd3a2f] | 155 | delete condition; |
---|
[51b7345] | 156 | } |
---|
| 157 | |
---|
[0dd3a2f] | 158 | void ChooseStmt::add_case( CaseStmt *c ) {} |
---|
[51b7345] | 159 | |
---|
[de62360d] | 160 | void ChooseStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 161 | os << string( indent, ' ' ) << "Choose on condition: "; |
---|
[0dd3a2f] | 162 | condition->print( os ); |
---|
| 163 | os << endl; |
---|
[51b7345] | 164 | |
---|
[0dd3a2f] | 165 | // branches |
---|
[de62360d] | 166 | std::list<Statement *>::const_iterator i; |
---|
[0dd3a2f] | 167 | for ( i = branches.begin(); i != branches.end(); i++) |
---|
| 168 | (*i )->print( os, indent + 4 ); |
---|
[51b7345] | 169 | |
---|
[0dd3a2f] | 170 | //for_each( branches.begin(), branches.end(), mem_fun( bind1st(&Statement::print ), os )); |
---|
[51b7345] | 171 | } |
---|
| 172 | |
---|
[de62360d] | 173 | void FallthruStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 174 | os << string( indent, ' ' ) << "Fall-through statement" << endl; |
---|
[51b7345] | 175 | } |
---|
| 176 | |
---|
[0dd3a2f] | 177 | WhileStmt::WhileStmt( std::list<Label> labels, Expression *condition_, Statement *body_, bool isDoWhile_ ): |
---|
| 178 | Statement( labels ), condition( condition_), body( body_), isDoWhile( isDoWhile_) { |
---|
| 179 | } |
---|
[51b7345] | 180 | |
---|
[a08ba92] | 181 | WhileStmt::~WhileStmt() { |
---|
[0dd3a2f] | 182 | delete body; |
---|
[51b7345] | 183 | } |
---|
| 184 | |
---|
[de62360d] | 185 | void WhileStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 186 | os << string( indent, ' ' ) << "While on condition: " << endl ; |
---|
[0dd3a2f] | 187 | condition->print( os, indent + 4 ); |
---|
[51b7345] | 188 | |
---|
[44b5ca0] | 189 | os << string( indent, ' ' ) << ".... with body: " << endl; |
---|
[51b7345] | 190 | |
---|
[0dd3a2f] | 191 | if ( body != 0 ) body->print( os, indent + 4 ); |
---|
[51b7345] | 192 | } |
---|
| 193 | |
---|
[0dd3a2f] | 194 | ForStmt::ForStmt( std::list<Label> labels, Statement *initialization_, Expression *condition_, Expression *increment_, Statement *body_ ): |
---|
| 195 | Statement( labels ), initialization( initialization_ ), condition( condition_ ), increment( increment_ ), body( body_ ) { |
---|
| 196 | } |
---|
[51b7345] | 197 | |
---|
| 198 | ForStmt::~ForStmt() { |
---|
[0dd3a2f] | 199 | delete initialization; |
---|
| 200 | delete condition; |
---|
| 201 | delete increment; |
---|
| 202 | delete body; |
---|
[51b7345] | 203 | } |
---|
| 204 | |
---|
[de62360d] | 205 | void ForStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 206 | os << string( indent, ' ' ) << "Labels: {"; |
---|
[de62360d] | 207 | for ( std::list<Label>::const_iterator it = get_labels().begin(); it != get_labels().end(); ++it) { |
---|
[be5aa1b] | 208 | os << *it << ","; |
---|
| 209 | } |
---|
| 210 | os << "}" << endl; |
---|
| 211 | |
---|
[44b5ca0] | 212 | os << string( indent, ' ' ) << "For Statement" << endl ; |
---|
[51b7345] | 213 | |
---|
[44b5ca0] | 214 | os << string( indent + 2, ' ' ) << "initialization: \n"; |
---|
[0dd3a2f] | 215 | if ( initialization != 0 ) |
---|
| 216 | initialization->print( os, indent + 4 ); |
---|
[51b7345] | 217 | |
---|
[44b5ca0] | 218 | os << "\n" << string( indent + 2, ' ' ) << "condition: \n"; |
---|
[0dd3a2f] | 219 | if ( condition != 0 ) |
---|
| 220 | condition->print( os, indent + 4 ); |
---|
[51b7345] | 221 | |
---|
[44b5ca0] | 222 | os << "\n" << string( indent + 2, ' ' ) << "increment: \n"; |
---|
[0dd3a2f] | 223 | if ( increment != 0 ) |
---|
| 224 | increment->print( os, indent + 4 ); |
---|
[51b7345] | 225 | |
---|
[44b5ca0] | 226 | os << "\n" << string( indent + 2, ' ' ) << "statement block: \n"; |
---|
[0dd3a2f] | 227 | if ( body != 0 ) |
---|
| 228 | body->print( os, indent + 4 ); |
---|
[51b7345] | 229 | |
---|
[0dd3a2f] | 230 | os << endl; |
---|
[51b7345] | 231 | } |
---|
| 232 | |
---|
| 233 | TryStmt::TryStmt( std::list<Label> labels, CompoundStmt *tryBlock, std::list<Statement *> &_handlers, FinallyStmt *_finallyBlock ) : |
---|
[0dd3a2f] | 234 | Statement( labels ), block( tryBlock ), handlers( _handlers ), finallyBlock( _finallyBlock ) { |
---|
| 235 | } |
---|
[51b7345] | 236 | |
---|
[0dd3a2f] | 237 | TryStmt::TryStmt( const TryStmt &other ) : Statement( other.labels ) { |
---|
| 238 | block = other.block; |
---|
| 239 | std::copy( other.handlers.begin(), other.handlers.end(), back_inserter( handlers ) ); |
---|
| 240 | finallyBlock = other.finallyBlock; |
---|
[51b7345] | 241 | } |
---|
| 242 | |
---|
[a08ba92] | 243 | TryStmt::~TryStmt() { |
---|
[0dd3a2f] | 244 | delete block; |
---|
[51b7345] | 245 | } |
---|
| 246 | |
---|
[de62360d] | 247 | void TryStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 248 | os << string( indent, ' ' ) << "Try Statement" << endl; |
---|
| 249 | os << string( indent + 2, ' ' ) << "with block: " << endl; |
---|
[0dd3a2f] | 250 | block->print( os, indent + 4 ); |
---|
| 251 | |
---|
| 252 | // handlers |
---|
[44b5ca0] | 253 | os << string( indent + 2, ' ' ) << "and handlers: " << endl; |
---|
[de62360d] | 254 | for ( std::list<Statement *>::const_iterator i = handlers.begin(); i != handlers.end(); i++) |
---|
[0dd3a2f] | 255 | (*i )->print( os, indent + 4 ); |
---|
| 256 | |
---|
| 257 | // finally block |
---|
| 258 | if ( finallyBlock != 0 ) { |
---|
[44b5ca0] | 259 | os << string( indent + 2, ' ' ) << "Finally block: " << endl; |
---|
[0dd3a2f] | 260 | finallyBlock->print( os, indent + 4 ); |
---|
| 261 | } // if |
---|
[51b7345] | 262 | } |
---|
| 263 | |
---|
| 264 | CatchStmt::CatchStmt( std::list<Label> labels, Declaration *_decl, Statement *_body, bool isCatchRest ) : |
---|
[0dd3a2f] | 265 | Statement( labels ), decl ( _decl ), body( _body ), catchRest ( isCatchRest ) { |
---|
| 266 | } |
---|
[51b7345] | 267 | |
---|
[a08ba92] | 268 | CatchStmt::~CatchStmt() { |
---|
[0dd3a2f] | 269 | delete decl; |
---|
| 270 | delete body; |
---|
[51b7345] | 271 | } |
---|
| 272 | |
---|
[de62360d] | 273 | void CatchStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 274 | os << string( indent, ' ' ) << "Catch Statement" << endl; |
---|
[0dd3a2f] | 275 | |
---|
[44b5ca0] | 276 | os << string( indent, ' ' ) << "... catching" << endl; |
---|
[0dd3a2f] | 277 | if ( decl ) { |
---|
| 278 | decl->printShort( os, indent + 4 ); |
---|
| 279 | os << endl; |
---|
| 280 | } else if ( catchRest ) |
---|
[44b5ca0] | 281 | os << string( indent + 4 , ' ' ) << "the rest" << endl; |
---|
[0dd3a2f] | 282 | else |
---|
[44b5ca0] | 283 | os << string( indent + 4 , ' ' ) << ">>> Error: this catch clause must have a declaration <<<" << endl; |
---|
[51b7345] | 284 | } |
---|
| 285 | |
---|
| 286 | |
---|
[0dd3a2f] | 287 | FinallyStmt::FinallyStmt( std::list<Label> labels, CompoundStmt *_block ) : Statement( labels ), block( _block ) { |
---|
| 288 | assert( labels.empty() ); // finally statement cannot be labeled |
---|
[51b7345] | 289 | } |
---|
| 290 | |
---|
[0dd3a2f] | 291 | FinallyStmt::~FinallyStmt() { |
---|
| 292 | delete block; |
---|
[51b7345] | 293 | } |
---|
| 294 | |
---|
[de62360d] | 295 | void FinallyStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 296 | os << string( indent, ' ' ) << "Finally Statement" << endl; |
---|
| 297 | os << string( indent + 2, ' ' ) << "with block: " << endl; |
---|
[0dd3a2f] | 298 | block->print( os, indent + 4 ); |
---|
[51b7345] | 299 | } |
---|
| 300 | |
---|
| 301 | NullStmt::NullStmt( std::list<Label> labels ) : CompoundStmt( labels ) {} |
---|
| 302 | NullStmt::NullStmt() : CompoundStmt( std::list<Label>() ) {} |
---|
| 303 | NullStmt::~NullStmt() {} |
---|
| 304 | |
---|
[de62360d] | 305 | void NullStmt::print( std::ostream &os, int indent ) const { |
---|
[44b5ca0] | 306 | os << string( indent, ' ' ) << "Null Statement" << endl ; |
---|
[51b7345] | 307 | } |
---|
| 308 | |
---|
[0dd3a2f] | 309 | // Local Variables: // |
---|
| 310 | // tab-width: 4 // |
---|
| 311 | // mode: c++ // |
---|
| 312 | // compile-command: "make install" // |
---|
| 313 | // End: // |
---|