Header menu logo B2R2

InstructionCollection Type

Collection of lifted instructions. When this class is instantiated, it will automatically lift all possible instructions from the given binary, and store them in the internal collection. This is shared across all functions.

Constructors

Constructor Description

InstructionCollection(collector)

Full Usage: InstructionCollection(collector)

Parameters:
Returns: InstructionCollection
collector : IInstructionCollectable
Returns: InstructionCollection

Instance members

Instance member Description

this.Count

Full Usage: this.Count

Returns: int

Number of instructions in the collection.

Returns: int

this.Find

Full Usage: this.Find

Parameters:
Returns: Instruction

Get the instruction at the given address. Raise an exception if not found or if the mode needs to be specified.

addr : Addr
Returns: Instruction

this.Find

Full Usage: this.Find

Parameters:
Returns: Instruction

Get the instruction at the given address. Raise an exception if not found.

addr : Addr
mode : ArchOperationMode
Returns: Instruction

this.TryFind

Full Usage: this.TryFind

Parameters:
Returns: Result<Instruction, ErrorCase>

Find cached one or parse (and cache) the instruction at the given address.

addr : Addr
mode : ArchOperationMode
Returns: Result<Instruction, ErrorCase>

Type something to start searching.