InstructionCollection Type
Represents a 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
|
Full Usage:
InstructionCollection(collector)
Parameters:
IInstructionCollectable
Returns: InstructionCollection
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.Count
Returns: int
|
Number of instructions in the collection.
|
|
Get the instruction at the given address. Raise an exception if not found.
|
|
Find cached one or parse (and cache) the instruction at the given address.
|
B2R2