FW Profile - C1 Implementation
|
Structure representing an action node in a procedure. More...
Data Fields | |
FwPrCounterS1_t | iFlow |
index of out-going control flows | |
FwPrCounterS1_t | iAction |
index of the action attached to the node | |
Structure representing an action node in a procedure.
An action node is characterized by:
The out-going control flow is identified by an integer pointing at the location in the control flow array in the base descriptor (see PrBaseDesc_t
). Thus, for instance, if the iFlow
field for node N is equal to 5, then the out-going control flow of node N is the one stored at location 5 of the control flow array of that procedure.
The node action is identified by an integer pointing at the location in the action array of the procedure descriptor where the action is stored. Thus, for instance, if the iAction
field for node N is equal to 5, then the action of node N is the one stored at location 5 of the action array of that procedure.
By convention, the implementation treats an action node as uninitialized if its iFlow
field is equal to -1.
Definition at line 98 of file FwPrPrivate.h.