ICFGAnalysis Module
Functions and values
| Function or value |
Description
|
|
An empty CFG-based analysis, which does nothing.
|
Full Usage:
finalize a
Parameters:
ICFGAnalysis<('a -> 'b)>
Returns: ICFGAnalysis<('a -> unit)>
Type parameters: 'a, 'b |
Finalize the CFG-based analysis, which ignores the output of the previous CFG-based analysis.
|
Full Usage:
run env a
Parameters:
CFGAnalysisEnv<'a, 'b>
a : ICFGAnalysis<(unit -> unit)>
Modifiers: inline Type parameters: 'a, 'b (requires :> B2R2.MiddleEnd.ControlFlowAnalysis.IResettable and (new : unit -> 'a) and (new : unit -> 'b)) |
Run the combined CFG-based analysis, which should take `unit` as input and returns `unit` as output.
|
B2R2