source: src/Parser/StatementNode.cc@ 9f07232

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 9f07232 was 6d49ea3, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

second attempt, add declarations into if conditional

  • Property mode set to 100644
File size: 8.4 KB
Line 
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// StatementNode.cc --
8//
9// Author : Rodolfo G. Esteves
10// Created On : Sat May 16 14:59:41 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Aug 17 16:01:31 2017
13// Update Count : 345
14//
15
16#include <cassert> // for assert, safe_dynamic_cast, assertf
17#include <list> // for list
18#include <memory> // for unique_ptr
19#include <string> // for string
20
21#include "Common/SemanticError.h" // for SemanticError
22#include "Common/utility.h" // for maybeMoveBuild, maybeBuild
23#include "ParseNode.h" // for StatementNode, ExpressionNode, bui...
24#include "SynTree/Expression.h" // for Expression, ConstantExpr
25#include "SynTree/Label.h" // for Label, noLabels
26#include "SynTree/Declaration.h"
27#include "SynTree/Statement.h" // for Statement, BranchStmt, CaseStmt
28#include "parserutility.h" // for notZeroExpr
29
30class Declaration;
31
32using namespace std;
33
34
35StatementNode::StatementNode( DeclarationNode *decl ) {
36 assert( decl );
37 DeclarationNode *agg = decl->extractAggregate();
38 if ( agg ) {
39 StatementNode *nextStmt = new StatementNode( new DeclStmt( noLabels, maybeBuild< Declaration >( decl ) ) );
40 set_next( nextStmt );
41 if ( decl->get_next() ) {
42 get_next()->set_next( new StatementNode( dynamic_cast< DeclarationNode * >(decl->get_next()) ) );
43 decl->set_next( 0 );
44 } // if
45 } else {
46 if ( decl->get_next() ) {
47 set_next( new StatementNode( dynamic_cast< DeclarationNode * >( decl->get_next() ) ) );
48 decl->set_next( 0 );
49 } // if
50 agg = decl;
51 } // if
52 stmt.reset( new DeclStmt( noLabels, maybeMoveBuild< Declaration >(agg) ) );
53} // StatementNode::StatementNode
54
55StatementNode *StatementNode::append_last_case( StatementNode *stmt ) {
56 StatementNode *prev = this;
57 // find end of list and maintain previous pointer
58 for ( StatementNode * curr = prev; curr != nullptr; curr = (StatementNode *)curr->get_next() ) {
59 StatementNode *node = safe_dynamic_cast< StatementNode * >(curr);
60 assert( dynamic_cast< CaseStmt * >(node->stmt.get()) );
61 prev = curr;
62 } // for
63 // convert from StatementNode list to Statement list
64 StatementNode *node = dynamic_cast< StatementNode * >(prev);
65 std::list< Statement * > stmts;
66 buildMoveList( stmt, stmts );
67 // splice any new Statements to end of current Statements
68 CaseStmt * caseStmt = dynamic_cast< CaseStmt * >(node->stmt.get());
69 caseStmt->get_statements().splice( caseStmt->get_statements().end(), stmts );
70 return this;
71}
72
73Statement *build_expr( ExpressionNode *ctl ) {
74 Expression *e = maybeMoveBuild< Expression >( ctl );
75
76 if ( e )
77 return new ExprStmt( noLabels, e );
78 else
79 return new NullStmt( noLabels );
80}
81
82Statement *build_if( IfCtl * ctl, StatementNode *then_stmt, StatementNode *else_stmt ) {
83 Statement *thenb, *elseb = 0;
84 std::list< Statement * > branches;
85 buildMoveList< Statement, StatementNode >( then_stmt, branches );
86 assert( branches.size() == 1 );
87 thenb = branches.front();
88
89 if ( else_stmt ) {
90 std::list< Statement * > branches;
91 buildMoveList< Statement, StatementNode >( else_stmt, branches );
92 assert( branches.size() == 1 );
93 elseb = branches.front();
94 } // if
95
96 std::list< Statement * > init;
97 if ( ctl->init != 0 ) {
98 buildMoveList( ctl->init, init );
99 } // if
100
101 Expression * cond = ctl->condition ? maybeMoveBuild< Expression >(ctl->condition) : new VariableExpr( dynamic_cast<DeclarationWithType *>( dynamic_cast<DeclStmt *>( init.back() )->decl ) );
102 delete ctl;
103 return new IfStmt( noLabels, notZeroExpr( cond ), thenb, elseb, init );
104}
105
106Statement *build_switch( ExpressionNode *ctl, StatementNode *stmt ) {
107 std::list< Statement * > branches;
108 buildMoveList< Statement, StatementNode >( stmt, branches );
109 // branches.size() == 0 for switch (...) {}, i.e., no declaration or statements
110 return new SwitchStmt( noLabels, maybeMoveBuild< Expression >(ctl), branches );
111}
112Statement *build_case( ExpressionNode *ctl ) {
113 std::list< Statement * > branches;
114 return new CaseStmt( noLabels, maybeMoveBuild< Expression >(ctl), branches );
115}
116Statement *build_default() {
117 std::list< Statement * > branches;
118 return new CaseStmt( noLabels, nullptr, branches, true );
119}
120
121Statement *build_while( ExpressionNode *ctl, StatementNode *stmt, bool kind ) {
122 std::list< Statement * > branches;
123 buildMoveList< Statement, StatementNode >( stmt, branches );
124 assert( branches.size() == 1 );
125 return new WhileStmt( noLabels, notZeroExpr( maybeMoveBuild< Expression >(ctl) ), branches.front(), kind );
126}
127
128Statement *build_for( ForCtl *forctl, StatementNode *stmt ) {
129 std::list< Statement * > branches;
130 buildMoveList< Statement, StatementNode >( stmt, branches );
131 assert( branches.size() == 1 );
132
133 std::list< Statement * > init;
134 if ( forctl->init != 0 ) {
135 buildMoveList( forctl->init, init );
136 } // if
137
138 Expression *cond = 0;
139 if ( forctl->condition != 0 )
140 cond = notZeroExpr( maybeMoveBuild< Expression >(forctl->condition) );
141
142 Expression *incr = 0;
143 if ( forctl->change != 0 )
144 incr = maybeMoveBuild< Expression >(forctl->change);
145
146 delete forctl;
147 return new ForStmt( noLabels, init, cond, incr, branches.front() );
148}
149
150Statement *build_branch( BranchStmt::Type kind ) {
151 Statement * ret = new BranchStmt( noLabels, "", kind );
152 return ret;
153}
154Statement *build_branch( std::string *identifier, BranchStmt::Type kind ) {
155 Statement * ret = new BranchStmt( noLabels, *identifier, kind );
156 delete identifier; // allocated by lexer
157 return ret;
158}
159Statement *build_computedgoto( ExpressionNode *ctl ) {
160 return new BranchStmt( noLabels, maybeMoveBuild< Expression >(ctl), BranchStmt::Goto );
161}
162
163Statement *build_return( ExpressionNode *ctl ) {
164 std::list< Expression * > exps;
165 buildMoveList( ctl, exps );
166 return new ReturnStmt( noLabels, exps.size() > 0 ? exps.back() : nullptr );
167}
168
169Statement *build_throw( ExpressionNode *ctl ) {
170 std::list< Expression * > exps;
171 buildMoveList( ctl, exps );
172 assertf( exps.size() < 2, "This means we are leaking memory");
173 return new ThrowStmt( noLabels, ThrowStmt::Terminate, !exps.empty() ? exps.back() : nullptr );
174}
175
176Statement *build_resume( ExpressionNode *ctl ) {
177 std::list< Expression * > exps;
178 buildMoveList( ctl, exps );
179 assertf( exps.size() < 2, "This means we are leaking memory");
180 return new ThrowStmt( noLabels, ThrowStmt::Resume, !exps.empty() ? exps.back() : nullptr );
181}
182
183Statement *build_resume_at( ExpressionNode *ctl, ExpressionNode *target ) {
184 (void)ctl;
185 (void)target;
186 assertf( false, "resume at (non-local throw) is not yet supported," );
187}
188
189Statement *build_try( StatementNode *try_stmt, StatementNode *catch_stmt, StatementNode *finally_stmt ) {
190 std::list< CatchStmt * > branches;
191 buildMoveList< CatchStmt, StatementNode >( catch_stmt, branches );
192 CompoundStmt *tryBlock = safe_dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >(try_stmt));
193 FinallyStmt *finallyBlock = dynamic_cast< FinallyStmt * >(maybeMoveBuild< Statement >(finally_stmt) );
194 return new TryStmt( noLabels, tryBlock, branches, finallyBlock );
195}
196Statement *build_catch( CatchStmt::Kind kind, DeclarationNode *decl, ExpressionNode *cond, StatementNode *body ) {
197 std::list< Statement * > branches;
198 buildMoveList< Statement, StatementNode >( body, branches );
199 assert( branches.size() == 1 );
200 return new CatchStmt( noLabels, kind, maybeMoveBuild< Declaration >(decl), maybeMoveBuild< Expression >(cond), branches.front() );
201}
202Statement *build_finally( StatementNode *stmt ) {
203 std::list< Statement * > branches;
204 buildMoveList< Statement, StatementNode >( stmt, branches );
205 assert( branches.size() == 1 );
206 return new FinallyStmt( noLabels, dynamic_cast< CompoundStmt * >( branches.front() ) );
207}
208
209Statement *build_compound( StatementNode *first ) {
210 CompoundStmt *cs = new CompoundStmt( noLabels );
211 buildMoveList( first, cs->get_kids() );
212 return cs;
213}
214
215Statement *build_asmstmt( bool voltile, ConstantExpr *instruction, ExpressionNode *output, ExpressionNode *input, ExpressionNode *clobber, LabelNode *gotolabels ) {
216 std::list< Expression * > out, in;
217 std::list< ConstantExpr * > clob;
218
219 buildMoveList( output, out );
220 buildMoveList( input, in );
221 buildMoveList( clobber, clob );
222 return new AsmStmt( noLabels, voltile, instruction, out, in, clob, gotolabels ? gotolabels->labels : noLabels );
223}
224
225// Local Variables: //
226// tab-width: 4 //
227// mode: c++ //
228// compile-command: "make install" //
229// End: //
Note: See TracBrowser for help on using the repository browser.