Header menu logo B2R2

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

Function(entryPoint, name, noret, callers, jmptbls, isExtern)

Full Usage: Function(entryPoint, name, noret, callers, jmptbls, isExtern)

Parameters:
Returns: Function
entryPoint : Addr
name : string
noret : NonReturningStatus
callers : HashSet<Addr>
jmptbls : List<JmpTableInfo>
isExtern : bool
Returns: Function

Function(entryPoint, name, cfg, isNoRet, callees, callers, jmptbls, isExtern)

Full Usage: Function(entryPoint, name, cfg, isNoRet, callees, callers, jmptbls, isExtern)

Parameters:
Returns: Function
entryPoint : 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

this.CFG

Full Usage: this.CFG

Returns: LowUIRCFG

Function's control flow graph.

Returns: LowUIRCFG

this.Callees

Full Usage: this.Callees

Returns: SortedList<Addr, CalleeKind>

Mapping from a callsite to its callee kind.

Returns: SortedList<Addr, CalleeKind>

this.Callers

Full Usage: this.Callers

Returns: HashSet<Addr>

Callers of this function.

Returns: HashSet<Addr>

this.EntryPoint

Full Usage: this.EntryPoint

Returns: Addr

Function entry point address.

Returns: Addr

this.ID

Full Usage: this.ID

Returns: string

Unique ID of the function. A binary can have multiple functions with the same name, but they will have different IDs.

Returns: string

this.JumpTables

Full Usage: this.JumpTables

Returns: List<JmpTableInfo>

Jump tables associated with this function.

Returns: List<JmpTableInfo>

this.Name

Full Usage: this.Name

Returns: string

Name of the function.

Returns: string

this.NoRet

Full Usage: this.NoRet

Returns: NonReturningStatus

Return the non-returning status of this function.

Returns: NonReturningStatus

Type something to start searching.