Intel® X86 Encoder Decoder
Small Examples of using Intel® XED

Here is a minimal example of using Intel® XED from the file examples/xed-min.c. More...

Here is a minimal example of using Intel® XED from the file examples/xed-min.c.

/* BEGIN_LEGAL
Copyright (c) 2023 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
END_LEGAL */
#include <stdio.h>
int main(int argc, char** argv);
int main(int argc, char** argv) {
xed_address_width_enum_t stack_addr_width;
xed_bool_t long_mode = 0;
// create the decoded instruction, and fill in the machine mode (dstate)
// make up a simple 2Byte instruction to decode
unsigned int bytes = 0;
unsigned char itext[15] = { 0xf, 0x85, 0x99, 0x00, 0x00, 0x00 };
// initialize the XED tables -- one time.
// The state of the machine -- required for decoding
if (long_mode) {
stack_addr_width = XED_ADDRESS_WIDTH_64b;
}
else {
stack_addr_width = XED_ADDRESS_WIDTH_32b;
}
// This is a test of error handling. I vary the instuction length from
// 0 bytes to 15 bytes. Normally, you should send in 15 bytes of itext
// unless you are near the end of a page and don't want to take a page
// fault or tlb miss. Note, you have to reinitialize the xedd each time
// you try to decode in to it.
// Try different instruction lengths to see when XED recognizes an
// instruction as valid.
for(bytes = 0;bytes<=15;bytes++) {
xed_error_enum_t xed_error;
xed_decoded_inst_set_mode(&xedd, mmode, stack_addr_width);
xed_error = xed_decode(&xedd,
XED_STATIC_CAST(const xed_uint8_t*,itext),
bytes);
printf("%d %s\n",(int)bytes, xed_error_enum_t2str(xed_error));
}
(void) argc; (void) argv; //pacify compiler
return 0;
}

There is a makefile in the examples directory. Here's how to compile it from a kit:

% gcc -Ipath-to-xed-kit/include -Ipath-to-xed-kit/examples \
-c path-to-xed-kit/examples/xed-min.c
% gcc -o xed-min xed-min.o path-to-xed-kit/lib/libxed.a

where path-to-xed-kit is where you have your include, examples and lib directories from an installed Intel® XED kit.

Here is a more detailed example (examples/xed-ex1.c) that walks the operands much like the printing routines do for the xed_decoded_inst_t .

/* BEGIN_LEGAL
Copyright (c) 2023 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
END_LEGAL */
#include "xed-examples-util.h"
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
int main(int argc, char** argv);
void print_misc(xed_decoded_inst_t* xedd) {
xed_uint_t i=0, j=0;
const xed_inst_t* xi = xed_decoded_inst_inst(xedd);
printf("REAL REP ");
printf("\tcorresponding no-rep iclass: %s\n" ,
}
printf("F3 PREFIX\n");
}
printf("F2 PREFIX\n");
}
printf("67 PREFIX\n");
}
/* this 66 prefix is not part of the opcode */
printf("66-OSZ PREFIX\n");
}
/* this 66 prefix is mandatory */
printf("MANDATORY 66 PREFIX\n");
}
/* this is any 66 prefix including the above */
printf("ANY 66 PREFIX\n");
}
if (xed3_operand_get_rex2(xedd)) {
/* Legacy instructions with REX2 prefix have no new iforms. This function returns a non-zero
number if REX2 prefix is detected for a Legacy instruction */
printf("REX2 PREFIX\n");
}
printf("RING0 only\n");
}
printf("EXCEPTION TYPE: %s\n", xed_exception_enum_t2str(e));
}
printf("BROADCAST\n");
#if defined(XED_APX)
if (xed_classify_apx(xedd))
{
printf("[APX] ");
printf("New-Data-Destination ");
}
printf("No-Flags ");
}
/* returns a non-zero number if one of the register/memory-structure operands of a decoded
instruction is an extended GPR(EGPR) (valid for both Legacy and EVEX instructions) */
printf("Uses-EGPR ");
}
printf("Zero-Upper ");
}
printf("\n");
}
#endif
if (xed_classify_sse(xedd) || xed_classify_avx(xedd) || xed_classify_avx512(xedd) ||
{
if (xed_classify_amx(xedd))
printf("AMX\n");
printf("AVX512 KMASK-OP\n");
else {
xed_bool_t sse = 0;
if (xed_classify_sse(xedd)) {
sse = 1;
printf("SSE\n");
}
else if (xed_classify_avx(xedd))
printf("AVX\n");
else if (xed_classify_avx512(xedd))
printf("AVX512\n");
printf("SCALAR\n");
else {
// xed_decoded_inst_vector_length_bits is only for VEX/EVEX instr.
// This will print 128 vl for FXSAVE and LD/ST MXCSR which is unfortunate.
xed_uint_t vl_bits = sse ? 128 : xed_decoded_inst_vector_length_bits(xedd);
printf("Vector length: %u\n", vl_bits);
}
if (xed_classify_avx512(xedd)) {
printf( "AVX512 vector elements: %u\n", vec_elements);
}
}
}
// does not include instructions that have XED_ATTRIBUTE_MASK_AS_CONTROL.
// does not include vetor instructions that have k0 as a mask register.
printf("WRITE-MASKING\n");
if (np)
printf("Number of legacy prefixes: %u \n", np);
printf("ISA SET: [%s]\n", xed_isa_set_enum_t2str(isaset));
{
if (cpuidgrp == XED_CPUID_GROUP_INVALID)
break;
printf("%d\tCPUID GROUP NAME: [%s]\n", i, xed_cpuid_group_enum_t2str(cpuidgrp));
{
cpuidrec = xed_get_cpuid_rec_enum_for_group(cpuidgrp,j);
if (cpuidrec == XED_CPUID_REC_INVALID)
break;
printf("\t%d\tCPUID RECORD NAME: [%s]\n", j, xed_cpuid_rec_enum_t2str(cpuidrec));
r = xed_get_cpuid_rec(cpuidrec, &crec);
if (r) {
printf("\t\t{Leaf 0x%08x, subleaf 0x%08x, %s[%u:%u]} = %u\n",
crec.leaf, crec.subleaf, xed_reg_enum_t2str(crec.reg),
crec.bit_start, crec.bit_end, crec.value);
}
else {
printf("Could not find cpuid leaf information\n");
}
}
}
{
static char const* rounding_modes[5] = { "", "rne-sae", "rd-sae", "ru-sae", "rz-sae"};
int t = xed3_operand_get_roundc(xedd);
printf("suppress-all-exceptions (SAE) set\n");
if (t>0 && t<5)
printf("rounding mode override = %s\n", rounding_modes[t]);
}
}
void print_branch_hints(xed_decoded_inst_t* xedd) {
printf("HINT: NOT TAKEN\n");
printf("HINT: TAKEN\n");
printf("CET NO-TRACK\n");
}
void print_attributes(xed_decoded_inst_t* xedd) {
/* Walk the attributes. Generally, you'll know the one you want to
* query and just access that one directly. */
const xed_inst_t* xi = xed_decoded_inst_inst(xedd);
unsigned int i, nattributes = xed_attribute_max();
printf("ATTRIBUTES: ");
for(i=0;i<nattributes;i++) {
if (xed_inst_get_attribute(xi,attr))
printf("%s ", xed_attribute_enum_t2str(attr));
}
printf("\n");
}
void print_reads_zf_flag(xed_decoded_inst_t* xedd) {
/* example of reading one bit from the flags set */
if (read_set->s.zf) {
printf("READS ZF\n");
}
}
}
void print_flags(xed_decoded_inst_t* xedd) {
unsigned int i, nflags;
assert(rfi);
printf("FLAGS:\n");
printf(" reads-rflags ");
}
//XED provides may-write and must-write information
printf(" may-write-rflags ");
}
printf(" must-write-rflags ");
}
}
for( i=0;i<nflags ;i++) {
const xed_flag_action_t* fa =
char buf[500];
xed_flag_action_print(fa,buf,500);
printf("%s ", buf);
}
printf("\n");
// or as as bit-union
{
xed_flag_set_t const* read_set =
/* written set include undefined flags */
xed_flag_set_t const* written_set =
xed_flag_set_t const* undefined_set =
char buf[500];
xed_flag_set_print(read_set,buf,500);
printf(" read: %30s mask=0x%x\n",
buf,
xed_flag_set_mask(read_set));
xed_flag_set_print(written_set,buf,500);
printf(" written: %30s mask=0x%x\n",
buf,
xed_flag_set_mask(written_set));
xed_flag_set_print(undefined_set,buf,500);
printf(" undefined: %30s mask=0x%x\n",
buf,
xed_flag_set_mask(undefined_set));
}
#if defined(XED_APX)
/* print Default Flags Values based on the DFV pseudo register*/
if (dfv_enum != XED_REG_INVALID){
xed_flag_dfv_t dfv_reg;
assert(okay);
printf(" default:%13sof=%d, sf=%d, zf=%d, cf=%d\n",
"",
dfv_reg.s.of,
dfv_reg.s.sf,
dfv_reg.s.zf,
dfv_reg.s.cf);
}
#endif
}
}
void print_memops(xed_decoded_inst_t* xedd) {
unsigned int i, memops = xed_decoded_inst_number_of_memory_operands(xedd);
printf("Memory Operands\n");
for( i=0;i<memops ; i++) {
xed_bool_t r_or_w = 0;
printf(" %u ",i);
if ( xed_decoded_inst_mem_read(xedd,i)) {
printf(" read ");
r_or_w = 1;
}
printf("written ");
r_or_w = 1;
}
if (!r_or_w) {
printf(" agen "); // LEA instructions
}
if (seg != XED_REG_INVALID) {
printf("SEG= %s ", xed_reg_enum_t2str(seg));
}
if (base != XED_REG_INVALID) {
printf("BASE= %3s/%3s ",
}
if (i == 0 && indx != XED_REG_INVALID) {
printf("INDEX= %3s/%3s ",
if (xed_decoded_inst_get_scale(xedd,i) != 0) {
// only have a scale if the index exists.
printf("SCALE= %u ",
}
}
{
xed_uint_t disp_bits =
if (disp_bits)
{
xed_int64_t disp;
printf("DISPLACEMENT_BYTES= %u ", disp_bits);
printf("0x" XED_FMT_LX16 " base10=" XED_FMT_LD, disp, disp);
}
}
printf(" ASZ%u=%u\n",
i,
}
printf(" MemopBytes = %u\n",
}
void print_operands(xed_decoded_inst_t* xedd) {
unsigned int i, noperands;
#define TBUFSZ 90
char tbuf[TBUFSZ];
const xed_inst_t* xi = xed_decoded_inst_inst(xedd);
xed_uint_t bits;
printf("Operands\n");
noperands = xed_inst_noperands(xi);
printf("# TYPE DETAILS VIS RW OC2 BITS BYTES NELEM ELEMSZ ELEMTYPE REGCLASS\n");
printf("# ==== ======= === == === ==== ===== ===== ====== ======== ========\n");
tbuf[0]=0;
for( i=0; i < noperands ; i++) {
const xed_operand_t* op = xed_inst_operand(xi,i);
printf("%u %6s ",
switch(op_name) {
// we print memops in a different function
xed_strcpy(tbuf, "(see below)");
break;
case XED_OPERAND_PTR: // pointer (always in conjunction with a IMM0)
case XED_OPERAND_ABSBR: // Absolute branch displacements
case XED_OPERAND_RELBR: { // Relative branch displacements
xed_uint_t disp_bytes =
if (disp_bytes) {
char buf[40];
const unsigned int no_leading_zeros=0;
const xed_bool_t lowercase = 1;
xed_uint_t disp_bits =
xed_int64_t disp =
xed_itoa_hex_ul(buf, disp, disp_bits, no_leading_zeros, 40, lowercase);
#if defined (_WIN32) && !defined(PIN_CRT)
_snprintf_s(tbuf, TBUFSZ, TBUFSZ,
"BRANCH_DISPLACEMENT_BYTES=%d 0x%s",
disp_bytes,buf);
#else
snprintf(tbuf, TBUFSZ,
"BRANCH_DISPLACEMENT_BYTES=%d 0x%s",
disp_bytes,buf);
#endif
}
}
break;
case XED_OPERAND_IMM0: { // immediates
char buf[64];
const unsigned int no_leading_zeros=0;
xed_uint_t ibits;
const xed_bool_t lowercase = 1;
xed_uint_t rbits = ibits?ibits:8;
xed_uint64_t y = XED_STATIC_CAST(xed_uint64_t,
(xed_uint64_t)x,
ibits));
xed_itoa_hex_ul(buf, y, rbits, no_leading_zeros, 64, lowercase);
}
else {
xed_uint_t rbits = ibits?ibits:16;
xed_itoa_hex_ul(buf, x, rbits, no_leading_zeros, 64, lowercase);
}
#if defined (_WIN32) && !defined(PIN_CRT)
_snprintf_s(tbuf, TBUFSZ, TBUFSZ,
"0x%s(%db)",buf,ibits);
#else
snprintf(tbuf,TBUFSZ,
"0x%s(%db)",buf,ibits);
#endif
break;
}
case XED_OPERAND_IMM1: { // 2nd immediate is always 1 byte.
#if defined (_WIN32) && !defined(PIN_CRT)
_snprintf_s(tbuf, TBUFSZ, TBUFSZ,
"0x%02x",(int)x);
#else
snprintf(tbuf,TBUFSZ,
"0x%02x",(int)x);
#endif
break;
}
{
#if defined (_WIN32) && !defined(PIN_CRT)
_snprintf_s(tbuf, TBUFSZ, TBUFSZ,
"%s=%s",
#else
snprintf(tbuf,TBUFSZ,
"%s=%s",
#endif
break;
}
default:
printf("need to add support for printing operand: %s",
assert(0);
}
printf("%21s", tbuf);
printf(" %10s %3s %9s",
printf( " %3u", bits);
/* rounding, bits might not be a multiple of 8 */
printf(" %4u", (bits +7) >> 3);
printf(" %2u", xed_decoded_inst_operand_elements(xedd,i));
printf(" %10s",
printf(" %10s\n",
xed_decoded_inst_get_reg(xedd, op_name))));
}
}
int main(int argc, char** argv) {
xed_state_t dstate;
xed_uint_t i, bytes = 0;
xed_uint_t argcu = (xed_uint_t)argc;
unsigned char itext[XED_MAX_INSTRUCTION_BYTES];
xed_uint_t first_argv;
xed_bool_t already_set_mode = 0;
char const* decode_text=0;
unsigned int len;
xed_error_enum_t xed_error;
xed_uint_t operands_index = 0;
xed_operand_enum_t operands[XED_MAX_INPUT_OPERNADS] = {XED_OPERAND_INVALID};
xed_uint32_t operands_value[XED_MAX_INPUT_OPERNADS] = {0};
#if defined(XED_MPX)
unsigned int mpx_mode=0;
#endif
#if defined(XED_CET)
unsigned int cet_mode=0;
#endif
xed_state_zero(&dstate);
first_argv = 1;
for(i=1;i< argcu;i++) {
if (strcmp(argv[i], "-64") == 0) {
assert(already_set_mode == 0);
already_set_mode = 1;
first_argv++;
}
#if defined(XED_MPX)
else if (strcmp(argv[i], "-mpx") == 0) {
mpx_mode = 1;
first_argv++;
}
#endif
#if defined(XED_CET)
else if (strcmp(argv[i], "-cet") == 0) {
cet_mode = 1;
first_argv++;
}
#endif
else if (strcmp(argv[i], "-16") == 0) {
assert(already_set_mode == 0);
already_set_mode = 1;
first_argv++;
}
else if (strcmp(argv[i], "-s16") == 0) {
already_set_mode = 1;
first_argv++;
}
else if (strcmp(argv[i], "-chip") == 0) {
assert(i+1 < argcu);
chip = str2xed_chip_enum_t(argv[i+1]);
printf("Setting chip to %s\n", xed_chip_enum_t2str(chip));
assert(chip != XED_CHIP_INVALID);
first_argv+=2;
}
else if (strcmp(argv[i], "-set") == 0) {
assert(i+2 < argcu); // needs 2 args
if (operands_index >= XED_MAX_INPUT_OPERNADS) {
printf("ERROR: too many -set operands, max is %d\n", XED_MAX_INPUT_OPERNADS);
exit(1);
}
operands[operands_index] = str2xed_operand_enum_t(argv[i+1]);
if (operands[operands_index] == XED_OPERAND_INVALID){
printf("ERROR: operand %s doesn't exist\n", argv[i+1]);
exit(1);
}
operands_value[operands_index] = XED_STATIC_CAST(xed_uint8_t, xed_atoi_general(argv[i+2],1000));
operands_index++;
first_argv+=3;
}
}
assert(first_argv < argcu);
#if defined(XED_MPX)
xed3_operand_set_mpxmode(&xedd, mpx_mode);
#endif
#if defined(XED_CET)
xed3_operand_set_cet(&xedd, cet_mode);
#endif
// set the value of operands referenced after '-set'
for (i = 0; i < operands_index; i++)
xed3_set_generic_operand(&xedd, operands[i], operands_value[i]);
// convert ascii hex to hex bytes
for(i=first_argv; i< argcu;i++)
decode_text = xedex_append_string(decode_text,argv[i]);
len = (unsigned int) strlen(decode_text);
if ((len & 1) == 1) {
printf("Must supply even number of nibbles per substring\n");
exit(1);
}
printf("Must supply at most 30 nibbles (15 bytes)\n");
exit(1);
}
bytes = xed_convert_ascii_to_hex(decode_text,
itext,
if (bytes == 0) {
printf("Must supply some hex bytes\n");
exit(1);
}
printf("Attempting to decode: ");
for(i=0;i<bytes;i++)
printf("%02x ", XED_STATIC_CAST(xed_uint_t,itext[i]));
printf("\n");
xed_error = xed_decode(&xedd,
XED_REINTERPRET_CAST(const xed_uint8_t*,itext),
bytes);
switch(xed_error) {
break;
printf("Not enough bytes provided\n");
exit(1);
printf("The instruction was not valid for the specified chip.\n");
exit(1);
printf("Could not decode given input.\n");
exit(1);
default:
printf("Unhandled error code %s\n",
xed_error_enum_t2str(xed_error));
exit(1);
}
printf("iclass %s\t",
printf("category %s\t" ,
printf("ISA-extension %s\t",
printf("ISA-set %s\n" ,
printf("instruction-length %u\n",
printf("operand-width %u\n",
printf("effective-operand-width %u\n",
printf("effective-address-width %u\n",
printf("stack-address-width %u\n",
printf("iform-enum-name %s\n",
printf("iform-enum-name-dispatch (zero based) %u\n",
printf("iclass-max-iform-dispatch %u\n",
printf("Nominal opcode position %u\n",
printf("Nominal opcode 0x%02x\n",
// operands
print_operands(&xedd);
// memops
print_memops(&xedd);
// flags
print_flags(&xedd);
print_reads_zf_flag(&xedd);
// attributes
print_attributes(&xedd);
// misc
print_misc(&xedd);
print_branch_hints(&xedd);
return 0;
}

Here are a few examples of running the program:

% ./xed-ex1 01 c0
iclass ADD category BINARY ISA-extension BASE ISA-set I86
instruction-length 2
operand-width 32
effective-operand-width 32
effective-address-width 32
stack-address-width 32
iform-enum-name ADD_GPRv_GPRv_01
iform-enum-name-dispatch (zero based) 14
iclass-max-iform-dispatch 42
Nominal opcode position 0
Nominal opcode 0x01
Operands
# TYPE DETAILS VIS RW OC2 BITS BYTES NELEM ELEMSZ ELEMTYPE REGCLASS
# ==== ======= === == === ==== ===== ===== ====== ======== ========
0 REG0 REG0=EAX EXPLICIT RW V 32 4 1 32 INT GPR
1 REG1 REG1=EAX EXPLICIT R V 32 4 1 32 INT GPR
2 REG2 REG2=EFLAGS SUPPRESSED W Y 32 4 1 32 INT FLAGS
Memory Operands
MemopBytes = 0
FLAGS:
must-write-rflags of-mod sf-mod zf-mod af-mod pf-mod cf-mod
read: mask=0x0
written: of sf zf af pf cf mask=0x8d5
undefined: mask=0x0
ATTRIBUTES: SCALABLE
ISA SET: [I86]
===============================================================================
% ./xed-ex1 f2 0f 58 9c 24 e0 00 00 00
iclass ADDSD category SSE ISA-extension SSE2 ISA-set SSE2
instruction-length 9
operand-width 32
effective-operand-width 32
effective-address-width 32
stack-address-width 32
iform-enum-name ADDSD_XMMsd_MEMsd
iform-enum-name-dispatch (zero based) 0
iclass-max-iform-dispatch 2
Nominal opcode position 2
Nominal opcode 0x58
Operands
# TYPE DETAILS VIS RW OC2 BITS BYTES NELEM ELEMSZ ELEMTYPE REGCLASS
# ==== ======= === == === ==== ===== ===== ====== ======== ========
0 REG0 REG0=XMM3 EXPLICIT RW SD 64 8 1 64 DOUBLE XMM
1 MEM0 (see below) EXPLICIT R SD 64 8 1 64 DOUBLE INVALID
Memory Operands
0 read SEG= SS BASE= ESP/GPR DISPLACEMENT_BYTES= 4 0x00000000000000e0 base10=224 ASZ0=32
MemopBytes = 8
ATTRIBUTES: MXCSR SIMD_SCALAR
F2 PREFIX
EXCEPTION TYPE: SSE_TYPE_3
SSE
SCALAR
Number of legacy prefixes: 1
ISA SET: [SSE2]
0 CPUID GROUP NAME: [SSE2]
0 CPUID RECORD NAME: [SSE2]
{Leaf 0x00000001, subleaf 0x00000000, EDX[26:26]} = 1
===============================================================================
./xed-ex1 f3 90
iclass PAUSE category MISC ISA-extension PAUSE ISA-set PAUSE
instruction-length 2
operand-width 32
effective-operand-width 32
effective-address-width 32
stack-address-width 32
iform-enum-name PAUSE
iform-enum-name-dispatch (zero based) 0
iclass-max-iform-dispatch 1
Nominal opcode position 1
Nominal opcode 0x90
Operands
# TYPE DETAILS VIS RW OC2 BITS BYTES NELEM ELEMSZ ELEMTYPE REGCLASS
# ==== ======= === == === ==== ===== ===== ====== ======== ========
Memory Operands
MemopBytes = 0
ATTRIBUTES: NOTSX
F3 PREFIX
Number of legacy prefixes: 1
ISA SET: [PAUSE]
===============================================================================
XED_OPERAND_IMM0
@ XED_OPERAND_IMM0
Definition: xed-operand-enum.h:205
xed_decoded_inst_get_iclass
static XED_INLINE xed_iclass_enum_t xed_decoded_inst_get_iclass(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:75
xed_cpuid_rec_t::reg
xed_reg_enum_t reg
the register containing the bits (EAX,EBX,ECX,EDX)
Definition: xed-cpuid-rec.h:35
XED_ATTRIBUTE_RING0
@ XED_ATTRIBUTE_RING0
Definition: xed-attribute-enum.h:214
xed_itoa_hex_ul
XED_DLL_EXPORT int xed_itoa_hex_ul(char *buf, xed_uint64_t f, xed_uint_t bits_to_print, xed_bool_t leading_zeros, int buflen, xed_bool_t lowercase)
xed_decode
XED_DLL_EXPORT xed_error_enum_t xed_decode(xed_decoded_inst_t *xedd, const xed_uint8_t *itext, const unsigned int bytes)
This is the main interface to the decoder.
xed_extension_enum_t2str
const XED_DLL_EXPORT char * xed_extension_enum_t2str(const xed_extension_enum_t p)
This converts strings to xed_extension_enum_t types.
xed_flag_dfv_get_default_flags_values
XED_DLL_EXPORT xed_bool_t xed_flag_dfv_get_default_flags_values(xed_reg_enum_t dfv_reg, xed_flag_dfv_t *p)
XED_ERROR_BUFFER_TOO_SHORT
@ XED_ERROR_BUFFER_TOO_SHORT
There were not enough bytes in the given buffer.
Definition: xed-error-enum.h:50
xed_state_s::stack_addr_width
xed_address_width_enum_t stack_addr_width
for 16b/32b modes
Definition: xed-state.h:43
xed_cpuid_rec_t
a data structure representing a CPUID record
Definition: xed-cpuid-rec.h:32
xed_classify_apx
XED_DLL_EXPORT xed_bool_t xed_classify_apx(const xed_decoded_inst_t *d)
True for APX instructions. includes instructions with EGPRs, REX2 and encodings that are treated as i...
xed_sign_extend_arbitrary_to_64
XED_DLL_EXPORT xed_int64_t xed_sign_extend_arbitrary_to_64(xed_uint64_t x, unsigned int bits)
arbitrary sign extension from a qty of "bits" length to 64b
XED_OPERAND_REG7
@ XED_OPERAND_REG7
Definition: xed-operand-enum.h:266
XED_MAX_INSTRUCTION_BYTES
#define XED_MAX_INSTRUCTION_BYTES
Definition: xed-common-defs.h:32
xed_cpuid_rec_enum_t2str
const XED_DLL_EXPORT char * xed_cpuid_rec_enum_t2str(const xed_cpuid_rec_enum_t p)
This converts strings to xed_cpuid_rec_enum_t types.
XED_OPERAND_INVALID
@ XED_OPERAND_INVALID
Definition: xed-operand-enum.h:169
xed_flag_set_mask
static XED_INLINE unsigned int xed_flag_set_mask(const xed_flag_set_t *p)
Definition: xed-flags.h:241
xed_decoded_inst_get_iform_enum
static XED_INLINE xed_iform_enum_t xed_decoded_inst_get_iform_enum(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:377
xed_flag_enum_s
Definition: xed-flags.h:116
xed_operand_enum_t
xed_operand_enum_t
Definition: xed-operand-enum.h:168
xed_classify_avx512_maskop
XED_DLL_EXPORT xed_bool_t xed_classify_avx512_maskop(const xed_decoded_inst_t *d)
XED_MACHINE_MODE_LEGACY_32
@ XED_MACHINE_MODE_LEGACY_32
32b protected mode
Definition: xed-machine-mode-enum.h:40
xed_decoded_inst_get_dfv_reg
XED_DLL_EXPORT xed_reg_enum_t xed_decoded_inst_get_dfv_reg(const xed_decoded_inst_t *xedd)
xed_cpuid_rec_t::bit_end
xed_uint8_t bit_end
the bit end index for the feature
Definition: xed-cpuid-rec.h:37
str2xed_operand_enum_t
XED_DLL_EXPORT xed_operand_enum_t str2xed_operand_enum_t(const char *s)
This converts strings to xed_operand_enum_t types.
xed_flag_set_s::zf
xed_uint32_t zf
Definition: xed-flags.h:63
xed3_set_generic_operand
XED_DLL_EXPORT void xed3_set_generic_operand(xed_decoded_inst_t *d, xed_operand_enum_t operand, xed_uint32_t val)
XED_OPERAND_REG5
@ XED_OPERAND_REG5
Definition: xed-operand-enum.h:264
xed_flag_dfv_s::s
struct xed_flag_dfv_s::@6 s
xed_operand_values_has_rep_prefix
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_rep_prefix(const xed_operand_values_t *p)
xed_get_cpuid_rec_enum_for_group
XED_DLL_EXPORT xed_cpuid_rec_enum_t xed_get_cpuid_rec_enum_for_group(xed_cpuid_group_enum_t group, xed_uint_t i)
Returns the name of the i'th cpuid record associated with the given cpuid group. This function is cal...
xed_cpuid_group_enum_t2str
const XED_DLL_EXPORT char * xed_cpuid_group_enum_t2str(const xed_cpuid_group_enum_t p)
This converts strings to xed_cpuid_group_enum_t types.
xed_simple_flag_writes_flags
XED_DLL_EXPORT xed_bool_t xed_simple_flag_writes_flags(const xed_simple_flag_t *p)
xed_decoded_inst_get_base_reg
XED_DLL_EXPORT xed_reg_enum_t xed_decoded_inst_get_base_reg(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_simple_flag_get_may_write
XED_DLL_EXPORT xed_bool_t xed_simple_flag_get_may_write(const xed_simple_flag_t *p)
xed_simple_flag_s
Definition: xed-flags.h:166
xed3_operand_get_has_egpr
static XED_INLINE xed_bits_t xed3_operand_get_has_egpr(const xed_decoded_inst_t *d)
Definition: xed-operand-accessors.h:767
xed_machine_mode_enum_t
xed_machine_mode_enum_t
Definition: xed-machine-mode-enum.h:35
xed_operand_values_has_real_rep
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_real_rep(const xed_operand_values_t *p)
xed_decoded_inst_get_length
static XED_INLINE xed_uint_t xed_decoded_inst_get_length(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:287
xed_decoded_inst_zero_set_mode
XED_DLL_EXPORT void xed_decoded_inst_zero_set_mode(xed_decoded_inst_t *p, const xed_state_t *dstate)
XED_MAX_CPUID_GROUPS_PER_ISA_SET
#define XED_MAX_CPUID_GROUPS_PER_ISA_SET
Definition: xed-cpuid-rec.h:41
xed_operand_values_get_effective_operand_width
XED_DLL_EXPORT xed_uint32_t xed_operand_values_get_effective_operand_width(const xed_operand_values_t *p)
xed_decoded_inst_get_extension
static XED_INLINE xed_extension_enum_t xed_decoded_inst_get_extension(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:61
xed_decoded_inst_get_iform_enum_dispatch
static XED_INLINE unsigned int xed_decoded_inst_get_iform_enum_dispatch(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:388
xed_decoded_inst_get_reg
XED_DLL_EXPORT xed_reg_enum_t xed_decoded_inst_get_reg(const xed_decoded_inst_t *p, xed_operand_enum_t reg_operand)
xed_operand_element_type_enum_t2str
const XED_DLL_EXPORT char * xed_operand_element_type_enum_t2str(const xed_operand_element_type_enum_t p)
This converts strings to xed_operand_element_type_enum_t types.
xed_decoded_inst_get_index_reg
XED_DLL_EXPORT xed_reg_enum_t xed_decoded_inst_get_index_reg(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_iform_max_per_iclass
XED_DLL_EXPORT xed_uint32_t xed_iform_max_per_iclass(xed_iclass_enum_t iclass)
xed_decoded_inst_operand_element_size_bits
XED_DLL_EXPORT unsigned int xed_decoded_inst_operand_element_size_bits(const xed_decoded_inst_t *p, unsigned int operand_index)
Return the size of an element in bits (for SSE and AVX operands)
xed_decoded_inst_get_rflags_info
const XED_DLL_EXPORT xed_simple_flag_t * xed_decoded_inst_get_rflags_info(const xed_decoded_inst_t *p)
See the comment on xed_decoded_inst_uses_rflags().
xed_decoded_inst_set_mode
static XED_INLINE void xed_decoded_inst_set_mode(xed_decoded_inst_t *p, xed_machine_mode_enum_t mmode, xed_address_width_enum_t stack_addr_width)
Definition: xed-decoded-inst-api.h:261
xed_isa_set_enum_t2str
const XED_DLL_EXPORT char * xed_isa_set_enum_t2str(const xed_isa_set_enum_t p)
This converts strings to xed_isa_set_enum_t types.
xed_flag_set_s::s
struct xed_flag_set_s::@7 s
xed_operand_values_has_repne_prefix
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_repne_prefix(const xed_operand_values_t *p)
XED_ERROR_NONE
@ XED_ERROR_NONE
There was no error.
Definition: xed-error-enum.h:49
xed_operand_enum_t2str
const XED_DLL_EXPORT char * xed_operand_enum_t2str(const xed_operand_enum_t p)
This converts strings to xed_operand_enum_t types.
XED_OPERAND_REG6
@ XED_OPERAND_REG6
Definition: xed-operand-enum.h:265
XED_OPERAND_REG9
@ XED_OPERAND_REG9
Definition: xed-operand-enum.h:268
XED_OPERAND_RELBR
@ XED_OPERAND_RELBR
Definition: xed-operand-enum.h:269
xed_isa_set_enum_t
xed_isa_set_enum_t
Definition: xed-isa-set-enum.h:251
xed_state_s::mmode
xed_machine_mode_enum_t mmode
real architected machine modes
Definition: xed-state.h:41
xed_reg_class
XED_DLL_EXPORT xed_reg_class_enum_t xed_reg_class(xed_reg_enum_t r)
Returns the register class of the given input register.
XED_OPERAND_IMM1
@ XED_OPERAND_IMM1
Definition: xed-operand-enum.h:207
xed_flag_action_print
XED_DLL_EXPORT int xed_flag_action_print(const xed_flag_action_t *p, char *buf, int buflen)
xed3_operand_get_pos_nominal_opcode
static XED_INLINE xed_bits_t xed3_operand_get_pos_nominal_opcode(const xed_decoded_inst_t *d)
Definition: xed-operand-accessors.h:1383
XED_ATTRIBUTE_SIMD_SCALAR
@ XED_ATTRIBUTE_SIMD_SCALAR
Definition: xed-attribute-enum.h:217
xed_decoded_inst_get_attribute
XED_DLL_EXPORT xed_uint32_t xed_decoded_inst_get_attribute(const xed_decoded_inst_t *p, xed_attribute_enum_t attr)
XED_OPERAND_REG8
@ XED_OPERAND_REG8
Definition: xed-operand-enum.h:267
XED_OPERAND_BASE0
@ XED_OPERAND_BASE0
Definition: xed-operand-enum.h:174
xed_simple_flag_get_read_flag_set
const XED_DLL_EXPORT xed_flag_set_t * xed_simple_flag_get_read_flag_set(const xed_simple_flag_t *p)
xed3_operand_get_rex2
static XED_INLINE xed_bits_t xed3_operand_get_rex2(const xed_decoded_inst_t *d)
Definition: xed-operand-accessors.h:735
xed_flag_dfv_s::cf
xed_uint32_t cf
Definition: xed-flags.h:41
xed_cpuid_rec_t::value
xed_uint32_t value
the required feature value
Definition: xed-cpuid-rec.h:38
xed_decoded_inst_get_unsigned_immediate
XED_DLL_EXPORT xed_uint64_t xed_decoded_inst_get_unsigned_immediate(const xed_decoded_inst_t *p)
xed_flag_set_s
Definition: xed-flags.h:53
XED_ATTRIBUTE_APX_NDD
@ XED_ATTRIBUTE_APX_NDD
Definition: xed-attribute-enum.h:134
XED_ERROR_INVALID_FOR_CHIP
@ XED_ERROR_INVALID_FOR_CHIP
The instruciton is not valid for the specified chip.
Definition: xed-error-enum.h:52
XED_ADDRESS_WIDTH_16b
@ XED_ADDRESS_WIDTH_16b
16b addressing
Definition: xed-address-width-enum.h:33
xed_simple_flag_reads_flags
XED_DLL_EXPORT xed_bool_t xed_simple_flag_reads_flags(const xed_simple_flag_t *p)
XED_MAX_CPUID_RECS_PER_GROUP
#define XED_MAX_CPUID_RECS_PER_GROUP
Definition: xed-cpuid-rec.h:42
xed_flag_set_print
XED_DLL_EXPORT int xed_flag_set_print(const xed_flag_set_t *p, char *buf, int buflen)
xed_rep_remove
XED_DLL_EXPORT xed_iclass_enum_t xed_rep_remove(xed_iclass_enum_t x)
xed_operand_values_get_effective_address_width
XED_DLL_EXPORT xed_uint32_t xed_operand_values_get_effective_address_width(const xed_operand_values_t *p)
xed_flag_dfv_s::zf
xed_uint32_t zf
Definition: xed-flags.h:40
xed_decoded_inst_get_seg_reg
XED_DLL_EXPORT xed_reg_enum_t xed_decoded_inst_get_seg_reg(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_classify_avx
XED_DLL_EXPORT xed_bool_t xed_classify_avx(const xed_decoded_inst_t *d)
xed_uint_t
unsigned int xed_uint_t
Definition: xed-types.h:52
xed_cpuid_rec_t::subleaf
xed_uint32_t subleaf
cpuid subleaf
Definition: xed-cpuid-rec.h:34
XED_OPERAND_REG4
@ XED_OPERAND_REG4
Definition: xed-operand-enum.h:263
XED_REG_INVALID
@ XED_REG_INVALID
Definition: xed-reg-enum.h:449
xed_inst_get_attribute
XED_DLL_EXPORT xed_uint32_t xed_inst_get_attribute(const xed_inst_t *p, xed_attribute_enum_t attr)
XED_MACHINE_MODE_LEGACY_16
@ XED_MACHINE_MODE_LEGACY_16
16b protected mode
Definition: xed-machine-mode-enum.h:41
xed_operand_values_cet_no_track
XED_DLL_EXPORT xed_bool_t xed_operand_values_cet_no_track(const xed_operand_values_t *p)
xed_inst_s
Definition: xed-inst.h:250
XED_OPERAND_ABSBR
@ XED_OPERAND_ABSBR
Definition: xed-operand-enum.h:170
xed_category_enum_t2str
const XED_DLL_EXPORT char * xed_category_enum_t2str(const xed_category_enum_t p)
This converts strings to xed_category_enum_t types.
xed_decoded_inst_number_of_memory_operands
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_number_of_memory_operands(const xed_decoded_inst_t *p)
xed_decoded_inst_operand_length_bits
XED_DLL_EXPORT unsigned int xed_decoded_inst_operand_length_bits(const xed_decoded_inst_t *p, unsigned int operand_index)
Return the length in bits of the operand_index'th operand.
XED_OPERAND_MEM0
@ XED_OPERAND_MEM0
Definition: xed-operand-enum.h:218
xed_decoded_inst_get_immediate_width_bits
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_immediate_width_bits(const xed_decoded_inst_t *p)
xed3_operand_get_sae
static XED_INLINE xed_bits_t xed3_operand_get_sae(const xed_decoded_inst_t *d)
Definition: xed-operand-accessors.h:1647
xed_decoded_inst_zero
XED_DLL_EXPORT void xed_decoded_inst_zero(xed_decoded_inst_t *p)
xed_decoded_inst_operands_const
static const XED_INLINE xed_operand_values_t * xed_decoded_inst_operands_const(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:147
xed_operand_values_has_address_size_prefix
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_address_size_prefix(const xed_operand_values_t *p)
xed_decoded_inst_get_branch_displacement_width_bits
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_branch_displacement_width_bits(const xed_decoded_inst_t *p)
xed_iclass_enum_t
xed_iclass_enum_t
Definition: xed-iclass-enum.h:1886
xed_decoded_inst_operand_elements
XED_DLL_EXPORT unsigned int xed_decoded_inst_operand_elements(const xed_decoded_inst_t *p, unsigned int operand_index)
Return the number of element in the operand (for SSE and AVX operands)
xed_decoded_inst_operand_element_type
XED_DLL_EXPORT xed_operand_element_type_enum_t xed_decoded_inst_operand_element_type(const xed_decoded_inst_t *p, unsigned int operand_index)
Return the type of an element of type xed_operand_element_type_enum_t (for SSE and AVX operands)
xed_iclass_enum_t2str
const XED_DLL_EXPORT char * xed_iclass_enum_t2str(const xed_iclass_enum_t p)
This converts strings to xed_iclass_enum_t types.
xed_decoded_inst_masked_vector_operation
XED_DLL_EXPORT xed_bool_t xed_decoded_inst_masked_vector_operation(xed_decoded_inst_t *p)
XED_OPERAND_PTR
@ XED_OPERAND_PTR
Definition: xed-operand-enum.h:256
XED_OPERAND_MEM1
@ XED_OPERAND_MEM1
Definition: xed-operand-enum.h:219
xed_chip_enum_t2str
const XED_DLL_EXPORT char * xed_chip_enum_t2str(const xed_chip_enum_t p)
This converts strings to xed_chip_enum_t types.
xed_tables_init
void XED_DLL_EXPORT xed_tables_init(void)
XED_STATIC_CAST
#define XED_STATIC_CAST(x, y)
Definition: xed-portability.h:27
XED_REINTERPRET_CAST
#define XED_REINTERPRET_CAST(x, y)
Definition: xed-portability.h:28
xed3_operand_get_roundc
static XED_INLINE xed_bits_t xed3_operand_get_roundc(const xed_decoded_inst_t *d)
Definition: xed-operand-accessors.h:1639
xed_reg_enum_t2str
const XED_DLL_EXPORT char * xed_reg_enum_t2str(const xed_reg_enum_t p)
This converts strings to xed_reg_enum_t types.
xed_classify_sse
XED_DLL_EXPORT xed_bool_t xed_classify_sse(const xed_decoded_inst_t *d)
XED_FMT_LX16
#define XED_FMT_LX16
Definition: xed-portability.h:137
xed_cpuid_group_enum_t
xed_cpuid_group_enum_t
Definition: xed-cpuid-group-enum.h:283
xed_bool_t
unsigned int xed_bool_t
Definition: xed-types.h:55
xed_chip_enum_t
xed_chip_enum_t
Definition: xed-chip-enum.h:100
xed_operand_visibility_enum_t2str
const XED_DLL_EXPORT char * xed_operand_visibility_enum_t2str(const xed_operand_visibility_enum_t p)
This converts strings to xed_operand_visibility_enum_t types.
xed_simple_flag_get_undefined_flag_set
const XED_DLL_EXPORT xed_flag_set_t * xed_simple_flag_get_undefined_flag_set(const xed_simple_flag_t *p)
xed_simple_flag_get_written_flag_set
const XED_DLL_EXPORT xed_flag_set_t * xed_simple_flag_get_written_flag_set(const xed_simple_flag_t *p)
xed_simple_flag_get_nflags
XED_DLL_EXPORT unsigned int xed_simple_flag_get_nflags(const xed_simple_flag_t *p)
xed_operand_values_has_memory_displacement
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_memory_displacement(const xed_operand_values_t *p)
xed_simple_flag_get_must_write
XED_DLL_EXPORT xed_bool_t xed_simple_flag_get_must_write(const xed_simple_flag_t *p)
xed_decoded_inst_get_signed_immediate
XED_DLL_EXPORT xed_int32_t xed_decoded_inst_get_signed_immediate(const xed_decoded_inst_t *p)
xed_cpuid_rec_enum_t
xed_cpuid_rec_enum_t
Definition: xed-cpuid-rec-enum.h:158
xed_decoded_inst_get_category
static XED_INLINE xed_category_enum_t xed_decoded_inst_get_category(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:54
xed_decoded_inst_avx512_dest_elements
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_avx512_dest_elements(const xed_decoded_inst_t *p)
Returns the maximum number elements processed for an AVX512 vector instruction.
xed_error_enum_t2str
const XED_DLL_EXPORT char * xed_error_enum_t2str(const xed_error_enum_t p)
This converts strings to xed_error_enum_t types.
xed_strcpy
XED_DLL_EXPORT void xed_strcpy(char *dst, const char *src)
xed_get_cpuid_rec
XED_DLL_EXPORT xed_bool_t xed_get_cpuid_rec(xed_cpuid_rec_enum_t cpuid_bit, xed_cpuid_rec_t *p)
provides the details of the CPUID specification, if the enumeration value is not sufficient....
xed_inst_exception
static XED_INLINE xed_exception_enum_t xed_inst_exception(const xed_inst_t *p)
Definition: xed-inst.h:359
xed3_operand_get_nominal_opcode
static XED_INLINE xed_bits_t xed3_operand_get_nominal_opcode(const xed_decoded_inst_t *d)
Definition: xed-operand-accessors.h:1375
xed_exception_enum_t
xed_exception_enum_t
Definition: xed-exception-enum.h:105
XED_OPERAND_AGEN
@ XED_OPERAND_AGEN
Definition: xed-operand-enum.h:171
xed_error_enum_t
xed_error_enum_t
Definition: xed-error-enum.h:48
xed_operand_s
Definition: xed-inst.h:53
xed_operand_values_get_stack_address_width
XED_DLL_EXPORT xed_uint32_t xed_operand_values_get_stack_address_width(const xed_operand_values_t *p)
xed_decoded_inst_get_isa_set
static XED_INLINE xed_isa_set_enum_t xed_decoded_inst_get_isa_set(xed_decoded_inst_t const *const p)
Definition: xed-decoded-inst-api.h:68
xed_exception_enum_t2str
const XED_DLL_EXPORT char * xed_exception_enum_t2str(const xed_exception_enum_t p)
This converts strings to xed_exception_enum_t types.
xed_decoded_inst_is_broadcast
XED_DLL_EXPORT xed_bool_t xed_decoded_inst_is_broadcast(const xed_decoded_inst_t *p)
xed_address_width_enum_t
xed_address_width_enum_t
Definition: xed-address-width-enum.h:31
xed_decoded_inst_get_immediate_is_signed
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_immediate_is_signed(const xed_decoded_inst_t *p)
xed3_operand_set_mpxmode
static XED_INLINE void xed3_operand_set_mpxmode(xed_decoded_inst_t *d, xed_bits_t opval)
Definition: xed-operand-accessors.h:1523
xed_decoded_inst_is_apx_zu
XED_DLL_EXPORT xed_bool_t xed_decoded_inst_is_apx_zu(const xed_decoded_inst_t *p)
Return non-zero value for APX-Promtoed zero-upper instructions (ZU).
xed_decoded_inst_get_memory_displacement
XED_DLL_EXPORT xed_int64_t xed_decoded_inst_get_memory_displacement(const xed_decoded_inst_t *p, unsigned int mem_idx)
XED_OPERAND_REG0
@ XED_OPERAND_REG0
Definition: xed-operand-enum.h:259
xed_operand_values_has_operand_size_prefix
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_operand_size_prefix(const xed_operand_values_t *p)
xed_decoded_inst_get_scale
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_scale(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_decoded_inst_inst
static const XED_INLINE xed_inst_t * xed_decoded_inst_inst(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:46
xed_decoded_inst_get_nprefixes
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_nprefixes(const xed_decoded_inst_t *p)
XED_CHIP_INVALID
@ XED_CHIP_INVALID
Definition: xed-chip-enum.h:101
xed_decoded_inst_uses_rflags
XED_DLL_EXPORT xed_bool_t xed_decoded_inst_uses_rflags(const xed_decoded_inst_t *p)
This returns 1 if the flags are read or written.
xed_classify_amx
XED_DLL_EXPORT xed_bool_t xed_classify_amx(const xed_decoded_inst_t *d)
xed_state_zero
static XED_INLINE void xed_state_zero(xed_state_t *p)
clear the xed_state_t
Definition: xed-state.h:88
XED_OPERAND_REG1
@ XED_OPERAND_REG1
Definition: xed-operand-enum.h:260
xed_decoded_inst_vector_length_bits
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_vector_length_bits(xed_decoded_inst_t const *const p)
xed_classify_avx512
XED_DLL_EXPORT xed_bool_t xed_classify_avx512(const xed_decoded_inst_t *d)
xed_attribute_max
XED_DLL_EXPORT unsigned int xed_attribute_max(void)
XED_ADDRESS_WIDTH_32b
@ XED_ADDRESS_WIDTH_32b
32b addressing
Definition: xed-address-width-enum.h:34
XED_FMT_LD
#define XED_FMT_LD
Definition: xed-portability.h:136
XED_OPERAND_REG2
@ XED_OPERAND_REG2
Definition: xed-operand-enum.h:261
xed_decoded_inst_get_memory_operand_length
XED_DLL_EXPORT unsigned int xed_decoded_inst_get_memory_operand_length(const xed_decoded_inst_t *p, unsigned int memop_idx)
returns bytes
XED_ERROR_GENERAL_ERROR
@ XED_ERROR_GENERAL_ERROR
XED could not decode the given instruction.
Definition: xed-error-enum.h:51
xed_cpuid_rec_t::bit_start
xed_uint8_t bit_start
the bit start index for the feature
Definition: xed-cpuid-rec.h:36
xed_decoded_inst_mem_read
XED_DLL_EXPORT xed_bool_t xed_decoded_inst_mem_read(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_decoded_inst_set_input_chip
static XED_INLINE void xed_decoded_inst_set_input_chip(xed_decoded_inst_t *p, xed_chip_enum_t chip)
Set a user-specified xed_chip_enum_t chip name for restricting decode.
Definition: xed-decoded-inst-api.h:353
xed_simple_flag_get_flag_action
const XED_DLL_EXPORT xed_flag_action_t * xed_simple_flag_get_flag_action(const xed_simple_flag_t *p, unsigned int i)
str2xed_chip_enum_t
XED_DLL_EXPORT xed_chip_enum_t str2xed_chip_enum_t(const char *s)
This converts strings to xed_chip_enum_t types.
XED_ADDRESS_WIDTH_64b
@ XED_ADDRESS_WIDTH_64b
64b addressing
Definition: xed-address-width-enum.h:35
xed_operand_name
static XED_INLINE xed_operand_enum_t xed_operand_name(const xed_operand_t *p)
Definition: xed-inst.h:80
xed_decoded_inst_get_branch_displacement
XED_DLL_EXPORT xed_int64_t xed_decoded_inst_get_branch_displacement(const xed_decoded_inst_t *p)
xed_reg_class_enum_t2str
const XED_DLL_EXPORT char * xed_reg_class_enum_t2str(const xed_reg_class_enum_t p)
This converts strings to xed_reg_class_enum_t types.
xed_iform_enum_t2str
const XED_DLL_EXPORT char * xed_iform_enum_t2str(const xed_iform_enum_t p)
This converts strings to xed_iform_enum_t types.
xed_state_s
Encapsulates machine modes for decoder/encoder requests.
Definition: xed-state.h:39
xed_operand_operand_visibility
static XED_INLINE xed_operand_visibility_enum_t xed_operand_operand_visibility(const xed_operand_t *p)
Definition: xed-inst.h:87
xed_inst_noperands
static XED_INLINE unsigned int xed_inst_noperands(const xed_inst_t *p)
Definition: xed-inst.h:312
XED_OPERAND_BASE1
@ XED_OPERAND_BASE1
Definition: xed-operand-enum.h:175
xed_operand_width_enum_t2str
const XED_DLL_EXPORT char * xed_operand_width_enum_t2str(const xed_operand_width_enum_t p)
This converts strings to xed_operand_width_enum_t types.
xed_operand_width
static XED_INLINE xed_operand_width_enum_t xed_operand_width(const xed_operand_t *p)
Definition: xed-inst.h:111
xed_decoded_inst_get_memory_displacement_width
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_memory_displacement_width(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_decoded_inst_get_branch_displacement_width
XED_DLL_EXPORT xed_uint_t xed_decoded_inst_get_branch_displacement_width(const xed_decoded_inst_t *p)
xed_get_cpuid_group_enum_for_isa_set
XED_DLL_EXPORT xed_cpuid_group_enum_t xed_get_cpuid_group_enum_for_isa_set(xed_isa_set_enum_t isaset, xed_uint_t i)
Returns the name of the i'th cpuid group associated with the given isa-set. This function is called r...
xed_decoded_inst_get_second_immediate
static XED_INLINE xed_uint8_t xed_decoded_inst_get_second_immediate(const xed_decoded_inst_t *p)
Definition: xed-decoded-inst-api.h:521
xed3_operand_set_cet
static XED_INLINE void xed3_operand_set_cet(xed_decoded_inst_t *d, xed_bits_t opval)
Definition: xed-operand-accessors.h:1531
XED_MACHINE_MODE_LONG_64
@ XED_MACHINE_MODE_LONG_64
64b operating mode
Definition: xed-machine-mode-enum.h:37
xed_flag_dfv_s::of
xed_uint32_t of
Definition: xed-flags.h:38
xed_cpuid_rec_t::leaf
xed_uint32_t leaf
cpuid leaf
Definition: xed-cpuid-rec.h:33
xed_inst_operand
const XED_DLL_EXPORT xed_operand_t * xed_inst_operand(const xed_inst_t *p, unsigned int i)
xed_decoded_inst_mem_written
XED_DLL_EXPORT xed_bool_t xed_decoded_inst_mem_written(const xed_decoded_inst_t *p, unsigned int mem_idx)
xed_operand_action_enum_t
xed_operand_action_enum_t
Definition: xed-operand-action-enum.h:35
xed_attribute
XED_DLL_EXPORT xed_attribute_enum_t xed_attribute(unsigned int i)
xed_reg_enum_t
xed_reg_enum_t
Definition: xed-reg-enum.h:448
xed_flag_dfv_s::sf
xed_uint32_t sf
Definition: xed-flags.h:39
XED_OPERAND_REG3
@ XED_OPERAND_REG3
Definition: xed-operand-enum.h:262
xed_flag_dfv_s
Definition: xed-flags.h:35
XED_ATTRIBUTE_APX_NF
@ XED_ATTRIBUTE_APX_NF
Definition: xed-attribute-enum.h:135
XED_EXCEPTION_INVALID
@ XED_EXCEPTION_INVALID
Definition: xed-exception-enum.h:106
xed_decoded_inst_operand_action
XED_DLL_EXPORT xed_operand_action_enum_t xed_decoded_inst_operand_action(const xed_decoded_inst_t *p, unsigned int operand_index)
Interpret the operand action in light of AVX512 masking and zeroing/merging.
xed_operand_values_has_66_prefix
XED_DLL_EXPORT xed_bool_t xed_operand_values_has_66_prefix(const xed_operand_values_t *p)
xed_operand_values_branch_not_taken_hint
XED_DLL_EXPORT xed_bool_t xed_operand_values_branch_not_taken_hint(const xed_operand_values_t *p)
XED_CPUID_GROUP_INVALID
@ XED_CPUID_GROUP_INVALID
Definition: xed-cpuid-group-enum.h:284
xed_decoded_inst_get_memop_address_width
XED_DLL_EXPORT unsigned int xed_decoded_inst_get_memop_address_width(const xed_decoded_inst_t *p, xed_uint_t memop_idx)
Returns the addressing width in bits (16,32,64) for MEM0 (memop_idx==0) or MEM1 (memop_idx==1).
xed_attribute_enum_t
xed_attribute_enum_t
Definition: xed-attribute-enum.h:131
xed-interface.h
xed_operand_action_enum_t2str
const XED_DLL_EXPORT char * xed_operand_action_enum_t2str(const xed_operand_action_enum_t p)
This converts strings to xed_operand_action_enum_t types.
XED_CPUID_REC_INVALID
@ XED_CPUID_REC_INVALID
Definition: xed-cpuid-rec-enum.h:159
xed_decoded_inst_s
Definition: xed-decoded-inst.h:53
xed_operand_values_mandatory_66_prefix
XED_DLL_EXPORT xed_bool_t xed_operand_values_mandatory_66_prefix(const xed_operand_values_t *p)
xed_attribute_enum_t2str
const XED_DLL_EXPORT char * xed_attribute_enum_t2str(const xed_attribute_enum_t p)
This converts strings to xed_attribute_enum_t types.
xed_operand_values_branch_taken_hint
XED_DLL_EXPORT xed_bool_t xed_operand_values_branch_taken_hint(const xed_operand_values_t *p)
xed_decoded_inst_get_operand_width
XED_DLL_EXPORT xed_uint32_t xed_decoded_inst_get_operand_width(const xed_decoded_inst_t *p)
Returns the operand width in bits: 8/16/32/64.