Disasm
|
|
Disp
|
|
EVEXPrefix
|
|
IntelInstruction
|
The internal representation for an Intel instruction used by our
disassembler and lifter.
|
IntelInternalInstruction
|
|
IntelParser
|
Parser for Intel (x86 or x86-64) instructions. Parser will return a
platform-agnostic instruction type (Instruction).
|
IntelRegisterFactory
|
|
IntelTranslationContext
|
Translation context for Intel (x86 or x86-64) instructions.
|
JumpTarget
|
Jump target of a branch instruction.
|
MPref
|
Mandatory prefixes. The 66H, F2H, and F3H prefixes are mandatory for opcode
extensions.
|
OD
|
|
Offset
|
|
Opcode
|
Intel opcodes. This type should be generated using
scripts/genOpcode.fsx from the `IntelSupportedOpcodes.txt` file.
|
Operand
|
We define four different types of X86 operands:
register, memory, direct address, and immediate.
|
Operands
|
A set of operands in an X86 instruction.
|
OperandSize
|
|
OpGroup
|
Opcode groups defined in manual Vol 2. Table A-6.
|
OprDesc
|
Operand descriptor, which describes the shape of operands in an instruction.
|
Prefix
|
|
RegExprs
|
|
RegGrp
|
We define 8 different RegGrp types. Intel instructions use an integer value
such as a REG field of a ModR/M value.
|
Register (Module)
|
This module exposes several useful functions to handle Intel registers.
|
Register (Type)
|
Registers for x86 (and x86-64).
|
REXPrefix
|
|
Scale
|
The scale of Scaled Index.
|
ScaledIndex
|
|
Selector
|
|
StaticRoundingMode
|
|
SzCond
|
Specific conditions for determining the size of operands.
(See Table A-1, Appendix A.2.5 of Vol. 2D).
|
TT
|
|
TupleType
|
The tupletype will be referenced in the instruction operand encoding table
in the reference page of each instruction, providing the cross reference for
the scaling factor N to encoding memory addressing operand.
|
UnknownRegException
|
This exception occurs when an UnknownReg is explicitly used. This exception
should not happen in general.
|
VEXInfo
|
Information about Intel vector extension.
|
VEXType
|
Types of VEX (Vector Extension).
|
ZeroingOrMerging
|
Vector destination merging/zeroing: P[23] encodes the destination result
behavior which either zeroes the masked elements or leave masked element
unchanged.
|