Instruction Type
A high-level class representing a single machine instruction in a platform-independent manner. It provides useful methods for accessing useful information about the instruction.
Constructors
Constructor | Description |
|
|
Instance members
Instance member | Description |
|
|
Full Usage:
this.Decompose
Parameters:
bool
Returns: AsmWord[]
Returns an array of AsmWords.
Modifiers: abstract |
|
Full Usage:
this.DirectBranchTarget
Parameters:
byref<Addr>
Returns: bool
Returns true if a target address exists. Otherwise, returns false.
Modifiers: abstract |
|
Full Usage:
this.Disasm
Returns: string
Returns a disassembled string.
Modifiers: abstract |
|
Full Usage:
this.Disasm
Parameters:
bool
-
Whether to show the instruction address in the resulting disassembly.
nameReader : INameReadable
-
When this parameter is given, we disassemble the instruction with the
given name reader to resolve symbols in the instruction. For example,
when there is a call target, the disassembled string will show the
target function name if this parameter is given and the corresponding
symbol information exists. This parameter can be null.
Returns: string
Returns a disassembled string.
Modifiers: abstract |
|
|
Return an array of possible next instruction addresses along with their ArchOperationMode. For branch instructions, the returned sequence includes jump target(s). For regular instructions, the sequence is a singleton of the fall-through address. This function does not resolve indirect branch targets.
|
Full Usage:
this.Immediate
Parameters:
byref<int64>
Returns: bool
Returns true if an immediate exists. Otherwise, returns false.
Modifiers: abstract |
|
Full Usage:
this.IndirectTrampolineAddr
Parameters:
byref<Addr>
Returns: bool
Returns true if a trampoline address exists. Otherwise, returns false.
Modifiers: abstract |
|
Full Usage:
this.InterruptNum
Parameters:
byref<int64>
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.IsBranch
Returns: bool
Returns true if this is a branch instruction.
Modifiers: abstract |
|
Full Usage:
this.IsCJmpOnTrue
Returns: bool
Returns true if this is a conditional branch instruction, and jumps to
the target when the predicate is true.
Modifiers: abstract |
|
Full Usage:
this.IsCall
Returns: bool
Returns true if this is a call instruction.
Modifiers: abstract |
|
Full Usage:
this.IsCondBranch
Returns: bool
Returns true if this is a conditional branch instruction.
Modifiers: abstract |
|
Full Usage:
this.IsDirectBranch
Returns: bool
Returns true if this is a direct branch instruction.
Modifiers: abstract |
|
Full Usage:
this.IsExit
Returns: bool
Returns true if this instruction should be at the end of the
corresponding basic block.
Modifiers: abstract |
|
Full Usage:
this.IsIndirectBranch
Returns: bool
Returns true if this is an indirect branch instruction.
Modifiers: abstract |
|
Full Usage:
this.IsInlinedAssembly
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.IsInterrupt
Returns: bool
Returns true if this is an interrupt instruction
Modifiers: abstract |
|
Full Usage:
this.IsModeChanging
Returns: bool
Returns true if this is a mode-changing instruction.
Modifiers: abstract |
|
Full Usage:
this.IsNop
Returns: bool
Returns true if this instruction is a NO-OP.
Modifiers: abstract |
|
Full Usage:
this.IsRET
Returns: bool
Returns true if this is a return instruction.
Modifiers: abstract |
|
Full Usage:
this.IsTerminator
Returns: bool
Returns true if this instruction should be at the end of the
corresponding basic block.
Modifiers: abstract |
|
Full Usage:
this.Length
Returns: uint32
|
|
Full Usage:
this.Translate
Parameters:
TranslationContext
-
Translation context.
Returns: Stmt[]
Returns an array of LowUIR statements.
Modifiers: abstract |
|
Full Usage:
this.TranslateToList
Parameters:
TranslationContext
-
Translation context.
Returns: List<Stmt>
Returns a list of LowUIR statements.
Modifiers: abstract |
|
|
The word size used for translating this instruction. Some architectures have several representations of their instruction sets depending on the word size. For example, Intel can be represented as either x86 or x86-64 depending on the word size used. We store this information per instruction to distinguish specific instruction sets used.
|