LiftingUnit Type
Lifting unit is responsible for parsing/lifting binary instructions. To lift a binary file in parallel, one needs to create multiple lifting units.
Constructors
Constructor | Description |
Full Usage:
LiftingUnit(binFile, parser)
Parameters:
IBinFile
parser : IInstructionParsable
Returns: LiftingUnit
|
|
Instance members
Instance member | Description |
Full Usage:
this.DisasmInstruction
Parameters:
BinFilePointer
-
The binary file pointer.
Returns: string
Disassembled string.
|
|
Full Usage:
this.DisasmInstruction
Parameters:
Addr
-
The instruction address.
Returns: string
Disassembled string.
|
|
Full Usage:
this.DisasmInstruction
Parameters:
Instruction
-
The instruction to disassemble.
showAddr : bool
-
Whether to show the address of the instruction in the output or not.
resolveSymbol : bool
-
Whether to resolve the symbols of references (e.g., jump target) in the
output or not.
Returns: string
Disassembled string.
|
|
|
|
Full Usage:
this.LiftBBlock
Parameters:
BinFilePointer
-
The binary file pointer.
Returns: Result<Stmt array, Stmt array>
Lifted IR statements.
|
|
|
|
Full Usage:
this.LiftInstruction
Parameters:
Instruction
-
The instruction to be lifted.
optimize : bool
-
Whether to optimize the lifted IR statements or not.
Returns: Stmt array
Lifted IR statements.
|
|
Full Usage:
this.LiftInstruction
Parameters:
Instruction
-
The instruction to be lifted.
Returns: Stmt[]
Lifted IR statements.
|
|
Full Usage:
this.LiftInstruction
Parameters:
BinFilePointer
-
The binary file pointer.
optimize : bool
-
Whether to optimize the lifted IR statements or not.
Returns: Stmt array
Lifted IR statements.
|
|
Full Usage:
this.LiftInstruction
Parameters:
BinFilePointer
-
The binary file pointer.
Returns: Stmt[]
Lifted IR statements.
|
|
|
|
|
|
Full Usage:
this.ParseBBlock
Parameters:
BinFilePointer
-
The binary file pointer.
Returns: Result<Instruction array, Instruction array>
Parsed basic block (i.e., an array of instructions).
|
|
Full Usage:
this.ParseBBlock
Parameters:
Addr
-
The basic block address.
Returns: Result<Instruction array, Instruction array>
Parsed basic block (i.e., an array of instructions).
|
|
Full Usage:
this.ParseInstruction
Parameters:
BinFilePointer
-
BinFilePointer.
Returns: Instruction
Parsed instruction.
|
|
Full Usage:
this.ParseInstruction
Parameters:
Addr
-
The instruction address.
Returns: Instruction
Parsed instruction.
|
|
|
|
|
|
Full Usage:
this.TryParseInstruction
Parameters:
BinFilePointer
-
BinFilePointer.
Returns: Result<Instruction, ErrorCase>
Parsed instruction if succeeded, ErrorCase if otherwise.
|
|
Full Usage:
this.TryParseInstruction
Parameters:
Addr
-
The instruction address.
Returns: Result<Instruction, ErrorCase>
Parsed instruction if succeeded, ErrorCase if otherwise.
|
|