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
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
// opcodex86.rs

use arch::x86::archx86::*;
use arch::x86::prefixx86::*;
use arch::x86::registersx86::*;

/// Values for the VEX m-mmmm leading opcode bytes
pub enum VexXopOpcode {
  /// 0x0F leading opcode byte.
  /// Encoded in two bytes.
  Vex0F = 0x1,
  /// 0x0F 0x38 leading opcode bytes.
  Vex0F38 = 0x2,
  /// 0x0F 0x3A leading opcode bytes.
  Vex0F3A = 0x3,
  /// Only XOP instructions.
  Xop8 = 0x8,
  /// Only XOP and TBM instructions.
  Xop9 = 0x9,
  /// TBM instructions.
  XopA = 0xA,
}

/// Effective Address Displacement Sizes
pub enum EADisplacement{
  Size0,
  Size8,
  Size16,
  Size32,
}

#[derive(Debug,PartialEq)]
pub enum RegType{
    EABases,
    AllRegisters,
}

/// Effective Address Bases
#[repr(u8)]
#[derive(Debug)]
#[allow(dead_code)]
pub enum EABases{
    NoBase,
    BXSI,
    BXDI,
    BPSI,
    BPDI,
    SI,
    DI,
    BP,
    BX,
    R8W,
    R9W,
    R10W,
    R11W,
    R12W,
    R13W,
    R14W,
    R15W,
    EAX,
    ECX,
    EDX,
    EBX,
    Sib,
    EBP,
    ESI,
    EDI,
    R8D,
    R9D,
    R10D,
    R11D,
    R12D,
    R13D,
    R14D,
    R15D,
    RAX,
    RCX,
    RDX,
    RBX,
    Sib64,
    RBP,
    RSI,
    RDI,
    R8,
    R9,
    R10,
    R11,
    R12,
    R13,
    R14,
    R15,
    Max,
}

#[repr(u8)]
#[derive(Debug)]
#[allow(dead_code)]
pub enum SibIndexes{
    NoBase,
    BXSI,
    BXDI,
    BPSI,
    BPDI,
    SI,
    DI,
    BP,
    BX,
    R8W,
    R9W,
    R10W,
    R11W,
    R12W,
    R13W,
    R14W,
    R15W,
    EAX,
    ECX,
    EDX,
    EBX,
    Sib,
    EBP,
    ESI,
    EDI,
    R8D,
    R9D,
    R10D,
    R11D,
    R12D,
    R13D,
    R14D,
    R15D,
    RAX,
    RCX,
    RDX,
    RBX,
    Sib64,
    RBP,
    RSI,
    RDI,
    R8,
    R9,
    R10,
    R11,
    R12,
    R13,
    R14,
    R15,
    XMM0,
    XMM1,
    XMM2,
    XMM3,
    XMM4,
    XMM5,
    XMM6,
    XMM7,
    XMM8,
    XMM9,
    XMM10,
    XMM11,
    XMM12,
    XMM13,
    XMM14,
    XMM15,
    XMM16,
    XMM17,
    XMM18,
    XMM19,
    XMM20,
    XMM21,
    XMM22,
    XMM23,
    XMM24,
    XMM25,
    XMM26,
    XMM27,
    XMM28,
    XMM29,
    XMM30,
    XMM31,
    YMM0,
    YMM1,
    YMM2,
    YMM3,
    YMM4,
    YMM5,
    YMM6,
    YMM7,
    YMM8,
    YMM9,
    YMM10,
    YMM11,
    YMM12,
    YMM13,
    YMM14,
    YMM15,
    YMM16,
    YMM17,
    YMM18,
    YMM19,
    YMM20,
    YMM21,
    YMM22,
    YMM23,
    YMM24,
    YMM25,
    YMM26,
    YMM27,
    YMM28,
    YMM29,
    YMM30,
    YMM31,
    ZMM0,
    ZMM1,
    ZMM2,
    ZMM3,
    ZMM4,
    ZMM5,
    ZMM6,
    ZMM7,
    ZMM8,
    ZMM9,
    ZMM10,
    ZMM11,
    ZMM12,
    ZMM13,
    ZMM14,
    ZMM15,
    ZMM16,
    ZMM17,
    ZMM18,
    ZMM19,
    ZMM20,
    ZMM21,
    ZMM22,
    ZMM23,
    ZMM24,
    ZMM25,
    ZMM26,
    ZMM27,
    ZMM28,
    ZMM29,
    ZMM30,
    ZMM31,
    Max,
}

pub enum AllRegisters{
    NoReg,
    AL,
    CL,
    DL,
    BL,
    AH,
    CH,
    DH,
    BH,
    R8B,
    R9B,
    R10B,
    R11B,
    R12B,
    R13B,
    R14B,
    R15B,
    SPL,
    BPL,
    SIL,
    DIL,
    AX,
    CX,
    DX,
    BX,
    SP,
    BP,
    SI,
    DI,
    R8W,
    R9W,
    R10W,
    R11W,
    R12W,
    R13W,
    R14W,
    R15W,
    EAX,
    ECX,
    EDX,
    EBX,
    ESP,
    EBP,
    ESI,
    EDI,
    R8D,
    R9D,
    R10D,
    R11D,
    R12D,
    R13D,
    R14D,
    R15D,
    RAX,
    RCX,
    RDX,
    RBX,
    RSP,
    RBP,
    RSI,
    RDI,
    R8,
    R9,
    R10,
    R11,
    R12,
    R13,
    R14,
    R15,
    MM0,
    MM1,
    MM2,
    MM3,
    MM4,
    MM5,
    MM6,
    MM7,
    XMM0,
    XMM1,
    XMM2,
    XMM3,
    XMM4,
    XMM5,
    XMM6,
    XMM7,
    XMM8,
    XMM9,
    XMM10,
    XMM11,
    XMM12,
    XMM13,
    XMM14,
    XMM15,
    XMM16,
    XMM17,
    XMM18,
    XMM19,
    XMM20,
    XMM21,
    XMM22,
    XMM23,
    XMM24,
    XMM25,
    XMM26,
    XMM27,
    XMM28,
    XMM29,
    XMM30,
    XMM31,
    YMM0,
    YMM1,
    YMM2,
    YMM3,
    YMM4,
    YMM5,
    YMM6,
    YMM7,
    YMM8,
    YMM9,
    YMM10,
    YMM11,
    YMM12,
    YMM13,
    YMM14,
    YMM15,
    YMM16,
    YMM17,
    YMM18,
    YMM19,
    YMM20,
    YMM21,
    YMM22,
    YMM23,
    YMM24,
    YMM25,
    YMM26,
    YMM27,
    YMM28,
    YMM29,
    YMM30,
    YMM31,
    ZMM0,
    ZMM1,
    ZMM2,
    ZMM3,
    ZMM4,
    ZMM5,
    ZMM6,
    ZMM7,
    ZMM8,
    ZMM9,
    ZMM10,
    ZMM11,
    ZMM12,
    ZMM13,
    ZMM14,
    ZMM15,
    ZMM16,
    ZMM17,
    ZMM18,
    ZMM19,
    ZMM20,
    ZMM21,
    ZMM22,
    ZMM23,
    ZMM24,
    ZMM25,
    ZMM26,
    ZMM27,
    ZMM28,
    ZMM29,
    ZMM30,
    ZMM31,
    K0,
    K1,
    K2,
    K3,
    K4,
    K5,
    K6,
    K7,
    ES,
    CS,
    SS,
    DS,
    FS,
    GS,
    DR0,
    DR1,
    DR2,
    DR3,
    DR4,
    DR5,
    DR6,
    DR7,
    CR0,
    CR1,
    CR2,
    CR3,
    CR4,
    CR5,
    CR6,
    CR7,
    CR8,
    CR9,
    CR10,
    CR11,
    CR12,
    CR13,
    CR14,
    CR15,
    RIP,
    Max,
}

impl AllRegisters {
    pub fn translate(_index: u8) -> u8{
        return match _index{
            i if i == AllRegisters::AL as u8=>Registersx86::AL as u8,
            i if i == AllRegisters::CL as u8=>Registersx86::CL as u8,
            i if i == AllRegisters::DL as u8=>Registersx86::DL as u8,
            i if i == AllRegisters::BL as u8=>Registersx86::BL as u8,
            i if i == AllRegisters::AH as u8=>Registersx86::AH as u8,
            i if i == AllRegisters::CH as u8=>Registersx86::CH as u8,
            i if i == AllRegisters::DH as u8=>Registersx86::DH as u8,
            i if i == AllRegisters::BH as u8=>Registersx86::BH as u8,
            i if i == AllRegisters::R8B as u8=>Registersx86::R8B as u8,
            i if i == AllRegisters::R9B as u8=>Registersx86::R9B as u8,
            i if i == AllRegisters::R10B as u8=>Registersx86::R10B as u8,
            i if i == AllRegisters::R11B as u8=>Registersx86::R11B as u8,
            i if i == AllRegisters::R12B as u8=>Registersx86::R12B as u8,
            i if i == AllRegisters::R13B as u8=>Registersx86::R13B as u8,
            i if i == AllRegisters::R14B as u8=>Registersx86::R14B as u8,
            i if i == AllRegisters::R15B as u8=>Registersx86::R15B as u8,
            i if i == AllRegisters::SPL as u8=>Registersx86::SPL as u8,
            i if i == AllRegisters::BPL as u8=>Registersx86::BPL as u8,
            i if i == AllRegisters::SIL as u8=>Registersx86::SIL as u8,
            i if i == AllRegisters::DIL as u8=>Registersx86::DIL as u8,
            i if i == AllRegisters::AX as u8=>Registersx86::AX as u8,
            i if i == AllRegisters::CX as u8=>Registersx86::CX as u8,
            i if i == AllRegisters::DX as u8=>Registersx86::DX as u8,
            i if i == AllRegisters::BX as u8=>Registersx86::BX as u8,
            i if i == AllRegisters::SP as u8=>Registersx86::SP as u8,
            i if i == AllRegisters::BP as u8=>Registersx86::BP as u8,
            i if i == AllRegisters::SI as u8=>Registersx86::SI as u8,
            i if i == AllRegisters::DI as u8=>Registersx86::DI as u8,
            i if i == AllRegisters::R8W as u8=>Registersx86::R8W as u8,
            i if i == AllRegisters::R9W as u8=>Registersx86::R9W as u8,
            i if i == AllRegisters::R10W as u8=>Registersx86::R10W as u8,
            i if i == AllRegisters::R11W as u8=>Registersx86::R11W as u8,
            i if i == AllRegisters::R12W as u8=>Registersx86::R12W as u8,
            i if i == AllRegisters::R13W as u8=>Registersx86::R13W as u8,
            i if i == AllRegisters::R14W as u8=>Registersx86::R14W as u8,
            i if i == AllRegisters::R15W as u8=>Registersx86::R15W as u8,
            i if i == AllRegisters::EAX as u8=>Registersx86::EAX as u8,
            i if i == AllRegisters::ECX as u8=>Registersx86::ECX as u8,
            i if i == AllRegisters::EDX as u8=>Registersx86::EDX as u8,
            i if i == AllRegisters::EBX as u8=>Registersx86::EBX as u8,
            i if i == AllRegisters::ESP as u8=>Registersx86::ESP as u8,
            i if i == AllRegisters::EBP as u8=>Registersx86::EBP as u8,
            i if i == AllRegisters::ESI as u8=>Registersx86::ESI as u8,
            i if i == AllRegisters::EDI as u8=>Registersx86::EDI as u8,
            i if i == AllRegisters::R8D as u8=>Registersx86::R8D as u8,
            i if i == AllRegisters::R9D as u8=>Registersx86::R9D as u8,
            i if i == AllRegisters::R10D as u8=>Registersx86::R10D as u8,
            i if i == AllRegisters::R11D as u8=>Registersx86::R11D as u8,
            i if i == AllRegisters::R12D as u8=>Registersx86::R12D as u8,
            i if i == AllRegisters::R13D as u8=>Registersx86::R13D as u8,
            i if i == AllRegisters::R14D as u8=>Registersx86::R14D as u8,
            i if i == AllRegisters::R15D as u8=>Registersx86::R15D as u8,
            i if i == AllRegisters::RAX as u8=>Registersx86::RAX as u8,
            i if i == AllRegisters::RCX as u8=>Registersx86::RCX as u8,
            i if i == AllRegisters::RDX as u8=>Registersx86::RDX as u8,
            i if i == AllRegisters::RBX as u8=>Registersx86::RBX as u8,
            i if i == AllRegisters::RSP as u8=>Registersx86::RSP as u8,
            i if i == AllRegisters::RBP as u8=>Registersx86::RBP as u8,
            i if i == AllRegisters::RSI as u8=>Registersx86::RSI as u8,
            i if i == AllRegisters::RDI as u8=>Registersx86::RDI as u8,
            i if i == AllRegisters::R8 as u8=>Registersx86::R8 as u8,
            i if i == AllRegisters::R9 as u8=>Registersx86::R9 as u8,
            i if i == AllRegisters::R10 as u8=>Registersx86::R10 as u8,
            i if i == AllRegisters::R11 as u8=>Registersx86::R11 as u8,
            i if i == AllRegisters::R12 as u8=>Registersx86::R12 as u8,
            i if i == AllRegisters::R13 as u8=>Registersx86::R13 as u8,
            i if i == AllRegisters::R14 as u8=>Registersx86::R14 as u8,
            i if i == AllRegisters::R15 as u8=>Registersx86::R15 as u8,
            i if i == AllRegisters::MM0 as u8=>Registersx86::MM0 as u8,
            i if i == AllRegisters::MM1 as u8=>Registersx86::MM1 as u8,
            i if i == AllRegisters::MM2 as u8=>Registersx86::MM2 as u8,
            i if i == AllRegisters::MM3 as u8=>Registersx86::MM3 as u8,
            i if i == AllRegisters::MM4 as u8=>Registersx86::MM4 as u8,
            i if i == AllRegisters::MM5 as u8=>Registersx86::MM5 as u8,
            i if i == AllRegisters::MM6 as u8=>Registersx86::MM6 as u8,
            i if i == AllRegisters::MM7 as u8=>Registersx86::MM7 as u8,
            i if i == AllRegisters::XMM0 as u8=>Registersx86::XMM0 as u8,
            i if i == AllRegisters::XMM1 as u8=>Registersx86::XMM1 as u8,
            i if i == AllRegisters::XMM2 as u8=>Registersx86::XMM2 as u8,
            i if i == AllRegisters::XMM3 as u8=>Registersx86::XMM3 as u8,
            i if i == AllRegisters::XMM4 as u8=>Registersx86::XMM4 as u8,
            i if i == AllRegisters::XMM5 as u8=>Registersx86::XMM5 as u8,
            i if i == AllRegisters::XMM6 as u8=>Registersx86::XMM6 as u8,
            i if i == AllRegisters::XMM7 as u8=>Registersx86::XMM7 as u8,
            i if i == AllRegisters::XMM8 as u8=>Registersx86::XMM8 as u8,
            i if i == AllRegisters::XMM9 as u8=>Registersx86::XMM9 as u8,
            i if i == AllRegisters::XMM10 as u8=>Registersx86::XMM10 as u8,
            i if i == AllRegisters::XMM11 as u8=>Registersx86::XMM11 as u8,
            i if i == AllRegisters::XMM12 as u8=>Registersx86::XMM12 as u8,
            i if i == AllRegisters::XMM13 as u8=>Registersx86::XMM13 as u8,
            i if i == AllRegisters::XMM14 as u8=>Registersx86::XMM14 as u8,
            i if i == AllRegisters::XMM15 as u8=>Registersx86::XMM15 as u8,
            i if i == AllRegisters::XMM16 as u8=>Registersx86::XMM16 as u8,
            i if i == AllRegisters::XMM17 as u8=>Registersx86::XMM17 as u8,
            i if i == AllRegisters::XMM18 as u8=>Registersx86::XMM18 as u8,
            i if i == AllRegisters::XMM19 as u8=>Registersx86::XMM19 as u8,
            i if i == AllRegisters::XMM20 as u8=>Registersx86::XMM20 as u8,
            i if i == AllRegisters::XMM21 as u8=>Registersx86::XMM21 as u8,
            i if i == AllRegisters::XMM22 as u8=>Registersx86::XMM22 as u8,
            i if i == AllRegisters::XMM23 as u8=>Registersx86::XMM23 as u8,
            i if i == AllRegisters::XMM24 as u8=>Registersx86::XMM24 as u8,
            i if i == AllRegisters::XMM25 as u8=>Registersx86::XMM25 as u8,
            i if i == AllRegisters::XMM26 as u8=>Registersx86::XMM26 as u8,
            i if i == AllRegisters::XMM27 as u8=>Registersx86::XMM27 as u8,
            i if i == AllRegisters::XMM28 as u8=>Registersx86::XMM28 as u8,
            i if i == AllRegisters::XMM29 as u8=>Registersx86::XMM29 as u8,
            i if i == AllRegisters::XMM30 as u8=>Registersx86::XMM30 as u8,
            i if i == AllRegisters::XMM31 as u8=>Registersx86::XMM31 as u8,
            i if i == AllRegisters::YMM0 as u8=>Registersx86::YMM0 as u8,
            i if i == AllRegisters::YMM1 as u8=>Registersx86::YMM1 as u8,
            i if i == AllRegisters::YMM2 as u8=>Registersx86::YMM2 as u8,
            i if i == AllRegisters::YMM3 as u8=>Registersx86::YMM3 as u8,
            i if i == AllRegisters::YMM4 as u8=>Registersx86::YMM4 as u8,
            i if i == AllRegisters::YMM5 as u8=>Registersx86::YMM5 as u8,
            i if i == AllRegisters::YMM6 as u8=>Registersx86::YMM6 as u8,
            i if i == AllRegisters::YMM7 as u8=>Registersx86::YMM7 as u8,
            i if i == AllRegisters::YMM8 as u8=>Registersx86::YMM8 as u8,
            i if i == AllRegisters::YMM9 as u8=>Registersx86::YMM9 as u8,
            i if i == AllRegisters::YMM10 as u8=>Registersx86::YMM10 as u8,
            i if i == AllRegisters::YMM11 as u8=>Registersx86::YMM11 as u8,
            i if i == AllRegisters::YMM12 as u8=>Registersx86::YMM12 as u8,
            i if i == AllRegisters::YMM13 as u8=>Registersx86::YMM13 as u8,
            i if i == AllRegisters::YMM14 as u8=>Registersx86::YMM14 as u8,
            i if i == AllRegisters::YMM15 as u8=>Registersx86::YMM15 as u8,
            i if i == AllRegisters::YMM16 as u8=>Registersx86::YMM16 as u8,
            i if i == AllRegisters::YMM17 as u8=>Registersx86::YMM17 as u8,
            i if i == AllRegisters::YMM18 as u8=>Registersx86::YMM18 as u8,
            i if i == AllRegisters::YMM19 as u8=>Registersx86::YMM19 as u8,
            i if i == AllRegisters::YMM20 as u8=>Registersx86::YMM20 as u8,
            i if i == AllRegisters::YMM21 as u8=>Registersx86::YMM21 as u8,
            i if i == AllRegisters::YMM22 as u8=>Registersx86::YMM22 as u8,
            i if i == AllRegisters::YMM23 as u8=>Registersx86::YMM23 as u8,
            i if i == AllRegisters::YMM24 as u8=>Registersx86::YMM24 as u8,
            i if i == AllRegisters::YMM25 as u8=>Registersx86::YMM25 as u8,
            i if i == AllRegisters::YMM26 as u8=>Registersx86::YMM26 as u8,
            i if i == AllRegisters::YMM27 as u8=>Registersx86::YMM27 as u8,
            i if i == AllRegisters::YMM28 as u8=>Registersx86::YMM28 as u8,
            i if i == AllRegisters::YMM29 as u8=>Registersx86::YMM29 as u8,
            i if i == AllRegisters::YMM30 as u8=>Registersx86::YMM30 as u8,
            i if i == AllRegisters::YMM31 as u8=>Registersx86::YMM31 as u8,
            i if i == AllRegisters::ZMM0 as u8=>Registersx86::ZMM0 as u8,
            i if i == AllRegisters::ZMM1 as u8=>Registersx86::ZMM1 as u8,
            i if i == AllRegisters::ZMM2 as u8=>Registersx86::ZMM2 as u8,
            i if i == AllRegisters::ZMM3 as u8=>Registersx86::ZMM3 as u8,
            i if i == AllRegisters::ZMM4 as u8=>Registersx86::ZMM4 as u8,
            i if i == AllRegisters::ZMM5 as u8=>Registersx86::ZMM5 as u8,
            i if i == AllRegisters::ZMM6 as u8=>Registersx86::ZMM6 as u8,
            i if i == AllRegisters::ZMM7 as u8=>Registersx86::ZMM7 as u8,
            i if i == AllRegisters::ZMM8 as u8=>Registersx86::ZMM8 as u8,
            i if i == AllRegisters::ZMM9 as u8=>Registersx86::ZMM9 as u8,
            i if i == AllRegisters::ZMM10 as u8=>Registersx86::ZMM10 as u8,
            i if i == AllRegisters::ZMM11 as u8=>Registersx86::ZMM11 as u8,
            i if i == AllRegisters::ZMM12 as u8=>Registersx86::ZMM12 as u8,
            i if i == AllRegisters::ZMM13 as u8=>Registersx86::ZMM13 as u8,
            i if i == AllRegisters::ZMM14 as u8=>Registersx86::ZMM14 as u8,
            i if i == AllRegisters::ZMM15 as u8=>Registersx86::ZMM15 as u8,
            i if i == AllRegisters::ZMM16 as u8=>Registersx86::ZMM16 as u8,
            i if i == AllRegisters::ZMM17 as u8=>Registersx86::ZMM17 as u8,
            i if i == AllRegisters::ZMM18 as u8=>Registersx86::ZMM18 as u8,
            i if i == AllRegisters::ZMM19 as u8=>Registersx86::ZMM19 as u8,
            i if i == AllRegisters::ZMM20 as u8=>Registersx86::ZMM20 as u8,
            i if i == AllRegisters::ZMM21 as u8=>Registersx86::ZMM21 as u8,
            i if i == AllRegisters::ZMM22 as u8=>Registersx86::ZMM22 as u8,
            i if i == AllRegisters::ZMM23 as u8=>Registersx86::ZMM23 as u8,
            i if i == AllRegisters::ZMM24 as u8=>Registersx86::ZMM24 as u8,
            i if i == AllRegisters::ZMM25 as u8=>Registersx86::ZMM25 as u8,
            i if i == AllRegisters::ZMM26 as u8=>Registersx86::ZMM26 as u8,
            i if i == AllRegisters::ZMM27 as u8=>Registersx86::ZMM27 as u8,
            i if i == AllRegisters::ZMM28 as u8=>Registersx86::ZMM28 as u8,
            i if i == AllRegisters::ZMM29 as u8=>Registersx86::ZMM29 as u8,
            i if i == AllRegisters::ZMM30 as u8=>Registersx86::ZMM30 as u8,
            i if i == AllRegisters::ZMM31 as u8=>Registersx86::ZMM31 as u8,
            i if i == AllRegisters::K0 as u8=>Registersx86::K0 as u8,
            i if i == AllRegisters::K1 as u8=>Registersx86::K1 as u8,
            i if i == AllRegisters::K2 as u8=>Registersx86::K2 as u8,
            i if i == AllRegisters::K3 as u8=>Registersx86::K3 as u8,
            i if i == AllRegisters::K4 as u8=>Registersx86::K4 as u8,
            i if i == AllRegisters::K5 as u8=>Registersx86::K5 as u8,
            i if i == AllRegisters::K6 as u8=>Registersx86::K6 as u8,
            i if i == AllRegisters::K7 as u8=>Registersx86::K7 as u8,
            i if i == AllRegisters::ES as u8=>Registersx86::ES as u8,
            i if i == AllRegisters::CS as u8=>Registersx86::CS as u8,
            i if i == AllRegisters::SS as u8=>Registersx86::SS as u8,
            i if i == AllRegisters::DS as u8=>Registersx86::DS as u8,
            i if i == AllRegisters::FS as u8=>Registersx86::FS as u8,
            i if i == AllRegisters::GS as u8=>Registersx86::GS as u8,
            i if i == AllRegisters::DR0 as u8=>Registersx86::DR0 as u8,
            i if i == AllRegisters::DR1 as u8=>Registersx86::DR1 as u8,
            i if i == AllRegisters::DR2 as u8=>Registersx86::DR2 as u8,
            i if i == AllRegisters::DR3 as u8=>Registersx86::DR3 as u8,
            i if i == AllRegisters::DR4 as u8=>Registersx86::DR4 as u8,
            i if i == AllRegisters::DR5 as u8=>Registersx86::DR5 as u8,
            i if i == AllRegisters::DR6 as u8=>Registersx86::DR6 as u8,
            i if i == AllRegisters::DR7 as u8=>Registersx86::DR7 as u8,
            i if i == AllRegisters::CR0 as u8=>Registersx86::CR0 as u8,
            i if i == AllRegisters::CR1 as u8=>Registersx86::CR1 as u8,
            i if i == AllRegisters::CR2 as u8=>Registersx86::CR2 as u8,
            i if i == AllRegisters::CR3 as u8=>Registersx86::CR3 as u8,
            i if i == AllRegisters::CR4 as u8=>Registersx86::CR4 as u8,
            i if i == AllRegisters::CR5 as u8=>Registersx86::CR5 as u8,
            i if i == AllRegisters::CR6 as u8=>Registersx86::CR6 as u8,
            i if i == AllRegisters::CR7 as u8=>Registersx86::CR7 as u8,
            i if i == AllRegisters::CR8 as u8=>Registersx86::CR8 as u8,
            i if i == AllRegisters::CR9 as u8=>Registersx86::CR9 as u8,
            i if i == AllRegisters::CR10 as u8=>Registersx86::CR10 as u8,
            i if i == AllRegisters::CR11 as u8=>Registersx86::CR11 as u8,
            i if i == AllRegisters::CR12 as u8=>Registersx86::CR12 as u8,
            i if i == AllRegisters::CR13 as u8=>Registersx86::CR13 as u8,
            i if i == AllRegisters::CR14 as u8=>Registersx86::CR14 as u8,
            i if i == AllRegisters::CR15 as u8=>Registersx86::CR15 as u8,
            i if i == AllRegisters::RIP as u8=>Registersx86::RIP as u8,
            _=>0,
        }
    }
}

impl EABases{
    pub fn translate(_index: u8) -> u8{
        return match _index{
            i if i == EABases::BXSI as u8=>Registersx86::BX as u8,
            i if i == EABases::BXDI as u8=>Registersx86::BX as u8,
            i if i == EABases::BPSI as u8=>Registersx86::BP as u8,
            i if i == EABases::BPDI as u8=>Registersx86::BP as u8,
            i if i == EABases::SI as u8=>Registersx86::SI as u8,
            i if i == EABases::DI as u8=>Registersx86::DI as u8,
            i if i == EABases::BP as u8=>Registersx86::BP as u8,
            i if i == EABases::BX as u8=>Registersx86::BX as u8,
            i if i == EABases::R8W as u8=>Registersx86::R8W as u8,
            i if i == EABases::R9W as u8=>Registersx86::R9W as u8,
            i if i == EABases::R10W as u8=>Registersx86::R10W as u8,
            i if i == EABases::R11W as u8=>Registersx86::R11W as u8,
            i if i == EABases::R12W as u8=>Registersx86::R12W as u8,
            i if i == EABases::R13W as u8=>Registersx86::R13W as u8,
            i if i == EABases::R14W as u8=>Registersx86::R14W as u8,
            i if i == EABases::R15W as u8=>Registersx86::R15W as u8,
            i if i == EABases::EAX as u8=>Registersx86::EAX as u8,
            i if i == EABases::ECX as u8=>Registersx86::ECX as u8,
            i if i == EABases::EDX as u8=>Registersx86::EDX as u8,
            i if i == EABases::EBX as u8=>Registersx86::EBX as u8,
            i if i == EABases::EBP as u8=>Registersx86::EBP as u8,
            i if i == EABases::ESI as u8=>Registersx86::ESI as u8,
            i if i == EABases::EDI as u8=>Registersx86::EDI as u8,
            i if i == EABases::R8D as u8=>Registersx86::R8D as u8,
            i if i == EABases::R9D as u8=>Registersx86::R9D as u8,
            i if i == EABases::R10D as u8=>Registersx86::R10D as u8,
            i if i == EABases::R11D as u8=>Registersx86::R11D as u8,
            i if i == EABases::R12D as u8=>Registersx86::R12D as u8,
            i if i == EABases::R13D as u8=>Registersx86::R13D as u8,
            i if i == EABases::R14D as u8=>Registersx86::R14D as u8,
            i if i == EABases::R15D as u8=>Registersx86::R15D as u8,
            i if i == EABases::RAX as u8=>Registersx86::RAX as u8,
            i if i == EABases::RCX as u8=>Registersx86::RCX as u8,
            i if i == EABases::RDX as u8=>Registersx86::RDX as u8,
            i if i == EABases::RBX as u8=>Registersx86::RBX as u8,
            i if i == EABases::RBP as u8=>Registersx86::RBP as u8,
            i if i == EABases::RSI as u8=>Registersx86::RSI as u8,
            i if i == EABases::RDI as u8=>Registersx86::RDI as u8,
            i if i == EABases::R8 as u8=>Registersx86::R8 as u8,
            i if i == EABases::R9 as u8=>Registersx86::R9 as u8,
            i if i == EABases::R10 as u8=>Registersx86::R10 as u8,
            i if i == EABases::R11 as u8=>Registersx86::R11 as u8,
            i if i == EABases::R12 as u8=>Registersx86::R12 as u8,
            i if i == EABases::R13 as u8=>Registersx86::R13 as u8,
            i if i == EABases::R14 as u8=>Registersx86::R14 as u8,
            i if i == EABases::R15 as u8=>Registersx86::R15 as u8,
            _=>0,
        }
    }
}

impl SibIndexes{
    pub fn translate(_index: u8) -> u8{
        return match _index{
            i if i == SibIndexes::BXSI as u8=>Registersx86::BX as u8,
            i if i == SibIndexes::BXDI as u8=>Registersx86::BX as u8,
            i if i == SibIndexes::BPSI as u8=>Registersx86::BP as u8,
            i if i == SibIndexes::BPDI as u8=>Registersx86::BP as u8,
            i if i == SibIndexes::SI as u8=>Registersx86::SI as u8,
            i if i == SibIndexes::DI as u8=>Registersx86::DI as u8,
            i if i == SibIndexes::BP as u8=>Registersx86::BP as u8,
            i if i == SibIndexes::BX as u8=>Registersx86::BX as u8,
            i if i == SibIndexes::R8W as u8=>Registersx86::R8W as u8,
            i if i == SibIndexes::R9W as u8=>Registersx86::R9W as u8,
            i if i == SibIndexes::R10W as u8=>Registersx86::R10W as u8,
            i if i == SibIndexes::R11W as u8=>Registersx86::R11W as u8,
            i if i == SibIndexes::R12W as u8=>Registersx86::R12W as u8,
            i if i == SibIndexes::R13W as u8=>Registersx86::R13W as u8,
            i if i == SibIndexes::R14W as u8=>Registersx86::R14W as u8,
            i if i == SibIndexes::R15W as u8=>Registersx86::R15W as u8,
            i if i == SibIndexes::EAX as u8=>Registersx86::EAX as u8,
            i if i == SibIndexes::ECX as u8=>Registersx86::ECX as u8,
            i if i == SibIndexes::EDX as u8=>Registersx86::EDX as u8,
            i if i == SibIndexes::EBX as u8=>Registersx86::EBX as u8,
            i if i == SibIndexes::EBP as u8=>Registersx86::EBP as u8,
            i if i == SibIndexes::ESI as u8=>Registersx86::ESI as u8,
            i if i == SibIndexes::EDI as u8=>Registersx86::EDI as u8,
            i if i == SibIndexes::R8D as u8=>Registersx86::R8D as u8,
            i if i == SibIndexes::R9D as u8=>Registersx86::R9D as u8,
            i if i == SibIndexes::R10D as u8=>Registersx86::R10D as u8,
            i if i == SibIndexes::R11D as u8=>Registersx86::R11D as u8,
            i if i == SibIndexes::R12D as u8=>Registersx86::R12D as u8,
            i if i == SibIndexes::R13D as u8=>Registersx86::R13D as u8,
            i if i == SibIndexes::R14D as u8=>Registersx86::R14D as u8,
            i if i == SibIndexes::R15D as u8=>Registersx86::R15D as u8,
            i if i == SibIndexes::RAX as u8=>Registersx86::RAX as u8,
            i if i == SibIndexes::RCX as u8=>Registersx86::RCX as u8,
            i if i == SibIndexes::RDX as u8=>Registersx86::RDX as u8,
            i if i == SibIndexes::RBX as u8=>Registersx86::RBX as u8,
            i if i == SibIndexes::RBP as u8=>Registersx86::RBP as u8,
            i if i == SibIndexes::RSI as u8=>Registersx86::RSI as u8,
            i if i == SibIndexes::RDI as u8=>Registersx86::RDI as u8,
            i if i == SibIndexes::R8 as u8=>Registersx86::R8 as u8,
            i if i == SibIndexes::R9 as u8=>Registersx86::R9 as u8,
            i if i == SibIndexes::R10 as u8=>Registersx86::R10 as u8,
            i if i == SibIndexes::R11 as u8=>Registersx86::R11 as u8,
            i if i == SibIndexes::R12 as u8=>Registersx86::R12 as u8,
            i if i == SibIndexes::R13 as u8=>Registersx86::R13 as u8,
            i if i == SibIndexes::R14 as u8=>Registersx86::R14 as u8,
            i if i == SibIndexes::R15 as u8=>Registersx86::R15 as u8,
            i if i == SibIndexes::XMM0 as u8=>Registersx86::XMM0 as u8,
            i if i == SibIndexes::XMM1 as u8=>Registersx86::XMM1 as u8,
            i if i == SibIndexes::XMM2 as u8=>Registersx86::XMM2 as u8,
            i if i == SibIndexes::XMM3 as u8=>Registersx86::XMM3 as u8,
            i if i == SibIndexes::XMM4 as u8=>Registersx86::XMM4 as u8,
            i if i == SibIndexes::XMM5 as u8=>Registersx86::XMM5 as u8,
            i if i == SibIndexes::XMM6 as u8=>Registersx86::XMM6 as u8,
            i if i == SibIndexes::XMM7 as u8=>Registersx86::XMM7 as u8,
            i if i == SibIndexes::XMM8 as u8=>Registersx86::XMM8 as u8,
            i if i == SibIndexes::XMM9 as u8=>Registersx86::XMM9 as u8,
            i if i == SibIndexes::XMM10 as u8=>Registersx86::XMM10 as u8,
            i if i == SibIndexes::XMM11 as u8=>Registersx86::XMM11 as u8,
            i if i == SibIndexes::XMM12 as u8=>Registersx86::XMM12 as u8,
            i if i == SibIndexes::XMM13 as u8=>Registersx86::XMM13 as u8,
            i if i == SibIndexes::XMM14 as u8=>Registersx86::XMM14 as u8,
            i if i == SibIndexes::XMM15 as u8=>Registersx86::XMM15 as u8,
            i if i == SibIndexes::XMM16 as u8=>Registersx86::XMM16 as u8,
            i if i == SibIndexes::XMM17 as u8=>Registersx86::XMM17 as u8,
            i if i == SibIndexes::XMM18 as u8=>Registersx86::XMM18 as u8,
            i if i == SibIndexes::XMM19 as u8=>Registersx86::XMM19 as u8,
            i if i == SibIndexes::XMM20 as u8=>Registersx86::XMM20 as u8,
            i if i == SibIndexes::XMM21 as u8=>Registersx86::XMM21 as u8,
            i if i == SibIndexes::XMM22 as u8=>Registersx86::XMM22 as u8,
            i if i == SibIndexes::XMM23 as u8=>Registersx86::XMM23 as u8,
            i if i == SibIndexes::XMM24 as u8=>Registersx86::XMM24 as u8,
            i if i == SibIndexes::XMM25 as u8=>Registersx86::XMM25 as u8,
            i if i == SibIndexes::XMM26 as u8=>Registersx86::XMM26 as u8,
            i if i == SibIndexes::XMM27 as u8=>Registersx86::XMM27 as u8,
            i if i == SibIndexes::XMM28 as u8=>Registersx86::XMM28 as u8,
            i if i == SibIndexes::XMM29 as u8=>Registersx86::XMM29 as u8,
            i if i == SibIndexes::XMM30 as u8=>Registersx86::XMM30 as u8,
            i if i == SibIndexes::XMM31 as u8=>Registersx86::XMM31 as u8,
            i if i == SibIndexes::YMM0 as u8=>Registersx86::YMM0 as u8,
            i if i == SibIndexes::YMM1 as u8=>Registersx86::YMM1 as u8,
            i if i == SibIndexes::YMM2 as u8=>Registersx86::YMM2 as u8,
            i if i == SibIndexes::YMM3 as u8=>Registersx86::YMM3 as u8,
            i if i == SibIndexes::YMM4 as u8=>Registersx86::YMM4 as u8,
            i if i == SibIndexes::YMM5 as u8=>Registersx86::YMM5 as u8,
            i if i == SibIndexes::YMM6 as u8=>Registersx86::YMM6 as u8,
            i if i == SibIndexes::YMM7 as u8=>Registersx86::YMM7 as u8,
            i if i == SibIndexes::YMM8 as u8=>Registersx86::YMM8 as u8,
            i if i == SibIndexes::YMM9 as u8=>Registersx86::YMM9 as u8,
            i if i == SibIndexes::YMM10 as u8=>Registersx86::YMM10 as u8,
            i if i == SibIndexes::YMM11 as u8=>Registersx86::YMM11 as u8,
            i if i == SibIndexes::YMM12 as u8=>Registersx86::YMM12 as u8,
            i if i == SibIndexes::YMM13 as u8=>Registersx86::YMM13 as u8,
            i if i == SibIndexes::YMM14 as u8=>Registersx86::YMM14 as u8,
            i if i == SibIndexes::YMM15 as u8=>Registersx86::YMM15 as u8,
            i if i == SibIndexes::YMM16 as u8=>Registersx86::YMM16 as u8,
            i if i == SibIndexes::YMM17 as u8=>Registersx86::YMM17 as u8,
            i if i == SibIndexes::YMM18 as u8=>Registersx86::YMM18 as u8,
            i if i == SibIndexes::YMM19 as u8=>Registersx86::YMM19 as u8,
            i if i == SibIndexes::YMM20 as u8=>Registersx86::YMM20 as u8,
            i if i == SibIndexes::YMM21 as u8=>Registersx86::YMM21 as u8,
            i if i == SibIndexes::YMM22 as u8=>Registersx86::YMM22 as u8,
            i if i == SibIndexes::YMM23 as u8=>Registersx86::YMM23 as u8,
            i if i == SibIndexes::YMM24 as u8=>Registersx86::YMM24 as u8,
            i if i == SibIndexes::YMM25 as u8=>Registersx86::YMM25 as u8,
            i if i == SibIndexes::YMM26 as u8=>Registersx86::YMM26 as u8,
            i if i == SibIndexes::YMM27 as u8=>Registersx86::YMM27 as u8,
            i if i == SibIndexes::YMM28 as u8=>Registersx86::YMM28 as u8,
            i if i == SibIndexes::YMM29 as u8=>Registersx86::YMM29 as u8,
            i if i == SibIndexes::YMM30 as u8=>Registersx86::YMM30 as u8,
            i if i == SibIndexes::YMM31 as u8=>Registersx86::YMM31 as u8,
            i if i == SibIndexes::ZMM0 as u8=>Registersx86::ZMM0 as u8,
            i if i == SibIndexes::ZMM1 as u8=>Registersx86::ZMM1 as u8,
            i if i == SibIndexes::ZMM2 as u8=>Registersx86::ZMM2 as u8,
            i if i == SibIndexes::ZMM3 as u8=>Registersx86::ZMM3 as u8,
            i if i == SibIndexes::ZMM4 as u8=>Registersx86::ZMM4 as u8,
            i if i == SibIndexes::ZMM5 as u8=>Registersx86::ZMM5 as u8,
            i if i == SibIndexes::ZMM6 as u8=>Registersx86::ZMM6 as u8,
            i if i == SibIndexes::ZMM7 as u8=>Registersx86::ZMM7 as u8,
            i if i == SibIndexes::ZMM8 as u8=>Registersx86::ZMM8 as u8,
            i if i == SibIndexes::ZMM9 as u8=>Registersx86::ZMM9 as u8,
            i if i == SibIndexes::ZMM10 as u8=>Registersx86::ZMM10 as u8,
            i if i == SibIndexes::ZMM11 as u8=>Registersx86::ZMM11 as u8,
            i if i == SibIndexes::ZMM12 as u8=>Registersx86::ZMM12 as u8,
            i if i == SibIndexes::ZMM13 as u8=>Registersx86::ZMM13 as u8,
            i if i == SibIndexes::ZMM14 as u8=>Registersx86::ZMM14 as u8,
            i if i == SibIndexes::ZMM15 as u8=>Registersx86::ZMM15 as u8,
            i if i == SibIndexes::ZMM16 as u8=>Registersx86::ZMM16 as u8,
            i if i == SibIndexes::ZMM17 as u8=>Registersx86::ZMM17 as u8,
            i if i == SibIndexes::ZMM18 as u8=>Registersx86::ZMM18 as u8,
            i if i == SibIndexes::ZMM19 as u8=>Registersx86::ZMM19 as u8,
            i if i == SibIndexes::ZMM20 as u8=>Registersx86::ZMM20 as u8,
            i if i == SibIndexes::ZMM21 as u8=>Registersx86::ZMM21 as u8,
            i if i == SibIndexes::ZMM22 as u8=>Registersx86::ZMM22 as u8,
            i if i == SibIndexes::ZMM23 as u8=>Registersx86::ZMM23 as u8,
            i if i == SibIndexes::ZMM24 as u8=>Registersx86::ZMM24 as u8,
            i if i == SibIndexes::ZMM25 as u8=>Registersx86::ZMM25 as u8,
            i if i == SibIndexes::ZMM26 as u8=>Registersx86::ZMM26 as u8,
            i if i == SibIndexes::ZMM27 as u8=>Registersx86::ZMM27 as u8,
            i if i == SibIndexes::ZMM28 as u8=>Registersx86::ZMM28 as u8,
            i if i == SibIndexes::ZMM29 as u8=>Registersx86::ZMM29 as u8,
            i if i == SibIndexes::ZMM30 as u8=>Registersx86::ZMM30 as u8,
            i if i == SibIndexes::ZMM31 as u8=>Registersx86::ZMM31 as u8,
            _=>0,
        }
    }
}

/// Set the opcode byte(s)
fn opcode_set(
    _instr: &mut Instructionx86, 
    _kind: OpcodeTypex86, 
    _byte2: u8, 
    _byte3: u8) -> bool
{
    disasm_debug!("opcode_set()");
    let mut byte: u8 = 0;
    if !get_byte(_instr, &mut byte){ return false;}
    _instr.opcode.kind = _kind;
    _instr.opcode.escape_byte2 = _byte2;
    _instr.opcode.escape_byte3 = _byte3;
    _instr.opcode.data[0] = byte;
    _instr.opcode.size = 1;
    return true;
}

fn init_sib(_instr: &mut Instructionx86)
{
    disasm_debug!("init_sib()");
    match _instr.mod_rm{
        Some( ref mut rm ) => {
            if rm.sib.is_none() 
            {
                rm.sib = Some(SibLayout{..Default::default()});
            }
        },
        None => {}
    }
}

fn init_displacement(_instr: &mut Instructionx86)
{
    disasm_debug!("init_displacement()");
    match _instr.mod_rm{
        Some( ref mut rm ) => {
            if rm.displacement.is_none() 
            {
                rm.displacement = Some(Displacementx86{ ..Default::default()});
            }
        },
        None => {}
    }
}

fn init_mod_rm(_instr: &mut Instructionx86)
{
    disasm_debug!("init_mod_rm()");
    if _instr.mod_rm.is_none(){
        _instr.mod_rm = Some(ModRmx86{..Default::default()});
    }
}

//determine addressing info for instruction by the scaled-index-base
fn opcode_read_sib(_instr: &mut Instructionx86) -> bool
{
    disasm_debug!("opcode_read_sib()");
    let mut _byte: u8 = 0;
    let mut _index: u8 = 0;
    let mut _base: u8 = 0;
    let mut sib_index: u8 = 0; 
    let mut sib_base: u8 = 0;

    // check if already enabled if not set to true
    if as_ref!(_instr, mod_rm, sib).is_some()
    { 
        return true;
    }
    init_sib(_instr);

    // check the address size
    match _instr.size.address
    { 
        2=>{
            return false;
        },
        4=>{
            sib_index = SibIndexes::EAX as u8;
            sib_base = AllRegisters::EAX as u8;
        },
        8=>{
            sib_index = SibIndexes::RAX as u8;
            sib_base = AllRegisters::RAX as u8;
        },
        _=>{},
    }

    // allocate the sib byte
    if !get_byte(_instr, &mut _byte){ return false; }
    as_mut!(_instr, mod_rm, sib, data, _byte);

    // get the index
    _index = accessor!(sib_index: as_ref!(_instr, mod_rm, sib, data)) | 
        (accessor!(rexx: _instr.prefix.kind[PrefixMaskx86::Rex as usize]) << 3);
    match _instr.prefix.vex_type{
        VexExType::EVex=>{
            _index |= accessor!(EVexV2_4_4: _instr.prefix.vex_prefix[3]) << 4;
        },
        _=>{},
    }
    
    match _index {
        0x4=>{
            as_mut!(_instr, mod_rm, sib, sib_index, SibIndexes::NoBase as u8);
        },
        _=>{
            let s = sib_index + _index;
            match s {
                s if s == SibIndexes::Sib as u8 => {
                    as_mut!(_instr, mod_rm, sib, sib_index, SibIndexes::NoBase as u8);
                },
                s if s == SibIndexes::Sib64 as u8 => {
                    as_mut!(_instr, mod_rm, sib, sib_index, SibIndexes::NoBase as u8);
                },
                _=>{ 
                    as_mut!(_instr, mod_rm, sib, sib_index, s); 
                },
            }
        },
    }
    // get the scale
    match accessor!(sib_scale: as_ref!(_instr, mod_rm, sib, data)){
        0=>as_mut!(_instr, mod_rm, sib, sib_scale, 1),
        1=>as_mut!(_instr, mod_rm, sib, sib_scale, 2),
        2=>as_mut!(_instr, mod_rm, sib, sib_scale, 4),
        3=>as_mut!(_instr, mod_rm, sib, sib_scale, 8),
        _=>{},
    }

    // get the base
    _base = accessor!(sib_base: as_ref!(_instr, mod_rm, sib, data)) | 
        (accessor!(rexb: _instr.prefix.kind[PrefixMaskx86::Rex as usize]) << 3);
    
    match _base{
        0x5 | 0xd=>{
            match accessor!(mod: as_ref!(_instr, mod_rm, data)){
                0x0=>{
                    as_mut!(_instr, mod_rm, displacement_ea, EADisplacement::Size32 as u8);
                    as_mut!(_instr, mod_rm, sib, sib_base, 0);
                },
                0x1=>{
                    as_mut!(_instr, mod_rm, displacement_ea, EADisplacement::Size8 as u8);
                    as_mut!(_instr, mod_rm, sib, sib_base, sib_base + _base);
                },
                0x2=>{
                    as_mut!(_instr, mod_rm, displacement_ea, EADisplacement::Size32 as u8);
                    as_mut!(_instr, mod_rm, sib, sib_base, sib_base + _base);
                },
                0x3=>{ return false; },
                _=>{},
            }
        },
        _=>{
            as_mut!(_instr, mod_rm, sib, sib_base, sib_base + _base);
        },
    }
    return true;
}

fn opcode_read_displacement(_instr: &mut Instructionx86) -> bool
{
    disasm_debug!("opcode_read_displacement()");
    match _instr.mod_rm {
        Some(ref mut rm)=>{
            match rm.displacement{
                Some(ref _disp)=>{
                    return true;
                },
                None=>{},
            }
        },
        None=>{},
    }
    // populate displacement struct if not already
    init_displacement(_instr);
    
    //as_mut!(_instr, mod_rm, displacement, offset, (_instr.cursor - _instr.start) as u8);
    match _instr.mod_rm {
        Some(ref mut rm)=>{
            match rm.displacement{
                Some(ref mut disp)=>{
                    disp.offset = (_instr.cursor - _instr.start) as u8;
                },
                None=>{},
            }
        },
        None=>{},
    }
    let mut displ8: i8 = 0;
    let mut displ16: i16 = 0;
    let mut displ32: i32 = 0;
    let mut disp_ea: u8 = 0; 
    match _instr.mod_rm{
        Some(ref rm)=>{
            disp_ea = rm.displacement_ea;
        },
        None=>{},
    }
    disasm_debug!("\tdisp_ea is {:?}", disp_ea);
    match disp_ea{
        disp_ea if disp_ea == EADisplacement::Size0 as u8 =>{},
        disp_ea if disp_ea == EADisplacement::Size8 as u8 =>{
            disasm_debug!("get_int::<i8>");
            if !get_int_signed::<i8>(_instr, &mut displ8){ return false; }
            match _instr.mod_rm {
                Some(ref mut rm)=>{
                    match rm.displacement{
                        Some(ref mut disp)=>{
                            disp.data = displ8 as i32;
                        },
                        None=>{},
                    }
                },
                None=>{},
            }
        },
        disp_ea if disp_ea == EADisplacement::Size16 as u8 =>{
            disasm_debug!("get_int::<i16>");
            if !get_int_signed::<i16>(_instr, &mut displ16){ return false; }
            match _instr.mod_rm {
                Some(ref mut rm)=>{
                    match rm.displacement{
                        Some(ref mut disp)=>{
                            disp.data = displ16 as i32;
                        },
                        None=>{},
                    }
                },
                None=>{},
            }
        },
        disp_ea if disp_ea == EADisplacement::Size32 as u8 =>{
            disasm_debug!("get_int::<i32>");
            if !get_int_signed::<i32>(_instr, &mut displ32){ return false; }
            match _instr.mod_rm {
                Some(ref mut rm)=>{
                    match rm.displacement{
                        Some(ref mut disp)=>{
                            disp.data = displ32 as i32;
                        },
                        None=>{},
                    }
                },
                None=>{},
            }
        },
        _=>{},
    }
    return true;
}

/// address size to get the effective address displacement
fn opcode_check_eff_addr_displacement(
    _instr: &mut Instructionx86, 
    _rm_field: &mut u8,
    _mod_field: &mut u8) -> bool
{
    disasm_debug!("opcode_check_eff_addr_displacement(_rm_field: {:?}, _mod_field: {:?})", _rm_field, _mod_field);
    match _instr.size.address
    {
        2 => {
            match _instr.mod_rm{
                Some( ref mut rm ) => {
                    rm.base_ea_base = EABases::BXSI as u16;
                    rm.kind = RegType::EABases;
                },
                None => {}
            }
            match *_mod_field{
                0x0=>{
                    match *_rm_field{
                        0x6=>{
                            match _instr.mod_rm{
                                Some( ref mut rm ) => {
                                    rm.base_ea = EABases::NoBase as u16;
                                    rm.displacement_ea = EADisplacement::Size16 as u8;
                                },
                                None => {}
                            }
                            if !opcode_read_displacement(_instr){return false;}
                        },
                        _=>{
                            match _instr.mod_rm{
                                Some( ref mut rm ) => {
                                    rm.base_ea = rm.base_ea_base + *_rm_field as u16;
                                    rm.displacement_ea = EADisplacement::Size0 as u8;
                                    rm.kind = RegType::EABases;
                                },
                                None => {}
                            }
                        },
                    }
                },
                0x1=>{
                    match _instr.mod_rm{
                        Some( ref mut rm ) => {
                            rm.base_ea = rm.base_ea_base + *_rm_field as u16;
                            rm.displacement_ea = EADisplacement::Size8 as u8;
                            rm.kind = RegType::EABases;
                        },
                        None => {},
                    }
                    _instr.size.displacement = 1;
                    if !opcode_read_displacement(_instr){return false;}
                },
                0x2=>{
                    match _instr.mod_rm{
                        Some( ref mut rm ) => {
                            rm.base_ea = rm.base_ea_base + *_rm_field as u16;
                            rm.displacement_ea = EADisplacement::Size16 as u8;
                            rm.kind = RegType::EABases;
                        },
                        None => {},
                    }
                    if !opcode_read_displacement(_instr){return false;}
                },
                0x3=>{
                    match _instr.mod_rm{
                        Some( ref mut rm ) => {
                            rm.base_ea = rm.base_ea_reg + *_rm_field as u16;
                            rm.displacement_ea = EADisplacement::Size32 as u8;
                            rm.kind = RegType::AllRegisters;
                        },
                        None => {},
                    }
                    if !opcode_read_displacement(_instr){return false;}
                },
                _=>{},
            }          
        },
        4 | 8 => {
            match _instr.mod_rm {
                Some( ref mut rm ) => {
                    rm.base_ea_base = match _instr.size.address{
                        4=>EABases::EAX as u16,
                        _=>EABases::RAX as u16,
                    };
                },
                None => {},
            }
            match *_mod_field{
                0x0=>{
                    match _instr.mod_rm {
                        Some( ref mut rm ) => {
                            rm.displacement_ea = EADisplacement::Size0 as u8;
                        },
                        None => {},
                    }
                    match *_rm_field{
                        0x14 | 0x4 | 0xc =>{ /* in case REXW.b is set */
                            match _instr.mod_rm {
                                Some( ref mut rm ) => {
                                    rm.base_ea = match _instr.size.address{
                                        4=>EABases::Sib as u16,
                                        _=>EABases::Sib64 as u16,
                                    };
                                    rm.kind = RegType::EABases;
                                },
                                None => {},
                            }
                            if !opcode_read_sib(_instr){return false;}
                            if !opcode_read_displacement(_instr){return false;}
                        },
                        0x5 | 0xd =>{
                            match _instr.mod_rm {
                                Some( ref mut rm ) => {
                                    rm.base_ea = EABases::NoBase as u16;
                                    rm.displacement_ea = EADisplacement::Size32 as u8;
                                },
                                None => {},
                            }
                            if !opcode_read_displacement(_instr){return false;}
                        },
                        _=>{
                            match _instr.mod_rm {
                                Some( ref mut rm ) => {
                                    rm.base_ea = rm.base_ea_base + *_rm_field as u16;
                                },
                                None => {},
                            }
                        },
                    }
                },
                0x1 | 0x2=>{
                    _instr.size.displacement = 1;
                    match _instr.mod_rm {
                        Some( ref mut rm ) => {
                            rm.displacement_ea = match *_mod_field { 0x1=>EADisplacement::Size8 as u8, _=>EADisplacement::Size32 as u8 };
                        },
                        None => {},
                    }
                    match *_rm_field{
                        0x14 | 0x4 | 0xc =>{ /* in case REXW.b is set */
                            match _instr.mod_rm {
                                Some( ref mut rm ) => {
                                    rm.base_ea = EABases::Sib as u16;
                                    rm.kind = RegType::EABases;
                                },
                                None => {},
                            }
                            if !opcode_read_sib(_instr){return false;}
                            if !opcode_read_displacement(_instr){return false;}
                        },
                        _=>{
                            match _instr.mod_rm {
                                Some( ref mut rm ) => {
                                    rm.base_ea = rm.base_ea_base + *_rm_field as u16;
                                    rm.kind = RegType::EABases;
                                },
                                None => {},
                            }
                            if !opcode_read_displacement(_instr){return false;}
                        },
                    }
                },
                0x3=>{
                    match _instr.mod_rm {
                        Some( ref mut rm ) => {
                            rm.base_ea = rm.base_ea_reg + *_rm_field as u16;
                            rm.displacement_ea = EADisplacement::Size0 as u8;
                            rm.kind = RegType::AllRegisters;
                        },
                        None => {},
                    }
                },
                _=>{},
            }            
        },
        _=>{},
    }
    return true;
}

/// Used for determining the operand size
fn opcode_set_operand_size(_instr: &mut Instructionx86)
{
    disasm_debug!("opcode_set_operand_size()");
    match _instr.size.register{
        2 => {
            match _instr.mod_rm{
                Some( ref mut rm ) => {
                    rm.base_reg = AllRegisters::AX  as u16;
                    rm.base_ea_reg = AllRegisters::AX as u16 + EABases::Max as u16; // offset of eabases
                    disasm_debug!("\tbase_ea_reg {:?}", rm.base_ea_reg);
                },
                None => {}
            }
        },
        4 => { 
            match _instr.mod_rm{
                Some( ref mut rm ) => {
                    rm.base_reg = AllRegisters::EAX as u16;
                    rm.base_ea_reg = AllRegisters::EAX as u16 + EABases::Max as u16; // offset of eabases
                    disasm_debug!("\tbase_ea_reg {:?}", rm.base_ea_reg);
                },
                None => {}
            }
        },
        8 => {
            match _instr.mod_rm{
                Some( ref mut rm ) => {
                    rm.base_reg = AllRegisters::RAX as u16;
                    rm.base_ea_reg = AllRegisters::RAX as u16 + EABases::Max as u16; // offset of eabases
                    disasm_debug!("\tbase_ea_reg {:?}", rm.base_ea_reg);
                },
                None => {}
            }
        },
        _=> {
            disasm_debug!("\tunknown register size.");
        },
    }
}
/// Consumes all addressing information (ModR/M byte, SIB byte, and
/// displacement) for an instruction and interprets it.
pub fn opcode_read_modrm(_instr: &mut Instructionx86) -> bool
{
    disasm_debug!("opcode_read_modrm()");
    if _instr.opcode.mod_rm{
        disasm_debug!("\tmod_rm is already set");
        return true;
    }
    // initialize the modrm struct
    init_mod_rm(_instr);
    let mut _byte: u8 = 0;
    let mut _mod_field: u8 = 0;
    let mut _rm_field: u8 = 0;
    let mut _reg_field: u8 = 0;

    // Set mod_rm to true
    _instr.opcode.mod_rm = true;

    // save the mod_rm byte
    if !get_byte(_instr, &mut _byte){ return false; }
    match _instr.mod_rm{
        Some( ref mut rm ) => {
            rm.data = _byte as u16;
        },
        None => {}
    }

    // handle MOV cr/dr/rc/rd
    if _instr.opcode.data[0] == 0x0f 
    && _instr.opcode.kind == OpcodeTypex86::TwoByte 
    && _instr.opcode.data[(_instr.opcode.size-1) as usize] >= 0x20 
    && _instr.opcode.data[(_instr.opcode.size-1) as usize] <= 0x23 
    {
        match _instr.mod_rm{
            Some( ref mut rm ) => rm.data = rm.data | 0xC0,
            None => {}
        }
    }
    _mod_field = accessor!(mod: &_byte);
    _rm_field = accessor!(rm: &_byte);
    _reg_field = accessor!(reg: &_byte);
    // Used for determining the operand size
    opcode_set_operand_size(_instr);
    
    _reg_field |= accessor!(rexr: _instr.prefix.kind[PrefixMaskx86::Rex as usize]) << 3;
    _rm_field |= accessor!(rexb: _instr.prefix.kind[PrefixMaskx86::Rex as usize]) << 3;
    match _instr.prefix.vex_type{
        VexExType::EVex => {
            if _instr.mode == Modex86::Mode64{ // shitty hack
                _reg_field |= accessor!(EVexR2_2_4: _instr.prefix.vex_prefix[1]) << 4;
            }
            _rm_field |= accessor!(EVexX_2_4: _instr.prefix.vex_prefix[1]) << 4;
        },
        _=> {}
    }
    //set the register data
    if _instr.register.is_none(){
        _instr.register = Some(Registerx86{..Default::default()});
    }
    match _instr.register {
        Some(ref mut reg) => {
            match _instr.mod_rm{
                Some( ref rm ) => {
                    reg.data = rm.base_reg as u8 + _reg_field;
                },
                None => {}
            }
        },
        None => {},
    }    
    
    // address size to get the effective address displacement
    if !opcode_check_eff_addr_displacement(
        _instr, 
        &mut _rm_field,
        &mut _mod_field){ 
        disasm_debug!("\tfailed to check ea displacement");
        return false; 
    }

    return true;
}

pub fn opcode_read(_instr: &mut Instructionx86) -> bool
{
    disasm_debug!("opcode_read()");
    let mut _byte: u8 = 0;
    let mut increment = false;
    let vex_type = _instr.prefix.vex_type;
    let vex_prefix = _instr.prefix.vex_prefix[1];
    match vex_type{
        VexExType::EVex => {
            match accessor!(EVexMM_2_4: &vex_prefix){
                vex if vex == VexXopOpcode::Vex0F as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::TwoByte, 0, 0);
                },
                vex if vex == VexXopOpcode::Vex0F38 as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::ThreeByte38, 0, 0);
                },
                vex if vex == VexXopOpcode::Vex0F3A as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::ThreeByte3A, 0, 0);
                },
                _=> { 
                    disasm_debug!("\tVexXopOpcode invalid");
                    return false 
                },
            }
        },
        VexExType::Vex2B => {
            return opcode_set(_instr, OpcodeTypex86::TwoByte, 0x0f, 0);
        },
        VexExType::Vex3B => {
            match accessor!(VexMMMMM_2_3: &vex_prefix){
                vex if vex == VexXopOpcode::Vex0F as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::TwoByte, 0x0f, 0);
                },
                vex if vex == VexXopOpcode::Vex0F38 as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::ThreeByte38, 0x0f, 0x38);
                },
                vex if vex == VexXopOpcode::Vex0F3A as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::ThreeByte3A, 0x0f, 0x3a);
                },
                _=> { 
                    disasm_debug!("\tVexXopOpcode invalid");
                    return false 
                },
            }
        },
        VexExType::Xop => {
            match accessor!(XopMMMMM_2_3: &vex_prefix){
                vex if vex == VexXopOpcode::Xop8 as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::Xop8Map, 0, 0);
                },
                vex if vex == VexXopOpcode::Xop9 as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::Xop9Map, 0, 0);
                },
                vex if vex == VexXopOpcode::XopA as u8 => {
                    return opcode_set(_instr, OpcodeTypex86::XopAMap, 0, 0);
                },
                _=> {
                    disasm_debug!("\tVexXopOpcode invalid");
                    return false
                },
            }
        },
        _=> {},
    }
    if !get_byte(_instr, &mut _byte){ return false;}
    
    // save this byte for MOVcr, MOVdr, MOVrc, MOVrd
    _instr.opcode.data[0] = _byte;
    _instr.opcode.size=1;

    if _byte == 0x0f { 
        _instr.opcode.escape_byte2 = _byte;
        if !get_byte(_instr, &mut _byte){ return false;}
        increment = true;

        match _byte {
            0x38 => {
                _instr.opcode.escape_byte3 = _byte;
                _instr.opcode.kind = OpcodeTypex86::ThreeByte38;
                if !get_byte(_instr, &mut _byte){ return false;}

            },
            0x3a => {
                _instr.opcode.escape_byte3 = _byte;
                _instr.opcode.kind = OpcodeTypex86::ThreeByte3A;
                if !get_byte(_instr, &mut _byte){ return false;}
            },
            0x0e => {
                _instr.opcode.kind = OpcodeTypex86::T3dNowMap;
                // this encode does not have ModRM
                _instr.opcode.mod_rm = true;
            },
            0x0f => {
                _instr.opcode.kind = OpcodeTypex86::T3dNowMap;
                // readModRM
                if !opcode_read_modrm(_instr){ return false;}
                if !get_byte(_instr, &mut _byte){ return false;}
            }
            _=> {
                _instr.opcode.kind = OpcodeTypex86::TwoByte;
            },
        }
            
    }
    if increment{
        _instr.opcode.data[_instr.opcode.size as usize] = _byte;
        _instr.opcode.size += 1;
        disasm_debug!("\topcode is {:?} with size {:?}", _instr.opcode.data, _instr.opcode.size);
    }

    return true;
}