source: src/SynTree/Statement.cc@ 54c9000

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since 54c9000 was 3ca540f, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into with-statement

  • 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"
[51b73452]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<<
[51b73452]30
31using std::string;
32using std::endl;
33
[ba3706f]34Statement::Statement( const std::list<Label> & labels ) : labels( labels ) {}
[51b73452]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}
[51b73452]45
46Statement::~Statement() {}
47
[ba3706f]48ExprStmt::ExprStmt( Expression *expr ) : Statement(), expr( expr ) {}
[51b73452]49
[3be261a]50ExprStmt::ExprStmt( const ExprStmt &other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
51
52ExprStmt::~ExprStmt() {
53 delete expr;
54}
[51b73452]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}
[51b73452]60
[7f5566b]61
[ba3706f]62AsmStmt::AsmStmt( bool voltile, Expression *instruction, std::list<Expression *> output, std::list<Expression *> input, std::list<ConstantExpr *> clobber, std::list<Label> gotolabels ) : Statement(), 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
[51b73452]96const char *BranchStmt::brType[] = { "Goto", "Break", "Continue" };
97
[ba3706f]98BranchStmt::BranchStmt( Label target, Type type ) throw ( SemanticError ) :
99 Statement(), 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 }
[51b73452]104}
105
[ba3706f]106BranchStmt::BranchStmt( Expression *computedTarget, Type type ) throw ( SemanticError ) :
107 Statement(), 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 }
[51b73452]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;
[51b73452]118}
119
[ba3706f]120ReturnStmt::ReturnStmt( Expression *expr ) : Statement(), expr( expr ) {}
[51b73452]121
[daf1af8]122ReturnStmt::ReturnStmt( const ReturnStmt & other ) : Statement( other ), expr( maybeClone( other.expr ) ) {}
[3be261a]123
[51b73452]124ReturnStmt::~ReturnStmt() {
[0dd3a2f]125 delete expr;
[51b73452]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;
[51b73452]135}
136
[ba3706f]137IfStmt::IfStmt( Expression *condition, Statement *thenPart, Statement *elsePart, std::list<Statement *> initialization ):
138 Statement(), condition( condition ), thenPart( thenPart ), elsePart( elsePart ), initialization( initialization ) {}
[51b73452]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}
[51b73452]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 );
[51b73452]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;
[51b73452]167
[50377a4]168 os << indent+1;
169 thenPart->print( os, indent+1 );
[51b73452]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
[51b73452]176}
177
[ba3706f]178SwitchStmt::SwitchStmt( Expression * condition, const std::list<Statement *> &statements ):
179 Statement(), condition( condition ), statements( statements ) {
[0dd3a2f]180}
[51b73452]181
[3be261a]182SwitchStmt::SwitchStmt( const SwitchStmt & other ):
183 Statement( other ), condition( maybeClone( other.condition ) ) {
[8688ce1]184 cloneAll( other.statements, statements );
[3be261a]185}
186
[51b73452]187SwitchStmt::~SwitchStmt() {
[0dd3a2f]188 delete condition;
[8688ce1]189 // destroy statements
[2037f82]190 deleteAll( statements );
[51b73452]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;
[51b73452]197
[50377a4]198 for ( const Statement * stmt : statements ) {
199 stmt->print( os, indent+1 );
200 }
[51b73452]201}
202
[ba3706f]203CaseStmt::CaseStmt( Expression *condition, const std::list<Statement *> &statements, bool deflt ) throw ( SemanticError ) :
204 Statement(), condition( condition ), stmts( statements ), _isDefault( deflt ) {
[50377a4]205 if ( isDefault() && condition != 0 ) throw SemanticError("default case with condition: ", condition);
[51b73452]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
[51b73452]213CaseStmt::~CaseStmt() {
[0dd3a2f]214 delete condition;
[2037f82]215 deleteAll( stmts );
[51b73452]216}
217
[ba3706f]218CaseStmt * CaseStmt::makeDefault( const std::list<Label> & labels, std::list<Statement *> stmts ) {
219 CaseStmt * stmt = new CaseStmt( nullptr, stmts, true );
220 stmt->labels = labels;
221 return stmt;
[b2152e7a]222}
223
[50377a4]224void CaseStmt::print( std::ostream &os, Indenter indent ) const {
225 if ( isDefault() ) os << "Default ";
[0dd3a2f]226 else {
227 os << "Case ";
[50377a4]228 condition->print( os, indent );
[0dd3a2f]229 } // if
230 os << endl;
[51b73452]231
[50377a4]232 for ( Statement * stmt : stmts ) {
233 stmt->print( os, indent+1 );
234 }
[51b73452]235}
236
[ba3706f]237WhileStmt::WhileStmt( Expression *condition, Statement *body, bool isDoWhile ):
238 Statement(), condition( condition), body( body), isDoWhile( isDoWhile) {
[0dd3a2f]239}
[51b73452]240
[3be261a]241WhileStmt::WhileStmt( const WhileStmt & other ):
242 Statement( other ), condition( maybeClone( other.condition ) ), body( maybeClone( other.body ) ), isDoWhile( other.isDoWhile ) {
243}
244
[a08ba92]245WhileStmt::~WhileStmt() {
[0dd3a2f]246 delete body;
[2037f82]247 delete condition;
[51b73452]248}
249
[50377a4]250void WhileStmt::print( std::ostream &os, Indenter indent ) const {
[89231bc]251 os << "While on condition: " << endl ;
[50377a4]252 condition->print( os, indent+1 );
[51b73452]253
[50377a4]254 os << indent << "... with body: " << endl;
[51b73452]255
[50377a4]256 if ( body != 0 ) body->print( os, indent+1 );
[51b73452]257}
258
[ba3706f]259ForStmt::ForStmt( std::list<Statement *> initialization, Expression *condition, Expression *increment, Statement *body ):
260 Statement(), initialization( initialization ), condition( condition ), increment( increment ), body( body ) {
[0dd3a2f]261}
[51b73452]262
[3be261a]263ForStmt::ForStmt( const ForStmt & other ):
264 Statement( other ), condition( maybeClone( other.condition ) ), increment( maybeClone( other.increment ) ), body( maybeClone( other.body ) ) {
265 cloneAll( other.initialization, initialization );
266
267}
268
[51b73452]269ForStmt::~ForStmt() {
[145f1fc]270 deleteAll( initialization );
[0dd3a2f]271 delete condition;
272 delete increment;
273 delete body;
[51b73452]274}
275
[50377a4]276void ForStmt::print( std::ostream &os, Indenter indent ) const {
277 Statement::print( os, indent ); // print labels
[be5aa1b]278
[50377a4]279 os << "For Statement" << endl;
[51b73452]280
[50377a4]281 if ( ! initialization.empty() ) {
282 os << indent << "... initialization: \n";
283 for ( Statement * stmt : initialization ) {
284 os << indent+1;
285 stmt->print( os, indent+1 );
286 }
[145f1fc]287 }
[51b73452]288
[50377a4]289 if ( condition != nullptr ) {
290 os << indent << "... condition: \n" << indent+1;
291 condition->print( os, indent+1 );
[bb8ea30]292 }
[51b73452]293
[50377a4]294 if ( increment != nullptr ) {
295 os << "\n" << indent << "... increment: \n" << indent+1;
296 increment->print( os, indent+1 );
[bb8ea30]297 }
[51b73452]298
[bb8ea30]299 if ( body != 0 ) {
[50377a4]300 os << "\n" << indent << "... with body: \n" << indent+1;
301 body->print( os, indent+1 );
[bb8ea30]302 }
[0dd3a2f]303 os << endl;
[51b73452]304}
305
[ba3706f]306ThrowStmt::ThrowStmt( Kind kind, Expression * expr, Expression * target ) :
307 Statement(), kind(kind), expr(expr), target(target) {
[daf1af8]308 assertf(Resume == kind || nullptr == target, "Non-local termination throw is not accepted." );
309}
310
311ThrowStmt::ThrowStmt( const ThrowStmt &other ) :
312 Statement ( other ), kind( other.kind ), expr( maybeClone( other.expr ) ), target( maybeClone( other.target ) ) {
313}
314
315ThrowStmt::~ThrowStmt() {
316 delete expr;
317 delete target;
318}
319
[50377a4]320void ThrowStmt::print( std::ostream &os, Indenter indent) const {
321 if ( target ) os << "Non-Local ";
[daf1af8]322 os << "Throw Statement, raising: ";
[50377a4]323 expr->print(os, indent+1);
[daf1af8]324 if ( target ) {
[50377a4]325 os << "... at: ";
326 target->print(os, indent+1);
[daf1af8]327 }
328}
329
[ba3706f]330TryStmt::TryStmt( CompoundStmt *tryBlock, std::list<CatchStmt *> &handlers, FinallyStmt *finallyBlock ) :
331 Statement(), block( tryBlock ), handlers( handlers ), finallyBlock( finallyBlock ) {
[0dd3a2f]332}
[51b73452]333
[3be261a]334TryStmt::TryStmt( const TryStmt &other ) : Statement( other ), block( maybeClone( other.block ) ), finallyBlock( maybeClone( other.finallyBlock ) ) {
335 cloneAll( other.handlers, handlers );
[51b73452]336}
337
[a08ba92]338TryStmt::~TryStmt() {
[0dd3a2f]339 delete block;
[2037f82]340 deleteAll( handlers );
341 delete finallyBlock;
[51b73452]342}
343
[50377a4]344void TryStmt::print( std::ostream &os, Indenter indent ) const {
[89231bc]345 os << "Try Statement" << endl;
[50377a4]346 os << indent << "... with block:" << endl << indent+1;
347 block->print( os, indent+1 );
[0dd3a2f]348
349 // handlers
[50377a4]350 os << indent << "... and handlers:" << endl;
351 for ( const CatchStmt * stmt : handlers ) {
352 os << indent+1;
353 stmt->print( os, indent+1 );
[406a6e6]354 }
[0dd3a2f]355
356 // finally block
357 if ( finallyBlock != 0 ) {
[50377a4]358 os << indent << "... and finally:" << endl << indent+1;
359 finallyBlock->print( os, indent+1 );
[0dd3a2f]360 } // if
[51b73452]361}
362
[ba3706f]363CatchStmt::CatchStmt( Kind kind, Declaration *decl, Expression *cond, Statement *body ) :
364 Statement(), kind ( kind ), decl ( decl ), cond ( cond ), body( body ) {
[50377a4]365 assertf( decl, "Catch clause must have a declaration." );
[0dd3a2f]366}
[51b73452]367
[3be261a]368CatchStmt::CatchStmt( const CatchStmt & other ) :
[ca78437]369 Statement( other ), kind ( other.kind ), decl ( maybeClone( other.decl ) ), cond ( maybeClone( other.cond ) ), body( maybeClone( other.body ) ) {
[3be261a]370}
371
[a08ba92]372CatchStmt::~CatchStmt() {
[0dd3a2f]373 delete decl;
374 delete body;
[51b73452]375}
376
[50377a4]377void CatchStmt::print( std::ostream &os, Indenter indent ) const {
[ca78437]378 os << "Catch " << ((Terminate == kind) ? "Terminate" : "Resume") << " Statement" << endl;
[0dd3a2f]379
[50377a4]380 os << indent << "... catching: ";
381 decl->printShort( os, indent+1 );
382 os << endl;
[406a6e6]383
384 if ( cond ) {
[50377a4]385 os << indent << "... with conditional:" << endl << indent+1;
386 cond->print( os, indent+1 );
[406a6e6]387 }
388
[50377a4]389 os << indent << "... with block:" << endl;
390 os << indent+1;
391 body->print( os, indent+1 );
[51b73452]392}
393
394
[ba3706f]395FinallyStmt::FinallyStmt( CompoundStmt *block ) : Statement(), block( block ) {
[51b73452]396}
397
[3be261a]398FinallyStmt::FinallyStmt( const FinallyStmt & other ) : Statement( other ), block( maybeClone( other.block ) ) {
399}
400
[0dd3a2f]401FinallyStmt::~FinallyStmt() {
402 delete block;
[51b73452]403}
404
[50377a4]405void FinallyStmt::print( std::ostream &os, Indenter indent ) const {
[f1b1e4c]406 os << "Finally Statement" << endl;
[50377a4]407 os << indent << "... with block:" << endl << indent+1;
408 block->print( os, indent+1 );
[51b73452]409}
410
[ba3706f]411WaitForStmt::WaitForStmt() : Statement() {
[135b431]412 timeout.time = nullptr;
413 timeout.statement = nullptr;
414 timeout.condition = nullptr;
415 orelse .statement = nullptr;
416 orelse .condition = nullptr;
417}
418
419WaitForStmt::WaitForStmt( const WaitForStmt & other ) : Statement( other ) {
420 clauses.reserve( other.clauses.size() );
421 for( auto & ocl : other.clauses ) {
422 clauses.emplace_back();
423 clauses.back().target.function = ocl.target.function->clone();
424 cloneAll( ocl.target.arguments, clauses.back().target.arguments );
425 clauses.back().statement = ocl.statement->clone();
426 clauses.back().condition = ocl.condition->clone();
427 }
428
429 timeout.time = other.timeout.time ->clone();
430 timeout.statement = other.timeout.statement->clone();
431 timeout.condition = other.timeout.condition->clone();
432 orelse .statement = other.orelse .statement->clone();
433 orelse .condition = other.orelse .condition->clone();
434}
435
436WaitForStmt::~WaitForStmt() {
437 for( auto & clause : clauses ) {
438 delete clause.target.function;
439 deleteAll( clause.target.arguments );
440 delete clause.statement;
441 delete clause.condition;
442 }
443
444 delete timeout.time;
445 delete timeout.statement;
446 delete timeout.condition;
447
448 delete orelse.statement;
449 delete orelse.condition;
450}
451
[50377a4]452void WaitForStmt::print( std::ostream &os, Indenter indent ) const {
[135b431]453 os << "Waitfor Statement" << endl;
[50377a4]454 os << indent << "... with block:" << endl << indent+1;
[135b431]455 // block->print( os, indent + 4 );
456}
457
[61255ad]458
[3ca540f]459WithStmt::WithStmt( const std::list< Expression * > & exprs, Statement * stmt ) : Statement(), exprs( exprs ), stmt( stmt ) {}
[61255ad]460WithStmt::WithStmt( const WithStmt & other ) : Statement( other ), stmt( maybeClone( other.stmt ) ) {
461 cloneAll( other.exprs, exprs );
462}
463WithStmt::~WithStmt() {
464 deleteAll( exprs );
465 delete stmt;
466}
467
468void WithStmt::print( std::ostream & os, Indenter indent ) const {
469 os << "With statement" << endl;
470 os << indent << "... with statement:" << endl << indent+1;
471 stmt->print( os, indent+1 );
472}
473
474
[ba3706f]475NullStmt::NullStmt( const std::list<Label> & labels ) : Statement( labels ) {
476}
[51b73452]477
[50377a4]478void NullStmt::print( std::ostream &os, Indenter ) const {
479 os << "Null Statement" << endl;
[51b73452]480}
481
[ba3706f]482ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( Statement * callStmt ) : Statement(), callStmt( callStmt ) {
[f1b1e4c]483 assert( callStmt );
484}
485
[74d1804]486ImplicitCtorDtorStmt::ImplicitCtorDtorStmt( const ImplicitCtorDtorStmt & other ) : Statement( other ), callStmt( maybeClone( other.callStmt ) ) {
[f1b1e4c]487}
488
489ImplicitCtorDtorStmt::~ImplicitCtorDtorStmt() {
[74d1804]490 delete callStmt;
[f1b1e4c]491}
492
[50377a4]493void ImplicitCtorDtorStmt::print( std::ostream &os, Indenter indent ) const {
[f1b1e4c]494 os << "Implicit Ctor Dtor Statement" << endl;
[50377a4]495 os << indent << "... with Ctor/Dtor: ";
496 callStmt->print( os, indent+1);
[f1b1e4c]497 os << endl;
498}
499
[0dd3a2f]500// Local Variables: //
501// tab-width: 4 //
502// mode: c++ //
503// compile-command: "make install" //
504// End: //
Note: See TracBrowser for help on using the repository browser.