]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
x86/APX: support JMPABS also in assembler
authorJan Beulich <jbeulich@suse.com>
Wed, 30 Oct 2024 11:12:54 +0000 (12:12 +0100)
committerJan Beulich <jbeulich@suse.com>
Wed, 30 Oct 2024 11:12:54 +0000 (12:12 +0100)
Without this APX support isn't really complete.

For Intel syntax displacement form is needed, such that symbolic
operands won't need prefixing by "offset". (The other form is actually
not used at all in Intel syntax.)

For the record: To restrict displacement form to Intel syntax is not
something I actually agree with.

gas/config/tc-i386-intel.c
gas/config/tc-i386.c
gas/testsuite/gas/i386/x86-64-apx-jmpabs-intel.d
gas/testsuite/gas/i386/x86-64-apx-jmpabs.d
gas/testsuite/gas/i386/x86-64-apx-jmpabs.s
opcodes/i386-mnem.h
opcodes/i386-opc.tbl
opcodes/i386-tbl.h

index 21675f69d2b8e45a721de0394ed71d5b212c55c9..d6c8eaa39d9bf4f65dfac1fb324ab713ea190050 100644 (file)
@@ -907,7 +907,8 @@ i386_intel_operand (char *operand_string, int got_a_float)
   /* Operands for jump/call need special consideration.  */
   if (current_templates.start->opcode_modifier.jump == JUMP
       || current_templates.start->opcode_modifier.jump == JUMP_DWORD
-      || current_templates.start->opcode_modifier.jump == JUMP_INTERSEGMENT)
+      || current_templates.start->opcode_modifier.jump == JUMP_INTERSEGMENT
+      || current_templates.start->mnem_off == MN_jmpabs)
     {
       bool jumpabsolute = false;
 
index f6a8c30b3796a70f8a6babc5b818d0a10fd42060..761dab12ffd41e2edc8ff820fcfce8f5b27c5370 100644 (file)
@@ -4674,6 +4674,24 @@ static void establish_rex (void)
 
   if (is_apx_rex2_encoding ())
     {
+      /* Most prefixes are not permitted with JMPABS.  */
+      if (i.tm.mnem_off == MN_jmpabs)
+       {
+         if (i.prefix[DATA_PREFIX] || (i.prefix[REX_PREFIX] & REX_W))
+           {
+             as_bad (_("size override not allowed with `%s'"),
+                     insn_name (&i.tm));
+             i.prefix[DATA_PREFIX] = 0;
+             i.prefix[REX_PREFIX] &= ~REX_W;
+           }
+         if (i.prefix[ADDR_PREFIX])
+           {
+             as_bad (_("address override not allowed with `%s'"),
+                     insn_name (&i.tm));
+             i.prefix[ADDR_PREFIX] = 0;
+           }
+       }
+
       build_rex2_prefix ();
       /* The individual REX.RXBW bits got consumed.  */
       i.rex &= REX_OPCODE;
@@ -8216,7 +8234,8 @@ optimize_imm (void)
               /* A more generic (but also more involved) way of dealing
                  with the special case(s) would be to go look for
                  DefaultSize attributes on any of the templates.  */
-              && current_templates.start->mnem_off != MN_push))
+              && current_templates.start->mnem_off != MN_push
+              && current_templates.start->mnem_off != MN_jmpabs))
     guess_suffix = LONG_MNEM_SUFFIX;
 
   for (op = i.operands; --op >= 0;)
@@ -8362,10 +8381,10 @@ optimize_disp (const insn_template *t)
        }
     }
 
-  /* Don't optimize displacement for movabs since it only takes 64bit
-     displacement.  */
+  /* Don't optimize displacement for movabs / jmpabs since they only take
+     64-bit displacement.  */
   if (pp.disp_encoding > disp_encoding_8bit
-      || (flag_code == CODE_64BIT && t->mnem_off == MN_movabs))
+      || t->mnem_off == MN_movabs || t->mnem_off == MN_jmpabs)
     return true;
 
   for (op = i.operands; op-- > 0;)
index 2b87f95532f13645dba788a6b8874d9f08d66662..b1491cd4d4489263b8a0e1babafeba7634595072 100644 (file)
@@ -1,5 +1,5 @@
 #as:
-#objdump: -dw -Mintel
+#objdump: -dwr -Mintel
 #name: x86_64 APX_F JMPABS insns (Intel disassembly)
 #source: x86-64-apx-jmpabs.s
 
@@ -8,5 +8,12 @@
 Disassembly of section \.text:
 
 0+ <_start>:
+\s*[a-f0-9]+:\s*d5 00 a1 00 00 00 00 00 00 00 00[       ]+jmpabs 0x0\s*[a-f0-9]+: (R_X86_64_|IMAGE_REL_AMD64_ADDR)?64  thunk
 \s*[a-f0-9]+:\s*d5 00 a1 02 00 00 00 00 00 00 00[       ]+jmpabs 0x2
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 00 00 00 00[       ]+jmpabs 0x87654321
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 09 00 00 00[       ]+jmpabs 0x987654321
+\s*[a-f0-9]+:\s*d5 00 a1 00 00 00 00 00 00 00 00[       ]+jmpabs 0x0\s*[a-f0-9]+: (R_X86_64_|IMAGE_REL_AMD64_ADDR)?64  thunk
+\s*[a-f0-9]+:\s*d5 00 a1 78 56 34 12 00 00 00 00[       ]+jmpabs 0x12345678
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 00 00 00 00[       ]+jmpabs 0x87654321
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 09 00 00 00[       ]+jmpabs 0x987654321
 #pass
index e95b54f5dab2948528b539a5da9e53e7de9aa30f..a1b210200db197f42ef9d486b018690e90570e66 100644 (file)
@@ -1,5 +1,5 @@
 #as:
-#objdump: -dw
+#objdump: -dwr
 #name: x86_64 APX_F JMPABS insns
 #source: x86-64-apx-jmpabs.s
 
@@ -8,5 +8,12 @@
 Disassembly of section \.text:
 
 0+ <_start>:
+\s*[a-f0-9]+:\s*d5 00 a1 00 00 00 00 00 00 00 00[       ]+jmpabs \$0x0\s*[a-f0-9]+: (R_X86_64_|IMAGE_REL_AMD64_ADDR)?64        thunk
 \s*[a-f0-9]+:\s*d5 00 a1 02 00 00 00 00 00 00 00[       ]+jmpabs \$0x2
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 00 00 00 00[       ]+jmpabs \$0x87654321
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 09 00 00 00[       ]+jmpabs \$0x987654321
+\s*[a-f0-9]+:\s*d5 00 a1 00 00 00 00 00 00 00 00[       ]+jmpabs \$0x0\s*[a-f0-9]+: (R_X86_64_|IMAGE_REL_AMD64_ADDR)?64        thunk
+\s*[a-f0-9]+:\s*d5 00 a1 78 56 34 12 00 00 00 00[       ]+jmpabs \$0x12345678
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 00 00 00 00[       ]+jmpabs \$0x87654321
+\s*[a-f0-9]+:\s*d5 00 a1 21 43 65 87 09 00 00 00[       ]+jmpabs \$0x987654321
 #pass
index 69ffb763260695e53db46f0ebd048762c3e82c73..80d6ec7c23db0c150c44535d029a53afd94879c1 100644 (file)
@@ -2,4 +2,13 @@
 
        .text
  _start:
-       .byte 0xd5,0x00,0xa1,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00
+       jmpabs  $thunk
+       jmpabs  $2
+       jmpabs  $0x87654321
+       jmpabs  $0x987654321
+
+       .intel_syntax noprefix
+       jmpabs  thunk
+       jmpabs  0x12345678
+       jmpabs  0x87654321
+       jmpabs  0x987654321
index 2415ab6e7d848012871d50e9330dbca6229b7df7..84b06d4ff06fcd34ae35c83658dac2f0404418b1 100644 (file)
@@ -1724,792 +1724,793 @@ extern const char i386_mnemonics[];
 #define MN_scas 0x3418
 #define MN_das 0x341d
 #define MN_fabs 0x3421
-#define MN_movabs 0x3426
+#define MN_jmpabs 0x3426
+#define MN_movabs 0x342d
 #define MN_cs (MN_blcs + 2)
-#define MN_blcs 0x342d
+#define MN_blcs 0x3434
 #define MN_ds (MN_lds + 1)
-#define MN_lds 0x3432
-#define MN_enqcmds 0x3436
-#define MN_lods 0x343e
-#define MN_vpdpbssds 0x3443
-#define MN_vp4dpwssds 0x344d
-#define MN_vpdpwssds 0x3458
-#define MN_vpdpbusds 0x3462
-#define MN_vpdpwusds 0x346c
-#define MN_vpdpbsuds 0x3476
-#define MN_vpdpwsuds 0x3480
-#define MN_vpdpbuuds 0x348a
-#define MN_vpdpwuuds 0x3494
+#define MN_lds 0x3439
+#define MN_enqcmds 0x343d
+#define MN_lods 0x3445
+#define MN_vpdpbssds 0x344a
+#define MN_vp4dpwssds 0x3454
+#define MN_vpdpwssds 0x345f
+#define MN_vpdpbusds 0x3469
+#define MN_vpdpwusds 0x3473
+#define MN_vpdpbsuds 0x347d
+#define MN_vpdpwsuds 0x3487
+#define MN_vpdpbuuds 0x3491
+#define MN_vpdpwuuds 0x349b
 #define MN_es (MN_les + 1)
-#define MN_les 0x349e
-#define MN_xsaves 0x34a2
+#define MN_les 0x34a5
+#define MN_xsaves 0x34a9
 #define MN_fs (MN_lfs + 1)
-#define MN_lfs 0x34a9
+#define MN_lfs 0x34b0
 #define MN_gs (MN_lkgs + 2)
-#define MN_lkgs 0x34ad
-#define MN_lgs 0x34b2
-#define MN_swapgs 0x34b6
-#define MN_fchs 0x34bd
-#define MN_js 0x34c2
-#define MN_encls 0x34c5
+#define MN_lkgs 0x34b4
+#define MN_lgs 0x34b9
+#define MN_swapgs 0x34bd
+#define MN_fchs 0x34c4
+#define MN_js 0x34c9
+#define MN_encls 0x34cc
 #define MN_emms (MN_femms + 1)
-#define MN_femms 0x34cb
+#define MN_femms 0x34d2
 #define MN_ins (MN_lwpins + 3)
-#define MN_lwpins 0x34d1
-#define MN_jns 0x34d8
-#define MN_ccmpns 0x34dc
-#define MN_wrmsrns 0x34e3
-#define MN_setns 0x34eb
-#define MN_ctestns 0x34f1
-#define MN_setzuns 0x34f9
+#define MN_lwpins 0x34d8
+#define MN_jns 0x34df
+#define MN_ccmpns 0x34e3
+#define MN_wrmsrns 0x34ea
+#define MN_setns 0x34f2
+#define MN_ctestns 0x34f8
+#define MN_setzuns 0x3500
 #define MN_cmovns (MN_cfcmovns + 2)
-#define MN_cfcmovns 0x3501
-#define MN_fcos 0x350a
-#define MN_fsincos 0x350f
-#define MN_stos 0x3517
-#define MN_vfmaddsub231ps 0x351c
-#define MN_vfmsub231ps 0x352b
-#define MN_vfnmsub231ps 0x3537
-#define MN_vfmsubadd231ps 0x3544
-#define MN_vfmadd231ps 0x3553
-#define MN_vfnmadd231ps 0x355f
-#define MN_vfmaddsub132ps 0x356c
-#define MN_vfmsub132ps 0x357b
-#define MN_vfnmsub132ps 0x3587
-#define MN_vfmsubadd132ps 0x3594
-#define MN_vfmadd132ps 0x35a3
-#define MN_vfnmadd132ps 0x35af
-#define MN_vcvtneebf162ps 0x35bc
-#define MN_vbcstnebf162ps 0x35cb
-#define MN_vcvtneobf162ps 0x35da
+#define MN_cfcmovns 0x3508
+#define MN_fcos 0x3511
+#define MN_fsincos 0x3516
+#define MN_stos 0x351e
+#define MN_vfmaddsub231ps 0x3523
+#define MN_vfmsub231ps 0x3532
+#define MN_vfnmsub231ps 0x353e
+#define MN_vfmsubadd231ps 0x354b
+#define MN_vfmadd231ps 0x355a
+#define MN_vfnmadd231ps 0x3566
+#define MN_vfmaddsub132ps 0x3573
+#define MN_vfmsub132ps 0x3582
+#define MN_vfnmsub132ps 0x358e
+#define MN_vfmsubadd132ps 0x359b
+#define MN_vfmadd132ps 0x35aa
+#define MN_vfnmadd132ps 0x35b6
+#define MN_vcvtneebf162ps 0x35c3
+#define MN_vbcstnebf162ps 0x35d2
+#define MN_vcvtneobf162ps 0x35e1
 #define MN_cvtpd2ps (MN_vcvtpd2ps + 1)
-#define MN_vcvtpd2ps 0x35e9
-#define MN_vcvtneeph2ps 0x35f3
-#define MN_vcvtneoph2ps 0x3600
-#define MN_vcvtph2ps 0x360d
-#define MN_vbcstnesh2ps 0x3617
-#define MN_vpermi2ps 0x3624
-#define MN_cvtpi2ps 0x362e
-#define MN_vpermil2ps 0x3637
-#define MN_vexp2ps 0x3642
+#define MN_vcvtpd2ps 0x35f0
+#define MN_vcvtneeph2ps 0x35fa
+#define MN_vcvtneoph2ps 0x3607
+#define MN_vcvtph2ps 0x3614
+#define MN_vbcstnesh2ps 0x361e
+#define MN_vpermi2ps 0x362b
+#define MN_cvtpi2ps 0x3635
+#define MN_vpermil2ps 0x363e
+#define MN_vexp2ps 0x3649
 #define MN_cvtdq2ps (MN_vcvtdq2ps + 1)
-#define MN_vcvtdq2ps 0x364a
-#define MN_vcvtudq2ps 0x3654
-#define MN_vcvtqq2ps 0x365f
-#define MN_vcvtuqq2ps 0x3669
-#define MN_vpermt2ps 0x3674
-#define MN_vfmaddsub213ps 0x367e
-#define MN_vfmsub213ps 0x368d
-#define MN_vfnmsub213ps 0x3699
-#define MN_vfmsubadd213ps 0x36a6
-#define MN_vfmadd213ps 0x36b5
-#define MN_vfnmadd213ps 0x36c1
-#define MN_vrcp14ps 0x36ce
-#define MN_vrsqrt14ps 0x36d7
-#define MN_tdpbf16ps 0x36e2
-#define MN_vdpbf16ps 0x36ec
-#define MN_tcmmrlfp16ps 0x36f6
-#define MN_tcmmimfp16ps 0x3703
-#define MN_tdpfp16ps 0x3710
-#define MN_vrcp28ps 0x371a
-#define MN_vrsqrt28ps 0x3723
+#define MN_vcvtdq2ps 0x3651
+#define MN_vcvtudq2ps 0x365b
+#define MN_vcvtqq2ps 0x3666
+#define MN_vcvtuqq2ps 0x3670
+#define MN_vpermt2ps 0x367b
+#define MN_vfmaddsub213ps 0x3685
+#define MN_vfmsub213ps 0x3694
+#define MN_vfnmsub213ps 0x36a0
+#define MN_vfmsubadd213ps 0x36ad
+#define MN_vfmadd213ps 0x36bc
+#define MN_vfnmadd213ps 0x36c8
+#define MN_vrcp14ps 0x36d5
+#define MN_vrsqrt14ps 0x36de
+#define MN_tdpbf16ps 0x36e9
+#define MN_vdpbf16ps 0x36f3
+#define MN_tcmmrlfp16ps 0x36fd
+#define MN_tcmmimfp16ps 0x370a
+#define MN_tdpfp16ps 0x3717
+#define MN_vrcp28ps 0x3721
+#define MN_vrsqrt28ps 0x372a
 #define MN_movaps (MN_vmovaps + 1)
-#define MN_vmovaps 0x372e
+#define MN_vmovaps 0x3735
 #define MN_subps (MN_addsubps + 3)
 #define MN_addsubps (MN_vfmaddsubps + 3)
-#define MN_vfmaddsubps 0x3736
-#define MN_vaddsubps 0x3742
+#define MN_vfmaddsubps 0x373d
+#define MN_vaddsubps 0x3749
 #define MN_hsubps (MN_vhsubps + 1)
-#define MN_vhsubps 0x374c
-#define MN_vfmsubps 0x3754
-#define MN_vfnmsubps 0x375d
-#define MN_vsubps 0x3767
-#define MN_vgatherpf0dps 0x376e
-#define MN_vscatterpf0dps 0x377c
-#define MN_vgatherpf1dps 0x378b
-#define MN_vscatterpf1dps 0x3799
+#define MN_vhsubps 0x3753
+#define MN_vfmsubps 0x375b
+#define MN_vfnmsubps 0x3764
+#define MN_vsubps 0x376e
+#define MN_vgatherpf0dps 0x3775
+#define MN_vscatterpf0dps 0x3783
+#define MN_vgatherpf1dps 0x3792
+#define MN_vscatterpf1dps 0x37a0
 #define MN_addps (MN_vfmsubaddps + 6)
-#define MN_vfmsubaddps 0x37a8
+#define MN_vfmsubaddps 0x37af
 #define MN_haddps (MN_vhaddps + 1)
-#define MN_vhaddps 0x37b4
-#define MN_v4fmaddps 0x37bc
-#define MN_vfmaddps 0x37c6
-#define MN_v4fnmaddps 0x37cf
-#define MN_vfnmaddps 0x37da
-#define MN_vaddps 0x37e4
+#define MN_vhaddps 0x37bb
+#define MN_v4fmaddps 0x37c3
+#define MN_vfmaddps 0x37cd
+#define MN_v4fnmaddps 0x37d6
+#define MN_vfnmaddps 0x37e1
+#define MN_vaddps 0x37eb
 #define MN_andps (MN_vexpandps + 4)
-#define MN_vexpandps 0x37eb
-#define MN_vandps 0x37f5
+#define MN_vexpandps 0x37f2
+#define MN_vandps 0x37fc
 #define MN_blendps (MN_vblendps + 1)
-#define MN_vblendps 0x37fc
+#define MN_vblendps 0x3803
 #define MN_roundps (MN_vroundps + 1)
-#define MN_vroundps 0x3805
-#define MN_vgatherdps 0x380e
-#define MN_vscatterdps 0x3819
+#define MN_vroundps 0x380c
+#define MN_vgatherdps 0x3815
+#define MN_vscatterdps 0x3820
 #define MN_cmpunordps (MN_vcmpunordps + 1)
-#define MN_vcmpunordps 0x3825
+#define MN_vcmpunordps 0x382c
 #define MN_cmpordps (MN_vcmpordps + 1)
-#define MN_vcmpordps 0x3831
-#define MN_vreduceps 0x383b
-#define MN_vrangeps 0x3845
-#define MN_vcmpngeps 0x384e
-#define MN_vcmpgeps 0x3858
-#define MN_vrndscaleps 0x3861
+#define MN_vcmpordps 0x3838
+#define MN_vreduceps 0x3842
+#define MN_vrangeps 0x384c
+#define MN_vcmpngeps 0x3855
+#define MN_vcmpgeps 0x385f
+#define MN_vrndscaleps 0x3868
 #define MN_cmpnleps (MN_vcmpnleps + 1)
-#define MN_vcmpnleps 0x386d
+#define MN_vcmpnleps 0x3874
 #define MN_cmpleps (MN_vcmpleps + 1)
-#define MN_vcmpleps 0x3877
-#define MN_vcmpfalseps 0x3880
-#define MN_vcmptrueps 0x388c
-#define MN_vscalefps 0x3897
+#define MN_vcmpleps 0x387e
+#define MN_vcmpfalseps 0x3887
+#define MN_vcmptrueps 0x3893
+#define MN_vscalefps 0x389e
 #define MN_shufps (MN_vshufps + 1)
-#define MN_vshufps 0x38a1
+#define MN_vshufps 0x38a8
 #define MN_unpckhps (MN_vunpckhps + 1)
-#define MN_vunpckhps 0x38a9
+#define MN_vunpckhps 0x38b0
 #define MN_movlhps (MN_vmovlhps + 1)
-#define MN_vmovlhps 0x38b3
-#define MN_vdpphps 0x38bc
+#define MN_vmovlhps 0x38ba
+#define MN_vdpphps 0x38c3
 #define MN_movhps (MN_vmovhps + 1)
-#define MN_vmovhps 0x38c4
+#define MN_vmovhps 0x38cb
 #define MN_movmskps (MN_vmovmskps + 1)
-#define MN_vmovmskps 0x38cc
+#define MN_vmovmskps 0x38d3
 #define MN_movhlps (MN_vmovhlps + 1)
-#define MN_vmovhlps 0x38d6
-#define MN_vpermilps 0x38df
+#define MN_vmovhlps 0x38dd
+#define MN_vpermilps 0x38e6
 #define MN_unpcklps (MN_vunpcklps + 1)
-#define MN_vunpcklps 0x38e9
+#define MN_vunpcklps 0x38f0
 #define MN_mulps (MN_vmulps + 1)
-#define MN_vmulps 0x38f3
+#define MN_vmulps 0x38fa
 #define MN_movlps (MN_vmovlps + 1)
-#define MN_vmovlps 0x38fa
+#define MN_vmovlps 0x3901
 #define MN_cmps (MN_ccmps + 1)
-#define MN_ccmps 0x3902
-#define MN_vblendmps 0x3908
-#define MN_vfixupimmps 0x3912
-#define MN_vpermps 0x391e
+#define MN_ccmps 0x3909
+#define MN_vblendmps 0x390f
+#define MN_vfixupimmps 0x3919
+#define MN_vpermps 0x3925
 #define MN_andnps (MN_vandnps + 1)
-#define MN_vandnps 0x3926
+#define MN_vandnps 0x392d
 #define MN_minps (MN_vminps + 1)
-#define MN_vminps 0x392e
-#define MN_seamops 0x3935
+#define MN_vminps 0x3935
+#define MN_seamops 0x393c
 #define MN_rcpps (MN_vrcpps + 1)
-#define MN_vrcpps 0x393d
+#define MN_vrcpps 0x3944
 #define MN_dpps (MN_vdpps + 1)
-#define MN_vdpps 0x3944
+#define MN_vdpps 0x394b
 #define MN_cmpps (MN_vcmpps + 1)
-#define MN_vcmpps 0x394a
-#define MN_vgetexpps 0x3951
-#define MN_vgatherpf0qps 0x395b
-#define MN_vscatterpf0qps 0x3969
-#define MN_vgatherpf1qps 0x3978
-#define MN_vscatterpf1qps 0x3986
-#define MN_vcmpunord_qps 0x3995
-#define MN_vcmpord_qps 0x39a3
+#define MN_vcmpps 0x3951
+#define MN_vgetexpps 0x3958
+#define MN_vgatherpf0qps 0x3962
+#define MN_vscatterpf0qps 0x3970
+#define MN_vgatherpf1qps 0x397f
+#define MN_vscatterpf1qps 0x398d
+#define MN_vcmpunord_qps 0x399c
+#define MN_vcmpord_qps 0x39aa
 #define MN_cmpneqps (MN_vcmpneqps + 1)
-#define MN_vcmpneqps 0x39af
+#define MN_vcmpneqps 0x39b6
 #define MN_cmpeqps (MN_vcmpeqps + 1)
-#define MN_vcmpeqps 0x39b9
-#define MN_vcmpge_oqps 0x39c2
-#define MN_vcmple_oqps 0x39ce
-#define MN_vcmpfalse_oqps 0x39da
-#define MN_vcmpneq_oqps 0x39e9
-#define MN_vcmpeq_oqps 0x39f6
-#define MN_vcmpgt_oqps 0x3a02
-#define MN_vcmplt_oqps 0x3a0e
-#define MN_vgatherqps 0x3a1a
-#define MN_vscatterqps 0x3a25
-#define MN_vcmpnge_uqps 0x3a31
-#define MN_vcmpnle_uqps 0x3a3e
-#define MN_vcmptrue_uqps 0x3a4b
-#define MN_vcmpneq_uqps 0x3a59
-#define MN_vcmpeq_uqps 0x3a66
-#define MN_vcmpngt_uqps 0x3a72
-#define MN_vcmpnlt_uqps 0x3a7f
+#define MN_vcmpeqps 0x39c0
+#define MN_vcmpge_oqps 0x39c9
+#define MN_vcmple_oqps 0x39d5
+#define MN_vcmpfalse_oqps 0x39e1
+#define MN_vcmpneq_oqps 0x39f0
+#define MN_vcmpeq_oqps 0x39fd
+#define MN_vcmpgt_oqps 0x3a09
+#define MN_vcmplt_oqps 0x3a15
+#define MN_vgatherqps 0x3a21
+#define MN_vscatterqps 0x3a2c
+#define MN_vcmpnge_uqps 0x3a38
+#define MN_vcmpnle_uqps 0x3a45
+#define MN_vcmptrue_uqps 0x3a52
+#define MN_vcmpneq_uqps 0x3a60
+#define MN_vcmpeq_uqps 0x3a6d
+#define MN_vcmpngt_uqps 0x3a79
+#define MN_vcmpnlt_uqps 0x3a86
 #define MN_orps (MN_vorps + 1)
-#define MN_vorps 0x3a8c
+#define MN_vorps 0x3a93
 #define MN_xorps (MN_vxorps + 1)
-#define MN_vxorps 0x3a92
-#define MN_vcmpunord_sps 0x3a99
-#define MN_vcmpord_sps 0x3aa7
-#define MN_vcmpge_osps 0x3ab3
-#define MN_vcmple_osps 0x3abf
-#define MN_vcmpfalse_osps 0x3acb
-#define MN_vcmpneq_osps 0x3ada
-#define MN_vcmpeq_osps 0x3ae7
-#define MN_vcmpgt_osps 0x3af3
-#define MN_vcmplt_osps 0x3aff
-#define MN_vfpclassps 0x3b0b
-#define MN_vcompressps 0x3b16
-#define MN_vcmpnge_usps 0x3b22
-#define MN_vcmpnle_usps 0x3b2f
-#define MN_vcmptrue_usps 0x3b3c
-#define MN_vcmpneq_usps 0x3b4a
-#define MN_vcmpeq_usps 0x3b57
-#define MN_vcmpngt_usps 0x3b63
-#define MN_vcmpnlt_usps 0x3b70
+#define MN_vxorps 0x3a99
+#define MN_vcmpunord_sps 0x3aa0
+#define MN_vcmpord_sps 0x3aae
+#define MN_vcmpge_osps 0x3aba
+#define MN_vcmple_osps 0x3ac6
+#define MN_vcmpfalse_osps 0x3ad2
+#define MN_vcmpneq_osps 0x3ae1
+#define MN_vcmpeq_osps 0x3aee
+#define MN_vcmpgt_osps 0x3afa
+#define MN_vcmplt_osps 0x3b06
+#define MN_vfpclassps 0x3b12
+#define MN_vcompressps 0x3b1d
+#define MN_vcmpnge_usps 0x3b29
+#define MN_vcmpnle_usps 0x3b36
+#define MN_vcmptrue_usps 0x3b43
+#define MN_vcmpneq_usps 0x3b51
+#define MN_vcmpeq_usps 0x3b5e
+#define MN_vcmpngt_usps 0x3b6a
+#define MN_vcmpnlt_usps 0x3b77
 #define MN_extractps (MN_vextractps + 1)
-#define MN_vextractps 0x3b7d
-#define MN_vcmpngtps 0x3b88
-#define MN_vcmpgtps 0x3b92
+#define MN_vextractps 0x3b84
+#define MN_vcmpngtps 0x3b8f
+#define MN_vcmpgtps 0x3b99
 #define MN_cmpnltps (MN_vcmpnltps + 1)
-#define MN_vcmpnltps 0x3b9b
+#define MN_vcmpnltps 0x3ba2
 #define MN_cmpltps (MN_vcmpltps + 1)
-#define MN_vcmpltps 0x3ba5
-#define MN_vgetmantps 0x3bae
+#define MN_vcmpltps 0x3bac
+#define MN_vgetmantps 0x3bb5
 #define MN_movntps (MN_vmovntps + 1)
-#define MN_vmovntps 0x3bb9
+#define MN_vmovntps 0x3bc0
 #define MN_insertps (MN_vinsertps + 1)
-#define MN_vinsertps 0x3bc2
+#define MN_vinsertps 0x3bc9
 #define MN_sqrtps (MN_rsqrtps + 1)
 #define MN_rsqrtps (MN_vrsqrtps + 1)
-#define MN_vrsqrtps 0x3bcc
-#define MN_vsqrtps 0x3bd5
-#define MN_vtestps 0x3bdd
+#define MN_vrsqrtps 0x3bd3
+#define MN_vsqrtps 0x3bdc
+#define MN_vtestps 0x3be4
 #define MN_movups (MN_vmovups + 1)
-#define MN_vmovups 0x3be5
+#define MN_vmovups 0x3bec
 #define MN_blendvps (MN_vblendvps + 1)
-#define MN_vblendvps 0x3bed
+#define MN_vblendvps 0x3bf4
 #define MN_divps (MN_vdivps + 1)
-#define MN_vdivps 0x3bf7
-#define MN_vmaskmovps 0x3bfe
+#define MN_vdivps 0x3bfe
+#define MN_vmaskmovps 0x3c05
 #define MN_maxps (MN_vmaxps + 1)
-#define MN_vmaxps 0x3c09
-#define MN_vfrczps 0x3c10
-#define MN_xrstors 0x3c18
+#define MN_vmaxps 0x3c10
+#define MN_vfrczps 0x3c17
+#define MN_xrstors 0x3c1f
 #define MN_ss (MN_vfmsub231ss + 9)
-#define MN_vfmsub231ss 0x3c20
-#define MN_vfnmsub231ss 0x3c2c
-#define MN_vfmadd231ss 0x3c39
-#define MN_vfnmadd231ss 0x3c45
-#define MN_vfmsub132ss 0x3c52
-#define MN_vfnmsub132ss 0x3c5e
-#define MN_vfmadd132ss 0x3c6b
-#define MN_vfnmadd132ss 0x3c77
+#define MN_vfmsub231ss 0x3c27
+#define MN_vfnmsub231ss 0x3c33
+#define MN_vfmadd231ss 0x3c40
+#define MN_vfnmadd231ss 0x3c4c
+#define MN_vfmsub132ss 0x3c59
+#define MN_vfnmsub132ss 0x3c65
+#define MN_vfmadd132ss 0x3c72
+#define MN_vfnmadd132ss 0x3c7e
 #define MN_cvtsd2ss (MN_vcvtsd2ss + 1)
-#define MN_vcvtsd2ss 0x3c84
-#define MN_vcvtsh2ss 0x3c8e
+#define MN_vcvtsd2ss 0x3c8b
+#define MN_vcvtsh2ss 0x3c95
 #define MN_cvtsi2ss (MN_vcvtsi2ss + 1)
-#define MN_vcvtsi2ss 0x3c98
-#define MN_vcvtusi2ss 0x3ca2
-#define MN_vfmsub213ss 0x3cad
-#define MN_vfnmsub213ss 0x3cb9
-#define MN_vfmadd213ss 0x3cc6
-#define MN_vfnmadd213ss 0x3cd2
-#define MN_vrcp14ss 0x3cdf
-#define MN_vrsqrt14ss 0x3ce8
-#define MN_vrcp28ss 0x3cf3
-#define MN_vrsqrt28ss 0x3cfc
+#define MN_vcvtsi2ss 0x3c9f
+#define MN_vcvtusi2ss 0x3ca9
+#define MN_vfmsub213ss 0x3cb4
+#define MN_vfnmsub213ss 0x3cc0
+#define MN_vfmadd213ss 0x3ccd
+#define MN_vfnmadd213ss 0x3cd9
+#define MN_vrcp14ss 0x3ce6
+#define MN_vrsqrt14ss 0x3cef
+#define MN_vrcp28ss 0x3cfa
+#define MN_vrsqrt28ss 0x3d03
 #define MN_subss (MN_vfmsubss + 3)
-#define MN_vfmsubss 0x3d07
-#define MN_vfnmsubss 0x3d10
-#define MN_vsubss 0x3d1a
+#define MN_vfmsubss 0x3d0e
+#define MN_vfnmsubss 0x3d17
+#define MN_vsubss 0x3d21
 #define MN_addss (MN_v4fmaddss + 4)
-#define MN_v4fmaddss 0x3d21
-#define MN_vfmaddss 0x3d2b
-#define MN_v4fnmaddss 0x3d34
-#define MN_vfnmaddss 0x3d3f
-#define MN_vaddss 0x3d49
+#define MN_v4fmaddss 0x3d28
+#define MN_vfmaddss 0x3d32
+#define MN_v4fnmaddss 0x3d3b
+#define MN_vfnmaddss 0x3d46
+#define MN_vaddss 0x3d50
 #define MN_roundss (MN_vroundss + 1)
-#define MN_vroundss 0x3d50
+#define MN_vroundss 0x3d57
 #define MN_cmpunordss (MN_vcmpunordss + 1)
-#define MN_vcmpunordss 0x3d59
+#define MN_vcmpunordss 0x3d60
 #define MN_cmpordss (MN_vcmpordss + 1)
-#define MN_vcmpordss 0x3d65
-#define MN_vreducess 0x3d6f
-#define MN_vrangess 0x3d79
-#define MN_vcmpngess 0x3d82
-#define MN_vcmpgess 0x3d8c
-#define MN_vrndscaless 0x3d95
+#define MN_vcmpordss 0x3d6c
+#define MN_vreducess 0x3d76
+#define MN_vrangess 0x3d80
+#define MN_vcmpngess 0x3d89
+#define MN_vcmpgess 0x3d93
+#define MN_vrndscaless 0x3d9c
 #define MN_cmpnless (MN_vcmpnless + 1)
-#define MN_vcmpnless 0x3da1
+#define MN_vcmpnless 0x3da8
 #define MN_cmpless (MN_vcmpless + 1)
-#define MN_vcmpless 0x3dab
-#define MN_vcmpfalsess 0x3db4
-#define MN_vcmptruess 0x3dc0
-#define MN_vscalefss 0x3dcb
+#define MN_vcmpless 0x3db2
+#define MN_vcmpfalsess 0x3dbb
+#define MN_vcmptruess 0x3dc7
+#define MN_vscalefss 0x3dd2
 #define MN_comiss (MN_ucomiss + 1)
 #define MN_ucomiss (MN_vucomiss + 1)
-#define MN_vucomiss 0x3dd5
-#define MN_vcomiss 0x3dde
+#define MN_vucomiss 0x3ddc
+#define MN_vcomiss 0x3de5
 #define MN_lss (MN_mulss + 2)
 #define MN_mulss (MN_vmulss + 1)
-#define MN_vmulss 0x3de6
-#define MN_vfixupimmss 0x3ded
+#define MN_vmulss 0x3ded
+#define MN_vfixupimmss 0x3df4
 #define MN_minss (MN_vminss + 1)
-#define MN_vminss 0x3df9
+#define MN_vminss 0x3e00
 #define MN_rcpss (MN_vrcpss + 1)
-#define MN_vrcpss 0x3e00
+#define MN_vrcpss 0x3e07
 #define MN_cmpss (MN_vcmpss + 1)
-#define MN_vcmpss 0x3e07
-#define MN_vgetexpss 0x3e0e
-#define MN_vcmpunord_qss 0x3e18
-#define MN_vcmpord_qss 0x3e26
+#define MN_vcmpss 0x3e0e
+#define MN_vgetexpss 0x3e15
+#define MN_vcmpunord_qss 0x3e1f
+#define MN_vcmpord_qss 0x3e2d
 #define MN_cmpneqss (MN_vcmpneqss + 1)
-#define MN_vcmpneqss 0x3e32
+#define MN_vcmpneqss 0x3e39
 #define MN_cmpeqss (MN_vcmpeqss + 1)
-#define MN_vcmpeqss 0x3e3c
-#define MN_vcmpge_oqss 0x3e45
-#define MN_vcmple_oqss 0x3e51
-#define MN_vcmpfalse_oqss 0x3e5d
-#define MN_vcmpneq_oqss 0x3e6c
-#define MN_vcmpeq_oqss 0x3e79
-#define MN_vcmpgt_oqss 0x3e85
-#define MN_vcmplt_oqss 0x3e91
-#define MN_vcmpnge_uqss 0x3e9d
-#define MN_vcmpnle_uqss 0x3eaa
-#define MN_vcmptrue_uqss 0x3eb7
-#define MN_vcmpneq_uqss 0x3ec5
-#define MN_vcmpeq_uqss 0x3ed2
-#define MN_vcmpngt_uqss 0x3ede
-#define MN_vcmpnlt_uqss 0x3eeb
-#define MN_vcmpunord_sss 0x3ef8
-#define MN_vcmpord_sss 0x3f06
-#define MN_vcmpge_osss 0x3f12
-#define MN_vcmple_osss 0x3f1e
-#define MN_vcmpfalse_osss 0x3f2a
-#define MN_vcmpneq_osss 0x3f39
-#define MN_vcmpeq_osss 0x3f46
-#define MN_vcmpgt_osss 0x3f52
-#define MN_vcmplt_osss 0x3f5e
-#define MN_vfpclassss 0x3f6a
-#define MN_vcmpnge_usss 0x3f75
-#define MN_vcmpnle_usss 0x3f82
-#define MN_vcmptrue_usss 0x3f8f
-#define MN_vcmpneq_usss 0x3f9d
-#define MN_vcmpeq_usss 0x3faa
-#define MN_vcmpngt_usss 0x3fb6
-#define MN_vcmpnlt_usss 0x3fc3
-#define MN_vcmpngtss 0x3fd0
-#define MN_vcmpgtss 0x3fda
+#define MN_vcmpeqss 0x3e43
+#define MN_vcmpge_oqss 0x3e4c
+#define MN_vcmple_oqss 0x3e58
+#define MN_vcmpfalse_oqss 0x3e64
+#define MN_vcmpneq_oqss 0x3e73
+#define MN_vcmpeq_oqss 0x3e80
+#define MN_vcmpgt_oqss 0x3e8c
+#define MN_vcmplt_oqss 0x3e98
+#define MN_vcmpnge_uqss 0x3ea4
+#define MN_vcmpnle_uqss 0x3eb1
+#define MN_vcmptrue_uqss 0x3ebe
+#define MN_vcmpneq_uqss 0x3ecc
+#define MN_vcmpeq_uqss 0x3ed9
+#define MN_vcmpngt_uqss 0x3ee5
+#define MN_vcmpnlt_uqss 0x3ef2
+#define MN_vcmpunord_sss 0x3eff
+#define MN_vcmpord_sss 0x3f0d
+#define MN_vcmpge_osss 0x3f19
+#define MN_vcmple_osss 0x3f25
+#define MN_vcmpfalse_osss 0x3f31
+#define MN_vcmpneq_osss 0x3f40
+#define MN_vcmpeq_osss 0x3f4d
+#define MN_vcmpgt_osss 0x3f59
+#define MN_vcmplt_osss 0x3f65
+#define MN_vfpclassss 0x3f71
+#define MN_vcmpnge_usss 0x3f7c
+#define MN_vcmpnle_usss 0x3f89
+#define MN_vcmptrue_usss 0x3f96
+#define MN_vcmpneq_usss 0x3fa4
+#define MN_vcmpeq_usss 0x3fb1
+#define MN_vcmpngt_usss 0x3fbd
+#define MN_vcmpnlt_usss 0x3fca
+#define MN_vcmpngtss 0x3fd7
+#define MN_vcmpgtss 0x3fe1
 #define MN_cmpnltss (MN_vcmpnltss + 1)
-#define MN_vcmpnltss 0x3fe3
+#define MN_vcmpnltss 0x3fea
 #define MN_cmpltss (MN_vcmpltss + 1)
-#define MN_vcmpltss 0x3fed
-#define MN_vgetmantss 0x3ff6
-#define MN_movntss 0x4001
+#define MN_vcmpltss 0x3ff4
+#define MN_vgetmantss 0x3ffd
+#define MN_movntss 0x4008
 #define MN_sqrtss (MN_rsqrtss + 1)
 #define MN_rsqrtss (MN_vrsqrtss + 1)
-#define MN_vrsqrtss 0x4009
-#define MN_vsqrtss 0x4012
-#define MN_vbroadcastss 0x401a
+#define MN_vrsqrtss 0x4010
+#define MN_vsqrtss 0x4019
+#define MN_vbroadcastss 0x4021
 #define MN_divss (MN_vdivss + 1)
-#define MN_vdivss 0x4027
+#define MN_vdivss 0x402e
 #define MN_movss (MN_vmovss + 1)
-#define MN_vmovss 0x402e
+#define MN_vmovss 0x4035
 #define MN_maxss (MN_vmaxss + 1)
-#define MN_vmaxss 0x4035
-#define MN_vfrczss 0x403c
-#define MN_bts 0x4044
-#define MN_erets 0x4048
-#define MN_sets 0x404e
-#define MN_clts 0x4053
-#define MN_ctests 0x4058
-#define MN_outs 0x405f
-#define MN_setzus 0x4064
+#define MN_vmaxss 0x403c
+#define MN_vfrczss 0x4043
+#define MN_bts 0x404b
+#define MN_erets 0x404f
+#define MN_sets 0x4055
+#define MN_clts 0x405a
+#define MN_ctests 0x405f
+#define MN_outs 0x4066
+#define MN_setzus 0x406b
 #define MN_movs (MN_cmovs + 1)
 #define MN_cmovs (MN_cfcmovs + 2)
-#define MN_cfcmovs 0x406b
-#define MN_fldl2t 0x4073
-#define MN_xlat 0x407a
-#define MN_bt 0x407f
-#define MN_fxtract 0x4082
-#define MN_lgdt 0x408a
-#define MN_sgdt 0x408f
-#define MN_lidt 0x4094
-#define MN_sidt 0x4099
-#define MN_fldt 0x409e
-#define MN_lldt 0x40a3
-#define MN_sldt 0x40a8
+#define MN_cfcmovs 0x4072
+#define MN_fldl2t 0x407a
+#define MN_xlat 0x4081
+#define MN_bt 0x4086
+#define MN_fxtract 0x4089
+#define MN_lgdt 0x4091
+#define MN_sgdt 0x4096
+#define MN_lidt 0x409b
+#define MN_sidt 0x40a0
+#define MN_fldt 0x40a5
+#define MN_lldt 0x40aa
+#define MN_sldt 0x40af
 #define MN_ret (MN_iret + 1)
 #define MN_iret (MN_uiret + 1)
-#define MN_uiret 0x40ad
-#define MN_lret 0x40b3
-#define MN_seamret 0x40b8
-#define MN_sysret 0x40c0
-#define MN_hreset 0x40c7
-#define MN_pfcmpgt 0x40ce
-#define MN_ht 0x40d6
+#define MN_uiret 0x40b4
+#define MN_lret 0x40ba
+#define MN_seamret 0x40bf
+#define MN_sysret 0x40c7
+#define MN_hreset 0x40ce
+#define MN_pfcmpgt 0x40d5
+#define MN_ht 0x40dd
 #define MN_wait (MN_fwait + 1)
-#define MN_fwait 0x40d9
+#define MN_fwait 0x40e0
 #define MN_mwait (MN_umwait + 1)
-#define MN_umwait 0x40df
-#define MN_mcommit 0x40e6
-#define MN_finit 0x40ee
-#define MN_skinit 0x40f4
-#define MN_fninit 0x40fb
-#define MN_vmgexit 0x4102
-#define MN_sysexit 0x410a
-#define MN_hlt 0x4112
-#define MN_popcnt 0x4116
-#define MN_lzcnt 0x411d
-#define MN_tzcnt 0x4123
-#define MN_hnt 0x4129
+#define MN_umwait 0x40e6
+#define MN_mcommit 0x40ed
+#define MN_finit 0x40f5
+#define MN_skinit 0x40fb
+#define MN_fninit 0x4102
+#define MN_vmgexit 0x4109
+#define MN_sysexit 0x4111
+#define MN_hlt 0x4119
+#define MN_popcnt 0x411d
+#define MN_lzcnt 0x4124
+#define MN_tzcnt 0x412a
+#define MN_hnt 0x4130
 #define MN_int (MN_frndint + 4)
-#define MN_frndint 0x412d
-#define MN_not 0x4135
-#define MN_invept 0x4139
-#define MN_ccmpt 0x4140
-#define MN_xsaveopt 0x4146
-#define MN_clflushopt 0x414f
-#define MN_fstpt 0x415a
-#define MN_xabort 0x4160
-#define MN_fsqrt 0x4167
-#define MN_pfrsqrt 0x416d
+#define MN_frndint 0x4134
+#define MN_not 0x413c
+#define MN_invept 0x4140
+#define MN_ccmpt 0x4147
+#define MN_xsaveopt 0x414d
+#define MN_clflushopt 0x4156
+#define MN_fstpt 0x4161
+#define MN_xabort 0x4167
+#define MN_fsqrt 0x416e
+#define MN_pfrsqrt 0x4174
 #define MN_aesdeclast (MN_vaesdeclast + 1)
-#define MN_vaesdeclast 0x4175
+#define MN_vaesdeclast 0x417c
 #define MN_aesenclast (MN_vaesenclast + 1)
-#define MN_vaesenclast 0x4181
+#define MN_vaesenclast 0x4188
 #define MN_test (MN_ptest + 1)
 #define MN_ptest (MN_vptest + 1)
-#define MN_vptest 0x418d
-#define MN_xtest 0x4194
-#define MN_fst 0x419a
-#define MN_fist 0x419e
-#define MN_rdmsrlist 0x41a3
-#define MN_wrmsrlist 0x41ad
+#define MN_vptest 0x4194
+#define MN_xtest 0x419b
+#define MN_fst 0x41a1
+#define MN_fist 0x41a5
+#define MN_rdmsrlist 0x41aa
+#define MN_wrmsrlist 0x41b4
 #define MN_aeskeygenassist (MN_vaeskeygenassist + 1)
-#define MN_vaeskeygenassist 0x41b7
-#define MN_vmptrst 0x41c8
-#define MN_ftst 0x41d0
-#define MN_rmpadjust 0x41d5
-#define MN_ctestt 0x41df
-#define MN_out 0x41e6
-#define MN_pext 0x41ea
-#define MN_bndcu 0x41ef
-#define MN_enclu 0x41f5
-#define MN_fcmovnu 0x41fb
+#define MN_vaeskeygenassist 0x41be
+#define MN_vmptrst 0x41cf
+#define MN_ftst 0x41d7
+#define MN_rmpadjust 0x41dc
+#define MN_ctestt 0x41e6
+#define MN_out 0x41ed
+#define MN_pext 0x41f1
+#define MN_bndcu 0x41f6
+#define MN_enclu 0x41fc
+#define MN_fcmovnu 0x4202
 #define MN_lddqu (MN_vlddqu + 1)
-#define MN_vlddqu 0x4203
+#define MN_vlddqu 0x420a
 #define MN_movdqu (MN_maskmovdqu + 4)
 #define MN_maskmovdqu (MN_vmaskmovdqu + 1)
-#define MN_vmaskmovdqu 0x420a
-#define MN_vmovdqu 0x4216
-#define MN_rdpkru 0x421e
-#define MN_wrpkru 0x4225
-#define MN_rdpru 0x422c
-#define MN_eretu 0x4232
-#define MN_fcmovu 0x4238
-#define MN_imulzu 0x423f
-#define MN_xgetbv 0x4246
-#define MN_xsetbv 0x424d
+#define MN_vmaskmovdqu 0x4211
+#define MN_vmovdqu 0x421d
+#define MN_rdpkru 0x4225
+#define MN_wrpkru 0x422c
+#define MN_rdpru 0x4233
+#define MN_eretu 0x4239
+#define MN_fcmovu 0x423f
+#define MN_imulzu 0x4246
+#define MN_xgetbv 0x424d
+#define MN_xsetbv 0x4254
 #define MN_div (MN_fdiv + 1)
-#define MN_fdiv 0x4254
+#define MN_fdiv 0x425b
 #define MN_idiv (MN_fidiv + 1)
-#define MN_fidiv 0x4259
-#define MN_enclv 0x425f
-#define MN_fldenv 0x4265
-#define MN_fstenv 0x426c
-#define MN_fnstenv 0x4273
+#define MN_fidiv 0x4260
+#define MN_enclv 0x4266
+#define MN_fldenv 0x426c
+#define MN_fstenv 0x4273
+#define MN_fnstenv 0x427a
 #define MN_mov (MN_vpcmov + 3)
-#define MN_vpcmov 0x427b
-#define MN_bndmov 0x4282
-#define MN_smov 0x4289
-#define MN_rex_w 0x428e
-#define MN_vcvttph2w 0x4294
-#define MN_vcvtph2w 0x429e
-#define MN_vpermi2w 0x42a7
-#define MN_vpmovm2w 0x42b0
-#define MN_vpermt2w 0x42b9
-#define MN_vpshaw 0x42c2
+#define MN_vpcmov 0x4282
+#define MN_bndmov 0x4289
+#define MN_smov 0x4290
+#define MN_rex_w 0x4295
+#define MN_vcvttph2w 0x429b
+#define MN_vcvtph2w 0x42a5
+#define MN_vpermi2w 0x42ae
+#define MN_vpmovm2w 0x42b7
+#define MN_vpermt2w 0x42c0
+#define MN_vpshaw 0x42c9
 #define MN_psraw (MN_vpsraw + 1)
-#define MN_vpsraw 0x42c9
-#define MN_vphsubbw 0x42d0
-#define MN_cbw 0x42d9
+#define MN_vpsraw 0x42d0
+#define MN_vphsubbw 0x42d7
+#define MN_cbw 0x42e0
 #define MN_psadbw (MN_vdbpsadbw + 3)
-#define MN_vdbpsadbw 0x42dd
+#define MN_vdbpsadbw 0x42e4
 #define MN_mpsadbw (MN_vmpsadbw + 1)
-#define MN_vmpsadbw 0x42e7
-#define MN_vpsadbw 0x42f0
-#define MN_vphaddbw 0x42f8
+#define MN_vmpsadbw 0x42ee
+#define MN_vpsadbw 0x42f7
+#define MN_vphaddbw 0x42ff
 #define MN_punpckhbw (MN_vpunpckhbw + 1)
-#define MN_vpunpckhbw 0x4301
-#define MN_kunpckbw 0x430c
+#define MN_vpunpckhbw 0x4308
+#define MN_kunpckbw 0x4313
 #define MN_punpcklbw (MN_vpunpcklbw + 1)
-#define MN_vpunpcklbw 0x4315
-#define MN_vphaddubw 0x4320
+#define MN_vpunpcklbw 0x431c
+#define MN_vphaddubw 0x4327
 #define MN_phsubw (MN_vphsubw + 1)
-#define MN_vphsubw 0x432a
+#define MN_vphsubw 0x4331
 #define MN_psubw (MN_vpsubw + 1)
-#define MN_vpsubw 0x4332
+#define MN_vpsubw 0x4339
 #define MN_pmovsxbw (MN_vpmovsxbw + 1)
-#define MN_vpmovsxbw 0x4339
+#define MN_vpmovsxbw 0x4340
 #define MN_pmovzxbw (MN_vpmovzxbw + 1)
-#define MN_vpmovzxbw 0x4343
-#define MN_fldcw 0x434d
-#define MN_fstcw 0x4353
-#define MN_fnstcw 0x4359
+#define MN_vpmovzxbw 0x434a
+#define MN_fldcw 0x4354
+#define MN_fstcw 0x435a
+#define MN_fnstcw 0x4360
 #define MN_phaddw (MN_vphaddw + 1)
-#define MN_vphaddw 0x4360
-#define MN_kaddw 0x4368
+#define MN_vphaddw 0x4367
+#define MN_kaddw 0x436f
 #define MN_paddw (MN_vpaddw + 1)
-#define MN_vpaddw 0x436e
-#define MN_vpshldw 0x4375
-#define MN_kandw 0x437d
-#define MN_vpexpandw 0x4383
+#define MN_vpaddw 0x4375
+#define MN_vpshldw 0x437c
+#define MN_kandw 0x4384
+#define MN_vpexpandw 0x438a
 #define MN_pblendw (MN_vpblendw + 1)
-#define MN_vpblendw 0x438d
-#define MN_vpshrdw 0x4396
+#define MN_vpblendw 0x4394
+#define MN_vpshrdw 0x439d
 #define MN_packssdw (MN_vpackssdw + 1)
-#define MN_vpackssdw 0x439e
+#define MN_vpackssdw 0x43a5
 #define MN_packusdw (MN_vpackusdw + 1)
-#define MN_vpackusdw 0x43a8
-#define MN_vpmovusdw 0x43b2
-#define MN_vpmovsdw 0x43bc
-#define MN_vpmovdw 0x43c5
-#define MN_vpcomgew 0x43cd
-#define MN_vpcomlew 0x43d6
-#define MN_vpcmpnlew 0x43df
-#define MN_vpcmplew 0x43e9
-#define MN_vpcomfalsew 0x43f2
-#define MN_vpcomtruew 0x43fe
-#define MN_pi2fw 0x4409
-#define MN_pshufw 0x440f
+#define MN_vpackusdw 0x43af
+#define MN_vpmovusdw 0x43b9
+#define MN_vpmovsdw 0x43c3
+#define MN_vpmovdw 0x43cc
+#define MN_vpcomgew 0x43d4
+#define MN_vpcomlew 0x43dd
+#define MN_vpcmpnlew 0x43e6
+#define MN_vpcmplew 0x43f0
+#define MN_vpcomfalsew 0x43f9
+#define MN_vpcomtruew 0x4405
+#define MN_pi2fw 0x4410
+#define MN_pshufw 0x4416
 #define MN_pavgw (MN_vpavgw + 1)
-#define MN_vpavgw 0x4416
-#define MN_prefetchw 0x441d
+#define MN_vpavgw 0x441d
+#define MN_prefetchw 0x4424
 #define MN_pshufhw (MN_vpshufhw + 1)
-#define MN_vpshufhw 0x4427
+#define MN_vpshufhw 0x442e
 #define MN_pmulhw (MN_vpmulhw + 1)
-#define MN_vpmulhw 0x4430
-#define MN_pf2iw 0x4438
+#define MN_vpmulhw 0x4437
+#define MN_pf2iw 0x443f
 #define MN_pshuflw (MN_vpshuflw + 1)
-#define MN_vpshuflw 0x443e
-#define MN_vpshlw 0x4447
+#define MN_vpshuflw 0x4445
+#define MN_vpshlw 0x444e
 #define MN_psllw (MN_vpsllw + 1)
-#define MN_vpsllw 0x444e
+#define MN_vpsllw 0x4455
 #define MN_pmullw (MN_vpmullw + 1)
-#define MN_vpmullw 0x4455
+#define MN_vpmullw 0x445c
 #define MN_psrlw (MN_vpsrlw + 1)
-#define MN_vpsrlw 0x445d
-#define MN_kshiftlw 0x4464
-#define MN_vpblendmw 0x446d
-#define MN_vptestnmw 0x4477
-#define MN_vpcomw 0x4481
-#define MN_vpermw 0x4488
-#define MN_vptestmw 0x448f
-#define MN_kandnw 0x4498
+#define MN_vpsrlw 0x4464
+#define MN_kshiftlw 0x446b
+#define MN_vpblendmw 0x4474
+#define MN_vptestnmw 0x447e
+#define MN_vpcomw 0x4488
+#define MN_vpermw 0x448f
+#define MN_vptestmw 0x4496
+#define MN_kandnw 0x449f
 #define MN_psignw (MN_vpsignw + 1)
-#define MN_vpsignw 0x449f
-#define MN_vpcmpw 0x44a7
-#define MN_vpcomeqw 0x44ae
-#define MN_vpcomneqw 0x44b7
-#define MN_vpcmpneqw 0x44c1
+#define MN_vpsignw 0x44a6
+#define MN_vpcmpw 0x44ae
+#define MN_vpcomeqw 0x44b5
+#define MN_vpcomneqw 0x44be
+#define MN_vpcmpneqw 0x44c8
 #define MN_pcmpeqw (MN_vpcmpeqw + 1)
-#define MN_vpcmpeqw 0x44cb
-#define MN_vpmovusqw 0x44d4
-#define MN_vpmovsqw 0x44de
-#define MN_vpmovqw 0x44e7
-#define MN_verw 0x44ef
-#define MN_pmulhrw 0x44f4
-#define MN_korw 0x44fc
-#define MN_kxnorw 0x4501
-#define MN_kxorw 0x4508
+#define MN_vpcmpeqw 0x44d2
+#define MN_vpmovusqw 0x44db
+#define MN_vpmovsqw 0x44e5
+#define MN_vpmovqw 0x44ee
+#define MN_verw 0x44f6
+#define MN_pmulhrw 0x44fb
+#define MN_korw 0x4503
+#define MN_kxnorw 0x4508
+#define MN_kxorw 0x450f
 #define MN_pinsrw (MN_vpinsrw + 1)
-#define MN_vpinsrw 0x450e
-#define MN_kshiftrw 0x4516
+#define MN_vpinsrw 0x4515
+#define MN_kshiftrw 0x451d
 #define MN_pextrw (MN_vpextrw + 1)
-#define MN_vpextrw 0x451f
+#define MN_vpextrw 0x4526
 #define MN_pabsw (MN_vpabsw + 1)
-#define MN_vpabsw 0x4527
+#define MN_vpabsw 0x452e
 #define MN_pmaddubsw (MN_vpmaddubsw + 1)
-#define MN_vpmaddubsw 0x452e
+#define MN_vpmaddubsw 0x4535
 #define MN_phsubsw (MN_vphsubsw + 1)
-#define MN_vphsubsw 0x4539
+#define MN_vphsubsw 0x4540
 #define MN_psubsw (MN_vpsubsw + 1)
-#define MN_vpsubsw 0x4542
+#define MN_vpsubsw 0x4549
 #define MN_phaddsw (MN_vphaddsw + 1)
-#define MN_vphaddsw 0x454a
+#define MN_vphaddsw 0x4551
 #define MN_paddsw (MN_vpaddsw + 1)
-#define MN_vpaddsw 0x4553
-#define MN_lmsw 0x455b
-#define MN_smsw 0x4560
+#define MN_vpaddsw 0x455a
+#define MN_lmsw 0x4562
+#define MN_smsw 0x4567
 #define MN_pminsw (MN_vpminsw + 1)
-#define MN_vpminsw 0x4565
+#define MN_vpminsw 0x456c
 #define MN_pmulhrsw (MN_vpmulhrsw + 1)
-#define MN_vpmulhrsw 0x456d
-#define MN_vpcompressw 0x4577
-#define MN_fstsw 0x4583
-#define MN_fnstsw 0x4589
+#define MN_vpmulhrsw 0x4574
+#define MN_vpcompressw 0x457e
+#define MN_fstsw 0x458a
+#define MN_fnstsw 0x4590
 #define MN_psubusw (MN_vpsubusw + 1)
-#define MN_vpsubusw 0x4590
+#define MN_vpsubusw 0x4597
 #define MN_paddusw (MN_vpaddusw + 1)
-#define MN_vpaddusw 0x4599
-#define MN_movsw 0x45a2
+#define MN_vpaddusw 0x45a0
+#define MN_movsw 0x45a9
 #define MN_pmaxsw (MN_vpmaxsw + 1)
-#define MN_vpmaxsw 0x45a8
-#define MN_cbtw 0x45b0
-#define MN_vpcomgtw 0x45b5
+#define MN_vpmaxsw 0x45af
+#define MN_cbtw 0x45b7
+#define MN_vpcomgtw 0x45bc
 #define MN_pcmpgtw (MN_vpcmpgtw + 1)
-#define MN_vpcmpgtw 0x45be
-#define MN_vpcomltw 0x45c7
-#define MN_vpcmpnltw 0x45d0
-#define MN_vpcmpltw 0x45da
-#define MN_vpopcntw 0x45e3
-#define MN_knotw 0x45ec
-#define MN_vprotw 0x45f2
-#define MN_vpbroadcastw 0x45f9
-#define MN_ktestw 0x4606
-#define MN_kortestw 0x460d
-#define MN_vcvttph2uw 0x4616
-#define MN_vcvtph2uw 0x4621
-#define MN_vpcomgeuw 0x462b
-#define MN_vpcomleuw 0x4635
-#define MN_vpcmpnleuw 0x463f
-#define MN_vpcmpleuw 0x464a
-#define MN_vpcomfalseuw 0x4654
-#define MN_vpcomtrueuw 0x4661
+#define MN_vpcmpgtw 0x45c5
+#define MN_vpcomltw 0x45ce
+#define MN_vpcmpnltw 0x45d7
+#define MN_vpcmpltw 0x45e1
+#define MN_vpopcntw 0x45ea
+#define MN_knotw 0x45f3
+#define MN_vprotw 0x45f9
+#define MN_vpbroadcastw 0x4600
+#define MN_ktestw 0x460d
+#define MN_kortestw 0x4614
+#define MN_vcvttph2uw 0x461d
+#define MN_vcvtph2uw 0x4628
+#define MN_vpcomgeuw 0x4632
+#define MN_vpcomleuw 0x463c
+#define MN_vpcmpnleuw 0x4646
+#define MN_vpcmpleuw 0x4651
+#define MN_vpcomfalseuw 0x465b
+#define MN_vpcomtrueuw 0x4668
 #define MN_pmulhuw (MN_vpmulhuw + 1)
-#define MN_vpmulhuw 0x466d
-#define MN_vpcomuw 0x4676
+#define MN_vpmulhuw 0x4674
+#define MN_vpcomuw 0x467d
 #define MN_pminuw (MN_vpminuw + 1)
-#define MN_vpminuw 0x467e
-#define MN_vpcmpuw 0x4686
-#define MN_vpcomequw 0x468e
-#define MN_vpcomnequw 0x4698
-#define MN_vpcmpnequw 0x46a3
-#define MN_vpcmpequw 0x46ae
+#define MN_vpminuw 0x4685
+#define MN_vpcmpuw 0x468d
+#define MN_vpcomequw 0x4695
+#define MN_vpcomnequw 0x469f
+#define MN_vpcmpnequw 0x46aa
+#define MN_vpcmpequw 0x46b5
 #define MN_phminposuw (MN_vphminposuw + 1)
-#define MN_vphminposuw 0x46b8
-#define MN_vpcomgtuw 0x46c4
-#define MN_vpcomltuw 0x46ce
-#define MN_vpcmpnltuw 0x46d8
-#define MN_vpcmpltuw 0x46e3
+#define MN_vphminposuw 0x46bf
+#define MN_vpcomgtuw 0x46cb
+#define MN_vpcomltuw 0x46d5
+#define MN_vpcmpnltuw 0x46df
+#define MN_vpcmpltuw 0x46ea
 #define MN_pmaxuw (MN_vpmaxuw + 1)
-#define MN_vpmaxuw 0x46ed
-#define MN_vpsravw 0x46f5
-#define MN_vpshldvw 0x46fd
-#define MN_vpshrdvw 0x4706
-#define MN_vpsllvw 0x470f
-#define MN_vpsrlvw 0x4717
-#define MN_kmovw 0x471f
-#define MN_vmovw 0x4725
-#define MN_vpmacsww 0x472b
-#define MN_vpmacssww 0x4734
-#define MN_movzw 0x473e
-#define MN_rex_x 0x4744
-#define MN_fyl2x 0x474a
-#define MN_rex64x 0x4750
-#define MN_vcvtneps2bf16x 0x4757
-#define MN_vcvtneph2bf8x 0x4766
-#define MN_vcvtneph2hf8x 0x4774
-#define MN_pfmax 0x4782
-#define MN_adcx 0x4788
-#define MN_bndldx 0x478d
-#define MN_vfpclasspdx 0x4794
-#define MN_fclex 0x47a0
-#define MN_fnclex 0x47a6
-#define MN_rex 0x47ad
-#define MN_vcvtpd2phx 0x47b1
-#define MN_vcvtdq2phx 0x47bc
-#define MN_vcvtudq2phx 0x47c7
-#define MN_vcvtqq2phx 0x47d3
-#define MN_vcvtuqq2phx 0x47de
-#define MN_vcvt2ps2phx 0x47ea
-#define MN_vcvtps2phx 0x47f6
-#define MN_vfpclassphx 0x4801
-#define MN_shlx 0x480d
-#define MN_mulx 0x4812
-#define MN_adox 0x4817
-#define MN_vcvttpd2dqx 0x481c
-#define MN_vcvtpd2dqx 0x4828
-#define MN_vcvttpd2udqx 0x4833
-#define MN_vcvtpd2udqx 0x4840
-#define MN_rex_rx 0x484c
-#define MN_sarx 0x4853
-#define MN_shrx 0x4858
-#define MN_rorx 0x485d
-#define MN_monitorx 0x4862
-#define MN_rex_wrx 0x486b
-#define MN_vcvtneph2bf8sx 0x4873
-#define MN_vcvtneph2hf8sx 0x4882
-#define MN_vcvtpd2psx 0x4891
-#define MN_vcvtph2psx 0x489c
-#define MN_vcvtqq2psx 0x48a7
-#define MN_vcvtuqq2psx 0x48b2
-#define MN_vfpclasspsx 0x48be
-#define MN_movsx 0x48ca
-#define MN_mwaitx 0x48d0
-#define MN_bndstx 0x48d7
-#define MN_rex_wx 0x48de
-#define MN_rexx 0x48e5
-#define MN_vcvtps2phxx 0x48ea
-#define MN_movzx 0x48f6
-#define MN_rex64y 0x48fc
-#define MN_vcvtneps2bf16y 0x4903
-#define MN_vcvtneph2bf8y 0x4912
-#define MN_vcvtneph2hf8y 0x4920
-#define MN_vfpclasspdy 0x492e
-#define MN_loadiwkey 0x493a
-#define MN_vcvtpd2phy 0x4944
-#define MN_vcvtdq2phy 0x494f
-#define MN_vcvtudq2phy 0x495a
-#define MN_vcvtqq2phy 0x4966
-#define MN_vcvtuqq2phy 0x4971
-#define MN_vfpclassphy 0x497d
-#define MN_vcvttpd2dqy 0x4989
-#define MN_vcvtpd2dqy 0x4995
-#define MN_vcvttpd2udqy 0x49a0
-#define MN_vcvtpd2udqy 0x49ad
-#define MN_rmpquery 0x49b9
-#define MN_vcvtneph2bf8sy 0x49c2
-#define MN_vcvtneph2hf8sy 0x49d1
-#define MN_clrssbsy 0x49e0
-#define MN_setssbsy 0x49e9
-#define MN_vcvtpd2psy 0x49f2
-#define MN_vcvtqq2psy 0x49fd
-#define MN_vcvtuqq2psy 0x4a08
-#define MN_vfpclasspsy 0x4a14
-#define MN_rex64xy 0x4a20
-#define MN_rexy 0x4a28
-#define MN_vcvtps2phxy 0x4a2d
-#define MN_rexxy 0x4a39
-#define MN_rex64z 0x4a3f
-#define MN_fldz 0x4a46
-#define MN_vfpclasspdz 0x4a4b
-#define MN_vcvtpd2phz 0x4a57
-#define MN_vcvtqq2phz 0x4a62
-#define MN_vcvtuqq2phz 0x4a6d
-#define MN_vfpclassphz 0x4a79
-#define MN_jz 0x4a85
-#define MN_jnz 0x4a88
-#define MN_repnz 0x4a8c
-#define MN_ccmpnz 0x4a92
-#define MN_loopnz 0x4a99
-#define MN_setnz 0x4aa0
-#define MN_ctestnz 0x4aa6
-#define MN_setzunz 0x4aae
+#define MN_vpmaxuw 0x46f4
+#define MN_vpsravw 0x46fc
+#define MN_vpshldvw 0x4704
+#define MN_vpshrdvw 0x470d
+#define MN_vpsllvw 0x4716
+#define MN_vpsrlvw 0x471e
+#define MN_kmovw 0x4726
+#define MN_vmovw 0x472c
+#define MN_vpmacsww 0x4732
+#define MN_vpmacssww 0x473b
+#define MN_movzw 0x4745
+#define MN_rex_x 0x474b
+#define MN_fyl2x 0x4751
+#define MN_rex64x 0x4757
+#define MN_vcvtneps2bf16x 0x475e
+#define MN_vcvtneph2bf8x 0x476d
+#define MN_vcvtneph2hf8x 0x477b
+#define MN_pfmax 0x4789
+#define MN_adcx 0x478f
+#define MN_bndldx 0x4794
+#define MN_vfpclasspdx 0x479b
+#define MN_fclex 0x47a7
+#define MN_fnclex 0x47ad
+#define MN_rex 0x47b4
+#define MN_vcvtpd2phx 0x47b8
+#define MN_vcvtdq2phx 0x47c3
+#define MN_vcvtudq2phx 0x47ce
+#define MN_vcvtqq2phx 0x47da
+#define MN_vcvtuqq2phx 0x47e5
+#define MN_vcvt2ps2phx 0x47f1
+#define MN_vcvtps2phx 0x47fd
+#define MN_vfpclassphx 0x4808
+#define MN_shlx 0x4814
+#define MN_mulx 0x4819
+#define MN_adox 0x481e
+#define MN_vcvttpd2dqx 0x4823
+#define MN_vcvtpd2dqx 0x482f
+#define MN_vcvttpd2udqx 0x483a
+#define MN_vcvtpd2udqx 0x4847
+#define MN_rex_rx 0x4853
+#define MN_sarx 0x485a
+#define MN_shrx 0x485f
+#define MN_rorx 0x4864
+#define MN_monitorx 0x4869
+#define MN_rex_wrx 0x4872
+#define MN_vcvtneph2bf8sx 0x487a
+#define MN_vcvtneph2hf8sx 0x4889
+#define MN_vcvtpd2psx 0x4898
+#define MN_vcvtph2psx 0x48a3
+#define MN_vcvtqq2psx 0x48ae
+#define MN_vcvtuqq2psx 0x48b9
+#define MN_vfpclasspsx 0x48c5
+#define MN_movsx 0x48d1
+#define MN_mwaitx 0x48d7
+#define MN_bndstx 0x48de
+#define MN_rex_wx 0x48e5
+#define MN_rexx 0x48ec
+#define MN_vcvtps2phxx 0x48f1
+#define MN_movzx 0x48fd
+#define MN_rex64y 0x4903
+#define MN_vcvtneps2bf16y 0x490a
+#define MN_vcvtneph2bf8y 0x4919
+#define MN_vcvtneph2hf8y 0x4927
+#define MN_vfpclasspdy 0x4935
+#define MN_loadiwkey 0x4941
+#define MN_vcvtpd2phy 0x494b
+#define MN_vcvtdq2phy 0x4956
+#define MN_vcvtudq2phy 0x4961
+#define MN_vcvtqq2phy 0x496d
+#define MN_vcvtuqq2phy 0x4978
+#define MN_vfpclassphy 0x4984
+#define MN_vcvttpd2dqy 0x4990
+#define MN_vcvtpd2dqy 0x499c
+#define MN_vcvttpd2udqy 0x49a7
+#define MN_vcvtpd2udqy 0x49b4
+#define MN_rmpquery 0x49c0
+#define MN_vcvtneph2bf8sy 0x49c9
+#define MN_vcvtneph2hf8sy 0x49d8
+#define MN_clrssbsy 0x49e7
+#define MN_setssbsy 0x49f0
+#define MN_vcvtpd2psy 0x49f9
+#define MN_vcvtqq2psy 0x4a04
+#define MN_vcvtuqq2psy 0x4a0f
+#define MN_vfpclasspsy 0x4a1b
+#define MN_rex64xy 0x4a27
+#define MN_rexy 0x4a2f
+#define MN_vcvtps2phxy 0x4a34
+#define MN_rexxy 0x4a40
+#define MN_rex64z 0x4a46
+#define MN_fldz 0x4a4d
+#define MN_vfpclasspdz 0x4a52
+#define MN_vcvtpd2phz 0x4a5e
+#define MN_vcvtqq2phz 0x4a69
+#define MN_vcvtuqq2phz 0x4a74
+#define MN_vfpclassphz 0x4a80
+#define MN_jz 0x4a8c
+#define MN_jnz 0x4a8f
+#define MN_repnz 0x4a93
+#define MN_ccmpnz 0x4a99
+#define MN_loopnz 0x4aa0
+#define MN_setnz 0x4aa7
+#define MN_ctestnz 0x4aad
+#define MN_setzunz 0x4ab5
 #define MN_cmovnz (MN_cfcmovnz + 2)
-#define MN_cfcmovnz 0x4ab6
-#define MN_repz 0x4abf
-#define MN_ccmpz 0x4ac4
-#define MN_loopz 0x4aca
-#define MN_vfpclasspsz 0x4ad0
-#define MN_setz 0x4adc
-#define MN_ctestz 0x4ae1
-#define MN_setzuz 0x4ae8
+#define MN_cfcmovnz 0x4abd
+#define MN_repz 0x4ac6
+#define MN_ccmpz 0x4acb
+#define MN_loopz 0x4ad1
+#define MN_vfpclasspsz 0x4ad7
+#define MN_setz 0x4ae3
+#define MN_ctestz 0x4ae8
+#define MN_setzuz 0x4aef
 #define MN_cmovz (MN_cfcmovz + 2)
-#define MN_cfcmovz 0x4aef
-#define MN_rex64xz 0x4af7
-#define MN_jecxz 0x4aff
-#define MN_jcxz 0x4b05
-#define MN_jrcxz 0x4b0a
-#define MN_rexz 0x4b10
-#define MN_rexxz 0x4b15
-#define MN_rex64yz 0x4b1b
-#define MN_rex64xyz 0x4b23
-#define MN_rexyz 0x4b2c
-#define MN_rexxyz 0x4b32
-#define MN__disp32_ 0x4b39
-#define MN__rex2_ 0x4b42
-#define MN__vex2_ 0x4b49
-#define MN__vex3_ 0x4b50
-#define MN__disp16_ 0x4b57
-#define MN__disp8_ 0x4b60
-#define MN__load_ 0x4b68
-#define MN__store_ 0x4b6f
-#define MN__nooptimize_ 0x4b77
-#define MN__nf_ 0x4b84
-#define MN__rex_ 0x4b89
-#define MN__evex_ 0x4b8f
-#define MN__vex_ 0x4b96
-#define MN__insn 0x4b9c
+#define MN_cfcmovz 0x4af6
+#define MN_rex64xz 0x4afe
+#define MN_jecxz 0x4b06
+#define MN_jcxz 0x4b0c
+#define MN_jrcxz 0x4b11
+#define MN_rexz 0x4b17
+#define MN_rexxz 0x4b1c
+#define MN_rex64yz 0x4b22
+#define MN_rex64xyz 0x4b2a
+#define MN_rexyz 0x4b33
+#define MN_rexxyz 0x4b39
+#define MN__disp32_ 0x4b40
+#define MN__rex2_ 0x4b49
+#define MN__vex2_ 0x4b50
+#define MN__vex3_ 0x4b57
+#define MN__disp16_ 0x4b5e
+#define MN__disp8_ 0x4b67
+#define MN__load_ 0x4b6f
+#define MN__store_ 0x4b76
+#define MN__nooptimize_ 0x4b7e
+#define MN__nf_ 0x4b8b
+#define MN__rex_ 0x4b90
+#define MN__evex_ 0x4b96
+#define MN__vex_ 0x4b9d
+#define MN__insn 0x4ba3
index 4728802935e247c181372be3d417268bc9ff28aa..b8be125ce56ea107d5c67d6d61318f874af72606 100644 (file)
@@ -510,6 +510,9 @@ ljmp, 0xea, No64, JumpInterSegment|No_bSuf|No_sSuf|No_qSuf, { Imm16, Imm16|Imm32
 ljmp, 0xff/5, 0, Amd64|Modrm|JumpAbsolute|No_bSuf|No_sSuf|No_qSuf, { Unspecified|BaseIndex }
 ljmp, 0xff/5, x64, Intel64|Modrm|JumpAbsolute|No_bSuf|No_sSuf, { Unspecified|BaseIndex }
 
+jmpabs, 0xa1, APX_F, NoSuf|Rex2, { Imm64 }
+jmpabs, 0xa1, APX_F, NoSuf|Rex2|IntelSyntax, { Disp64|Unspecified }
+
 ret, 0xc3, No64, ImplicitStackOp|DefaultSize|No_bSuf|No_sSuf|No_qSuf|RepPrefixOk|BNDPrefixOk|IntelSuffix, {}
 ret, 0xc2, No64, ImplicitStackOp|DefaultSize|No_bSuf|No_sSuf|No_qSuf|RepPrefixOk|BNDPrefixOk|IntelSuffix, { Imm16 }
 ret, 0xc3, x64, Amd64|ImplicitStackOp|DefaultSize|No_bSuf|No_lSuf|No_sSuf|NoRex64|RepPrefixOk|BNDPrefixOk|IntelSuffix, {}
index 77d6e3082fe35b0504c04426eac62fc81e7ba4aa..87075298f6912c35fe3f381770c6a67bb17b9b50 100644 (file)
@@ -4814,6 +4814,22 @@ static const insn_template i386_optab[] =
     { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
     { { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0,
          0, 0, 0, 0, 1, 0 } } } },
+  { MN_jmpabs, 0xa1, 1, SPACE_BASE, None,
+    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
+      0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
+      0, 1 },
+    { { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0 } },
+    { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
+    { { { 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+         0, 0, 0, 0, 0, 0 } } } },
+  { MN_jmpabs, 0xa1, 1, SPACE_BASE, None,
+    { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0,
+      0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
+      0, 1 },
+    { { 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0 } },
+    { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } },
+    { { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0,
+         0, 0, 0, 0, 1, 0 } } } },
   { MN_ret, 0xc3, 0, SPACE_BASE, None,
     { 0, 0, 0, 0, 0, 0, 0, 0, 9, 2, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1,
       0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0,
@@ -46379,104 +46395,104 @@ static const i386_op_off_t i386_op_sets[] =
    336,  337,  338,  339,  340,  341,  342,  343,
    345,  358,  362,  366,  370,  380,  390,  400,
    410,  420,  430,  440,  450,  457,  464,  473,
-   476,  484,  487,  493,  495,  497,  499,  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,  536,  538,  540,  542,  544,  547,  550,
-   553,  556,  559,  562,  565,  568,  571,  574,
-   577,  580,  583,  586,  589,  592,  595,  598,
-   601,  604,  607,  610,  613,  616,  619,  622,
-   625,  628,  631,  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,  666,  668,  670,  672,  675,  678,
-   680,  682,  685,  688,  691,  694,  696,  697,
-   698,  700,  702,  704,  706,  707,  708,  709,
-   710,  711,  712,  713,  714,  716,  718,  720,
-   722,  724,  726,  727,  729,  731,  733,  735,
-   737,  739,  741,  743,  745,  749,  751,  752,
-   753,  754,  757,  758,  762,  764,  765,  766,
-   767,  769,  773,  774,  778,  779,  780,  782,
-   784,  785,  786,  787,  788,  789,  790,  791,
-   792,  793,  794,  798,  799,  802,  806,  807,
-   813,  817,  818,  824,  828,  829,  832,  836,
-   837,  843,  847,  848,  854,  855,  856,  857,
-   858,  859,  860,  861,  862,  863,  864,  865,
-   866,  867,  868,  869,  870,  871,  872,  873,
-   874,  875,  876,  877,  880,  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,  981,  983,
-   984,  985,  986,  987,  988,  989,  990,  991,
-   992,  993,  995,  997,  999, 1001, 1003, 1005,
+   476,  484,  487,  489,  495,  497,  499,  501,
+   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,  538,  540,  542,  544,  546,  549,
+   552,  555,  558,  561,  564,  567,  570,  573,
+   576,  579,  582,  585,  588,  591,  594,  597,
+   600,  603,  606,  609,  612,  615,  618,  621,
+   624,  627,  630,  633,  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,  668,  670,  672,  674,  677,
+   680,  682,  684,  687,  690,  693,  696,  698,
+   699,  700,  702,  704,  706,  708,  709,  710,
+   711,  712,  713,  714,  715,  716,  718,  720,
+   722,  724,  726,  728,  729,  731,  733,  735,
+   737,  739,  741,  743,  745,  747,  751,  753,
+   754,  755,  756,  759,  760,  764,  766,  767,
+   768,  769,  771,  775,  776,  780,  781,  782,
+   784,  786,  787,  788,  789,  790,  791,  792,
+   793,  794,  795,  796,  800,  801,  804,  808,
+   809,  815,  819,  820,  826,  830,  831,  834,
+   838,  839,  845,  849,  850,  856,  857,  858,
+   859,  860,  861,  862,  863,  864,  865,  866,
+   867,  868,  869,  870,  871,  872,  873,  874,
+   875,  876,  877,  878,  879,  882,  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,  983,
+   985,  986,  987,  988,  989,  990,  991,  992,
+   993,  994,  995,  997,  999, 1001, 1003, 1005,
   1007, 1009, 1011, 1013, 1015, 1017, 1019, 1021,
   1023, 1025, 1027, 1029, 1031, 1033, 1035, 1037,
   1039, 1041, 1043, 1045, 1047, 1049, 1051, 1053,
   1055, 1057, 1059, 1061, 1063, 1065, 1067, 1069,
   1071, 1073, 1075, 1077, 1079, 1081, 1083, 1085,
   1087, 1089, 1091, 1093, 1095, 1097, 1099, 1101,
-  1103, 1105, 1107, 1109, 1111, 1113, 1114, 1115,
-  1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123,
-  1124, 1125, 1128, 1131, 1134, 1137, 1140, 1143,
-  1144, 1145, 1146, 1147, 1148, 1149, 1155, 1165,
-  1169, 1173, 1177, 1181, 1185, 1188, 1192, 1196,
-  1200, 1204, 1208, 1211, 1214, 1217, 1220, 1223,
-  1226, 1229, 1232, 1236, 1240, 1244, 1247, 1255,
-  1261, 1269, 1277, 1283, 1291, 1297, 1305, 1309,
-  1313, 1316, 1320, 1324, 1328, 1332, 1336, 1340,
-  1344, 1347, 1351, 1355, 1358, 1361, 1363, 1365,
+  1103, 1105, 1107, 1109, 1111, 1113, 1115, 1116,
+  1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124,
+  1125, 1126, 1127, 1130, 1133, 1136, 1139, 1142,
+  1145, 1146, 1147, 1148, 1149, 1150, 1151, 1157,
+  1167, 1171, 1175, 1179, 1183, 1187, 1190, 1194,
+  1198, 1202, 1206, 1210, 1213, 1216, 1219, 1222,
+  1225, 1228, 1231, 1234, 1238, 1242, 1246, 1249,
+  1257, 1263, 1271, 1279, 1285, 1293, 1299, 1307,
+  1311, 1315, 1318, 1322, 1326, 1330, 1334, 1338,
+  1342, 1346, 1349, 1353, 1357, 1360, 1363, 1365,
   1367, 1369, 1371, 1373, 1375, 1377, 1379, 1381,
-  1383, 1385, 1388, 1391, 1394, 1397, 1399, 1401,
+  1383, 1385, 1387, 1390, 1393, 1396, 1399, 1401,
   1403, 1405, 1407, 1409, 1411, 1413, 1415, 1417,
   1419, 1421, 1423, 1425, 1427, 1429, 1431, 1433,
-  1435, 1436, 1437, 1443, 1445, 1446, 1448, 1450,
-  1451, 1453, 1455, 1458, 1460, 1463, 1465, 1467,
-  1468, 1470, 1473, 1475, 1479, 1483, 1492, 1498,
-  1502, 1506, 1510, 1514, 1517, 1521, 1522, 1523,
-  1524, 1525, 1529, 1530, 1533, 1536, 1539, 1542,
-  1543, 1545, 1547, 1549, 1551, 1553, 1555, 1557,
-  1560, 1563, 1566, 1569, 1572, 1575, 1578, 1581,
-  1584, 1587, 1590, 1593, 1596, 1599, 1602, 1605,
+  1435, 1437, 1438, 1439, 1445, 1447, 1448, 1450,
+  1452, 1453, 1455, 1457, 1460, 1462, 1465, 1467,
+  1469, 1470, 1472, 1475, 1477, 1481, 1485, 1494,
+  1500, 1504, 1508, 1512, 1516, 1519, 1523, 1524,
+  1525, 1526, 1527, 1531, 1532, 1535, 1538, 1541,
+  1544, 1545, 1547, 1549, 1551, 1553, 1555, 1557,
+  1559, 1562, 1565, 1568, 1571, 1574, 1577, 1580,
+  1583, 1586, 1589, 1592, 1595, 1598, 1601, 1604,
   1607, 1609, 1611, 1613, 1615, 1617, 1619, 1621,
   1623, 1625, 1627, 1629, 1631, 1633, 1635, 1637,
-  1639, 1641, 1644, 1647, 1653, 1656, 1661, 1666,
-  1668, 1671, 1676, 1679, 1682, 1685, 1688, 1691,
-  1694, 1697, 1699, 1702, 1704, 1705, 1708, 1710,
-  1712, 1714, 1717, 1719, 1720, 1722, 1725, 1727,
-  1729, 1731, 1733, 1734, 1735, 1739, 1741, 1744,
-  1747, 1750, 1753, 1756, 1759, 1761, 1763, 1765,
-  1767, 1769, 1771, 1774, 1777, 1779, 1781, 1783,
-  1784, 1785, 1788, 1790, 1791, 1792, 1793, 1794,
-  1795, 1796, 1798, 1800, 1801, 1802, 1803, 1804,
-  1807, 1810, 1813, 1816, 1819, 1822, 1825, 1828,
-  1831, 1835, 1839, 1843, 1846, 1849, 1852, 1856,
-  1860, 1864, 1867, 1869, 1871, 1875, 1879, 1881,
-  1883, 1887, 1889, 1891, 1893, 1896, 1900, 1902,
-  1904, 1910, 1913, 1916, 1918, 1924, 1927, 1930,
-  1933, 1935, 1937, 1940, 1943, 1945, 1947, 1950,
-  1953, 1956, 1958, 1960, 1962, 1964, 1966, 1968,
-  1970, 1972, 1974, 1976, 1979, 1981, 1983, 1986,
-  1988, 1991, 1993, 1995, 1999, 2003, 2005, 2007,
-  2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018,
-  2019, 2021, 2023, 2025, 2027, 2029, 2031, 2033,
+  1639, 1641, 1643, 1646, 1649, 1655, 1658, 1663,
+  1668, 1670, 1673, 1678, 1681, 1684, 1687, 1690,
+  1693, 1696, 1699, 1701, 1704, 1706, 1707, 1710,
+  1712, 1714, 1716, 1719, 1721, 1722, 1724, 1727,
+  1729, 1731, 1733, 1735, 1736, 1737, 1741, 1743,
+  1746, 1749, 1752, 1755, 1758, 1761, 1763, 1765,
+  1767, 1769, 1771, 1773, 1776, 1779, 1781, 1783,
+  1785, 1786, 1787, 1790, 1792, 1793, 1794, 1795,
+  1796, 1797, 1798, 1800, 1802, 1803, 1804, 1805,
+  1806, 1809, 1812, 1815, 1818, 1821, 1824, 1827,
+  1830, 1833, 1837, 1841, 1845, 1848, 1851, 1854,
+  1858, 1862, 1866, 1869, 1871, 1873, 1877, 1881,
+  1883, 1885, 1889, 1891, 1893, 1895, 1898, 1902,
+  1904, 1906, 1912, 1915, 1918, 1920, 1926, 1929,
+  1932, 1935, 1937, 1939, 1942, 1945, 1947, 1949,
+  1952, 1955, 1958, 1960, 1962, 1964, 1966, 1968,
+  1970, 1972, 1974, 1976, 1978, 1981, 1983, 1985,
+  1988, 1990, 1993, 1995, 1997, 2001, 2005, 2007,
+  2009, 2013, 2014, 2015, 2016, 2017, 2018, 2019,
+  2020, 2021, 2023, 2025, 2027, 2029, 2031, 2033,
   2035, 2037, 2039, 2041, 2043, 2045, 2047, 2049,
   2051, 2053, 2055, 2057, 2059, 2061, 2063, 2065,
   2067, 2069, 2071, 2073, 2075, 2077, 2079, 2081,
-  2083, 2085, 2087, 2089, 2091, 2093, 2095, 2096,
-  2097, 2099, 2101, 2103, 2105, 2107, 2109, 2111,
-  2113, 2114, 2115, 2116, 2117, 2118, 2121, 2123,
+  2083, 2085, 2087, 2089, 2091, 2093, 2095, 2097,
+  2098, 2099, 2101, 2103, 2105, 2107, 2109, 2111,
+  2113, 2115, 2116, 2117, 2118, 2119, 2120, 2123,
   2125, 2127, 2129, 2131, 2133, 2135, 2137, 2139,
   2141, 2143, 2145, 2147, 2149, 2151, 2153, 2155,
   2157, 2159, 2161, 2163, 2165, 2167, 2169, 2171,
@@ -46500,179 +46516,179 @@ static const i386_op_off_t i386_op_sets[] =
   2445, 2447, 2449, 2451, 2453, 2455, 2457, 2459,
   2461, 2463, 2465, 2467, 2469, 2471, 2473, 2475,
   2477, 2479, 2481, 2483, 2485, 2487, 2489, 2491,
-  2493, 2495, 2497, 2499, 2501, 2503, 2508, 2510,
-  2515, 2517, 2519, 2524, 2526, 2528, 2530, 2535,
-  2537, 2539, 2541, 2545, 2551, 2553, 2558, 2560,
-  2562, 2564, 2566, 2568, 2569, 2570, 2571, 2573,
-  2574, 2575, 2576, 2577, 2578, 2580, 2581, 2582,
-  2583, 2585, 2587, 2589, 2591, 2593, 2597, 2598,
-  2599, 2601, 2605, 2609, 2611, 2615, 2619, 2620,
-  2621, 2623, 2625, 2627, 2629, 2634, 2638, 2642,
+  2493, 2495, 2497, 2499, 2501, 2503, 2505, 2510,
+  2512, 2517, 2519, 2521, 2526, 2528, 2530, 2532,
+  2537, 2539, 2541, 2543, 2547, 2553, 2555, 2560,
+  2562, 2564, 2566, 2568, 2570, 2571, 2572, 2573,
+  2575, 2576, 2577, 2578, 2579, 2580, 2582, 2583,
+  2584, 2585, 2587, 2589, 2591, 2593, 2595, 2599,
+  2600, 2601, 2603, 2607, 2611, 2613, 2617, 2621,
+  2622, 2623, 2625, 2627, 2629, 2631, 2636, 2640,
   2644, 2646, 2648, 2650, 2652, 2654, 2656, 2658,
   2660, 2662, 2664, 2666, 2668, 2670, 2672, 2674,
-  2676, 2678, 2680, 2682, 2684, 2685, 2686, 2688,
-  2690, 2691, 2692, 2695, 2698, 2701, 2704, 2706,
-  2708, 2710, 2712, 2714, 2716, 2717, 2718, 2719,
-  2721, 2725, 2727, 2729, 2735, 2739, 2740, 2741,
-  2742, 2743, 2744, 2745, 2746, 2750, 2752, 2754,
-  2758, 2760, 2762, 2764, 2766, 2768, 2770, 2772,
-  2774, 2776, 2778, 2780, 2782, 2784, 2786, 2787,
-  2790, 2793, 2796, 2799, 2804, 2809, 2814, 2819,
-  2822, 2825, 2828, 2831, 2833, 2835, 2837, 2839,
-  2841, 2843, 2845, 2846, 2848, 2850, 2852, 2854,
-  2856, 2857, 2858, 2859, 2863, 2867, 2869, 2873,
-  2877, 2881, 2885, 2889, 2891, 2895, 2897, 2899,
-  2901, 2903, 2905, 2907, 2909, 2911, 2912, 2914,
-  2916, 2918, 2920, 2922, 2924, 2926, 2928, 2929,
-  2930, 2931, 2932, 2933, 2934, 2935, 2936, 2937,
-  2939, 2941, 2943, 2945, 2947, 2949, 2950, 2951,
-  2952, 2954, 2956, 2958, 2960, 2962, 2964, 2965,
-  2966, 2967, 2968, 2971, 2974, 2976, 2979, 2980,
-  2981, 2983, 2984, 2986, 2987, 2988, 2990, 2992,
-  2993, 2994, 2995, 2996, 2997, 3000, 3005, 3010,
-  3015, 3020, 3023, 3028, 3033, 3035, 3037, 3039,
-  3041, 3042, 3043, 3045, 3047, 3049, 3051, 3053,
-  3055, 3057, 3058, 3059, 3060, 3061, 3062, 3063,
-  3068, 3073, 3074, 3075, 3076, 3077, 3078, 3079,
-  3080, 3081, 3082, 3083, 3084, 3085, 3086, 3087,
-  3088, 3089, 3090, 3091, 3092, 3093, 3094, 3095,
-  3096, 3097, 3098, 3099, 3100, 3101, 3102, 3103,
-  3104, 3105, 3106, 3107, 3108, 3109, 3110, 3111,
-  3112, 3113, 3114, 3115, 3116, 3117, 3118, 3119,
-  3120, 3121, 3122, 3123, 3124, 3125, 3126, 3127,
-  3128, 3129, 3130, 3131, 3132, 3133, 3134, 3135,
-  3136, 3137, 3138, 3139, 3140, 3141, 3142, 3143,
-  3144, 3145, 3146, 3147, 3148, 3149, 3150, 3151,
-  3152, 3153, 3154, 3155, 3156, 3157, 3158, 3159,
-  3160, 3161, 3162, 3163, 3164, 3165, 3166, 3167,
-  3168, 3169, 3170, 3171, 3172, 3173, 3174, 3175,
-  3176, 3177, 3178, 3179, 3180, 3181, 3182, 3183,
-  3184, 3185, 3186, 3187, 3188, 3189, 3190, 3191,
-  3192, 3193, 3194, 3195, 3196, 3197, 3198, 3199,
-  3200, 3201, 3202, 3203, 3204, 3205, 3206, 3207,
-  3208, 3209, 3210, 3211, 3212, 3213, 3214, 3215,
-  3216, 3217, 3218, 3219, 3220, 3221, 3222, 3223,
-  3224, 3225, 3226, 3227, 3228, 3229, 3230, 3231,
-  3232, 3233, 3234, 3235, 3236, 3237, 3238, 3239,
-  3240, 3241, 3242, 3243, 3244, 3245, 3246, 3247,
-  3248, 3249, 3250, 3251, 3252, 3253, 3254, 3255,
-  3256, 3257, 3258, 3259, 3260, 3261, 3262, 3263,
-  3264, 3265, 3266, 3267, 3268, 3269, 3270, 3271,
-  3272, 3273, 3274, 3276, 3278, 3279, 3280, 3281,
-  3282, 3283, 3284, 3285, 3286, 3287, 3288, 3289,
-  3290, 3291, 3292, 3293, 3294, 3295, 3296, 3297,
-  3298, 3299, 3300, 3301, 3302, 3303, 3304, 3305,
-  3306, 3308, 3310, 3312, 3314, 3315, 3316, 3317,
-  3318, 3319, 3320, 3321, 3322, 3323, 3324, 3325,
-  3326, 3327, 3329, 3330, 3331, 3332, 3334, 3335,
-  3336, 3337, 3338, 3339, 3340, 3341, 3342, 3343,
-  3344, 3345, 3346, 3347, 3348, 3349, 3350, 3351,
-  3352, 3353, 3354, 3355, 3356, 3357, 3358, 3359,
-  3360, 3361, 3362, 3363, 3364, 3365, 3366, 3367,
-  3368, 3369, 3370, 3371, 3372, 3373, 3374, 3375,
-  3377, 3379, 3380, 3381, 3383, 3384, 3386, 3388,
-  3389, 3390, 3392, 3394, 3396, 3398, 3399, 3400,
-  3401, 3402, 3403, 3404, 3405, 3406, 3407, 3408,
-  3409, 3410, 3411, 3412, 3413, 3414, 3415, 3416,
-  3417, 3420, 3423, 3424, 3425, 3426, 3427, 3428,
-  3429, 3431, 3433, 3435, 3436, 3437, 3438, 3439,
-  3440, 3441, 3443, 3444, 3445, 3446, 3447, 3448,
-  3449, 3450, 3451, 3452, 3453, 3454, 3455, 3456,
-  3457, 3458, 3459, 3460, 3461, 3462, 3463, 3466,
-  3469, 3470, 3471, 3472, 3473, 3474, 3475, 3476,
-  3477, 3478, 3479, 3480, 3481, 3482, 3483, 3484,
-  3485, 3486, 3487, 3488, 3489, 3490, 3491, 3492,
-  3493, 3494, 3495, 3496, 3497, 3498, 3499, 3500,
-  3501, 3502, 3503, 3504, 3505, 3506, 3507, 3508,
-  3509, 3510, 3511, 3512, 3513, 3514, 3515, 3516,
-  3517, 3518, 3519, 3520, 3521, 3522, 3523, 3524,
-  3525, 3526, 3527, 3530, 3532, 3535, 3538, 3540,
-  3543, 3546, 3549, 3552, 3553, 3556, 3557, 3558,
-  3559, 3560, 3561, 3565, 3567, 3570, 3571, 3572,
-  3573, 3574, 3575, 3576, 3577, 3578, 3579, 3580,
-  3581, 3582, 3583, 3584, 3585, 3586, 3587, 3588,
-  3589, 3590, 3591, 3592, 3593, 3594, 3595, 3596,
-  3597, 3598, 3599, 3600, 3601, 3602, 3603, 3604,
-  3605, 3606, 3607, 3608, 3609, 3610, 3611, 3612,
-  3613, 3614, 3615, 3616, 3617, 3618, 3619, 3620,
-  3621, 3623, 3624, 3625, 3626, 3627, 3628, 3629,
-  3630, 3631, 3632, 3633, 3634, 3635, 3636, 3637,
-  3638, 3639, 3640, 3641, 3642, 3643, 3644, 3645,
-  3646, 3647, 3648, 3649, 3650, 3651, 3652, 3653,
-  3654, 3655, 3656, 3657, 3658, 3659, 3660, 3661,
-  3662, 3665, 3668, 3671, 3674, 3677, 3680, 3683,
-  3686, 3689, 3692, 3695, 3698, 3701, 3704, 3707,
-  3708, 3709, 3710, 3711, 3713, 3714, 3715, 3716,
-  3717, 3718, 3719, 3720, 3721, 3722, 3723, 3724,
-  3725, 3726, 3727, 3728, 3729, 3730, 3731, 3732,
-  3733, 3734, 3735, 3736, 3737, 3738, 3739, 3740,
-  3741, 3742, 3743, 3744, 3745, 3746, 3747, 3748,
-  3749, 3750, 3751, 3752, 3753, 3754, 3755, 3756,
-  3757, 3758, 3759, 3760, 3761, 3762, 3763, 3764,
-  3765, 3766, 3767, 3768, 3769, 3770, 3771, 3772,
-  3773, 3774, 3777, 3780, 3781, 3782, 3783, 3784,
-  3785, 3786, 3787, 3788, 3789, 3790, 3791, 3792,
-  3793, 3794, 3795, 3796, 3797, 3798, 3799, 3800,
-  3801, 3802, 3803, 3804, 3805, 3806, 3807, 3808,
-  3809, 3810, 3811, 3812, 3813, 3814, 3815, 3816,
-  3817, 3818, 3819, 3820, 3821, 3822, 3823, 3824,
-  3825, 3826, 3827, 3828, 3829, 3830, 3831, 3832,
-  3833, 3834, 3835, 3836, 3837, 3838, 3839, 3840,
-  3841, 3842, 3845, 3848, 3851, 3852, 3853, 3854,
-  3855, 3856, 3857, 3858, 3859, 3860, 3861, 3862,
-  3863, 3864, 3865, 3866, 3867, 3870, 3873, 3874,
-  3875, 3878, 3879, 3880, 3881, 3882, 3885, 3888,
-  3891, 3892, 3893, 3894, 3895, 3896, 3897, 3898,
-  3899, 3900, 3901, 3903, 3904, 3905, 3906, 3908,
-  3909, 3910, 3911, 3912, 3913, 3914, 3915, 3916,
-  3917, 3918, 3919, 3920, 3921, 3922, 3923, 3924,
-  3925, 3926, 3927, 3928, 3929, 3930, 3932, 3934,
-  3935, 3936, 3937, 3938, 3939, 3940, 3941, 3942,
-  3943, 3944, 3945, 3946, 3947, 3948, 3949, 3950,
-  3951, 3952, 3953, 3954, 3955, 3956, 3957, 3958,
-  3959, 3961, 3963, 3965, 3967, 3969, 3971, 3973,
+  2676, 2678, 2680, 2682, 2684, 2686, 2687, 2688,
+  2690, 2692, 2693, 2694, 2697, 2700, 2703, 2706,
+  2708, 2710, 2712, 2714, 2716, 2718, 2719, 2720,
+  2721, 2723, 2727, 2729, 2731, 2737, 2741, 2742,
+  2743, 2744, 2745, 2746, 2747, 2748, 2752, 2754,
+  2756, 2760, 2762, 2764, 2766, 2768, 2770, 2772,
+  2774, 2776, 2778, 2780, 2782, 2784, 2786, 2788,
+  2789, 2792, 2795, 2798, 2801, 2806, 2811, 2816,
+  2821, 2824, 2827, 2830, 2833, 2835, 2837, 2839,
+  2841, 2843, 2845, 2847, 2848, 2850, 2852, 2854,
+  2856, 2858, 2859, 2860, 2861, 2865, 2869, 2871,
+  2875, 2879, 2883, 2887, 2891, 2893, 2897, 2899,
+  2901, 2903, 2905, 2907, 2909, 2911, 2913, 2914,
+  2916, 2918, 2920, 2922, 2924, 2926, 2928, 2930,
+  2931, 2932, 2933, 2934, 2935, 2936, 2937, 2938,
+  2939, 2941, 2943, 2945, 2947, 2949, 2951, 2952,
+  2953, 2954, 2956, 2958, 2960, 2962, 2964, 2966,
+  2967, 2968, 2969, 2970, 2973, 2976, 2978, 2981,
+  2982, 2983, 2985, 2986, 2988, 2989, 2990, 2992,
+  2994, 2995, 2996, 2997, 2998, 2999, 3002, 3007,
+  3012, 3017, 3022, 3025, 3030, 3035, 3037, 3039,
+  3041, 3043, 3044, 3045, 3047, 3049, 3051, 3053,
+  3055, 3057, 3059, 3060, 3061, 3062, 3063, 3064,
+  3065, 3070, 3075, 3076, 3077, 3078, 3079, 3080,
+  3081, 3082, 3083, 3084, 3085, 3086, 3087, 3088,
+  3089, 3090, 3091, 3092, 3093, 3094, 3095, 3096,
+  3097, 3098, 3099, 3100, 3101, 3102, 3103, 3104,
+  3105, 3106, 3107, 3108, 3109, 3110, 3111, 3112,
+  3113, 3114, 3115, 3116, 3117, 3118, 3119, 3120,
+  3121, 3122, 3123, 3124, 3125, 3126, 3127, 3128,
+  3129, 3130, 3131, 3132, 3133, 3134, 3135, 3136,
+  3137, 3138, 3139, 3140, 3141, 3142, 3143, 3144,
+  3145, 3146, 3147, 3148, 3149, 3150, 3151, 3152,
+  3153, 3154, 3155, 3156, 3157, 3158, 3159, 3160,
+  3161, 3162, 3163, 3164, 3165, 3166, 3167, 3168,
+  3169, 3170, 3171, 3172, 3173, 3174, 3175, 3176,
+  3177, 3178, 3179, 3180, 3181, 3182, 3183, 3184,
+  3185, 3186, 3187, 3188, 3189, 3190, 3191, 3192,
+  3193, 3194, 3195, 3196, 3197, 3198, 3199, 3200,
+  3201, 3202, 3203, 3204, 3205, 3206, 3207, 3208,
+  3209, 3210, 3211, 3212, 3213, 3214, 3215, 3216,
+  3217, 3218, 3219, 3220, 3221, 3222, 3223, 3224,
+  3225, 3226, 3227, 3228, 3229, 3230, 3231, 3232,
+  3233, 3234, 3235, 3236, 3237, 3238, 3239, 3240,
+  3241, 3242, 3243, 3244, 3245, 3246, 3247, 3248,
+  3249, 3250, 3251, 3252, 3253, 3254, 3255, 3256,
+  3257, 3258, 3259, 3260, 3261, 3262, 3263, 3264,
+  3265, 3266, 3267, 3268, 3269, 3270, 3271, 3272,
+  3273, 3274, 3275, 3276, 3278, 3280, 3281, 3282,
+  3283, 3284, 3285, 3286, 3287, 3288, 3289, 3290,
+  3291, 3292, 3293, 3294, 3295, 3296, 3297, 3298,
+  3299, 3300, 3301, 3302, 3303, 3304, 3305, 3306,
+  3307, 3308, 3310, 3312, 3314, 3316, 3317, 3318,
+  3319, 3320, 3321, 3322, 3323, 3324, 3325, 3326,
+  3327, 3328, 3329, 3331, 3332, 3333, 3334, 3336,
+  3337, 3338, 3339, 3340, 3341, 3342, 3343, 3344,
+  3345, 3346, 3347, 3348, 3349, 3350, 3351, 3352,
+  3353, 3354, 3355, 3356, 3357, 3358, 3359, 3360,
+  3361, 3362, 3363, 3364, 3365, 3366, 3367, 3368,
+  3369, 3370, 3371, 3372, 3373, 3374, 3375, 3376,
+  3377, 3379, 3381, 3382, 3383, 3385, 3386, 3388,
+  3390, 3391, 3392, 3394, 3396, 3398, 3400, 3401,
+  3402, 3403, 3404, 3405, 3406, 3407, 3408, 3409,
+  3410, 3411, 3412, 3413, 3414, 3415, 3416, 3417,
+  3418, 3419, 3422, 3425, 3426, 3427, 3428, 3429,
+  3430, 3431, 3433, 3435, 3437, 3438, 3439, 3440,
+  3441, 3442, 3443, 3445, 3446, 3447, 3448, 3449,
+  3450, 3451, 3452, 3453, 3454, 3455, 3456, 3457,
+  3458, 3459, 3460, 3461, 3462, 3463, 3464, 3465,
+  3468, 3471, 3472, 3473, 3474, 3475, 3476, 3477,
+  3478, 3479, 3480, 3481, 3482, 3483, 3484, 3485,
+  3486, 3487, 3488, 3489, 3490, 3491, 3492, 3493,
+  3494, 3495, 3496, 3497, 3498, 3499, 3500, 3501,
+  3502, 3503, 3504, 3505, 3506, 3507, 3508, 3509,
+  3510, 3511, 3512, 3513, 3514, 3515, 3516, 3517,
+  3518, 3519, 3520, 3521, 3522, 3523, 3524, 3525,
+  3526, 3527, 3528, 3529, 3532, 3534, 3537, 3540,
+  3542, 3545, 3548, 3551, 3554, 3555, 3558, 3559,
+  3560, 3561, 3562, 3563, 3567, 3569, 3572, 3573,
+  3574, 3575, 3576, 3577, 3578, 3579, 3580, 3581,
+  3582, 3583, 3584, 3585, 3586, 3587, 3588, 3589,
+  3590, 3591, 3592, 3593, 3594, 3595, 3596, 3597,
+  3598, 3599, 3600, 3601, 3602, 3603, 3604, 3605,
+  3606, 3607, 3608, 3609, 3610, 3611, 3612, 3613,
+  3614, 3615, 3616, 3617, 3618, 3619, 3620, 3621,
+  3622, 3623, 3625, 3626, 3627, 3628, 3629, 3630,
+  3631, 3632, 3633, 3634, 3635, 3636, 3637, 3638,
+  3639, 3640, 3641, 3642, 3643, 3644, 3645, 3646,
+  3647, 3648, 3649, 3650, 3651, 3652, 3653, 3654,
+  3655, 3656, 3657, 3658, 3659, 3660, 3661, 3662,
+  3663, 3664, 3667, 3670, 3673, 3676, 3679, 3682,
+  3685, 3688, 3691, 3694, 3697, 3700, 3703, 3706,
+  3709, 3710, 3711, 3712, 3713, 3715, 3716, 3717,
+  3718, 3719, 3720, 3721, 3722, 3723, 3724, 3725,
+  3726, 3727, 3728, 3729, 3730, 3731, 3732, 3733,
+  3734, 3735, 3736, 3737, 3738, 3739, 3740, 3741,
+  3742, 3743, 3744, 3745, 3746, 3747, 3748, 3749,
+  3750, 3751, 3752, 3753, 3754, 3755, 3756, 3757,
+  3758, 3759, 3760, 3761, 3762, 3763, 3764, 3765,
+  3766, 3767, 3768, 3769, 3770, 3771, 3772, 3773,
+  3774, 3775, 3776, 3779, 3782, 3783, 3784, 3785,
+  3786, 3787, 3788, 3789, 3790, 3791, 3792, 3793,
+  3794, 3795, 3796, 3797, 3798, 3799, 3800, 3801,
+  3802, 3803, 3804, 3805, 3806, 3807, 3808, 3809,
+  3810, 3811, 3812, 3813, 3814, 3815, 3816, 3817,
+  3818, 3819, 3820, 3821, 3822, 3823, 3824, 3825,
+  3826, 3827, 3828, 3829, 3830, 3831, 3832, 3833,
+  3834, 3835, 3836, 3837, 3838, 3839, 3840, 3841,
+  3842, 3843, 3844, 3847, 3850, 3853, 3854, 3855,
+  3856, 3857, 3858, 3859, 3860, 3861, 3862, 3863,
+  3864, 3865, 3866, 3867, 3868, 3869, 3872, 3875,
+  3876, 3877, 3880, 3881, 3882, 3883, 3884, 3887,
+  3890, 3893, 3894, 3895, 3896, 3897, 3898, 3899,
+  3900, 3901, 3902, 3903, 3905, 3906, 3907, 3908,
+  3910, 3911, 3912, 3913, 3914, 3915, 3916, 3917,
+  3918, 3919, 3920, 3921, 3922, 3923, 3924, 3925,
+  3926, 3927, 3928, 3929, 3930, 3931, 3932, 3934,
+  3936, 3937, 3938, 3939, 3940, 3941, 3942, 3943,
+  3944, 3945, 3946, 3947, 3948, 3949, 3950, 3951,
+  3952, 3953, 3954, 3955, 3956, 3957, 3958, 3959,
+  3960, 3961, 3963, 3965, 3967, 3969, 3971, 3973,
   3975, 3977, 3979, 3981, 3983, 3985, 3987, 3989,
-  3991, 3992, 3993, 3994, 3996, 3997, 3999, 4002,
-  4004, 4005, 4006, 4008, 4010, 4011, 4012, 4013,
-  4014, 4015, 4016, 4018, 4020, 4022, 4024, 4025,
-  4026, 4027, 4028, 4029, 4030, 4031, 4032, 4033,
-  4035, 4037, 4038, 4040, 4042, 4043, 4048, 4050,
-  4052, 4053, 4054, 4055, 4056, 4057, 4058, 4059,
-  4061, 4063, 4064, 4065, 4066, 4068, 4071, 4074,
-  4077, 4079, 4080, 4081, 4082, 4083, 4084, 4085,
-  4086, 4087, 4088, 4089, 4090, 4091, 4092, 4093,
-  4094, 4095, 4096, 4097, 4098, 4099, 4100, 4101,
-  4102, 4103, 4104, 4105, 4106, 4107, 4108, 4109,
-  4110, 4111, 4112, 4113, 4114, 4115, 4116, 4117,
-  4118, 4119, 4120, 4121, 4122, 4123, 4124, 4125,
-  4126, 4127, 4128, 4129, 4130, 4131, 4132, 4133,
-  4134, 4135, 4136, 4137, 4138, 4139, 4140, 4141,
-  4142, 4143, 4144, 4145, 4146, 4147, 4148, 4149,
-  4150, 4151, 4152, 4153, 4154, 4155, 4156, 4157,
-  4158, 4159, 4160, 4161, 4162, 4163, 4164, 4165,
-  4166, 4167, 4168, 4169, 4170, 4171, 4172, 4173,
-  4174, 4175, 4176, 4177, 4178, 4179, 4180, 4181,
-  4182, 4183, 4184, 4185, 4186, 4187, 4188, 4189,
-  4190, 4191, 4192, 4193, 4194, 4195, 4196, 4197,
-  4198, 4199, 4200, 4201, 4202, 4203, 4204, 4205,
-  4206, 4207, 4208, 4209, 4210, 4211, 4212, 4213,
-  4214, 4215, 4216, 4217, 4218, 4219, 4220, 4221,
-  4224, 4225, 4226, 4229, 4230, 4231, 4233, 4234,
-  4235, 4236, 4238, 4239, 4240, 4241, 4243, 4244,
-  4245, 4246, 4249, 4250, 4251, 4252, 4253, 4256,
-  4259, 4262, 4265, 4268, 4269, 4270, 4271, 4272,
-  4274, 4276, 4277, 4278, 4279, 4282, 4285, 4288,
-  4291, 4294, 4295, 4296, 4297, 4299, 4300, 4301,
-  4302, 4304, 4305, 4306, 4307, 4308, 4309, 4310,
-  4311, 4312, 4313, 4314, 4315, 4316, 4317, 4318,
-  4319, 4320, 4321, 4322, 4323, 4324, 4325, 4326,
-  4327, 4328, 4329, 4330, 4331, 4332, 4333, 4334,
-  4335, 4336, 4337, 4338, 4339, 4340, 4341, 4342,
-  4343, 4345, 4347, 4349, 4351, 4353, 4354, 4355,
-  4358, 4361, 4362, 4363, 4364, 4365, 4366, 4367,
-  4369, 4371, 4373, 4375, 4376, 4377, 4378, 4379,
-  4382, 4383, 4384, 4387, 4388, 4389, 4392, 4393,
-  4394, 4397, 4398, 4399, 4402
+  3991, 3993, 3994, 3995, 3996, 3998, 3999, 4001,
+  4004, 4006, 4007, 4008, 4010, 4012, 4013, 4014,
+  4015, 4016, 4017, 4018, 4020, 4022, 4024, 4026,
+  4027, 4028, 4029, 4030, 4031, 4032, 4033, 4034,
+  4035, 4037, 4039, 4040, 4042, 4044, 4045, 4050,
+  4052, 4054, 4055, 4056, 4057, 4058, 4059, 4060,
+  4061, 4063, 4065, 4066, 4067, 4068, 4070, 4073,
+  4076, 4079, 4081, 4082, 4083, 4084, 4085, 4086,
+  4087, 4088, 4089, 4090, 4091, 4092, 4093, 4094,
+  4095, 4096, 4097, 4098, 4099, 4100, 4101, 4102,
+  4103, 4104, 4105, 4106, 4107, 4108, 4109, 4110,
+  4111, 4112, 4113, 4114, 4115, 4116, 4117, 4118,
+  4119, 4120, 4121, 4122, 4123, 4124, 4125, 4126,
+  4127, 4128, 4129, 4130, 4131, 4132, 4133, 4134,
+  4135, 4136, 4137, 4138, 4139, 4140, 4141, 4142,
+  4143, 4144, 4145, 4146, 4147, 4148, 4149, 4150,
+  4151, 4152, 4153, 4154, 4155, 4156, 4157, 4158,
+  4159, 4160, 4161, 4162, 4163, 4164, 4165, 4166,
+  4167, 4168, 4169, 4170, 4171, 4172, 4173, 4174,
+  4175, 4176, 4177, 4178, 4179, 4180, 4181, 4182,
+  4183, 4184, 4185, 4186, 4187, 4188, 4189, 4190,
+  4191, 4192, 4193, 4194, 4195, 4196, 4197, 4198,
+  4199, 4200, 4201, 4202, 4203, 4204, 4205, 4206,
+  4207, 4208, 4209, 4210, 4211, 4212, 4213, 4214,
+  4215, 4216, 4217, 4218, 4219, 4220, 4221, 4222,
+  4223, 4226, 4227, 4228, 4231, 4232, 4233, 4235,
+  4236, 4237, 4238, 4240, 4241, 4242, 4243, 4245,
+  4246, 4247, 4248, 4251, 4252, 4253, 4254, 4255,
+  4258, 4261, 4264, 4267, 4270, 4271, 4272, 4273,
+  4274, 4276, 4278, 4279, 4280, 4281, 4284, 4287,
+  4290, 4293, 4296, 4297, 4298, 4299, 4301, 4302,
+  4303, 4304, 4306, 4307, 4308, 4309, 4310, 4311,
+  4312, 4313, 4314, 4315, 4316, 4317, 4318, 4319,
+  4320, 4321, 4322, 4323, 4324, 4325, 4326, 4327,
+  4328, 4329, 4330, 4331, 4332, 4333, 4334, 4335,
+  4336, 4337, 4338, 4339, 4340, 4341, 4342, 4343,
+  4344, 4345, 4347, 4349, 4351, 4353, 4355, 4356,
+  4357, 4360, 4363, 4364, 4365, 4366, 4367, 4368,
+  4369, 4371, 4373, 4375, 4377, 4378, 4379, 4380,
+  4381, 4384, 4385, 4386, 4389, 4390, 4391, 4394,
+  4395, 4396, 4399, 4400, 4401, 4404
 };
 
 /* i386 mnemonics table.  */
@@ -48137,6 +48153,7 @@ const char i386_mnemonics[] =
   "\0""scas"
   "\0""das"
   "\0""fabs"
+  "\0""jmpabs"
   "\0""movabs"
   "\0""blcs"
   "\0""lds"