Header menu logo B2R2

FunctionAbstraction<'Stmt> Type

An abstract information about a function to be used in an intra-procedural CFG. This exists per function call, not per function definition. Therefore, one function can have multiple `FunctionAbstraction` instances.

Constructors

Constructor Description

FunctionAbstraction(entryPoint, unwindingBytes, rundown, isExternal, returningStatus)

Full Usage: FunctionAbstraction(entryPoint, unwindingBytes, rundown, isExternal, returningStatus)

Parameters:
Returns: FunctionAbstraction<'Stmt>
entryPoint : Addr
unwindingBytes : int
rundown : Rundown<'Stmt>
isExternal : bool
returningStatus : NonReturningStatus
Returns: FunctionAbstraction<'Stmt>

Instance members

Instance member Description

this.EntryPoint

Full Usage: this.EntryPoint

Returns: Addr

Entry point of this function.

Returns: Addr

this.IsExternal

Full Usage: this.IsExternal

Returns: bool

Is this an external function?

Returns: bool

this.ReturningStatus

Full Usage: this.ReturningStatus

Returns: NonReturningStatus
Returns: NonReturningStatus

this.Rundown

Full Usage: this.Rundown

Returns: Rundown<'Stmt>

A rundown of the function in SSA form.

Returns: Rundown<'Stmt>

this.UnwindingBytes

Full Usage: this.UnwindingBytes

Returns: int

How many bytes of the stack does this function unwind when return?

Returns: int

Type something to start searching.