IGraphCallback<'FnCtx, 'GlCtx> Type
Represents a callback interface for graph operations in CFG recovery.
Instance members
| Instance member |
Description
|
Full Usage:
this.OnAddEdge
Parameters:
CFGBuildingContext<'FnCtx, 'GlCtx>
arg1 : IVertex<LowUIRBasicBlock>
arg2 : IVertex<LowUIRBasicBlock>
arg3 : CFGEdgeKind
Modifiers: abstract |
Called when an edge is added to the CFG.
|
Full Usage:
this.OnAddVertex
Parameters:
CFGBuildingContext<'FnCtx, 'GlCtx>
arg1 : IVertex<LowUIRBasicBlock>
Modifiers: abstract |
Called when a new vertex is added to the CFG.
|
Full Usage:
this.OnRemoveVertex
Parameters:
CFGBuildingContext<'FnCtx, 'GlCtx>
arg1 : IVertex<LowUIRBasicBlock>
Modifiers: abstract |
Called when a vertex is removed from the CFG.
|
B2R2