Header menu logo B2R2

IntraCallTable Type

A per-function table that maintains function call information within a function, such as callsites in the function, callees, and their relationships.

Constructors

Constructor Description

IntraCallTable()

Full Usage: IntraCallTable()

Returns: IntraCallTable
Returns: IntraCallTable

Instance members

Instance member Description

this.AddRegularCall

Full Usage: this.AddRegularCall

Parameters:

Add information about a regular function call.

callsiteAddr : Addr
calleeAddr : Addr

this.AddSystemCall

Full Usage: this.AddSystemCall

Parameters:
    callsiteAddr : Addr
    isExit : bool

Add information about a syscall.

callsiteAddr : Addr
isExit : bool

this.Callees

Full Usage: this.Callees

Returns: SortedList<Addr, CalleeKind>

The callees of this function. This is a mapping from a callsite (call instruction) address to its callee kind.

Returns: SortedList<Addr, CalleeKind>

this.GetCallee

Full Usage: this.GetCallee

Parameters:
    callsiteAddr : Addr

Returns: CalleeKind

Get a callee information for the given call instruction address.

callsiteAddr : Addr
Returns: CalleeKind

this.GetCallsites

Full Usage: this.GetCallsites

Parameters:
Returns: HashSet<Addr>

Get a set of callsite addresses of a callee.

calleeAddr : Addr
Returns: HashSet<Addr>

this.Reset

Full Usage: this.Reset

this.TryGetCallee

Full Usage: this.TryGetCallee

Parameters:
    callsiteAddr : Addr

Returns: bool * CalleeKind

Try to get a callee information for the given call instruction address.

callsiteAddr : Addr
Returns: bool * CalleeKind

this.TryGetCallsites

Full Usage: this.TryGetCallsites

Parameters:
Returns: bool * HashSet<Addr>

Try to get a set of callsite addresses of a callee.

calleeAddr : Addr
Returns: bool * HashSet<Addr>

this.TryGetFrameDistance

Full Usage: this.TryGetFrameDistance

Parameters:
    callsiteAddr : Addr

Returns: bool * int

Try to get a frame distance for the given callsite address.

callsiteAddr : Addr
Returns: bool * int

this.UpdateFrameDistance

Full Usage: this.UpdateFrameDistance

Parameters:
    callsiteAddr : Addr
    distance : int

Update call frame distance information for the given callsite address.

callsiteAddr : Addr
distance : int

Type something to start searching.