CFGBuildingContext<'FnCtx, 'GlCtx> Type
The context for building a control flow graph of a function. This exists per function, and it can include a user-defined context, too.
Record fields
Record Field | Description |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
FunctionName
Field type: string
|
|
|
|
Full Usage:
IsExternal
Field type: bool
|
|
|
|
|
|
|
|
|
|
|
|
Full Usage:
ThreadID
Field type: int
Modifiers: mutable |
|
Full Usage:
UnwindingBytes
Field type: int
Modifiers: mutable |
|
Full Usage:
UserContext
Field type: 'FnCtx
Modifiers: mutable |
|
|
|
|
|
Instance members
Instance member | Description |
|
|
Full Usage:
this.FindOverlap
Parameters:
Addr option
Returns: IVertex<LowUIRBasicBlock> option
|
Find the first overlapping vertex in the CFG. We consider two cases: (1) two vertices share the same address, or (2) a vertex is beyond the range of the current function. If there's no such an overlap, return None. This function will check for the first case by traversing the vertices in the ascending order of addresses. This is crucial for the correctness of the rollback mechanism as we need to figure out which vertex is causing the overlap. Since we run this function after fully over-appriximating the CFG, we can assume that the first overlapping vertex is the problematic one. We then check the second case by assuming that the current function's boundary is determined by the next function's address. If there's a vertex that is located beyond the boundary, we consider it as an overlap. This function will return only the first overlapping vertex even though there may be multiple overlapping vertices.
|
Full Usage:
this.Reset
|
|
Full Usage:
this.ScanBBLs
Parameters:
ArchOperationMode
entryPoints : IEnumerable<Addr>
Returns: Result<List<ProgramPoint * ProgramPoint>, ErrorCase>
|
|