00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #include "c_breeze.h"
00039
00040
00041
00042
00043
00044 continueNode::continueNode(loopNode * container, const Coord coord)
00045 : jumpNode(Continue, coord),
00046 _container(container)
00047 {}
00048
00049 continueNode::continueNode(const Coord the_coord)
00050 : jumpNode(Continue, the_coord),
00051 _container(0)
00052 {}
00053
00054
00055
00056
00057
00058 void continueNode::visit(Visitor * the_visitor)
00059 {
00060 the_visitor->at_continue(this);
00061 }
00062
00063 void continueNode::walk(Walker & the_walker)
00064 {
00065 Walker::Order ord = the_walker.order();
00066
00067 if (ord == Walker::Preorder || ord == Walker::Both)
00068 the_walker.at_continue(this, Walker::Preorder);
00069
00070 if (ord == Walker::Postorder || ord == Walker::Both)
00071 the_walker.at_continue(this, Walker::Postorder);
00072 }
00073
00074
00075
00076
00077
00078 void continueNode::dataflow(FlowVal * v, FlowProblem & fp)
00079 {
00080 if (fp.forward()) {
00081 fp.flow_continue(v, this, FlowProblem::Entry);
00082
00083
00084
00085 if (container())
00086 container()->at_loop_tail()->meet_and_diff(v, fp);
00087
00088 v->to_top();
00089
00090 fp.flow_continue(v, this, FlowProblem::Exit);
00091 }
00092 else {
00093 fp.flow_continue(v, this, FlowProblem::Exit);
00094
00095
00096
00097 v->to_top();
00098
00099 if (container())
00100 v->meet(container()->at_loop_tail());
00101
00102 fp.flow_continue(v, this, FlowProblem::Entry);
00103 }
00104 }
00105
00106
00107
00108
00109
00110 void continueNode::output_stmt(output_context & ct, Node * parent)
00111 {
00112 ct << "continue" << ';' ;
00113 }
00114
00115
00116
00117
00118
00119 Node * continueNode::change(Changer & the_changer, bool redispatch)
00120 {
00121 Changer::Order ord = the_changer.order();
00122 continueNode * the_continue = this;
00123
00124 if ((ord == Changer::Preorder || ord == Changer::Both) && ! redispatch)
00125 the_continue = (continueNode *) the_changer.at_continue(the_continue, Changer::Preorder);
00126
00127 if (the_continue) {
00128
00129 if (the_continue != this)
00130 return the_continue->change(the_changer, true);
00131
00132 }
00133
00134 if ((ord == Changer::Postorder || ord == Changer::Both) && ! redispatch)
00135 the_continue = (continueNode *) the_changer.at_continue(the_continue, Changer::Postorder);
00136
00137 return the_continue;
00138 }
00139
00140
00141
00142
00143
00144
00145 continueNode::~continueNode()
00146 {
00147 }