forked from intelxed/xed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxed-ex1.c
620 lines (554 loc) · 21.2 KB
/
xed-ex1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
/*BEGIN_LEGAL
Copyright (c) 2019 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 */
/// This is the place to start learning about the decoder APIs. It
/// exercises most of the essential features of the decoder.
#include "xed/xed-interface.h"
#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;
const xed_operand_values_t* ov = xed_decoded_inst_operands_const(xedd);
const xed_inst_t* xi = xed_decoded_inst_inst(xedd);
xed_exception_enum_t e = xed_inst_exception(xi);
xed_uint_t np = xed_decoded_inst_get_nprefixes(xedd);
xed_isa_set_enum_t isaset = xed_decoded_inst_get_isa_set(xedd);
if (xed_operand_values_has_real_rep(ov)) {
xed_iclass_enum_t norep =
xed_rep_remove(xed_decoded_inst_get_iclass(xedd));
printf("REAL REP ");
printf("\tcorresponding no-rep iclass: %s\n" ,
xed_iclass_enum_t2str(norep));
}
if (xed_operand_values_has_rep_prefix(ov)) {
printf("F3 PREFIX\n");
}
if (xed_operand_values_has_repne_prefix(ov)) {
printf("F2 PREFIX\n");
}
if (xed_operand_values_has_address_size_prefix(ov)) {
printf("67 PREFIX\n");
}
if (xed_operand_values_has_operand_size_prefix(ov)) {
/* this 66 prefix is not part of the opcode */
printf("66-OSZ PREFIX\n");
}
if (xed_operand_values_has_66_prefix(ov)) {
/* this is any 66 prefix including the above */
printf("ANY 66 PREFIX\n");
}
if (xed_decoded_inst_get_attribute(xedd, XED_ATTRIBUTE_RING0)) {
printf("RING0 only\n");
}
if (e != XED_EXCEPTION_INVALID) {
printf("EXCEPTION TYPE: %s\n", xed_exception_enum_t2str(e));
}
if (xed_decoded_inst_is_broadcast(xedd))
printf("BROADCAST\n");
if ( xed_classify_sse(xedd) || xed_classify_avx(xedd) || xed_classify_avx512(xedd) )
{
if (xed_classify_avx512_maskop(xedd))
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");
if (xed_decoded_inst_get_attribute(xedd, XED_ATTRIBUTE_SIMD_SCALAR))
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)) {
xed_uint_t vec_elements = xed_decoded_inst_avx512_dest_elements(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.
if (xed_decoded_inst_masked_vector_operation(xedd))
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));
for(i=0; i<XED_MAX_CPUID_BITS_PER_ISA_SET; i++)
{
xed_cpuid_bit_enum_t cpuidbit;
xed_cpuid_rec_t crec;
int r;
cpuidbit = xed_get_cpuid_bit_for_isa_set(isaset,i);
if (cpuidbit == XED_CPUID_BIT_INVALID)
break;
printf("%d\tCPUID BIT NAME: [%s]\n", i, xed_cpuid_bit_enum_t2str(cpuidbit));
r = xed_get_cpuid_rec(cpuidbit, &crec);
if (r) {
printf("\tLeaf 0x%08x, subleaf 0x%08x, %s[%u]\n",
crec.leaf, crec.subleaf, xed_reg_enum_t2str(crec.reg),
crec.bit);
}
else {
printf("Could not find cpuid leaf information\n");
}
}
}
void print_branch_hints(xed_decoded_inst_t* xedd) {
if (xed_operand_values_branch_not_taken_hint(xedd))
printf("HINT: NOT TAKEN\n");
else if (xed_operand_values_branch_taken_hint(xedd))
printf("HINT: TAKEN\n");
else if (xed_operand_values_cet_no_track(xedd))
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++) {
xed_attribute_enum_t attr = xed_attribute(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 (xed_decoded_inst_uses_rflags(xedd)) {
xed_simple_flag_t const* rfi = xed_decoded_inst_get_rflags_info(xedd);
xed_flag_set_t const* read_set = xed_simple_flag_get_read_flag_set(rfi);
if (read_set->s.zf) {
printf("READS ZF\n");
}
}
}
void print_flags(xed_decoded_inst_t* xedd) {
unsigned int i, nflags;
if (xed_decoded_inst_uses_rflags(xedd)) {
const xed_simple_flag_t* rfi = xed_decoded_inst_get_rflags_info(xedd);
assert(rfi);
printf("FLAGS:\n");
if (xed_simple_flag_reads_flags(rfi)) {
printf(" reads-rflags ");
}
else if (xed_simple_flag_writes_flags(rfi)) {
//XED provides may-write and must-write information
if (xed_simple_flag_get_may_write(rfi)) {
printf(" may-write-rflags ");
}
if (xed_simple_flag_get_must_write(rfi)) {
printf(" must-write-rflags ");
}
}
nflags = xed_simple_flag_get_nflags(rfi);
for( i=0;i<nflags ;i++) {
const xed_flag_action_t* fa =
xed_simple_flag_get_flag_action(rfi,i);
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 =
xed_simple_flag_get_read_flag_set(rfi);
/* written set include undefined flags */
xed_flag_set_t const* written_set =
xed_simple_flag_get_written_flag_set(rfi);
xed_flag_set_t const* undefined_set =
xed_simple_flag_get_undefined_flag_set(rfi);
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));
}
}
}
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;
xed_reg_enum_t seg;
xed_reg_enum_t base;
xed_reg_enum_t indx;
printf(" %u ",i);
if ( xed_decoded_inst_mem_read(xedd,i)) {
printf(" read ");
r_or_w = 1;
}
if (xed_decoded_inst_mem_written(xedd,i)) {
printf("written ");
r_or_w = 1;
}
if (!r_or_w) {
printf(" agen "); // LEA instructions
}
seg = xed_decoded_inst_get_seg_reg(xedd,i);
if (seg != XED_REG_INVALID) {
printf("SEG= %s ", xed_reg_enum_t2str(seg));
}
base = xed_decoded_inst_get_base_reg(xedd,i);
if (base != XED_REG_INVALID) {
printf("BASE= %3s/%3s ",
xed_reg_enum_t2str(base),
xed_reg_class_enum_t2str(xed_reg_class(base)));
}
indx = xed_decoded_inst_get_index_reg(xedd,i);
if (i == 0 && indx != XED_REG_INVALID) {
printf("INDEX= %3s/%3s ",
xed_reg_enum_t2str(indx),
xed_reg_class_enum_t2str(xed_reg_class(indx)));
if (xed_decoded_inst_get_scale(xedd,i) != 0) {
// only have a scale if the index exists.
printf("SCALE= %u ",
xed_decoded_inst_get_scale(xedd,i));
}
}
if (xed_operand_values_has_memory_displacement(xedd))
{
xed_uint_t disp_bits =
xed_decoded_inst_get_memory_displacement_width(xedd,i);
if (disp_bits)
{
xed_int64_t disp;
printf("DISPLACEMENT_BYTES= %u ", disp_bits);
disp = xed_decoded_inst_get_memory_displacement(xedd,i);
printf("0x" XED_FMT_LX16 " base10=" XED_FMT_LD, disp, disp);
}
}
printf(" ASZ%u=%u\n",
i,
xed_decoded_inst_get_memop_address_width(xedd,i));
}
printf(" MemopBytes = %u\n",
xed_decoded_inst_get_memory_operand_length(xedd,0));
}
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_operand_action_enum_t rw;
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);
xed_operand_enum_t op_name = xed_operand_name(op);
printf("%u %6s ",
i,xed_operand_enum_t2str(op_name));
switch(op_name) {
case XED_OPERAND_AGEN:
case XED_OPERAND_MEM0:
case XED_OPERAND_MEM1:
// 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_RELBR: { // branch displacements
xed_uint_t disp_bits =
xed_decoded_inst_get_branch_displacement_width(xedd);
if (disp_bits) {
xed_int32_t disp =
xed_decoded_inst_get_branch_displacement(xedd);
#if defined (_WIN32) && !defined(PIN_CRT)
_snprintf_s(tbuf, TBUFSZ, TBUFSZ,
"BRANCH_DISPLACEMENT_BYTES= %d %08x",
disp_bits,disp);
#else
snprintf(tbuf, TBUFSZ,
"BRANCH_DISPLACEMENT_BYTES= %d %08x",
disp_bits,disp);
#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;
ibits = xed_decoded_inst_get_immediate_width_bits(xedd);
if (xed_decoded_inst_get_immediate_is_signed(xedd)) {
xed_uint_t rbits = ibits?ibits:8;
xed_int32_t x = xed_decoded_inst_get_signed_immediate(xedd);
xed_uint64_t y = XED_STATIC_CAST(xed_uint64_t,
xed_sign_extend_arbitrary_to_64(
(xed_uint64_t)x,
ibits));
xed_itoa_hex_ul(buf, y, rbits, no_leading_zeros, 64, lowercase);
}
else {
xed_uint64_t x =xed_decoded_inst_get_unsigned_immediate(xedd);
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.
xed_uint8_t x = xed_decoded_inst_get_second_immediate(xedd);
#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;
}
case XED_OPERAND_REG0:
case XED_OPERAND_REG1:
case XED_OPERAND_REG2:
case XED_OPERAND_REG3:
case XED_OPERAND_REG4:
case XED_OPERAND_REG5:
case XED_OPERAND_REG6:
case XED_OPERAND_REG7:
case XED_OPERAND_REG8:
case XED_OPERAND_REG9:
case XED_OPERAND_BASE0:
case XED_OPERAND_BASE1:
{
xed_reg_enum_t r = xed_decoded_inst_get_reg(xedd, op_name);
#if defined (_WIN32) && !defined(PIN_CRT)
_snprintf_s(tbuf, TBUFSZ, TBUFSZ,
"%s=%s",
xed_operand_enum_t2str(op_name),
xed_reg_enum_t2str(r));
#else
snprintf(tbuf,TBUFSZ,
"%s=%s",
xed_operand_enum_t2str(op_name),
xed_reg_enum_t2str(r));
#endif
break;
}
default:
printf("need to add support for printing operand: %s",
xed_operand_enum_t2str(op_name));
assert(0);
}
printf("%21s", tbuf);
rw = xed_decoded_inst_operand_action(xedd,i);
printf(" %10s %3s %9s",
xed_operand_visibility_enum_t2str(
xed_operand_operand_visibility(op)),
xed_operand_action_enum_t2str(rw),
xed_operand_width_enum_t2str(xed_operand_width(op)));
bits = xed_decoded_inst_operand_length_bits(xedd,i);
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(" %3u", xed_decoded_inst_operand_element_size_bits(xedd,i));
printf(" %10s",
xed_operand_element_type_enum_t2str(
xed_decoded_inst_operand_element_type(xedd,i)));
printf(" %10s\n",
xed_reg_class_enum_t2str(
xed_reg_class(
xed_decoded_inst_get_reg(xedd, op_name))));
}
}
int main(int argc, char** argv) {
xed_state_t dstate;
xed_decoded_inst_t xedd;
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;
xed_chip_enum_t chip = XED_CHIP_INVALID;
char const* decode_text=0;
unsigned int len;
xed_error_enum_t xed_error;
#if defined(XED_MPX)
unsigned int mpx_mode=0;
#endif
#if defined(XED_CET)
unsigned int cet_mode=0;
#endif
xed_tables_init();
xed_state_zero(&dstate);
first_argv = 1;
dstate.mmode=XED_MACHINE_MODE_LEGACY_32;
dstate.stack_addr_width=XED_ADDRESS_WIDTH_32b;
for(i=1;i< argcu;i++) {
if (strcmp(argv[i], "-64") == 0) {
assert(already_set_mode == 0);
already_set_mode = 1;
dstate.mmode=XED_MACHINE_MODE_LONG_64;
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;
dstate.mmode=XED_MACHINE_MODE_LEGACY_16;
dstate.stack_addr_width=XED_ADDRESS_WIDTH_16b;
first_argv++;
}
else if (strcmp(argv[i], "-s16") == 0) {
already_set_mode = 1;
dstate.stack_addr_width=XED_ADDRESS_WIDTH_16b;
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;
}
}
assert(first_argv < argcu);
xed_decoded_inst_zero_set_mode(&xedd, &dstate);
xed_decoded_inst_set_input_chip(&xedd, chip);
#if defined(XED_MPX)
xed3_operand_set_mpxmode(&xedd, mpx_mode);
#endif
#if defined(XED_CET)
xed3_operand_set_cet(&xedd, cet_mode);
#endif
// 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);
}
if (len > XED_MAX_INSTRUCTION_BYTES*2) {
printf("Must supply at most 30 nibbles (15 bytes)\n");
exit(1);
}
bytes = xed_convert_ascii_to_hex(decode_text,
itext,
XED_MAX_INSTRUCTION_BYTES);
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) {
case XED_ERROR_NONE:
break;
case XED_ERROR_BUFFER_TOO_SHORT:
printf("Not enough bytes provided\n");
exit(1);
case XED_ERROR_INVALID_FOR_CHIP:
printf("The instruction was not valid for the specified chip.\n");
exit(1);
case XED_ERROR_GENERAL_ERROR:
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",
xed_iclass_enum_t2str(xed_decoded_inst_get_iclass(&xedd)));
printf("category %s\t" ,
xed_category_enum_t2str(xed_decoded_inst_get_category(&xedd)));
printf("ISA-extension %s\t",
xed_extension_enum_t2str(xed_decoded_inst_get_extension(&xedd)));
printf("ISA-set %s\n" ,
xed_isa_set_enum_t2str(xed_decoded_inst_get_isa_set(&xedd)));
printf("instruction-length %u\n",
xed_decoded_inst_get_length(&xedd));
printf("operand-width %u\n",
xed_decoded_inst_get_operand_width(&xedd));
printf("effective-operand-width %u\n",
xed_operand_values_get_effective_operand_width(
xed_decoded_inst_operands_const(&xedd)));
printf("effective-address-width %u\n",
xed_operand_values_get_effective_address_width(
xed_decoded_inst_operands_const(&xedd)));
printf("stack-address-width %u\n",
xed_operand_values_get_stack_address_width(
xed_decoded_inst_operands_const(&xedd)));
printf("iform-enum-name %s\n",
xed_iform_enum_t2str(xed_decoded_inst_get_iform_enum(&xedd)));
printf("iform-enum-name-dispatch (zero based) %u\n",
xed_decoded_inst_get_iform_enum_dispatch(&xedd));
printf("iclass-max-iform-dispatch %u\n",
xed_iform_max_per_iclass(xed_decoded_inst_get_iclass(&xedd)));
printf("Nominal opcode position %u\n",
xed3_operand_get_pos_nominal_opcode(&xedd));
printf("Nominal opcode 0x%02x\n",
xed3_operand_get_nominal_opcode(&xedd));
// 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;
}