decompiler
1.0.0
|
A group of actions (generally) applied in sequence. More...
#include <action.hh>
Public Member Functions | |
ActionGroup (uint4 f, const string &nm) | |
Construct given properties and a name. | |
virtual | ~ActionGroup (void) |
Destructor. | |
void | addAction (Action *ac) |
Add an Action to the group. More... | |
virtual void | clearBreakPoints (void) |
Clear all breakpoints set on this Action. | |
virtual Action * | clone (const ActionGroupList &grouplist) const |
Clone the Action. More... | |
virtual void | reset (Funcdata &data) |
Reset the Action for a new function. More... | |
virtual void | resetStats (void) |
Reset all the counts to zero. More... | |
virtual int4 | apply (Funcdata &data) |
Make a single attempt to apply this Action. More... | |
virtual int4 | print (ostream &s, int4 num, int4 depth) const |
Print a description of this Action to stream. More... | |
virtual void | printState (ostream &s) const |
Print status to stream. More... | |
virtual Action * | getSubAction (const string &specify) |
Retrieve a specific sub-action by name. More... | |
virtual Rule * | getSubRule (const string &specify) |
Retrieve a specific sub-rule by name. More... | |
virtual void | printStatistics (ostream &s) const |
Dump statistics to stream. More... | |
Public Member Functions inherited from ghidra::Action | |
Action (uint4 f, const string &nm, const string &g) | |
Base constructor for an Action. More... | |
virtual | ~Action (void) |
Destructor. | |
int4 | perform (Funcdata &data) |
Perform this action (if necessary) More... | |
bool | setBreakPoint (uint4 tp, const string &specify) |
Set a breakpoint on this action. More... | |
bool | setWarning (bool val, const string &specify) |
Set a warning on this action. More... | |
bool | disableRule (const string &specify) |
Disable a specific Rule within this. More... | |
bool | enableRule (const string &specify) |
Enable a specific Rule within this. More... | |
const string & | getName (void) const |
Get the Action's name. | |
const string & | getGroup (void) const |
Get the Action's group. | |
uint4 | getStatus (void) const |
Get the current status of this Action. | |
uint4 | getNumTests (void) |
Get the number of times apply() was invoked. | |
uint4 | getNumApply (void) |
Protected Attributes | |
vector< Action * > | list |
List of actions to perform in the group. | |
vector< Action * >::iterator | state |
Current action being applied. | |
Protected Attributes inherited from ghidra::Action | |
int4 | lcount |
Changes not including last call to apply() | |
int4 | count |
Number of changes made by this action so far. | |
uint4 | status |
Current status. | |
uint4 | breakpoint |
Breakpoint properties. | |
uint4 | flags |
Behavior properties. | |
uint4 | count_tests |
Number of times apply() has been called. | |
uint4 | count_apply |
Number of times apply() made changes. | |
string | name |
Name of the action. | |
string | basegroup |
Base group this action belongs to. | |
Additional Inherited Members | |
Public Types inherited from ghidra::Action | |
enum | ruleflags { rule_repeatapply = 4, rule_onceperfunc = 8, rule_oneactperfunc = 16, rule_debug = 32, rule_warnings_on = 64, rule_warnings_given = 128 } |
Boolean behavior properties governing this particular Action. More... | |
enum | statusflags { status_start =1, status_breakstarthit =2, status_repeat =4, status_mid =8, status_end =16, status_actionbreak =32 } |
Boolean properties describing the status of an action. More... | |
enum | breakflags { break_start = 1, tmpbreak_start = 2, break_action = 4, tmpbreak_action = 8 } |
Break points associated with an Action. More... | |
Protected Member Functions inherited from ghidra::Action | |
void | issueWarning (Architecture *glb) |
Warn that this Action has applied. More... | |
bool | checkStartBreak (void) |
Check start breakpoint. More... | |
bool | checkActionBreak (void) |
Check action breakpoint. More... | |
void | turnOnWarnings (void) |
Enable warnings for this Action. | |
void | turnOffWarnings (void) |
Disable warnings for this Action. | |
A group of actions (generally) applied in sequence.
This is a a list of Action objects, which are usually applied in sequence. But the behavior properties of each individual Action may affect this. Properties (like rule_repeatapply) may be put directly to this group that also affect how the Actions are applied.
void ghidra::ActionGroup::addAction | ( | Action * | ac | ) |
Add an Action to the group.
To be used only during the construction of this ActionGroup. This routine adds an Action to the end of this group's list.
ac | is the Action to add |
Referenced by clone(), ghidra::ActionRestartGroup::clone(), and ghidra::ActionDatabase::universalAction().
|
virtual |
Make a single attempt to apply this Action.
This is the main entry point for applying changes to a function that are specific to this Action. The method can inspect whatever it wants to decide if the Action does or does not apply. Changes are indicated by incrementing the count field.
data | is the function to inspect/modify |
Implements ghidra::Action.
Reimplemented in ghidra::ActionRestartGroup.
References ghidra::Action::checkActionBreak(), ghidra::Action::count, ghidra::Action::status, and ghidra::Action::status_mid.
Referenced by ghidra::ActionRestartGroup::apply().
|
virtual |
Clone the Action.
If this Action is a member of one of the groups in the grouplist, this returns a clone of the Action, otherwise NULL is returned.
grouplist | is the list of groups being cloned |
Implements ghidra::Action.
Reimplemented in ghidra::ActionRestartGroup.
References addAction(), ghidra::Action::clone(), ghidra::Action::flags, and ghidra::Action::getName().
|
virtual |
Retrieve a specific sub-action by name.
If this Action matches the given name, it is returned. If the name matches a sub-action, this is returned.
specify | is the action name to match |
Reimplemented from ghidra::Action.
References ghidra::Action::getSubAction(), and ghidra::Action::name.
|
virtual |
Retrieve a specific sub-rule by name.
Find a Rule, as a component of this Action, with the given name.
specify | is the name of the rule |
Reimplemented from ghidra::Action.
References ghidra::Action::name.
|
virtual |
Print a description of this Action to stream.
The description is suitable for a console mode listing of actions
s | is the output stream |
num | is a starting index to associate with the action (and its sub-actions) |
depth | is amount of indent necessary before printing |
Reimplemented from ghidra::Action.
References ghidra::Action::print().
|
virtual |
Print status to stream.
This will the Action name and the next step to execute
s | is the output stream |
Reimplemented from ghidra::Action.
References ghidra::Action::printState(), ghidra::Action::status, and ghidra::Action::status_mid.
|
virtual |
Dump statistics to stream.
Print out the collected statistics for the Action to stream
s | is the output stream |
Reimplemented from ghidra::Action.
References ghidra::Action::printStatistics().
|
virtual |
Reset the Action for a new function.
data | is the new function this Action may affect |
Reimplemented from ghidra::Action.
Reimplemented in ghidra::ActionRestartGroup.
References ghidra::Action::reset().
Referenced by ghidra::ActionRestartGroup::reset().
|
virtual |
Reset all the counts to zero.
Reset the statistics
Reimplemented from ghidra::Action.
References ghidra::Action::resetStats().