Function Type
Function is a chunk of code in a binary. Functions may overlap with each other in rare cases. Function overlapping is rare because we will create a new function when there is an incoming edge in the middle of a funcion,
Constructors
Constructor | Description |
Full Usage:
Function(entryPoint, name, noret, callers, jmptbls, isExtern)
Parameters:
Addr
name : string
noret : NonReturningStatus
callers : HashSet<Addr>
jmptbls : List<JmpTableInfo>
isExtern : bool
Returns: Function
|
|
Full Usage:
Function(entryPoint, name, cfg, isNoRet, callees, callers, jmptbls, isExtern)
Parameters:
Addr
name : string
cfg : LowUIRCFG
isNoRet : NonReturningStatus
callees : SortedList<Addr, CalleeKind>
callers : HashSet<Addr>
jmptbls : List<JmpTableInfo>
isExtern : bool
Returns: Function
|
|
Instance members
Instance member | Description |
|
|
|
|
|
|
|
|
Full Usage:
this.ID
Returns: string
|
|
|
|
Full Usage:
this.Name
Returns: string
|
|
|
|