ROSE 0.11.145.147
|
Arguments for detaching a basic block.
After a basic block is detached from the CFG/AUM, or after a placeholder is removed from the CFG, these arguments are passed to the callback. If a basic block was detached then the bblock member will be non-null, otherwise the arguments indicate that a placeholder was removed from the CFG. This callback is invoked after the changes have been made to the CFG/AUM. The partitioner is passed as a const pointer because the callback should not modify the CFG/AUM; this callback may represent only one step in a larger sequence, and modifying the CFG/AUM could confuse things.
Definition at line 266 of file ControlFlowGraph.h.
#include <Rose/BinaryAnalysis/Partitioner2/ControlFlowGraph.h>
Public Member Functions | |
DetachedBasicBlock (const PartitionerPtr &, rose_addr_t startVa, const BasicBlockPtr &) | |
Public Attributes | |
PartitionerConstPtr | partitioner |
Partitioner in which change occurred. | |
rose_addr_t | startVa |
Starting address for basic block or placeholder. | |
BasicBlockPtr | bblock |
Optional basic block; otherwise a placeholder operation. | |
PartitionerConstPtr Rose::BinaryAnalysis::Partitioner2::CfgAdjustmentCallback::DetachedBasicBlock::partitioner |
Partitioner in which change occurred.
Definition at line 267 of file ControlFlowGraph.h.
rose_addr_t Rose::BinaryAnalysis::Partitioner2::CfgAdjustmentCallback::DetachedBasicBlock::startVa |
Starting address for basic block or placeholder.
Definition at line 268 of file ControlFlowGraph.h.
BasicBlockPtr Rose::BinaryAnalysis::Partitioner2::CfgAdjustmentCallback::DetachedBasicBlock::bblock |
Optional basic block; otherwise a placeholder operation.
Definition at line 269 of file ControlFlowGraph.h.