LowUIRCFG Type
CFG where each node is an IR-level basic block. This is the main data
structure that we use to represent the control flow graph of a function.
This is essentially a wrapper class of `IDiGraph
Constructors
Constructor | Description |
|
Instance members
Instance member | Description |
Full Usage:
this.AddEdge
Parameters:
IVertex<LowUIRBasicBlock>
dst : IVertex<LowUIRBasicBlock>
label : CFGEdgeKind
|
|
Full Usage:
this.AddEdge
Parameters:
IVertex<LowUIRBasicBlock>
dst : IVertex<LowUIRBasicBlock>
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
this.FindEdge
Parameters:
IVertex<LowUIRBasicBlock>
dst : IVertex<LowUIRBasicBlock>
Returns: Edge<LowUIRBasicBlock, CFGEdgeKind>
|
|
Full Usage:
this.FindVertex
Parameters:
IVertex<LowUIRBasicBlock> -> bool
Returns: IVertex<LowUIRBasicBlock>
|
|
|
|
Full Usage:
this.FoldEdge
Parameters:
'a -> Edge<LowUIRBasicBlock, CFGEdgeKind> -> 'a
acc : 'a
Returns: 'a
|
|
Full Usage:
this.FoldVertex
Parameters:
'a -> IVertex<LowUIRBasicBlock> -> 'a
acc : 'a
Returns: 'a
|
|
Full Usage:
this.GetPredEdges
Parameters:
IVertex<LowUIRBasicBlock>
Returns: Edge<LowUIRBasicBlock, CFGEdgeKind>[]
|
|
Full Usage:
this.GetPreds
Parameters:
IVertex<LowUIRBasicBlock>
Returns: IVertex<LowUIRBasicBlock>[]
|
|
Full Usage:
this.GetSuccEdges
Parameters:
IVertex<LowUIRBasicBlock>
Returns: Edge<LowUIRBasicBlock, CFGEdgeKind>[]
|
|
Full Usage:
this.GetSuccs
Parameters:
IVertex<LowUIRBasicBlock>
Returns: IVertex<LowUIRBasicBlock>[]
|
|
|
|
|
|
Full Usage:
this.IsEmpty
Returns: bool
|
|
|
|
|
|
|
|
Full Usage:
this.RemoveEdge
Parameters:
IVertex<LowUIRBasicBlock>
dst : IVertex<LowUIRBasicBlock>
|
|
|
|
Full Usage:
this.Reverse
Parameters:
IEnumerable<IVertex<LowUIRBasicBlock>>
Returns: LowUIRCFG
|
|
|
|
|
|
|
|
Full Usage:
this.Size
Returns: int
|
|
Full Usage:
this.TryFindEdge
Parameters:
IVertex<LowUIRBasicBlock>
dst : IVertex<LowUIRBasicBlock>
Returns: Edge<LowUIRBasicBlock, CFGEdgeKind> option
|
|
Full Usage:
this.TryFindVertex
Parameters:
IVertex<LowUIRBasicBlock> -> bool
Returns: IVertex<LowUIRBasicBlock> option
|
|
|
|
|
|
|
|