zydis/include/Zydis/DecoderTypes.h

1360 lines
39 KiB
C
Raw Normal View History

2016-05-26 03:25:48 +08:00
/***************************************************************************************************
Zyan Disassembler Library (Zydis)
2016-05-26 03:25:48 +08:00
Original Author : Florian Bernd
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
***************************************************************************************************/
/**
* @file
* @brief Defines the basic @c ZydisDecodedInstruction and @c ZydisDecodedOperand structs.
2016-05-26 03:25:48 +08:00
*/
#ifndef ZYDIS_INSTRUCTIONINFO_H
#define ZYDIS_INSTRUCTIONINFO_H
#include <Zydis/CommonTypes.h>
#include <Zydis/MetaInfo.h>
2016-05-26 03:25:48 +08:00
#include <Zydis/Mnemonic.h>
#include <Zydis/Register.h>
#include <Zydis/SharedTypes.h>
2016-05-26 03:25:48 +08:00
#ifdef __cplusplus
extern "C" {
#endif
/* ============================================================================================== */
2017-07-03 09:14:01 +08:00
/* Decoded operand */
/* ============================================================================================== */
2016-05-26 03:25:48 +08:00
2017-10-27 02:10:51 +08:00
/* ---------------------------------------------------------------------------------------------- */
/* Memory type */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisMemoryOperandType datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisMemoryOperandType;
2017-10-27 02:10:51 +08:00
/**
* @brief Values that represent memory-operand types.
*/
enum ZydisMemoryOperandTypes
{
ZYDIS_MEMOP_TYPE_INVALID,
/**
* @brief Normal memory operand.
*/
ZYDIS_MEMOP_TYPE_MEM,
/**
* @brief The memory operand is only used for address-generation. No real memory-access is
* caused.
*/
ZYDIS_MEMOP_TYPE_AGEN,
/**
2018-03-01 01:15:18 +08:00
* @brief A memory operand using `SIB` addressing form, where the index register is not used
* in address calculation and scale is ignored. No real memory-access is caused.
2017-10-27 02:10:51 +08:00
*/
ZYDIS_MEMOP_TYPE_MIB,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_MEMOP_TYPE_MAX_VALUE = ZYDIS_MEMOP_TYPE_MIB
2017-10-27 02:10:51 +08:00
};
/* ---------------------------------------------------------------------------------------------- */
/* Decoded operand */
/* ---------------------------------------------------------------------------------------------- */
2016-05-26 03:25:48 +08:00
/**
2017-07-03 09:14:01 +08:00
* @brief Defines the @c ZydisDecodedOperand struct.
2016-05-26 03:25:48 +08:00
*/
2017-07-03 09:14:01 +08:00
typedef struct ZydisDecodedOperand_
2016-05-26 03:25:48 +08:00
{
/**
* @brief The operand-id.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 id;
2016-05-26 03:25:48 +08:00
/**
* @brief The type of the operand.
*/
ZydisOperandType type;
/**
* @brief The visibility of the operand.
2016-05-26 03:25:48 +08:00
*/
ZydisOperandVisibility visibility;
2016-05-26 03:25:48 +08:00
/**
* @brief The operand-action.
*/
2018-03-01 01:15:18 +08:00
ZydisOperandAction action;
/**
* @brief The operand-encoding.
*/
ZydisOperandEncoding encoding;
/**
* @brief The logical size of the operand (in bits).
2016-05-26 03:25:48 +08:00
*/
2018-03-01 01:15:18 +08:00
ZydisU16 size;
/**
* @brief The element-type.
*/
ZydisElementType elementType;
/**
* @brief The size of a single element.
*/
ZydisElementSize elementSize;
/**
* @brief The number of elements.
*/
2017-11-25 08:35:22 +08:00
ZydisU16 elementCount;
2016-05-26 03:25:48 +08:00
/**
* @brief Extended info for register-operands.
2016-05-26 03:25:48 +08:00
*/
2017-09-20 21:46:51 +08:00
struct
{
/**
* @brief The register value.
*/
2018-03-01 01:15:18 +08:00
ZydisRegister value;
2017-09-20 21:46:51 +08:00
// TODO: AVX512_4VNNIW MULTISOURCE registers
} reg;
2016-05-26 03:25:48 +08:00
/**
* @brief Extended info for memory-operands.
*/
struct
{
/**
2017-10-27 02:10:51 +08:00
* @brief The type of the memory operand.
*/
2017-10-27 02:10:51 +08:00
ZydisMemoryOperandType type;
2016-05-26 03:25:48 +08:00
/**
* @brief The segment register.
*/
ZydisRegister segment;
/**
* @brief The base register.
*/
ZydisRegister base;
/**
* @brief The index register.
*/
ZydisRegister index;
/**
* @brief The scale factor.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 scale;
2016-05-26 03:25:48 +08:00
/**
* @brief Extended info for memory-operands with displacement.
2016-05-26 03:25:48 +08:00
*/
struct
{
/**
* @brief Signals, if the displacement value is used.
*/
ZydisBool hasDisplacement;
2016-05-26 03:25:48 +08:00
/**
* @brief The displacement value
*/
2017-11-25 08:35:22 +08:00
ZydisI64 value;
2016-05-26 03:25:48 +08:00
} disp;
} mem;
/**
* @brief Extended info for pointer-operands.
2016-05-26 03:25:48 +08:00
*/
2018-03-01 01:15:18 +08:00
struct
2016-05-26 03:25:48 +08:00
{
2017-11-25 08:35:22 +08:00
ZydisU16 segment;
ZydisU32 offset;
2016-05-26 03:25:48 +08:00
} ptr;
/**
* @brief Extended info for immediate-operands.
2016-05-26 03:25:48 +08:00
*/
struct
{
/**
* @brief Signals, if the immediate value is signed.
*/
ZydisBool isSigned;
2016-05-26 03:25:48 +08:00
/**
2018-03-01 01:15:18 +08:00
* @brief Signals, if the immediate value contains a relative offset. You can use
* @c ZydisCalcAbsoluteAddress to determine the absolute address value.
2016-05-26 03:25:48 +08:00
*/
ZydisBool isRelative;
2016-05-26 03:25:48 +08:00
/**
* @brief The immediate value.
*/
2018-03-01 01:15:18 +08:00
union
2016-05-26 03:25:48 +08:00
{
2017-11-25 08:35:22 +08:00
ZydisU64 u;
2018-03-01 01:15:18 +08:00
ZydisI64 s;
2016-05-26 03:25:48 +08:00
} value;
} imm;
2017-07-03 09:14:01 +08:00
} ZydisDecodedOperand;
2016-05-26 03:25:48 +08:00
2017-10-27 02:10:51 +08:00
/* ---------------------------------------------------------------------------------------------- */
/* ============================================================================================== */
/* Decoded instruction */
/* ============================================================================================== */
/* ---------------------------------------------------------------------------------------------- */
/* Instruction attributes */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisInstructionAttributes datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU64 ZydisInstructionAttributes;
/**
* @brief The instruction has the ModRM byte.
*/
#define ZYDIS_ATTRIB_HAS_MODRM 0x0000000000000001 // (1 << 0)
/**
* @brief The instruction has the SUB byte.
*/
#define ZYDIS_ATTRIB_HAS_SIB 0x0000000000000002 // (1 << 1)
/**
* @brief The instruction has the REX prefix.
*/
#define ZYDIS_ATTRIB_HAS_REX 0x0000000000000004 // (1 << 2)
/**
* @brief The instruction has the XOP prefix.
*/
#define ZYDIS_ATTRIB_HAS_XOP 0x0000000000000008 // (1 << 3)
/**
* @brief The instruction has the VEX prefix.
*/
#define ZYDIS_ATTRIB_HAS_VEX 0x0000000000000010 // (1 << 4)
/**
* @brief The instruction has the EVEX prefix.
*/
#define ZYDIS_ATTRIB_HAS_EVEX 0x0000000000000020 // (1 << 5)
/**
* @brief The instruction has the MVEX prefix.
*/
#define ZYDIS_ATTRIB_HAS_MVEX 0x0000000000000040 // (1 << 6)
/**
* @brief The instruction has one or more operands with position-relative offsets.
*/
#define ZYDIS_ATTRIB_IS_RELATIVE 0x0000000000000080 // (1 << 7)
/**
2017-01-13 01:54:16 +08:00
* @brief The instruction is privileged.
*
* Priviliged instructions are any instructions that require a current ring level below 3.
*/
#define ZYDIS_ATTRIB_IS_PRIVILEGED 0x0000000000000100 // (1 << 8)
/**
* @brief The instruction is a far JMP/CALL/RET.
*/
#define ZYDIS_ATTRIB_IS_FAR_BRANCH 0x0000001000000000 // (1 << 36) // TODO: rebase
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the lock prefix (0xF0).
*/
#define ZYDIS_ATTRIB_ACCEPTS_LOCK 0x0000000000000200 // (1 << 9)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the rep prefix (0xF3).
*/
#define ZYDIS_ATTRIB_ACCEPTS_REP 0x0000000000000400 // (1 << 10)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the repe/repz prefix (0xF3).
*/
#define ZYDIS_ATTRIB_ACCEPTS_REPE 0x0000000000000800 // (1 << 11)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the repe/repz prefix (0xF3).
*/
#define ZYDIS_ATTRIB_ACCEPTS_REPZ 0x0000000000000800 // (1 << 11)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the repne/repnz prefix (0xF2).
*/
#define ZYDIS_ATTRIB_ACCEPTS_REPNE 0x0000000000001000 // (1 << 12)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the repne/repnz prefix (0xF2).
*/
#define ZYDIS_ATTRIB_ACCEPTS_REPNZ 0x0000000000001000 // (1 << 12)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the bound prefix (0xF2).
*/
#define ZYDIS_ATTRIB_ACCEPTS_BOUND 0x0000000000002000 // (1 << 13)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the xacquire prefix (0xF2).
*/
#define ZYDIS_ATTRIB_ACCEPTS_XACQUIRE 0x0000000000004000 // (1 << 14)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction accepts the xrelease prefix (0xF3).
*/
#define ZYDIS_ATTRIB_ACCEPTS_XRELEASE 0x0000000000008000 // (1 << 15)
/**
* @brief The instruction accepts the xacquire/xrelease prefixes (0xF2, 0xF3) without the
* lock-prefix (0x0F).
*/
#define ZYDIS_ATTRIB_ACCEPTS_HLE_WITHOUT_LOCK 0x0000000000010000 // (1 << 16)
/**
* @brief The instruction accepts branch hints (0x2E, 0x3E).
*/
#define ZYDIS_ATTRIB_ACCEPTS_BRANCH_HINTS 0x0000000000020000 // (1 << 17)
/**
* @brief The instruction accepts segment prefixes (0x2E, 0x36, 0x3E, 0x26, 0x64, 0x65).
*/
#define ZYDIS_ATTRIB_ACCEPTS_SEGMENT 0x0000000000040000 // (1 << 18)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the lock prefix (0xF0).
*/
#define ZYDIS_ATTRIB_HAS_LOCK 0x0000000000080000 // (1 << 19)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the rep prefix (0xF3).
*/
#define ZYDIS_ATTRIB_HAS_REP 0x0000000000100000 // (1 << 20)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the repe/repz prefix (0xF3).
*/
#define ZYDIS_ATTRIB_HAS_REPE 0x0000000000200000 // (1 << 21)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the repe/repz prefix (0xF3).
*/
#define ZYDIS_ATTRIB_HAS_REPZ 0x0000000000200000 // (1 << 21)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the repne/repnz prefix (0xF2).
*/
#define ZYDIS_ATTRIB_HAS_REPNE 0x0000000000400000 // (1 << 22)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the repne/repnz prefix (0xF2).
*/
#define ZYDIS_ATTRIB_HAS_REPNZ 0x0000000000400000 // (1 << 22)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the bound prefix (0xF2).
*/
#define ZYDIS_ATTRIB_HAS_BOUND 0x0000000000800000 // (1 << 23)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the xacquire prefix (0xF2).
*/
#define ZYDIS_ATTRIB_HAS_XACQUIRE 0x0000000001000000 // (1 << 24)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the xrelease prefix (0xF3).
*/
#define ZYDIS_ATTRIB_HAS_XRELEASE 0x0000000002000000 // (1 << 25)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the branch-not-taken hint (0x2E).
*/
#define ZYDIS_ATTRIB_HAS_BRANCH_NOT_TAKEN 0x0000000004000000 // (1 << 26)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the branch-taken hint (0x3E).
*/
#define ZYDIS_ATTRIB_HAS_BRANCH_TAKEN 0x0000000008000000 // (1 << 27)
/**
* @brief The instruction has a segment modifier.
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT 0x00000003F0000000
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the CS segment modifier (0x2E).
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT_CS 0x0000000010000000 // (1 << 28)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the SS segment modifier (0x36).
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT_SS 0x0000000020000000 // (1 << 29)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the DS segment modifier (0x3E).
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT_DS 0x0000000040000000 // (1 << 30)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the ES segment modifier (0x26).
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT_ES 0x0000000080000000 // (1 << 31)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the FS segment modifier (0x64).
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT_FS 0x0000000100000000 // (1 << 32)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the GS segment modifier (0x65).
*/
#define ZYDIS_ATTRIB_HAS_SEGMENT_GS 0x0000000200000000 // (1 << 33)
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the operand-size prefix (0x66).
*/
#define ZYDIS_ATTRIB_HAS_OPERANDSIZE 0x0000000400000000 // (1 << 34) // TODO: rename
/**
2018-03-01 01:15:18 +08:00
* @brief The instruction has the address-size prefix (0x67).
*/
#define ZYDIS_ATTRIB_HAS_ADDRESSSIZE 0x0000000800000000 // (1 << 35) // TODO: rename
/* ---------------------------------------------------------------------------------------------- */
/* R/E/FLAGS info */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisCPUFlag datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisCPUFlag;
/**
* @brief Defines the @c ZydisCPUFlagMask datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU32 ZydisCPUFlagMask;
/**
* @brief Values that represent CPU-flags.
*/
enum ZydisCPUFlags
{
/**
* @brief Carry flag.
*/
ZYDIS_CPUFLAG_CF,
/**
* @brief Parity flag.
*/
ZYDIS_CPUFLAG_PF,
/**
* @brief Adjust flag.
*/
ZYDIS_CPUFLAG_AF,
/**
* @brief Zero flag.
*/
ZYDIS_CPUFLAG_ZF,
/**
* @brief Sign flag.
*/
ZYDIS_CPUFLAG_SF,
/**
* @brief Trap flag.
*/
ZYDIS_CPUFLAG_TF,
/**
* @brief Interrupt enable flag.
*/
ZYDIS_CPUFLAG_IF,
/**
* @brief Direction flag.
*/
ZYDIS_CPUFLAG_DF,
/**
* @brief Overflow flag.
*/
ZYDIS_CPUFLAG_OF,
/**
* @brief I/O privilege level flag.
*/
ZYDIS_CPUFLAG_IOPL,
/**
* @brief Nested task flag.
*/
ZYDIS_CPUFLAG_NT,
/**
* @brief Resume flag.
*/
ZYDIS_CPUFLAG_RF,
/**
* @brief Virtual 8086 mode flag.
*/
ZYDIS_CPUFLAG_VM,
/**
* @brief Alignment check.
*/
ZYDIS_CPUFLAG_AC,
/**
* @brief Virtual interrupt flag.
*/
ZYDIS_CPUFLAG_VIF,
/**
* @brief Virtual interrupt pending.
*/
ZYDIS_CPUFLAG_VIP,
/**
* @brief Able to use CPUID instruction.
*/
ZYDIS_CPUFLAG_ID,
/**
* @brief FPU condition-code flag 0.
*/
ZYDIS_CPUFLAG_C0,
/**
* @brief FPU condition-code flag 1.
*/
ZYDIS_CPUFLAG_C1,
/**
* @brief FPU condition-code flag 2.
*/
ZYDIS_CPUFLAG_C2,
/**
* @brief FPU condition-code flag 3.
*/
ZYDIS_CPUFLAG_C3,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_CPUFLAG_MAX_VALUE = ZYDIS_CPUFLAG_C3
};
/**
* @brief Defines the @c ZydisCPUFlagAction datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisCPUFlagAction;
/**
* @brief Values that represent CPU-flag actions.
*/
enum ZydisCPUFlagActions
{
/**
* @brief The CPU flag is not touched by the instruction.
*/
ZYDIS_CPUFLAG_ACTION_NONE,
/**
* @brief The CPU flag is tested (read).
*/
ZYDIS_CPUFLAG_ACTION_TESTED,
/**
* @brief The CPU flag is tested and modified aferwards (read-write).
*/
ZYDIS_CPUFLAG_ACTION_TESTED_MODIFIED,
/**
* @brief The CPU flag is modified (write).
*/
ZYDIS_CPUFLAG_ACTION_MODIFIED,
/**
* @brief The CPU flag is set to 0 (write).
*/
ZYDIS_CPUFLAG_ACTION_SET_0,
/**
* @brief The CPU flag is set to 1 (write).
*/
ZYDIS_CPUFLAG_ACTION_SET_1,
/**
* @brief The CPU flag is undefined (write).
*/
ZYDIS_CPUFLAG_ACTION_UNDEFINED,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_CPUFLAG_ACTION_MAX_VALUE = ZYDIS_CPUFLAG_ACTION_UNDEFINED
};
2017-07-01 07:10:03 +08:00
/* ---------------------------------------------------------------------------------------------- */
/* SSE/AVX exception-class */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisExceptionClass datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisExceptionClass;
2017-07-01 07:10:03 +08:00
/**
* @brief Values that represent exception-classes.
*/
enum ZydisExceptionClasses
{
ZYDIS_EXCEPTION_CLASS_NONE,
// TODO: FP Exceptions
ZYDIS_EXCEPTION_CLASS_SSE1,
ZYDIS_EXCEPTION_CLASS_SSE2,
ZYDIS_EXCEPTION_CLASS_SSE3,
ZYDIS_EXCEPTION_CLASS_SSE4,
ZYDIS_EXCEPTION_CLASS_SSE5,
ZYDIS_EXCEPTION_CLASS_SSE7,
ZYDIS_EXCEPTION_CLASS_AVX1,
ZYDIS_EXCEPTION_CLASS_AVX2,
ZYDIS_EXCEPTION_CLASS_AVX3,
ZYDIS_EXCEPTION_CLASS_AVX4,
ZYDIS_EXCEPTION_CLASS_AVX5,
ZYDIS_EXCEPTION_CLASS_AVX6,
ZYDIS_EXCEPTION_CLASS_AVX7,
ZYDIS_EXCEPTION_CLASS_AVX8,
ZYDIS_EXCEPTION_CLASS_AVX11,
ZYDIS_EXCEPTION_CLASS_AVX12,
2017-07-01 07:10:03 +08:00
ZYDIS_EXCEPTION_CLASS_E1,
ZYDIS_EXCEPTION_CLASS_E1NF,
ZYDIS_EXCEPTION_CLASS_E2,
ZYDIS_EXCEPTION_CLASS_E2NF,
ZYDIS_EXCEPTION_CLASS_E3,
ZYDIS_EXCEPTION_CLASS_E3NF,
ZYDIS_EXCEPTION_CLASS_E4,
ZYDIS_EXCEPTION_CLASS_E4NF,
ZYDIS_EXCEPTION_CLASS_E5,
ZYDIS_EXCEPTION_CLASS_E5NF,
ZYDIS_EXCEPTION_CLASS_E6,
ZYDIS_EXCEPTION_CLASS_E6NF,
ZYDIS_EXCEPTION_CLASS_E7NM,
ZYDIS_EXCEPTION_CLASS_E7NM128,
ZYDIS_EXCEPTION_CLASS_E9NF,
ZYDIS_EXCEPTION_CLASS_E10,
ZYDIS_EXCEPTION_CLASS_E10NF,
ZYDIS_EXCEPTION_CLASS_E11,
ZYDIS_EXCEPTION_CLASS_E11NF,
2017-07-01 07:10:03 +08:00
ZYDIS_EXCEPTION_CLASS_E12,
ZYDIS_EXCEPTION_CLASS_E12NP,
ZYDIS_EXCEPTION_CLASS_K20,
ZYDIS_EXCEPTION_CLASS_K21,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_EXCEPTION_CLASS_MAX_VALUE = ZYDIS_EXCEPTION_CLASS_K21
2017-07-01 07:10:03 +08:00
};
/* ---------------------------------------------------------------------------------------------- */
/* AVX vector-length */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisVectorLength datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU16 ZydisVectorLength;
/**
* @brief Values that represent vector-lengths.
*/
enum ZydisVectorLengths
{
ZYDIS_VECTOR_LENGTH_INVALID = 0,
ZYDIS_VECTOR_LENGTH_128 = 128,
ZYDIS_VECTOR_LENGTH_256 = 256,
ZYDIS_VECTOR_LENGTH_512 = 512,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_VECTOR_LENGTH_MAX_VALUE = ZYDIS_VECTOR_LENGTH_512
};
/* ---------------------------------------------------------------------------------------------- */
/* AVX mask mode */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisMaskMode datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisMaskMode;
/**
* @brief Values that represent AVX mask-modes.
*/
enum ZydisMaskModes
{
ZYDIS_MASK_MODE_INVALID,
// TODO: Add `ZYDIS_MASK_MODE_DISABLED` for for `EVEX`/`MVEX` instructions with `K0` mask
// TODO: Add `ZYDIS_MASK_MODE_CONTROL` and `ZYDIS_MASK_MODE_CONTROL_ZERO` as replacement for
// the `isControlMask` field
/**
2018-03-01 01:15:18 +08:00
* @brief The embedded mask register is used as a merge-mask. This is the default mode for
* all EVEX/MVEX-instructions.
*/
ZYDIS_MASK_MODE_MERGE,
/**
* @brief The embedded mask register is used as a zero-mask.
*/
ZYDIS_MASK_MODE_ZERO,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_MASK_MODE_MAX_VALUE = ZYDIS_MASK_MODE_ZERO
};
/* ---------------------------------------------------------------------------------------------- */
/* AVX broadcast-mode */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisBroadcastMode datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisBroadcastMode;
/**
* @brief Values that represent AVX broadcast-modes.
*/
enum ZydisBroadcastModes
{
ZYDIS_BROADCAST_MODE_INVALID,
ZYDIS_BROADCAST_MODE_1_TO_2,
ZYDIS_BROADCAST_MODE_1_TO_4,
ZYDIS_BROADCAST_MODE_1_TO_8,
ZYDIS_BROADCAST_MODE_1_TO_16,
ZYDIS_BROADCAST_MODE_1_TO_32,
ZYDIS_BROADCAST_MODE_1_TO_64,
ZYDIS_BROADCAST_MODE_2_TO_4,
ZYDIS_BROADCAST_MODE_2_TO_8,
ZYDIS_BROADCAST_MODE_2_TO_16,
ZYDIS_BROADCAST_MODE_4_TO_8,
ZYDIS_BROADCAST_MODE_4_TO_16,
ZYDIS_BROADCAST_MODE_8_TO_16,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_BROADCAST_MODE_MAX_VALUE = ZYDIS_BROADCAST_MODE_8_TO_16
};
/* ---------------------------------------------------------------------------------------------- */
/* AVX rounding-mode */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisRoundingMode datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisRoundingMode;
/**
* @brief Values that represent AVX rounding-modes.
*/
enum ZydisRoundingModes
{
ZYDIS_ROUNDING_MODE_INVALID,
/**
* @brief Round to nearest.
*/
ZYDIS_ROUNDING_MODE_RN,
/**
* @brief Round down.
*/
ZYDIS_ROUNDING_MODE_RD,
/**
* @brief Round up.
*/
ZYDIS_ROUNDING_MODE_RU,
/**
* @brief Round towards zero.
*/
ZYDIS_ROUNDING_MODE_RZ,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_ROUNDING_MODE_MAX_VALUE = ZYDIS_ROUNDING_MODE_RZ
};
/* ---------------------------------------------------------------------------------------------- */
/* KNC swizzle-mode */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisSwizzleMode datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisSwizzleMode;
/**
* @brief Values that represent swizzle-modes.
*/
enum ZydisSwizzleModes
{
ZYDIS_SWIZZLE_MODE_INVALID,
ZYDIS_SWIZZLE_MODE_DCBA,
ZYDIS_SWIZZLE_MODE_CDAB,
ZYDIS_SWIZZLE_MODE_BADC,
ZYDIS_SWIZZLE_MODE_DACB,
ZYDIS_SWIZZLE_MODE_AAAA,
ZYDIS_SWIZZLE_MODE_BBBB,
ZYDIS_SWIZZLE_MODE_CCCC,
ZYDIS_SWIZZLE_MODE_DDDD,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_SWIZZLE_MODE_MAX_VALUE = ZYDIS_SWIZZLE_MODE_DDDD
};
/* ---------------------------------------------------------------------------------------------- */
/* KNC conversion-mode */
/* ---------------------------------------------------------------------------------------------- */
/**
* @brief Defines the @c ZydisConversionMode datatype.
*/
2017-11-25 08:35:22 +08:00
typedef ZydisU8 ZydisConversionMode;
/**
* @brief Values that represent conversion-modes.
*/
enum ZydisConversionModes
{
ZYDIS_CONVERSION_MODE_INVALID,
ZYDIS_CONVERSION_MODE_FLOAT16,
ZYDIS_CONVERSION_MODE_SINT8,
ZYDIS_CONVERSION_MODE_UINT8,
ZYDIS_CONVERSION_MODE_SINT16,
ZYDIS_CONVERSION_MODE_UINT16,
/**
* @brief Maximum value of this enum.
*/
ZYDIS_CONVERSION_MODE_MAX_VALUE = ZYDIS_CONVERSION_MODE_UINT16
};
/* ---------------------------------------------------------------------------------------------- */
2017-07-03 09:14:01 +08:00
/* Decoded instruction */
/* ---------------------------------------------------------------------------------------------- */
/**
2017-07-03 09:14:01 +08:00
* @brief Defines the @c ZydisDecodedInstruction struct.
*/
2017-07-03 09:14:01 +08:00
typedef struct ZydisDecodedInstruction_
{
/**
* @brief The machine mode used to decode this instruction.
*/
ZydisMachineMode machineMode;
2016-05-26 03:25:48 +08:00
/**
* @brief The instruction-mnemonic.
*/
2018-03-01 01:15:18 +08:00
ZydisMnemonic mnemonic;
2016-05-26 03:25:48 +08:00
/**
* @brief The length of the decoded instruction.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 length;
2016-05-26 03:25:48 +08:00
/**
* @brief The raw bytes of the decoded instruction.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 data[ZYDIS_MAX_INSTRUCTION_LENGTH];
2016-05-26 03:25:48 +08:00
/**
* @brief The instruction-encoding (default, 3DNow, VEX, EVEX, XOP).
2016-05-26 03:25:48 +08:00
*/
ZydisInstructionEncoding encoding;
/**
* @brief The opcode-map.
*/
ZydisOpcodeMap opcodeMap;
/**
* @brief The instruction-opcode.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 opcode;
/**
* @brief The stack width.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 stackWidth;
/**
* @brief The effective operand width.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 operandWidth;
/**
* @brief The effective address width.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 addressWidth;
2016-05-26 03:25:48 +08:00
/**
* @brief The number of instruction-operands.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 operandCount;
2016-05-26 03:25:48 +08:00
/**
* @brief Detailed info for all instruction operands.
*/
ZydisDecodedOperand operands[ZYDIS_MAX_OPERAND_COUNT];
2016-11-24 17:57:23 +08:00
/**
* @brief Instruction attributes.
2016-11-24 17:57:23 +08:00
*/
ZydisInstructionAttributes attributes;
2016-11-24 17:57:23 +08:00
/**
* @brief The instruction address points at the current instruction (based on the initial
* instruction pointer).
2016-11-24 17:57:23 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU64 instrAddress;
/**
* @brief Information about accessed CPU flags.
*/
struct
{
/**
* @brief The CPU-flag action.
2018-03-01 01:15:18 +08:00
*
* You can call `ZydisGetAccessedFlagsByAction` to get a mask with all flags matching a
* specific action.
*/
ZydisCPUFlagAction action;
} accessedFlags[ZYDIS_CPUFLAG_MAX_VALUE + 1];
2016-05-26 03:25:48 +08:00
/**
* @brief Extended info for AVX instructions.
2016-05-26 03:25:48 +08:00
*/
struct
{
/**
* @brief The AVX vector-length.
*/
ZydisVectorLength vectorLength;
/**
2018-03-23 02:09:35 +08:00
* @brief Info about the embedded writemask-register (`AVX-512` and `KNC` only).
*/
struct
{
/**
* @brief The masking mode.
*/
ZydisMaskMode mode;
/**
* @brief The mask register.
*/
ZydisRegister reg;
/**
2018-03-01 01:15:18 +08:00
* @brief Signals, if the mask-register is used as a control mask.
*/
ZydisBool isControlMask;
} mask;
/**
* @brief Contains info about the AVX broadcast.
*/
struct
{
/**
* @brief Signals, if the broadcast is a static broadcast.
2018-03-01 01:15:18 +08:00
*
* This is the case for instructions with inbuild broadcast functionality, that is
2018-03-23 02:09:35 +08:00
* always active controlled by the `EVEX/MVEX.RC` bits.
*/
ZydisBool isStatic;
/**
* @brief The AVX broadcast-mode.
*/
ZydisBroadcastMode mode;
} broadcast;
/**
* @brief Contains info about the AVX rounding.
*/
struct
{
/**
* @brief The AVX rounding-mode.
*/
2018-03-01 01:15:18 +08:00
ZydisRoundingMode mode;
} rounding;
/**
2018-03-23 02:09:35 +08:00
* @brief Contains info about the AVX register-swizzle (`KNC` only).
*/
struct
{
/**
2018-03-23 02:09:35 +08:00
* @brief The AVX register-swizzle mode.
*/
2018-03-01 01:15:18 +08:00
ZydisSwizzleMode mode;
} swizzle;
/**
2018-03-23 02:09:35 +08:00
* @brief Contains info about the AVX data-conversion (`KNC` only).
*/
struct
{
/**
2018-03-23 02:09:35 +08:00
* @brief The AVX data-conversion mode.
*/
2018-03-01 01:15:18 +08:00
ZydisConversionMode mode;
} conversion;
/**
* @brief Signals, if the sae functionality is enabled for the instruction.
*/
ZydisBool hasSAE;
/**
2018-03-23 02:09:35 +08:00
* @brief Signals, if the instruction has a memory eviction-hint (`KNC` only).
*/
ZydisBool hasEvictionHint;
// TODO: publish EVEX tuple-type and MVEX functionality
} avx;
/**
* @brief Meta info.
*/
struct
{
/**
* @brief The instruction category.
*/
ZydisInstructionCategory category;
/**
* @brief The ISA-set.
*/
ZydisISASet isaSet;
/**
* @brief The ISA-set extension.
*/
ZydisISAExt isaExt;
/**
* @brief The exception class.
*/
ZydisExceptionClass exceptionClass;
} meta;
2016-05-26 03:25:48 +08:00
/**
2018-03-01 01:15:18 +08:00
* @brief Extended info about different instruction-parts like ModRM, SIB or
2016-05-26 03:25:48 +08:00
* encoding-prefixes.
*/
struct
{
/**
* @brief Detailed info about the legacy prefixes
*/
struct
{
2017-11-25 08:35:22 +08:00
ZydisU8 data[ZYDIS_MAX_INSTRUCTION_LENGTH - 1];
ZydisU8 count;
ZydisU8 hasF0;
ZydisU8 hasF3;
ZydisU8 hasF2;
ZydisU8 has2E;
ZydisU8 has36;
ZydisU8 has3E;
ZydisU8 has26;
ZydisU8 has64;
ZydisU8 has65;
ZydisU8 has66;
ZydisU8 has67;
} prefixes;
2016-05-26 03:25:48 +08:00
/**
* @brief Detailed info about the REX-prefix.
2016-05-26 03:25:48 +08:00
*/
struct
{
/**
* @brief @c TRUE if the prefix got already decoded.
2016-05-26 03:25:48 +08:00
*/
ZydisBool isDecoded;
2016-05-26 03:25:48 +08:00
/**
* @brief The raw bytes of the prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 data[1];
2016-05-26 03:25:48 +08:00
/**
* @brief 64-bit operand-size promotion.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 W;
2016-05-26 03:25:48 +08:00
/**
* @brief Extension of the ModRM.reg field.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R;
2016-05-26 03:25:48 +08:00
/**
* @brief Extension of the SIB.index field.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 X;
2016-05-26 03:25:48 +08:00
/**
* @brief Extension of the ModRM.rm, SIB.base, or opcode.reg field.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 B;
2018-03-01 01:15:18 +08:00
} rex;
/**
* @brief Detailed info about the XOP-prefix.
*/
struct
{
/**
* @brief @c TRUE if the prefix got already decoded.
*/
ZydisBool isDecoded;
/**
* @brief The raw bytes of the prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 data[3];
/**
* @brief Extension of the ModRM.reg field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R;
/**
* @brief Extension of the SIB.index field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 X;
/**
* @brief Extension of the ModRM.rm, SIB.base, or opcode.reg field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 B;
/**
* @brief Opcode-map specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 m_mmmm;
/**
* @brief 64-bit operand-size promotion or opcode-extension.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 W;
/**
* @brief NDS register specifier (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 vvvv;
/**
* @brief Vector-length specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 L;
/**
* @brief Compressed legacy prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 pp;
} xop;
2016-05-26 03:25:48 +08:00
/**
* @brief Detailed info about the VEX-prefix.
2016-05-26 03:25:48 +08:00
*/
struct
{
/**
* @brief @c TRUE if the prefix got already decoded.
2016-05-26 03:25:48 +08:00
*/
ZydisBool isDecoded;
2016-05-26 03:25:48 +08:00
/**
* @brief The raw bytes of the prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 data[3];
/**
* @brief Extension of the ModRM.reg field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R;
/**
* @brief Extension of the SIB.index field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 X;
/**
* @brief Extension of the ModRM.rm, SIB.base, or opcode.reg field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 B;
/**
* @brief Opcode-map specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 m_mmmm;
/**
* @brief 64-bit operand-size promotion or opcode-extension.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 W;
/**
* @brief NDS register specifier (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 vvvv;
/**
* @brief Vector-length specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 L;
/**
* @brief Compressed legacy prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 pp;
2016-05-26 03:25:48 +08:00
} vex;
/**
* @brief Detailed info about the EVEX-prefix.
2016-05-26 03:25:48 +08:00
*/
struct
{
/**
* @brief @c TRUE if the prefix got already decoded.
2016-05-26 03:25:48 +08:00
*/
ZydisBool isDecoded;
2016-05-26 03:25:48 +08:00
/**
* @brief The raw bytes of the prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 data[4];
2016-05-26 03:25:48 +08:00
/**
* @brief Extension of the ModRM.reg field (inverted).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R;
2016-05-26 03:25:48 +08:00
/**
* @brief Extension of the SIB.index/vidx field (inverted).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 X;
2016-05-26 03:25:48 +08:00
/**
* @brief Extension of the ModRM.rm or SIB.base field (inverted).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 B;
2016-05-26 03:25:48 +08:00
/**
* @brief High-16 register specifier modifier (inverted).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R2;
2016-05-26 03:25:48 +08:00
/**
* @brief Opcode-map specifier.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 mm;
2016-05-26 03:25:48 +08:00
/**
* @brief 64-bit operand-size promotion or opcode-extension.
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 W;
2016-05-26 03:25:48 +08:00
/**
* @brief NDS register specifier (inverted).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 vvvv;
2016-05-26 03:25:48 +08:00
/**
* @brief Compressed legacy prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 pp;
2016-05-26 03:25:48 +08:00
/**
* @brief Zeroing/Merging.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 z;
2016-05-26 03:25:48 +08:00
/**
* @brief Vector-length specifier or rounding-control (most significant bit).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 L2;
2016-05-26 03:25:48 +08:00
/**
* @brief Vector-length specifier or rounding-control (least significant bit).
2016-05-26 03:25:48 +08:00
*/
2017-11-25 08:35:22 +08:00
ZydisU8 L;
2016-05-26 03:25:48 +08:00
/**
* @brief Broadcast/RC/SAE Context.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 b;
2016-05-26 03:25:48 +08:00
/**
* @brief High-16 NDS/VIDX register specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 V2;
2016-05-26 03:25:48 +08:00
/**
* @brief Embedded opmask register specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 aaa;
2016-05-26 03:25:48 +08:00
} evex;
/**
* @brief Detailed info about the MVEX-prefix.
*/
struct
{
/**
* @brief @c TRUE if the prefix got already decoded.
*/
ZydisBool isDecoded;
/**
* @brief The raw bytes of the prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 data[4];
/**
* @brief Extension of the ModRM.reg field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R;
/**
* @brief Extension of the SIB.index/vidx field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 X;
/**
* @brief Extension of the ModRM.rm or SIB.base field (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 B;
/**
* @brief High-16 register specifier modifier (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 R2;
/**
* @brief Opcode-map specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 mmmm;
/**
* @brief 64-bit operand-size promotion or opcode-extension.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 W;
/**
* @brief NDS register specifier (inverted).
*/
2017-11-25 08:35:22 +08:00
ZydisU8 vvvv;
/**
* @brief Compressed legacy prefix.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 pp;
/**
* @brief Non-temporal/eviction hint.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 E;
/**
* @brief Swizzle/broadcast/up-convert/down-convert/static-rounding controls.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 SSS;
/**
* @brief High-16 NDS/VIDX register specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 V2;
/**
* @brief Embedded opmask register specifier.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 kkk;
} mvex;
2016-05-26 03:25:48 +08:00
/**
* @brief Detailed info about the ModRM-byte.
2016-05-26 03:25:48 +08:00
*/
struct
{
ZydisBool isDecoded;
2017-11-25 08:35:22 +08:00
ZydisU8 data[1];
ZydisU8 mod;
ZydisU8 reg;
ZydisU8 rm;
2016-05-26 03:25:48 +08:00
} modrm;
/**
* @brief Detailed info about the SIB-byte.
2016-05-26 03:25:48 +08:00
*/
struct
{
ZydisBool isDecoded;
2017-11-25 08:35:22 +08:00
ZydisU8 data[1];
ZydisU8 scale;
ZydisU8 index;
ZydisU8 base;
2016-05-26 03:25:48 +08:00
} sib;
/**
* @brief Detailed info about displacement-bytes.
*/
struct
{
/**
* @brief The displacement value
*/
2017-11-25 08:35:22 +08:00
ZydisI64 value;
/**
* @brief The physical displacement size, in bits.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 size;
// TODO: publish cd8 scale
/**
* @brief The offset of the displacement data, relative to the beginning of the
* instruction, in bytes.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 offset;
} disp;
/**
* @brief Detailed info about immediate-bytes.
*/
struct
{
/**
* @brief Signals, if the immediate value is signed.
*/
2018-03-01 01:15:18 +08:00
ZydisBool isSigned;
/**
2018-03-01 01:15:18 +08:00
* @brief Signals, if the immediate value contains a relative offset. You can use
* @c ZydisCalcAbsoluteAddress to determine the absolute address value.
*/
ZydisBool isRelative;
/**
* @brief The immediate value.
*/
union
2018-03-01 01:15:18 +08:00
{
2017-11-25 08:35:22 +08:00
ZydisU64 u;
ZydisI64 s;
} value;
/**
* @brief The physical immediate size, in bits.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 size;
/**
* @brief The offset of the immediate data, relative to the beginning of the
* instruction, in bytes.
*/
2017-11-25 08:35:22 +08:00
ZydisU8 offset;
} imm[2];
2017-07-04 22:10:21 +08:00
} raw;
2017-07-03 09:14:01 +08:00
} ZydisDecodedInstruction;
2016-05-26 03:25:48 +08:00
/* ---------------------------------------------------------------------------------------------- */
/* ============================================================================================== */
#ifdef __cplusplus
}
#endif
#endif /* ZYDIS_INSTRUCTIONINFO_H */