C-Breeze
C Compiler Infrastructure

[ Project home page]
Main Page   Modules   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

Dataflow_h_ast_transfuncs

AST-specific transfer functions. More...

Functions

virtual void flow_node (FlowVal *v, Node *the_node, Point p)
virtual void flow_unit (FlowVal *v, unitNode *the_unit, Point p)
virtual void flow_def (FlowVal *v, defNode *the_def, Point p)
virtual void flow_decl (FlowVal *v, declNode *the_decl, Point p)
virtual void flow_proc (FlowVal *v, procNode *the_proc, Point p)
virtual void flow_type (FlowVal *v, typeNode *the_type, Point p)
virtual void flow_prim (FlowVal *v, primNode *the_prim, Point p)
virtual void flow_tdef (FlowVal *v, tdefNode *the_tdef, Point p)
virtual void flow_ptr (FlowVal *v, ptrNode *the_ptr, Point p)
virtual void flow_array (FlowVal *v, arrayNode *the_array, Point p)
virtual void flow_func (FlowVal *v, funcNode *the_func, Point p)
virtual void flow_sue (FlowVal *v, sueNode *the_sue, Point p)
virtual void flow_struct (FlowVal *v, structNode *the_struct, Point p)
virtual void flow_union (FlowVal *v, unionNode *the_union, Point p)
virtual void flow_enum (FlowVal *v, enumNode *the_enum, Point p)
virtual void flow_suespec (FlowVal *v, suespecNode *the_suespec, Point p)
virtual void flow_expr (FlowVal *v, exprNode *the_expr, Point p)
virtual void flow_const (FlowVal *v, constNode *the_const, Point p)
virtual void flow_id (FlowVal *v, idNode *the_id, Point p)
virtual void flow_binary (FlowVal *v, binaryNode *the_binary, Point p)
virtual void flow_unary (FlowVal *v, unaryNode *the_unary, Point p)
virtual void flow_cast (FlowVal *v, castNode *the_cast, Point p)
virtual void flow_comma (FlowVal *v, commaNode *the_comma, Point p)
virtual void flow_ternary (FlowVal *v, ternaryNode *the_ternary, Point p)
virtual void flow_call (FlowVal *v, callNode *the_call, Point p)
virtual void flow_initializer (FlowVal *v, initializerNode *the_initializer, Point p)
virtual void flow_stmt (FlowVal *v, stmtNode *the_stmt, Point p)
virtual void flow_block (FlowVal *v, blockNode *the_block, Point p)
virtual void flow_exprstmt (FlowVal *v, exprstmtNode *the_exprstmt, Point p)
virtual void flow_target (FlowVal *v, targetNode *the_target, Point p)
virtual void flow_label (FlowVal *v, labelNode *the_label, Point p)
virtual void flow_case (FlowVal *v, caseNode *the_case, Point p)
virtual void flow_selection (FlowVal *v, selectionNode *the_selection, Point p)
virtual void flow_if (FlowVal *v, ifNode *the_if, Point p)
virtual void flow_switch (FlowVal *v, switchNode *the_switch, Point p)
virtual void flow_loop (FlowVal *v, loopNode *the_loop, Point p)
virtual void flow_while (FlowVal *v, whileNode *the_while, Point p)
virtual void flow_do (FlowVal *v, doNode *the_do, Point p)
virtual void flow_for (FlowVal *v, forNode *the_for, Point p)
virtual void flow_jump (FlowVal *v, jumpNode *the_jump, Point p)
virtual void flow_goto (FlowVal *v, gotoNode *the_goto, Point p)
virtual void flow_continue (FlowVal *v, continueNode *the_continue, Point p)
virtual void flow_break (FlowVal *v, breakNode *the_break, Point p)
virtual void flow_return (FlowVal *v, returnNode *the_return, Point p)
virtual void flow_attrib (FlowVal *v, attribNode *the_attrib, Point p)
virtual void flow_text (FlowVal *v, textNode *the_text, Point p)

Detailed Description

AST-specific transfer functions.


Function Documentation

virtual void FlowProblem::flow_array FlowVal   v,
arrayNode   the_array,
Point    p
[inline, virtual, inherited]
 

Definition at line 174 of file dataflow.h.

References FlowProblem::flow_type().

virtual void FlowProblem::flow_attrib FlowVal   v,
attribNode   the_attrib,
Point    p
[inline, virtual, inherited]
 

Definition at line 279 of file dataflow.h.

References FlowProblem::flow_stmt().

virtual void FlowProblem::flow_binary FlowVal   v,
binaryNode   the_binary,
Point    p
[inline, virtual, inherited]
 

Definition at line 204 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by binaryNode::dataflow().

virtual void FlowProblem::flow_block FlowVal   v,
blockNode   the_block,
Point    p
[inline, virtual, inherited]
 

Definition at line 228 of file dataflow.h.

References FlowProblem::flow_stmt().

Referenced by blockNode::dataflow().

virtual void FlowProblem::flow_break FlowVal   v,
breakNode   the_break,
Point    p
[inline, virtual, inherited]
 

Definition at line 273 of file dataflow.h.

References FlowProblem::flow_jump().

Referenced by breakNode::dataflow().

virtual void FlowProblem::flow_call FlowVal   v,
callNode   the_call,
Point    p
[inline, virtual, inherited]
 

Definition at line 219 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by callNode::dataflow().

virtual void FlowProblem::flow_case FlowVal   v,
caseNode   the_case,
Point    p
[inline, virtual, inherited]
 

Definition at line 240 of file dataflow.h.

References FlowProblem::flow_target().

Referenced by caseNode::dataflow().

virtual void FlowProblem::flow_cast FlowVal   v,
castNode   the_cast,
Point    p
[inline, virtual, inherited]
 

Definition at line 210 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by castNode::dataflow().

virtual void FlowProblem::flow_comma FlowVal   v,
commaNode   the_comma,
Point    p
[inline, virtual, inherited]
 

Definition at line 213 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by commaNode::dataflow().

virtual void FlowProblem::flow_const FlowVal   v,
constNode   the_const,
Point    p
[inline, virtual, inherited]
 

Definition at line 198 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by constNode::dataflow().

virtual void FlowProblem::flow_continue FlowVal   v,
continueNode   the_continue,
Point    p
[inline, virtual, inherited]
 

Definition at line 270 of file dataflow.h.

References FlowProblem::flow_jump().

Referenced by continueNode::dataflow().

virtual void FlowProblem::flow_decl FlowVal   v,
declNode   the_decl,
Point    p
[inline, virtual, inherited]
 

Definition at line 156 of file dataflow.h.

References FlowProblem::flow_def().

Referenced by declNode::dataflow().

virtual void FlowProblem::flow_def FlowVal   v,
defNode   the_def,
Point    p
[inline, virtual, inherited]
 

Definition at line 153 of file dataflow.h.

References FlowProblem::flow_node().

Referenced by FlowProblem::flow_decl(), and FlowProblem::flow_proc().

virtual void FlowProblem::flow_do FlowVal   v,
doNode   the_do,
Point    p
[inline, virtual, inherited]
 

Definition at line 258 of file dataflow.h.

References FlowProblem::flow_loop().

Referenced by doNode::dataflow().

virtual void FlowProblem::flow_enum FlowVal   v,
enumNode   the_enum,
Point    p
[inline, virtual, inherited]
 

Definition at line 189 of file dataflow.h.

References FlowProblem::flow_sue().

virtual void FlowProblem::flow_expr FlowVal   v,
exprNode   the_expr,
Point    p
[inline, virtual, inherited]
 

Definition at line 195 of file dataflow.h.

References FlowProblem::flow_node().

Referenced by metaexprNode::dataflow(), FlowProblem::flow_binary(), FlowProblem::flow_call(), FlowProblem::flow_cast(), FlowProblem::flow_comma(), FlowProblem::flow_const(), FlowProblem::flow_id(), FlowProblem::flow_initializer(), FlowProblem::flow_ternary(), and FlowProblem::flow_unary().

virtual void FlowProblem::flow_exprstmt FlowVal   v,
exprstmtNode   the_exprstmt,
Point    p
[inline, virtual, inherited]
 

Definition at line 231 of file dataflow.h.

References FlowProblem::flow_stmt().

Referenced by exprstmtNode::dataflow().

virtual void FlowProblem::flow_for FlowVal   v,
forNode   the_for,
Point    p
[inline, virtual, inherited]
 

Definition at line 261 of file dataflow.h.

References FlowProblem::flow_loop().

Referenced by forNode::dataflow().

virtual void FlowProblem::flow_func FlowVal   v,
funcNode   the_func,
Point    p
[inline, virtual, inherited]
 

Definition at line 177 of file dataflow.h.

References FlowProblem::flow_type().

virtual void FlowProblem::flow_goto FlowVal   v,
gotoNode   the_goto,
Point    p
[inline, virtual, inherited]
 

Definition at line 267 of file dataflow.h.

References FlowProblem::flow_jump().

Referenced by gotoNode::dataflow().

virtual void FlowProblem::flow_id FlowVal   v,
idNode   the_id,
Point    p
[inline, virtual, inherited]
 

Definition at line 201 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by idNode::dataflow().

virtual void FlowProblem::flow_if FlowVal   v,
ifNode   the_if,
Point    p
[inline, virtual, inherited]
 

Definition at line 246 of file dataflow.h.

References FlowProblem::flow_selection().

Referenced by ifNode::dataflow().

virtual void FlowProblem::flow_initializer FlowVal   v,
initializerNode   the_initializer,
Point    p
[inline, virtual, inherited]
 

Definition at line 222 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by initializerNode::dataflow().

virtual void FlowProblem::flow_jump FlowVal   v,
jumpNode   the_jump,
Point    p
[inline, virtual, inherited]
 

Definition at line 264 of file dataflow.h.

References FlowProblem::flow_stmt().

Referenced by FlowProblem::flow_break(), FlowProblem::flow_continue(), FlowProblem::flow_goto(), and FlowProblem::flow_return().

virtual void FlowProblem::flow_label FlowVal   v,
labelNode   the_label,
Point    p
[inline, virtual, inherited]
 

Definition at line 237 of file dataflow.h.

References FlowProblem::flow_target().

Referenced by labelNode::dataflow().

virtual void FlowProblem::flow_loop FlowVal   v,
loopNode   the_loop,
Point    p
[inline, virtual, inherited]
 

Definition at line 252 of file dataflow.h.

References FlowProblem::flow_stmt().

Referenced by FlowProblem::flow_do(), FlowProblem::flow_for(), and FlowProblem::flow_while().

virtual void FlowProblem::flow_node FlowVal   v,
Node   the_node,
Point    p
[inline, virtual, inherited]
 

Definition at line 146 of file dataflow.h.

Referenced by FlowProblem::flow_basicblock(), FlowProblem::flow_def(), FlowProblem::flow_expr(), FlowProblem::flow_stmt(), FlowProblem::flow_text(), FlowProblem::flow_type(), and FlowProblem::flow_unit().

virtual void FlowProblem::flow_prim FlowVal   v,
primNode   the_prim,
Point    p
[inline, virtual, inherited]
 

Definition at line 165 of file dataflow.h.

References FlowProblem::flow_type().

virtual void FlowProblem::flow_proc FlowVal   v,
procNode   the_proc,
Point    p
[inline, virtual, inherited]
 

Definition at line 159 of file dataflow.h.

References FlowProblem::flow_def().

Referenced by procNode::dataflow().

virtual void FlowProblem::flow_ptr FlowVal   v,
ptrNode   the_ptr,
Point    p
[inline, virtual, inherited]
 

Definition at line 171 of file dataflow.h.

References FlowProblem::flow_type().

virtual void FlowProblem::flow_return FlowVal   v,
returnNode   the_return,
Point    p
[inline, virtual, inherited]
 

Definition at line 276 of file dataflow.h.

References FlowProblem::flow_jump().

Referenced by returnNode::dataflow().

virtual void FlowProblem::flow_selection FlowVal   v,
selectionNode   the_selection,
Point    p
[inline, virtual, inherited]
 

Definition at line 243 of file dataflow.h.

References FlowProblem::flow_stmt().

Referenced by FlowProblem::flow_if(), and FlowProblem::flow_switch().

virtual void FlowProblem::flow_stmt FlowVal   v,
stmtNode   the_stmt,
Point    p
[inline, virtual, inherited]
 

Definition at line 225 of file dataflow.h.

References FlowProblem::flow_node().

Referenced by metastmtNode::dataflow(), FlowProblem::flow_attrib(), FlowProblem::flow_block(), FlowProblem::flow_exprstmt(), FlowProblem::flow_jump(), FlowProblem::flow_loop(), FlowProblem::flow_selection(), and FlowProblem::flow_target().

virtual void FlowProblem::flow_struct FlowVal   v,
structNode   the_struct,
Point    p
[inline, virtual, inherited]
 

Definition at line 183 of file dataflow.h.

References FlowProblem::flow_sue().

virtual void FlowProblem::flow_sue FlowVal   v,
sueNode   the_sue,
Point    p
[inline, virtual, inherited]
 

Definition at line 180 of file dataflow.h.

References FlowProblem::flow_type().

Referenced by FlowProblem::flow_enum(), FlowProblem::flow_struct(), and FlowProblem::flow_union().

virtual void FlowProblem::flow_suespec FlowVal   v,
suespecNode   the_suespec,
Point    p
[inline, virtual, inherited]
 

Definition at line 192 of file dataflow.h.

References FlowProblem::flow_type().

virtual void FlowProblem::flow_switch FlowVal   v,
switchNode   the_switch,
Point    p
[inline, virtual, inherited]
 

Definition at line 249 of file dataflow.h.

References FlowProblem::flow_selection().

Referenced by switchNode::dataflow().

virtual void FlowProblem::flow_target FlowVal   v,
targetNode   the_target,
Point    p
[inline, virtual, inherited]
 

Definition at line 234 of file dataflow.h.

References FlowProblem::flow_stmt().

Referenced by FlowProblem::flow_case(), and FlowProblem::flow_label().

virtual void FlowProblem::flow_tdef FlowVal   v,
tdefNode   the_tdef,
Point    p
[inline, virtual, inherited]
 

Definition at line 168 of file dataflow.h.

References FlowProblem::flow_type().

virtual void FlowProblem::flow_ternary FlowVal   v,
ternaryNode   the_ternary,
Point    p
[inline, virtual, inherited]
 

Definition at line 216 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by ternaryNode::dataflow().

virtual void FlowProblem::flow_text FlowVal   v,
textNode   the_text,
Point    p
[inline, virtual, inherited]
 

Definition at line 282 of file dataflow.h.

References FlowProblem::flow_node().

virtual void FlowProblem::flow_type FlowVal   v,
typeNode   the_type,
Point    p
[inline, virtual, inherited]
 

Definition at line 162 of file dataflow.h.

References FlowProblem::flow_node().

Referenced by FlowProblem::flow_array(), FlowProblem::flow_func(), FlowProblem::flow_prim(), FlowProblem::flow_ptr(), FlowProblem::flow_sue(), FlowProblem::flow_suespec(), and FlowProblem::flow_tdef().

virtual void FlowProblem::flow_unary FlowVal   v,
unaryNode   the_unary,
Point    p
[inline, virtual, inherited]
 

Definition at line 207 of file dataflow.h.

References FlowProblem::flow_expr().

Referenced by unaryNode::dataflow().

virtual void FlowProblem::flow_union FlowVal   v,
unionNode   the_union,
Point    p
[inline, virtual, inherited]
 

Definition at line 186 of file dataflow.h.

References FlowProblem::flow_sue().

virtual void FlowProblem::flow_unit FlowVal   v,
unitNode   the_unit,
Point    p
[inline, virtual, inherited]
 

Definition at line 150 of file dataflow.h.

References FlowProblem::flow_node().

Referenced by unitNode::dataflow().

virtual void FlowProblem::flow_while FlowVal   v,
whileNode   the_while,
Point    p
[inline, virtual, inherited]
 

Definition at line 255 of file dataflow.h.

References FlowProblem::flow_loop().

Referenced by whileNode::dataflow().


Generated on August 27, 2003
Back to the C-Breeze home page