| [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.h -- | 
|---|
| [0dd3a2f] | 8 | // | 
|---|
|  | 9 | // Author           : Richard C. Bilson | 
|---|
|  | 10 | // Created On       : Mon May 18 07:44:20 2015 | 
|---|
| [4e06c1e] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
|  | 12 | // Last Modified On : Tue Jul 12 17:53:29 2016 | 
|---|
|  | 13 | // Update Count     : 47 | 
|---|
| [0dd3a2f] | 14 | // | 
|---|
|  | 15 |  | 
|---|
| [51b73452] | 16 | #ifndef STATEMENT_H | 
|---|
|  | 17 | #define STATEMENT_H | 
|---|
|  | 18 |  | 
|---|
|  | 19 | #include "SynTree.h" | 
|---|
|  | 20 | #include "Visitor.h" | 
|---|
|  | 21 | #include "Mutator.h" | 
|---|
|  | 22 | #include "Common/SemanticError.h" | 
|---|
| [f1b1e4c] | 23 | #include "Type.h" | 
|---|
| [0f8e4ac] | 24 | #include "Label.h" | 
|---|
| [51b73452] | 25 |  | 
|---|
| [0dd3a2f] | 26 | class Statement { | 
|---|
|  | 27 | public: | 
|---|
|  | 28 | Statement( std::list<Label> labels ); | 
|---|
|  | 29 | virtual ~Statement(); | 
|---|
| [51b73452] | 30 |  | 
|---|
| [0dd3a2f] | 31 | std::list<Label> & get_labels() { return labels; } | 
|---|
| [de62360d] | 32 | const std::list<Label> & get_labels() const { return labels; } | 
|---|
| [51b73452] | 33 |  | 
|---|
| [0dd3a2f] | 34 | virtual Statement *clone() const = 0; | 
|---|
|  | 35 | virtual void accept( Visitor &v ) = 0; | 
|---|
|  | 36 | virtual Statement *acceptMutator( Mutator &m ) = 0; | 
|---|
| [de62360d] | 37 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 38 | protected: | 
|---|
|  | 39 | std::list<Label> labels; | 
|---|
| [51b73452] | 40 | }; | 
|---|
|  | 41 |  | 
|---|
| [0dd3a2f] | 42 | class CompoundStmt : public Statement { | 
|---|
|  | 43 | public: | 
|---|
|  | 44 | CompoundStmt( std::list<Label> labels ); | 
|---|
|  | 45 | CompoundStmt( const CompoundStmt &other ); | 
|---|
|  | 46 | virtual ~CompoundStmt(); | 
|---|
| [51b73452] | 47 |  | 
|---|
| [0dd3a2f] | 48 | std::list<Statement*>& get_kids() { return kids; } | 
|---|
| [51b73452] | 49 |  | 
|---|
| [0dd3a2f] | 50 | virtual CompoundStmt *clone() const { return new CompoundStmt( *this ); } | 
|---|
|  | 51 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 52 | virtual CompoundStmt *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 53 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 54 | private: | 
|---|
|  | 55 | std::list<Statement*> kids; | 
|---|
| [51b73452] | 56 | }; | 
|---|
|  | 57 |  | 
|---|
| [0dd3a2f] | 58 | class ExprStmt : public Statement { | 
|---|
|  | 59 | public: | 
|---|
|  | 60 | ExprStmt( std::list<Label> labels, Expression *expr ); | 
|---|
| [3be261a] | 61 | ExprStmt( const ExprStmt &other ); | 
|---|
| [0dd3a2f] | 62 | virtual ~ExprStmt(); | 
|---|
| [51b73452] | 63 |  | 
|---|
| [0dd3a2f] | 64 | Expression *get_expr() { return expr; } | 
|---|
|  | 65 | void set_expr( Expression *newValue ) { expr = newValue; } | 
|---|
| [51b73452] | 66 |  | 
|---|
| [0dd3a2f] | 67 | virtual ExprStmt *clone() const { return new ExprStmt( *this ); } | 
|---|
|  | 68 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 69 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 70 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 71 | private: | 
|---|
|  | 72 | Expression *expr; | 
|---|
|  | 73 | }; | 
|---|
| [51b73452] | 74 |  | 
|---|
| [7f5566b] | 75 | class AsmStmt : public Statement { | 
|---|
|  | 76 | public: | 
|---|
|  | 77 | AsmStmt( std::list<Label> labels, bool voltile, ConstantExpr *instruction, std::list<Expression *> input, std::list<Expression *> output, std::list<ConstantExpr *> clobber, std::list<Label> gotolabels ); | 
|---|
| [3be261a] | 78 | AsmStmt( const AsmStmt &other ); | 
|---|
| [7f5566b] | 79 | virtual ~AsmStmt(); | 
|---|
|  | 80 |  | 
|---|
|  | 81 | bool get_voltile() { return voltile; } | 
|---|
|  | 82 | void set_voltile( bool newValue ) { voltile = newValue; } | 
|---|
|  | 83 | ConstantExpr *get_instruction() { return instruction; } | 
|---|
|  | 84 | void set_instruction( ConstantExpr *newValue ) { instruction = newValue; } | 
|---|
|  | 85 | std::list<Expression *> &get_output() { return output; } | 
|---|
|  | 86 | void set_output( const std::list<Expression *> &newValue ) { output = newValue; } | 
|---|
|  | 87 | std::list<Expression *> &get_input() { return input; } | 
|---|
|  | 88 | void set_input( const std::list<Expression *> &newValue ) { input = newValue; } | 
|---|
|  | 89 | std::list<ConstantExpr *> &get_clobber() { return clobber; } | 
|---|
|  | 90 | void set_clobber( const std::list<ConstantExpr *> &newValue ) { clobber = newValue; } | 
|---|
|  | 91 | std::list<Label> &get_gotolabels() { return gotolabels; } | 
|---|
|  | 92 | void set_gotolabels( const std::list<Label> &newValue ) { gotolabels = newValue; } | 
|---|
|  | 93 |  | 
|---|
|  | 94 | virtual AsmStmt *clone() const { return new AsmStmt( *this ); } | 
|---|
|  | 95 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 96 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
|  | 97 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
|  | 98 | private: | 
|---|
|  | 99 | bool voltile; | 
|---|
|  | 100 | ConstantExpr *instruction; | 
|---|
|  | 101 | std::list<Expression *> output, input; | 
|---|
|  | 102 | std::list<ConstantExpr *> clobber; | 
|---|
|  | 103 | std::list<Label> gotolabels; | 
|---|
|  | 104 | }; | 
|---|
|  | 105 |  | 
|---|
| [0dd3a2f] | 106 | class IfStmt : public Statement { | 
|---|
|  | 107 | public: | 
|---|
|  | 108 | IfStmt( std::list<Label> labels, Expression *condition, Statement *thenPart, Statement *elsePart ); | 
|---|
| [3be261a] | 109 | IfStmt( const IfStmt &other ); | 
|---|
| [0dd3a2f] | 110 | virtual ~IfStmt(); | 
|---|
|  | 111 |  | 
|---|
|  | 112 | Expression *get_condition() { return condition; } | 
|---|
|  | 113 | void set_condition( Expression *newValue ) { condition = newValue; } | 
|---|
|  | 114 | Statement *get_thenPart() { return thenPart; } | 
|---|
|  | 115 | void set_thenPart( Statement *newValue ) { thenPart = newValue; } | 
|---|
|  | 116 | Statement *get_elsePart() { return elsePart; } | 
|---|
|  | 117 | void set_elsePart( Statement *newValue ) { elsePart = newValue; } | 
|---|
| [3be261a] | 118 |  | 
|---|
| [0dd3a2f] | 119 | virtual IfStmt *clone() const { return new IfStmt( *this ); } | 
|---|
|  | 120 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 121 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 122 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 123 | private: | 
|---|
|  | 124 | Expression *condition; | 
|---|
|  | 125 | Statement *thenPart; | 
|---|
|  | 126 | Statement *elsePart; | 
|---|
| [51b73452] | 127 | }; | 
|---|
|  | 128 |  | 
|---|
| [0dd3a2f] | 129 | class SwitchStmt : public Statement { | 
|---|
|  | 130 | public: | 
|---|
|  | 131 | SwitchStmt( std::list<Label> labels, Expression *condition, std::list<Statement *> &branches ); | 
|---|
| [3be261a] | 132 | SwitchStmt( const SwitchStmt &other ); | 
|---|
| [0dd3a2f] | 133 | virtual ~SwitchStmt(); | 
|---|
| [51b73452] | 134 |  | 
|---|
| [0dd3a2f] | 135 | Expression *get_condition() { return condition; } | 
|---|
|  | 136 | void set_condition( Expression *newValue ) { condition = newValue; } | 
|---|
| [51b73452] | 137 |  | 
|---|
| [7f5566b] | 138 | std::list<Statement *> & get_branches() { return branches; } | 
|---|
| [0dd3a2f] | 139 | void add_case( CaseStmt * ); | 
|---|
| [51b73452] | 140 |  | 
|---|
| [0dd3a2f] | 141 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 142 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [51b73452] | 143 |  | 
|---|
| [0dd3a2f] | 144 | virtual SwitchStmt *clone() const { return new SwitchStmt( *this ); } | 
|---|
| [de62360d] | 145 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 146 | private: | 
|---|
|  | 147 | Expression * condition; | 
|---|
|  | 148 | std::list<Statement *> branches; // should be list of CaseStmt | 
|---|
| [51b73452] | 149 | }; | 
|---|
|  | 150 |  | 
|---|
| [0dd3a2f] | 151 | class CaseStmt : public Statement { | 
|---|
|  | 152 | public: | 
|---|
| [3be261a] | 153 | CaseStmt( std::list<Label> labels, Expression *conditions, | 
|---|
| [0dd3a2f] | 154 | std::list<Statement *> &stmts, bool isdef = false ) throw(SemanticError); | 
|---|
| [3be261a] | 155 | CaseStmt( const CaseStmt &other ); | 
|---|
| [0dd3a2f] | 156 | virtual ~CaseStmt(); | 
|---|
|  | 157 |  | 
|---|
| [b2152e7a] | 158 | static CaseStmt * makeDefault( std::list<Label> labels = std::list<Label>(), | 
|---|
|  | 159 | std::list<Statement *> stmts = std::list<Statement *>() ); | 
|---|
|  | 160 |  | 
|---|
| [de62360d] | 161 | bool isDefault() const { return _isDefault; } | 
|---|
| [0dd3a2f] | 162 | void set_default(bool b) { _isDefault = b; } | 
|---|
|  | 163 |  | 
|---|
|  | 164 | Expression * &get_condition() { return condition; } | 
|---|
|  | 165 | void set_condition( Expression *newValue ) { condition = newValue; } | 
|---|
|  | 166 |  | 
|---|
|  | 167 | std::list<Statement *> &get_statements() { return stmts; } | 
|---|
|  | 168 | void set_statements( std::list<Statement *> &newValue ) { stmts = newValue; } | 
|---|
| [3be261a] | 169 |  | 
|---|
| [0dd3a2f] | 170 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 171 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
|  | 172 |  | 
|---|
|  | 173 | virtual CaseStmt *clone() const { return new CaseStmt( *this ); } | 
|---|
| [de62360d] | 174 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 175 | private: | 
|---|
|  | 176 | Expression * condition; | 
|---|
|  | 177 | std::list<Statement *> stmts; | 
|---|
|  | 178 | bool _isDefault; | 
|---|
| [51b73452] | 179 | }; | 
|---|
|  | 180 |  | 
|---|
| [0dd3a2f] | 181 | class WhileStmt : public Statement { | 
|---|
|  | 182 | public: | 
|---|
|  | 183 | WhileStmt( std::list<Label> labels, Expression *condition, | 
|---|
|  | 184 | Statement *body, bool isDoWhile = false ); | 
|---|
| [3be261a] | 185 | WhileStmt( const WhileStmt &other ); | 
|---|
| [0dd3a2f] | 186 | virtual ~WhileStmt(); | 
|---|
|  | 187 |  | 
|---|
|  | 188 | Expression *get_condition() { return condition; } | 
|---|
|  | 189 | void set_condition( Expression *newValue ) { condition = newValue; } | 
|---|
|  | 190 | Statement *get_body() { return body; } | 
|---|
|  | 191 | void set_body( Statement *newValue ) { body = newValue; } | 
|---|
|  | 192 | bool get_isDoWhile() { return isDoWhile; } | 
|---|
|  | 193 | void set_isDoWhile( bool newValue ) { isDoWhile = newValue; } | 
|---|
| [3be261a] | 194 |  | 
|---|
| [0dd3a2f] | 195 | virtual WhileStmt *clone() const { return new WhileStmt( *this ); } | 
|---|
|  | 196 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 197 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 198 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 199 | private: | 
|---|
|  | 200 | Expression *condition; | 
|---|
|  | 201 | Statement *body; | 
|---|
|  | 202 | bool isDoWhile; | 
|---|
| [51b73452] | 203 | }; | 
|---|
|  | 204 |  | 
|---|
| [0dd3a2f] | 205 | class ForStmt : public Statement { | 
|---|
|  | 206 | public: | 
|---|
| [145f1fc] | 207 | ForStmt( std::list<Label> labels, std::list<Statement *> initialization, | 
|---|
| [0dd3a2f] | 208 | Expression *condition = 0, Expression *increment = 0, Statement *body = 0 ); | 
|---|
| [3be261a] | 209 | ForStmt( const ForStmt &other ); | 
|---|
| [0dd3a2f] | 210 | virtual ~ForStmt(); | 
|---|
|  | 211 |  | 
|---|
| [145f1fc] | 212 | std::list<Statement *> &get_initialization() { return initialization; } | 
|---|
|  | 213 | void set_initialization( std::list<Statement *> newValue ) { initialization = newValue; } | 
|---|
| [0dd3a2f] | 214 | Expression *get_condition() { return condition; } | 
|---|
|  | 215 | void set_condition( Expression *newValue ) { condition = newValue; } | 
|---|
|  | 216 | Expression *get_increment() { return increment; } | 
|---|
|  | 217 | void set_increment( Expression *newValue ) { increment = newValue; } | 
|---|
|  | 218 | Statement *get_body() { return body; } | 
|---|
|  | 219 | void set_body( Statement *newValue ) { body = newValue; } | 
|---|
| [3be261a] | 220 |  | 
|---|
| [0dd3a2f] | 221 | virtual ForStmt *clone() const { return new ForStmt( *this ); } | 
|---|
|  | 222 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 223 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 224 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 225 | private: | 
|---|
| [145f1fc] | 226 | std::list<Statement *> initialization; | 
|---|
| [0dd3a2f] | 227 | Expression *condition; | 
|---|
|  | 228 | Expression *increment; | 
|---|
|  | 229 | Statement *body; | 
|---|
| [51b73452] | 230 | }; | 
|---|
|  | 231 |  | 
|---|
| [0dd3a2f] | 232 | class BranchStmt : public Statement { | 
|---|
|  | 233 | public: | 
|---|
| [de62360d] | 234 | enum Type { Goto = 0, Break, Continue }; | 
|---|
| [0dd3a2f] | 235 |  | 
|---|
|  | 236 | BranchStmt( std::list<Label> labels, Label target, Type ) throw (SemanticError); | 
|---|
|  | 237 | BranchStmt( std::list<Label> labels, Expression *computedTarget, Type ) throw (SemanticError); | 
|---|
|  | 238 |  | 
|---|
| [be5aa1b] | 239 | Label get_originalTarget() { return originalTarget; } | 
|---|
| [0dd3a2f] | 240 | Label get_target() { return target; } | 
|---|
|  | 241 | void set_target( Label newValue ) { target = newValue; } | 
|---|
| [3be261a] | 242 |  | 
|---|
| [0dd3a2f] | 243 | Expression *get_computedTarget() { return computedTarget; } | 
|---|
|  | 244 | void set_target( Expression * newValue ) { computedTarget = newValue; } | 
|---|
|  | 245 |  | 
|---|
|  | 246 | Type get_type() { return type; } | 
|---|
|  | 247 | const char *get_typename() { return brType[ type ]; } | 
|---|
|  | 248 |  | 
|---|
|  | 249 | virtual BranchStmt *clone() const { return new BranchStmt( *this ); } | 
|---|
|  | 250 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 251 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 252 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 253 | private: | 
|---|
|  | 254 | static const char *brType[]; | 
|---|
| [be5aa1b] | 255 | Label originalTarget;  // can give better error messages if we remember the label name that the user entered | 
|---|
| [0dd3a2f] | 256 | Label target; | 
|---|
|  | 257 | Expression *computedTarget; | 
|---|
|  | 258 | Type type; | 
|---|
| [51b73452] | 259 | }; | 
|---|
|  | 260 |  | 
|---|
| [0dd3a2f] | 261 | class ReturnStmt : public Statement { | 
|---|
|  | 262 | public: | 
|---|
|  | 263 | ReturnStmt( std::list<Label> labels, Expression *expr, bool throwP = false ); | 
|---|
| [3be261a] | 264 | ReturnStmt( const ReturnStmt &other ); | 
|---|
| [0dd3a2f] | 265 | virtual ~ReturnStmt(); | 
|---|
|  | 266 |  | 
|---|
|  | 267 | Expression *get_expr() { return expr; } | 
|---|
|  | 268 | void set_expr( Expression *newValue ) { expr = newValue; } | 
|---|
| [3be261a] | 269 |  | 
|---|
| [0dd3a2f] | 270 | virtual ReturnStmt *clone() const { return new ReturnStmt( *this ); } | 
|---|
|  | 271 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 272 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 273 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 274 | private: | 
|---|
|  | 275 | Expression *expr; | 
|---|
|  | 276 | bool isThrow; | 
|---|
| [51b73452] | 277 | }; | 
|---|
|  | 278 |  | 
|---|
|  | 279 |  | 
|---|
| [0dd3a2f] | 280 | class NullStmt : public CompoundStmt { | 
|---|
|  | 281 | public: | 
|---|
|  | 282 | NullStmt(); | 
|---|
|  | 283 | NullStmt( std::list<Label> labels ); | 
|---|
| [51b73452] | 284 |  | 
|---|
| [0dd3a2f] | 285 | virtual NullStmt *clone() const { return new NullStmt( *this ); } | 
|---|
|  | 286 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 287 | virtual NullStmt *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 288 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [3be261a] | 289 |  | 
|---|
| [0dd3a2f] | 290 | private: | 
|---|
| [51b73452] | 291 | }; | 
|---|
|  | 292 |  | 
|---|
| [3be261a] | 293 | class TryStmt : public Statement { | 
|---|
| [0dd3a2f] | 294 | public: | 
|---|
|  | 295 | TryStmt( std::list<Label> labels, CompoundStmt *tryBlock, std::list<Statement *> &handlers, FinallyStmt *finallyBlock = 0 ); | 
|---|
|  | 296 | TryStmt( const TryStmt &other ); | 
|---|
|  | 297 | virtual ~TryStmt(); | 
|---|
|  | 298 |  | 
|---|
|  | 299 | CompoundStmt *get_block() const { return block; } | 
|---|
|  | 300 | void set_block( CompoundStmt *newValue ) { block = newValue; } | 
|---|
|  | 301 | std::list<Statement *>& get_catchers() { return handlers; } | 
|---|
|  | 302 |  | 
|---|
|  | 303 | FinallyStmt *get_finally() const { return finallyBlock; } | 
|---|
|  | 304 | void set_finally( FinallyStmt *newValue ) { finallyBlock = newValue; } | 
|---|
|  | 305 |  | 
|---|
|  | 306 | virtual TryStmt *clone() const { return new TryStmt( *this ); } | 
|---|
|  | 307 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 308 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 309 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [3be261a] | 310 |  | 
|---|
| [0dd3a2f] | 311 | private: | 
|---|
|  | 312 | CompoundStmt *block; | 
|---|
|  | 313 | std::list<Statement *> handlers; | 
|---|
|  | 314 | FinallyStmt *finallyBlock; | 
|---|
| [3be261a] | 315 | }; | 
|---|
| [51b73452] | 316 |  | 
|---|
| [0dd3a2f] | 317 | class CatchStmt : public Statement { | 
|---|
|  | 318 | public: | 
|---|
|  | 319 | CatchStmt( std::list<Label> labels, Declaration *decl, Statement *body, bool isCatchRest = false ); | 
|---|
| [3be261a] | 320 | CatchStmt( const CatchStmt &other ); | 
|---|
| [0dd3a2f] | 321 | virtual ~CatchStmt(); | 
|---|
|  | 322 |  | 
|---|
|  | 323 | Declaration *get_decl() { return decl; } | 
|---|
|  | 324 | void set_decl( Declaration *newValue ) { decl = newValue; } | 
|---|
|  | 325 |  | 
|---|
|  | 326 | Statement *get_body() { return body; } | 
|---|
|  | 327 | void set_body( Statement *newValue ) { body = newValue; } | 
|---|
| [3be261a] | 328 |  | 
|---|
| [0dd3a2f] | 329 | virtual CatchStmt *clone() const { return new CatchStmt( *this ); } | 
|---|
|  | 330 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 331 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 332 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [3be261a] | 333 |  | 
|---|
| [0dd3a2f] | 334 | private: | 
|---|
|  | 335 | Declaration *decl; | 
|---|
|  | 336 | Statement *body; | 
|---|
|  | 337 | bool catchRest; | 
|---|
| [51b73452] | 338 | }; | 
|---|
|  | 339 |  | 
|---|
| [3be261a] | 340 | class FinallyStmt : public Statement { | 
|---|
| [0dd3a2f] | 341 | public: | 
|---|
|  | 342 | FinallyStmt( std::list<Label> labels, CompoundStmt *block ); | 
|---|
| [3be261a] | 343 | FinallyStmt( const FinallyStmt &other ); | 
|---|
| [0dd3a2f] | 344 | virtual ~FinallyStmt(); | 
|---|
|  | 345 |  | 
|---|
|  | 346 | CompoundStmt *get_block() const { return block; } | 
|---|
|  | 347 | void set_block( CompoundStmt *newValue ) { block = newValue; } | 
|---|
| [3be261a] | 348 |  | 
|---|
| [0dd3a2f] | 349 | virtual FinallyStmt *clone() const { return new FinallyStmt( *this ); } | 
|---|
|  | 350 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 351 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 352 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 353 | private: | 
|---|
|  | 354 | CompoundStmt *block; | 
|---|
| [3be261a] | 355 | }; | 
|---|
| [51b73452] | 356 |  | 
|---|
|  | 357 |  | 
|---|
|  | 358 | // represents a declaration that occurs as part of a compound statement | 
|---|
| [0dd3a2f] | 359 | class DeclStmt : public Statement { | 
|---|
|  | 360 | public: | 
|---|
|  | 361 | DeclStmt( std::list<Label> labels, Declaration *decl ); | 
|---|
|  | 362 | DeclStmt( const DeclStmt &other ); | 
|---|
|  | 363 | virtual ~DeclStmt(); | 
|---|
|  | 364 |  | 
|---|
| [f1b1e4c] | 365 | Declaration *get_decl() const { return decl; } | 
|---|
| [0dd3a2f] | 366 | void set_decl( Declaration *newValue ) { decl = newValue; } | 
|---|
|  | 367 |  | 
|---|
|  | 368 | virtual DeclStmt *clone() const { return new DeclStmt( *this ); } | 
|---|
|  | 369 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 370 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
| [de62360d] | 371 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
| [0dd3a2f] | 372 | private: | 
|---|
|  | 373 | Declaration *decl; | 
|---|
| [51b73452] | 374 | }; | 
|---|
|  | 375 |  | 
|---|
| [f1b1e4c] | 376 |  | 
|---|
|  | 377 | /// represents an implicit application of a constructor or destructor. Qualifiers are replaced | 
|---|
|  | 378 | /// immediately before and after the call so that qualified objects can be constructed | 
|---|
|  | 379 | /// with the same functions as unqualified objects. | 
|---|
|  | 380 | class ImplicitCtorDtorStmt : public Statement { | 
|---|
|  | 381 | public: | 
|---|
|  | 382 | ImplicitCtorDtorStmt( Statement * callStmt ); | 
|---|
|  | 383 | ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ); | 
|---|
|  | 384 | virtual ~ImplicitCtorDtorStmt(); | 
|---|
|  | 385 |  | 
|---|
|  | 386 | Statement *get_callStmt() const { return callStmt; } | 
|---|
|  | 387 | void set_callStmt( Statement * newValue ) { callStmt = newValue; } | 
|---|
|  | 388 |  | 
|---|
|  | 389 | virtual ImplicitCtorDtorStmt *clone() const { return new ImplicitCtorDtorStmt( *this ); } | 
|---|
|  | 390 | virtual void accept( Visitor &v ) { v.visit( this ); } | 
|---|
|  | 391 | virtual Statement *acceptMutator( Mutator &m ) { return m.mutate( this ); } | 
|---|
|  | 392 | virtual void print( std::ostream &os, int indent = 0 ) const; | 
|---|
|  | 393 |  | 
|---|
|  | 394 | private: | 
|---|
|  | 395 | // Non-owned pointer to the constructor/destructor statement | 
|---|
|  | 396 | Statement * callStmt; | 
|---|
|  | 397 | }; | 
|---|
|  | 398 |  | 
|---|
|  | 399 |  | 
|---|
| [baf7fee] | 400 | std::ostream & operator<<( std::ostream & out, Statement * statement ); | 
|---|
|  | 401 |  | 
|---|
| [0dd3a2f] | 402 | #endif // STATEMENT_H | 
|---|
| [51b73452] | 403 |  | 
|---|
| [0dd3a2f] | 404 | // Local Variables: // | 
|---|
|  | 405 | // tab-width: 4 // | 
|---|
|  | 406 | // mode: c++ // | 
|---|
|  | 407 | // compile-command: "make install" // | 
|---|
|  | 408 | // End: // | 
|---|