Subversion Repositories Kolibri OS

Rev

Rev 7836 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. ; flat assembler core
  3. ; Copyright (c) 1999-2020, Tomasz Grysztar.
  4. ; All rights reserved.
  5.  
  6. include_variable db 'INCLUDE',0
  7.  
  8. symbol_characters db 27
  9.  db 9,0Ah,0Dh,1Ah,20h,'+-/*=<>()[]{}:,|&~#`;\'
  10.  
  11. preprocessor_directives:
  12.  db 6,'define'
  13.  dw define_symbolic_constant-directive_handler
  14.  db 7,'include'
  15.  dw include_file-directive_handler
  16.  db 3,'irp'
  17.  dw irp_directive-directive_handler
  18.  db 4,'irps'
  19.  dw irps_directive-directive_handler
  20.  db 4,'irpv'
  21.  dw irpv_directive-directive_handler
  22.  db 5,'macro'
  23.  dw define_macro-directive_handler
  24.  db 5,'match'
  25.  dw match_directive-directive_handler
  26.  db 8,'postpone'
  27.  dw postpone_directive-directive_handler
  28.  db 5,'purge'
  29.  dw purge_macro-directive_handler
  30.  db 4,'rept'
  31.  dw rept_directive-directive_handler
  32.  db 7,'restore'
  33.  dw restore_equ_constant-directive_handler
  34.  db 7,'restruc'
  35.  dw purge_struc-directive_handler
  36.  db 5,'struc'
  37.  dw define_struc-directive_handler
  38.  db 0
  39.  
  40. macro_directives:
  41.  db 6,'common'
  42.  dw common_block-directive_handler
  43.  db 7,'forward'
  44.  dw forward_block-directive_handler
  45.  db 5,'local'
  46.  dw local_symbols-directive_handler
  47.  db 7,'reverse'
  48.  dw reverse_block-directive_handler
  49.  db 0
  50.  
  51. operators:
  52.  db 1,'+',80h
  53.  db 1,'-',81h
  54.  db 1,'*',90h
  55.  db 1,'/',91h
  56.  db 3,'and',0B0h
  57.  db 3,'mod',0A0h
  58.  db 2,'or',0B1h
  59.  db 3,'shl',0C0h
  60.  db 3,'shr',0C1h
  61.  db 3,'xor',0B2h
  62.  db 0
  63.  
  64. single_operand_operators:
  65.  db 1,'+',82h
  66.  db 1,'-',83h
  67.  db 3,'bsf',0E0h
  68.  db 3,'bsr',0E1h
  69.  db 3,'not',0D0h
  70.  db 3,'plt',0F1h
  71.  db 3,'rva',0F0h
  72.  db 0
  73.  
  74. directive_operators:
  75.  db 5,'align',8Ch
  76.  db 2,'as',86h
  77.  db 2,'at',80h
  78.  db 7,'defined',88h
  79.  db 8,'definite',8Ah
  80.  db 3,'dup',81h
  81.  db 2,'eq',0F0h
  82.  db 6,'eqtype',0F7h
  83.  db 4,'from',82h
  84.  db 2,'in',0F6h
  85.  db 2,'on',84h
  86.  db 3,'ptr',85h
  87.  db 10,'relativeto',0F8h
  88.  db 4,'used',89h
  89.  db 0
  90.  
  91. address_sizes:
  92.  db 4,'byte',1
  93.  db 5,'dword',4
  94.  db 5,'qword',8
  95.  db 4,'word',2
  96.  db 0
  97.  
  98. symbols:
  99.  dw symbols_1-symbols,(symbols_2-symbols_1)/(1+2)
  100.  dw symbols_2-symbols,(symbols_3-symbols_2)/(2+2)
  101.  dw symbols_3-symbols,(symbols_4-symbols_3)/(3+2)
  102.  dw symbols_4-symbols,(symbols_5-symbols_4)/(4+2)
  103.  dw symbols_5-symbols,(symbols_6-symbols_5)/(5+2)
  104.  dw symbols_6-symbols,(symbols_7-symbols_6)/(6+2)
  105.  dw symbols_7-symbols,(symbols_8-symbols_7)/(7+2)
  106.  dw symbols_8-symbols,(symbols_9-symbols_8)/(8+2)
  107.  dw symbols_9-symbols,(symbols_10-symbols_9)/(9+2)
  108.  dw symbols_10-symbols,(symbols_11-symbols_10)/(10+2)
  109.  dw symbols_11-symbols,(symbols_end-symbols_11)/(11+2)
  110.  
  111. symbols_1:
  112.  db 'z',1Fh,0
  113. symbols_2:
  114.  db 'ah',10h,04h
  115.  db 'al',10h,10h
  116.  db 'ax',10h,20h
  117.  db 'bh',10h,07h
  118.  db 'bl',10h,13h
  119.  db 'bp',10h,25h
  120.  db 'bx',10h,23h
  121.  db 'ch',10h,05h
  122.  db 'cl',10h,11h
  123.  db 'cs',10h,32h
  124.  db 'cx',10h,21h
  125.  db 'dh',10h,06h
  126.  db 'di',10h,27h
  127.  db 'dl',10h,12h
  128.  db 'ds',10h,34h
  129.  db 'dx',10h,22h
  130.  db 'es',10h,31h
  131.  db 'fs',10h,35h
  132.  db 'gs',10h,36h
  133.  db 'k0',14h,50h
  134.  db 'k1',14h,51h
  135.  db 'k2',14h,52h
  136.  db 'k3',14h,53h
  137.  db 'k4',14h,54h
  138.  db 'k5',14h,55h
  139.  db 'k6',14h,56h
  140.  db 'k7',14h,57h
  141.  db 'ms',1Ch,41h
  142.  db 'mz',18h,20h
  143.  db 'nx',1Bh,83h
  144.  db 'pe',18h,30h
  145.  db 'r8',10h,88h
  146.  db 'r9',10h,89h
  147.  db 'rd',1Fh,21h
  148.  db 'rn',1Fh,20h
  149.  db 'ru',1Fh,22h
  150.  db 'rz',1Fh,23h
  151.  db 'si',10h,26h
  152.  db 'sp',10h,24h
  153.  db 'ss',10h,33h
  154.  db 'st',10h,0A0h
  155. symbols_3:
  156.  db 'bpl',10h,15h
  157.  db 'cr0',14h,00h
  158.  db 'cr1',14h,01h
  159.  db 'cr2',14h,02h
  160.  db 'cr3',14h,03h
  161.  db 'cr4',14h,04h
  162.  db 'cr5',14h,05h
  163.  db 'cr6',14h,06h
  164.  db 'cr7',14h,07h
  165.  db 'cr8',14h,08h
  166.  db 'cr9',14h,09h
  167.  db 'dil',10h,17h
  168.  db 'dll',1Bh,80h
  169.  db 'dr0',14h,10h
  170.  db 'dr1',14h,11h
  171.  db 'dr2',14h,12h
  172.  db 'dr3',14h,13h
  173.  db 'dr4',14h,14h
  174.  db 'dr5',14h,15h
  175.  db 'dr6',14h,16h
  176.  db 'dr7',14h,17h
  177.  db 'dr8',14h,18h
  178.  db 'dr9',14h,19h
  179.  db 'eax',10h,40h
  180.  db 'ebp',10h,45h
  181.  db 'ebx',10h,43h
  182.  db 'ecx',10h,41h
  183.  db 'edi',10h,47h
  184.  db 'edx',10h,42h
  185.  db 'efi',1Bh,10
  186.  db 'eip',10h,94h
  187.  db 'elf',18h,50h
  188.  db 'esi',10h,46h
  189.  db 'esp',10h,44h
  190.  db 'far',12h,3
  191.  db 'gui',1Bh,2
  192.  db 'mm0',10h,0B0h
  193.  db 'mm1',10h,0B1h
  194.  db 'mm2',10h,0B2h
  195.  db 'mm3',10h,0B3h
  196.  db 'mm4',10h,0B4h
  197.  db 'mm5',10h,0B5h
  198.  db 'mm6',10h,0B6h
  199.  db 'mm7',10h,0B7h
  200.  db 'r10',10h,8Ah
  201.  db 'r11',10h,8Bh
  202.  db 'r12',10h,8Ch
  203.  db 'r13',10h,8Dh
  204.  db 'r14',10h,8Eh
  205.  db 'r15',10h,8Fh
  206.  db 'r8b',10h,18h
  207.  db 'r8d',10h,48h
  208.  db 'r8l',10h,18h
  209.  db 'r8w',10h,28h
  210.  db 'r9b',10h,19h
  211.  db 'r9d',10h,49h
  212.  db 'r9l',10h,19h
  213.  db 'r9w',10h,29h
  214.  db 'rax',10h,80h
  215.  db 'rbp',10h,85h
  216.  db 'rbx',10h,83h
  217.  db 'rcx',10h,81h
  218.  db 'rdi',10h,87h
  219.  db 'rdx',10h,82h
  220.  db 'rip',10h,98h
  221.  db 'rsi',10h,86h
  222.  db 'rsp',10h,84h
  223.  db 'sae',1Fh,30h
  224.  db 'sil',10h,16h
  225.  db 'spl',10h,14h
  226.  db 'st0',10h,0A0h
  227.  db 'st1',10h,0A1h
  228.  db 'st2',10h,0A2h
  229.  db 'st3',10h,0A3h
  230.  db 'st4',10h,0A4h
  231.  db 'st5',10h,0A5h
  232.  db 'st6',10h,0A6h
  233.  db 'st7',10h,0A7h
  234.  db 'tr0',14h,40h
  235.  db 'tr1',14h,41h
  236.  db 'tr2',14h,42h
  237.  db 'tr3',14h,43h
  238.  db 'tr4',14h,44h
  239.  db 'tr5',14h,45h
  240.  db 'tr6',14h,46h
  241.  db 'tr7',14h,47h
  242.  db 'wdm',1Bh,81h
  243. symbols_4:
  244.  db '1to2',1Fh,11h
  245.  db '1to4',1Fh,12h
  246.  db '1to8',1Fh,13h
  247.  db 'bnd0',14h,60h
  248.  db 'bnd1',14h,61h
  249.  db 'bnd2',14h,62h
  250.  db 'bnd3',14h,63h
  251.  db 'byte',11h,1
  252.  db 'code',19h,5
  253.  db 'coff',18h,40h
  254.  db 'cr10',14h,0Ah
  255.  db 'cr11',14h,0Bh
  256.  db 'cr12',14h,0Ch
  257.  db 'cr13',14h,0Dh
  258.  db 'cr14',14h,0Eh
  259.  db 'cr15',14h,0Fh
  260.  db 'data',19h,6
  261.  db 'dr10',14h,1Ah
  262.  db 'dr11',14h,1Bh
  263.  db 'dr12',14h,1Ch
  264.  db 'dr13',14h,1Dh
  265.  db 'dr14',14h,1Eh
  266.  db 'dr15',14h,1Fh
  267.  db 'ms64',1Ch,49h
  268.  db 'near',12h,2
  269.  db 'note',1Eh,4
  270.  db 'pe64',18h,3Ch
  271.  db 'r10b',10h,1Ah
  272.  db 'r10d',10h,4Ah
  273.  db 'r10l',10h,1Ah
  274.  db 'r10w',10h,2Ah
  275.  db 'r11b',10h,1Bh
  276.  db 'r11d',10h,4Bh
  277.  db 'r11l',10h,1Bh
  278.  db 'r11w',10h,2Bh
  279.  db 'r12b',10h,1Ch
  280.  db 'r12d',10h,4Ch
  281.  db 'r12l',10h,1Ch
  282.  db 'r12w',10h,2Ch
  283.  db 'r13b',10h,1Dh
  284.  db 'r13d',10h,4Dh
  285.  db 'r13l',10h,1Dh
  286.  db 'r13w',10h,2Dh
  287.  db 'r14b',10h,1Eh
  288.  db 'r14d',10h,4Eh
  289.  db 'r14l',10h,1Eh
  290.  db 'r14w',10h,2Eh
  291.  db 'r15b',10h,1Fh
  292.  db 'r15d',10h,4Fh
  293.  db 'r15l',10h,1Fh
  294.  db 'r15w',10h,2Fh
  295.  db 'word',11h,2
  296.  db 'xmm0',10h,0C0h
  297.  db 'xmm1',10h,0C1h
  298.  db 'xmm2',10h,0C2h
  299.  db 'xmm3',10h,0C3h
  300.  db 'xmm4',10h,0C4h
  301.  db 'xmm5',10h,0C5h
  302.  db 'xmm6',10h,0C6h
  303.  db 'xmm7',10h,0C7h
  304.  db 'xmm8',10h,0C8h
  305.  db 'xmm9',10h,0C9h
  306.  db 'ymm0',10h,0E0h
  307.  db 'ymm1',10h,0E1h
  308.  db 'ymm2',10h,0E2h
  309.  db 'ymm3',10h,0E3h
  310.  db 'ymm4',10h,0E4h
  311.  db 'ymm5',10h,0E5h
  312.  db 'ymm6',10h,0E6h
  313.  db 'ymm7',10h,0E7h
  314.  db 'ymm8',10h,0E8h
  315.  db 'ymm9',10h,0E9h
  316.  db 'zmm0',10h,60h
  317.  db 'zmm1',10h,61h
  318.  db 'zmm2',10h,62h
  319.  db 'zmm3',10h,63h
  320.  db 'zmm4',10h,64h
  321.  db 'zmm5',10h,65h
  322.  db 'zmm6',10h,66h
  323.  db 'zmm7',10h,67h
  324.  db 'zmm8',10h,68h
  325.  db 'zmm9',10h,69h
  326. symbols_5:
  327.  db '1to16',1Fh,14h
  328.  db 'dword',11h,4
  329.  db 'elf64',18h,58h
  330.  db 'fword',11h,6
  331.  db 'large',1Bh,82h
  332.  db 'pword',11h,6
  333.  db 'qword',11h,8
  334.  db 'short',12h,1
  335.  db 'tbyte',11h,0Ah
  336.  db 'tword',11h,0Ah
  337.  db 'use16',13h,16
  338.  db 'use32',13h,32
  339.  db 'use64',13h,64
  340.  db 'xmm10',10h,0CAh
  341.  db 'xmm11',10h,0CBh
  342.  db 'xmm12',10h,0CCh
  343.  db 'xmm13',10h,0CDh
  344.  db 'xmm14',10h,0CEh
  345.  db 'xmm15',10h,0CFh
  346.  db 'xmm16',10h,0D0h
  347.  db 'xmm17',10h,0D1h
  348.  db 'xmm18',10h,0D2h
  349.  db 'xmm19',10h,0D3h
  350.  db 'xmm20',10h,0D4h
  351.  db 'xmm21',10h,0D5h
  352.  db 'xmm22',10h,0D6h
  353.  db 'xmm23',10h,0D7h
  354.  db 'xmm24',10h,0D8h
  355.  db 'xmm25',10h,0D9h
  356.  db 'xmm26',10h,0DAh
  357.  db 'xmm27',10h,0DBh
  358.  db 'xmm28',10h,0DCh
  359.  db 'xmm29',10h,0DDh
  360.  db 'xmm30',10h,0DEh
  361.  db 'xmm31',10h,0DFh
  362.  db 'xword',11h,16
  363.  db 'ymm10',10h,0EAh
  364.  db 'ymm11',10h,0EBh
  365.  db 'ymm12',10h,0ECh
  366.  db 'ymm13',10h,0EDh
  367.  db 'ymm14',10h,0EEh
  368.  db 'ymm15',10h,0EFh
  369.  db 'ymm16',10h,0F0h
  370.  db 'ymm17',10h,0F1h
  371.  db 'ymm18',10h,0F2h
  372.  db 'ymm19',10h,0F3h
  373.  db 'ymm20',10h,0F4h
  374.  db 'ymm21',10h,0F5h
  375.  db 'ymm22',10h,0F6h
  376.  db 'ymm23',10h,0F7h
  377.  db 'ymm24',10h,0F8h
  378.  db 'ymm25',10h,0F9h
  379.  db 'ymm26',10h,0FAh
  380.  db 'ymm27',10h,0FBh
  381.  db 'ymm28',10h,0FCh
  382.  db 'ymm29',10h,0FDh
  383.  db 'ymm30',10h,0FEh
  384.  db 'ymm31',10h,0FFh
  385.  db 'yword',11h,32
  386.  db 'zmm10',10h,6Ah
  387.  db 'zmm11',10h,6Bh
  388.  db 'zmm12',10h,6Ch
  389.  db 'zmm13',10h,6Dh
  390.  db 'zmm14',10h,6Eh
  391.  db 'zmm15',10h,6Fh
  392.  db 'zmm16',10h,70h
  393.  db 'zmm17',10h,71h
  394.  db 'zmm18',10h,72h
  395.  db 'zmm19',10h,73h
  396.  db 'zmm20',10h,74h
  397.  db 'zmm21',10h,75h
  398.  db 'zmm22',10h,76h
  399.  db 'zmm23',10h,77h
  400.  db 'zmm24',10h,78h
  401.  db 'zmm25',10h,79h
  402.  db 'zmm26',10h,7Ah
  403.  db 'zmm27',10h,7Bh
  404.  db 'zmm28',10h,7Ch
  405.  db 'zmm29',10h,7Dh
  406.  db 'zmm30',10h,7Eh
  407.  db 'zmm31',10h,7Fh
  408.  db 'zword',11h,64
  409. symbols_6:
  410.  db 'binary',18h,10h
  411.  db 'dqword',11h,16
  412.  db 'export',1Ah,0
  413.  db 'fixups',1Ah,5
  414.  db 'import',1Ah,1
  415.  db 'native',1Bh,1
  416.  db 'qqword',11h,32
  417.  db 'static',1Dh,1
  418. symbols_7:
  419.  db 'console',1Bh,3
  420.  db 'dqqword',11h,64
  421.  db 'dynamic',1Eh,2
  422.  db 'efiboot',1Bh,11
  423. symbols_8:
  424.  db 'gnurelro',1Eh,52h
  425.  db 'gnustack',1Eh,51h
  426.  db 'linkinfo',19h,9
  427.  db 'readable',19h,30
  428.  db 'resource',1Ah,2
  429.  db 'writable',19h,31
  430. symbols_9:
  431.  db 'shareable',19h,28
  432.  db 'writeable',19h,31
  433. symbols_10:
  434.  db 'efiruntime',1Bh,12
  435.  db 'executable',19h,29
  436.  db 'gnuehframe',1Eh,50h
  437.  db 'linkremove',19h,11
  438. symbols_11:
  439.  db 'discardable',19h,25
  440.  db 'interpreter',1Eh,3
  441.  db 'notpageable',19h,27
  442. symbols_end:
  443.  
  444. instructions:
  445.  dw instructions_2-instructions,(instructions_3-instructions_2)/(2+3)
  446.  dw instructions_3-instructions,(instructions_4-instructions_3)/(3+3)
  447.  dw instructions_4-instructions,(instructions_5-instructions_4)/(4+3)
  448.  dw instructions_5-instructions,(instructions_6-instructions_5)/(5+3)
  449.  dw instructions_6-instructions,(instructions_7-instructions_6)/(6+3)
  450.  dw instructions_7-instructions,(instructions_8-instructions_7)/(7+3)
  451.  dw instructions_8-instructions,(instructions_9-instructions_8)/(8+3)
  452.  dw instructions_9-instructions,(instructions_10-instructions_9)/(9+3)
  453.  dw instructions_10-instructions,(instructions_11-instructions_10)/(10+3)
  454.  dw instructions_11-instructions,(instructions_12-instructions_11)/(11+3)
  455.  dw instructions_12-instructions,(instructions_13-instructions_12)/(12+3)
  456.  dw instructions_13-instructions,(instructions_14-instructions_13)/(13+3)
  457.  dw instructions_14-instructions,(instructions_15-instructions_14)/(14+3)
  458.  dw instructions_15-instructions,(instructions_16-instructions_15)/(15+3)
  459.  dw instructions_16-instructions,(instructions_17-instructions_16)/(16+3)
  460.  dw instructions_17-instructions,(instructions_end-instructions_17)/(16+3)
  461.  
  462. instructions_2:
  463.  db 'bt',4
  464.  dw bt_instruction-instruction_handler
  465.  db 'if',0
  466.  dw if_directive-instruction_handler
  467.  db 'in',0
  468.  dw in_instruction-instruction_handler
  469.  db 'ja',77h
  470.  dw conditional_jump-instruction_handler
  471.  db 'jb',72h
  472.  dw conditional_jump-instruction_handler
  473.  db 'jc',72h
  474.  dw conditional_jump-instruction_handler
  475.  db 'je',74h
  476.  dw conditional_jump-instruction_handler
  477.  db 'jg',7Fh
  478.  dw conditional_jump-instruction_handler
  479.  db 'jl',7Ch
  480.  dw conditional_jump-instruction_handler
  481.  db 'jo',70h
  482.  dw conditional_jump-instruction_handler
  483.  db 'jp',7Ah
  484.  dw conditional_jump-instruction_handler
  485.  db 'js',78h
  486.  dw conditional_jump-instruction_handler
  487.  db 'jz',74h
  488.  dw conditional_jump-instruction_handler
  489.  db 'or',08h
  490.  dw basic_instruction-instruction_handler
  491. instructions_3:
  492.  db 'aaa',37h
  493.  dw simple_instruction_except64-instruction_handler
  494.  db 'aad',0D5h
  495.  dw aa_instruction-instruction_handler
  496.  db 'aam',0D4h
  497.  dw aa_instruction-instruction_handler
  498.  db 'aas',3Fh
  499.  dw simple_instruction_except64-instruction_handler
  500.  db 'adc',10h
  501.  dw basic_instruction-instruction_handler
  502.  db 'add',00h
  503.  dw basic_instruction-instruction_handler
  504.  db 'and',20h
  505.  dw basic_instruction-instruction_handler
  506.  db 'bnd',0F2h
  507.  dw bnd_prefix_instruction-instruction_handler
  508.  db 'bsf',0BCh
  509.  dw bs_instruction-instruction_handler
  510.  db 'bsr',0BDh
  511.  dw bs_instruction-instruction_handler
  512.  db 'btc',7
  513.  dw bt_instruction-instruction_handler
  514.  db 'btr',6
  515.  dw bt_instruction-instruction_handler
  516.  db 'bts',5
  517.  dw bt_instruction-instruction_handler
  518.  db 'cbw',98h
  519.  dw simple_instruction_16bit-instruction_handler
  520.  db 'cdq',99h
  521.  dw simple_instruction_32bit-instruction_handler
  522.  db 'clc',0F8h
  523.  dw simple_instruction-instruction_handler
  524.  db 'cld',0FCh
  525.  dw simple_instruction-instruction_handler
  526.  db 'cli',0FAh
  527.  dw simple_instruction-instruction_handler
  528.  db 'cmc',0F5h
  529.  dw simple_instruction-instruction_handler
  530.  db 'cmp',38h
  531.  dw basic_instruction-instruction_handler
  532.  db 'cqo',99h
  533.  dw simple_instruction_64bit-instruction_handler
  534.  db 'cwd',99h
  535.  dw simple_instruction_16bit-instruction_handler
  536.  db 'daa',27h
  537.  dw simple_instruction_except64-instruction_handler
  538.  db 'das',2Fh
  539.  dw simple_instruction_except64-instruction_handler
  540.  db 'dec',1
  541.  dw inc_instruction-instruction_handler
  542.  db 'div',6
  543.  dw single_operand_instruction-instruction_handler
  544.  db 'end',0
  545.  dw end_directive-instruction_handler
  546.  db 'err',0
  547.  dw err_directive-instruction_handler
  548.  db 'fld',0
  549.  dw fld_instruction-instruction_handler
  550.  db 'fst',2
  551.  dw fld_instruction-instruction_handler
  552.  db 'hlt',0F4h
  553.  dw simple_instruction-instruction_handler
  554.  db 'inc',0
  555.  dw inc_instruction-instruction_handler
  556.  db 'ins',6Ch
  557.  dw ins_instruction-instruction_handler
  558.  db 'int',0CDh
  559.  dw int_instruction-instruction_handler
  560.  db 'jae',73h
  561.  dw conditional_jump-instruction_handler
  562.  db 'jbe',76h
  563.  dw conditional_jump-instruction_handler
  564.  db 'jge',7Dh
  565.  dw conditional_jump-instruction_handler
  566.  db 'jle',7Eh
  567.  dw conditional_jump-instruction_handler
  568.  db 'jmp',0
  569.  dw jmp_instruction-instruction_handler
  570.  db 'jna',76h
  571.  dw conditional_jump-instruction_handler
  572.  db 'jnb',73h
  573.  dw conditional_jump-instruction_handler
  574.  db 'jnc',73h
  575.  dw conditional_jump-instruction_handler
  576.  db 'jne',75h
  577.  dw conditional_jump-instruction_handler
  578.  db 'jng',7Eh
  579.  dw conditional_jump-instruction_handler
  580.  db 'jnl',7Dh
  581.  dw conditional_jump-instruction_handler
  582.  db 'jno',71h
  583.  dw conditional_jump-instruction_handler
  584.  db 'jnp',7Bh
  585.  dw conditional_jump-instruction_handler
  586.  db 'jns',79h
  587.  dw conditional_jump-instruction_handler
  588.  db 'jnz',75h
  589.  dw conditional_jump-instruction_handler
  590.  db 'jpe',7Ah
  591.  dw conditional_jump-instruction_handler
  592.  db 'jpo',7Bh
  593.  dw conditional_jump-instruction_handler
  594.  db 'lar',2
  595.  dw lar_instruction-instruction_handler
  596.  db 'lds',3
  597.  dw ls_instruction-instruction_handler
  598.  db 'lea',0
  599.  dw lea_instruction-instruction_handler
  600.  db 'les',0
  601.  dw ls_instruction-instruction_handler
  602.  db 'lfs',4
  603.  dw ls_instruction-instruction_handler
  604.  db 'lgs',5
  605.  dw ls_instruction-instruction_handler
  606.  db 'lsl',3
  607.  dw lar_instruction-instruction_handler
  608.  db 'lss',2
  609.  dw ls_instruction-instruction_handler
  610.  db 'ltr',3
  611.  dw pm_word_instruction-instruction_handler
  612.  db 'mov',0
  613.  dw mov_instruction-instruction_handler
  614.  db 'mul',4
  615.  dw single_operand_instruction-instruction_handler
  616.  db 'neg',3
  617.  dw single_operand_instruction-instruction_handler
  618.  db 'nop',90h
  619.  dw nop_instruction-instruction_handler
  620.  db 'not',2
  621.  dw single_operand_instruction-instruction_handler
  622.  db 'org',0
  623.  dw org_directive-instruction_handler
  624.  db 'out',0
  625.  dw out_instruction-instruction_handler
  626.  db 'pop',0
  627.  dw pop_instruction-instruction_handler
  628.  db 'por',0EBh
  629.  dw basic_mmx_instruction-instruction_handler
  630.  db 'rcl',2
  631.  dw sh_instruction-instruction_handler
  632.  db 'rcr',3
  633.  dw sh_instruction-instruction_handler
  634.  db 'rep',0F3h
  635.  dw prefix_instruction-instruction_handler
  636.  db 'ret',0C2h
  637.  dw ret_instruction-instruction_handler
  638.  db 'rol',0
  639.  dw sh_instruction-instruction_handler
  640.  db 'ror',1
  641.  dw sh_instruction-instruction_handler
  642.  db 'rsm',0AAh
  643.  dw simple_extended_instruction-instruction_handler
  644.  db 'sal',4
  645.  dw sh_instruction-instruction_handler
  646.  db 'sar',7
  647.  dw sh_instruction-instruction_handler
  648.  db 'sbb',18h
  649.  dw basic_instruction-instruction_handler
  650.  db 'shl',4
  651.  dw sh_instruction-instruction_handler
  652.  db 'shr',5
  653.  dw sh_instruction-instruction_handler
  654.  db 'stc',0F9h
  655.  dw simple_instruction-instruction_handler
  656.  db 'std',0FDh
  657.  dw simple_instruction-instruction_handler
  658.  db 'sti',0FBh
  659.  dw simple_instruction-instruction_handler
  660.  db 'str',1
  661.  dw pm_store_word_instruction-instruction_handler
  662.  db 'sub',28h
  663.  dw basic_instruction-instruction_handler
  664.  db 'ud0',0FFh
  665.  dw ud_instruction-instruction_handler
  666.  db 'ud1',0B9h
  667.  dw ud_instruction-instruction_handler
  668.  db 'ud2',0Bh
  669.  dw simple_extended_instruction-instruction_handler
  670.  db 'xor',30h
  671.  dw basic_instruction-instruction_handler
  672. instructions_4:
  673.  db 'adcx',66h
  674.  dw adx_instruction-instruction_handler
  675.  db 'adox',0F3h
  676.  dw adx_instruction-instruction_handler
  677.  db 'andn',0F2h
  678.  dw andn_instruction-instruction_handler
  679.  db 'arpl',0
  680.  dw arpl_instruction-instruction_handler
  681.  db 'blci',26h
  682.  dw tbm_instruction-instruction_handler
  683.  db 'blcs',13h
  684.  dw tbm_instruction-instruction_handler
  685.  db 'blsi',3
  686.  dw bmi_instruction-instruction_handler
  687.  db 'blsr',1
  688.  dw bmi_instruction-instruction_handler
  689.  db 'bzhi',0F5h
  690.  dw bzhi_instruction-instruction_handler
  691.  db 'call',0
  692.  dw call_instruction-instruction_handler
  693.  db 'cdqe',98h
  694.  dw simple_instruction_64bit-instruction_handler
  695.  db 'clac',0CAh
  696.  dw simple_instruction_0f_01-instruction_handler
  697.  db 'clgi',0DDh
  698.  dw simple_instruction_0f_01-instruction_handler
  699.  db 'clts',6
  700.  dw simple_extended_instruction-instruction_handler
  701.  db 'clwb',6
  702.  dw clflushopt_instruction-instruction_handler
  703.  db 'cmps',0A6h
  704.  dw cmps_instruction-instruction_handler
  705.  db 'cwde',98h
  706.  dw simple_instruction_32bit-instruction_handler
  707.  db 'data',0
  708.  dw data_directive-instruction_handler
  709.  db 'dppd',41h
  710.  dw sse4_instruction_66_3a_imm8-instruction_handler
  711.  db 'dpps',40h
  712.  dw sse4_instruction_66_3a_imm8-instruction_handler
  713.  db 'else',0
  714.  dw else_directive-instruction_handler
  715.  db 'emms',77h
  716.  dw simple_extended_instruction-instruction_handler
  717.  db 'fabs',100001b
  718.  dw simple_fpu_instruction-instruction_handler
  719.  db 'fadd',0
  720.  dw basic_fpu_instruction-instruction_handler
  721.  db 'fbld',4
  722.  dw fbld_instruction-instruction_handler
  723.  db 'fchs',100000b
  724.  dw simple_fpu_instruction-instruction_handler
  725.  db 'fcom',2
  726.  dw basic_fpu_instruction-instruction_handler
  727.  db 'fcos',111111b
  728.  dw simple_fpu_instruction-instruction_handler
  729.  db 'fdiv',6
  730.  dw basic_fpu_instruction-instruction_handler
  731.  db 'feni',0E0h
  732.  dw finit_instruction-instruction_handler
  733.  db 'fild',0
  734.  dw fild_instruction-instruction_handler
  735.  db 'fist',2
  736.  dw fild_instruction-instruction_handler
  737.  db 'fld1',101000b
  738.  dw simple_fpu_instruction-instruction_handler
  739.  db 'fldz',101110b
  740.  dw simple_fpu_instruction-instruction_handler
  741.  db 'fmul',1
  742.  dw basic_fpu_instruction-instruction_handler
  743.  db 'fnop',010000b
  744.  dw simple_fpu_instruction-instruction_handler
  745.  db 'fsin',111110b
  746.  dw simple_fpu_instruction-instruction_handler
  747.  db 'fstp',3
  748.  dw fld_instruction-instruction_handler
  749.  db 'fsub',4
  750.  dw basic_fpu_instruction-instruction_handler
  751.  db 'ftst',100100b
  752.  dw simple_fpu_instruction-instruction_handler
  753.  db 'fxam',100101b
  754.  dw simple_fpu_instruction-instruction_handler
  755.  db 'fxch',0
  756.  dw fxch_instruction-instruction_handler
  757.  db 'heap',0
  758.  dw heap_directive-instruction_handler
  759.  db 'idiv',7
  760.  dw single_operand_instruction-instruction_handler
  761.  db 'imul',0
  762.  dw imul_instruction-instruction_handler
  763.  db 'insb',6Ch
  764.  dw simple_instruction-instruction_handler
  765.  db 'insd',6Dh
  766.  dw simple_instruction_32bit-instruction_handler
  767.  db 'insw',6Dh
  768.  dw simple_instruction_16bit-instruction_handler
  769.  db 'int1',0F1h
  770.  dw simple_instruction-instruction_handler
  771.  db 'int3',0CCh
  772.  dw simple_instruction-instruction_handler
  773.  db 'into',0CEh
  774.  dw simple_instruction_except64-instruction_handler
  775.  db 'invd',8
  776.  dw simple_extended_instruction-instruction_handler
  777.  db 'iret',0CFh
  778.  dw iret_instruction-instruction_handler
  779.  db 'jcxz',0E3h
  780.  dw loop_instruction_16bit-instruction_handler
  781.  db 'jnae',72h
  782.  dw conditional_jump-instruction_handler
  783.  db 'jnbe',77h
  784.  dw conditional_jump-instruction_handler
  785.  db 'jnge',7Ch
  786.  dw conditional_jump-instruction_handler
  787.  db 'jnle',7Fh
  788.  dw conditional_jump-instruction_handler
  789.  db 'korb',45h
  790.  dw mask_instruction_b-instruction_handler
  791.  db 'kord',45h
  792.  dw mask_instruction_d-instruction_handler
  793.  db 'korq',45h
  794.  dw mask_instruction_q-instruction_handler
  795.  db 'korw',45h
  796.  dw mask_instruction_w-instruction_handler
  797.  db 'lahf',9Fh
  798.  dw simple_instruction-instruction_handler
  799.  db 'lgdt',2
  800.  dw lgdt_instruction-instruction_handler
  801.  db 'lidt',3
  802.  dw lgdt_instruction-instruction_handler
  803.  db 'lldt',2
  804.  dw pm_word_instruction-instruction_handler
  805.  db 'lmsw',16h
  806.  dw pm_word_instruction-instruction_handler
  807.  db 'load',0
  808.  dw load_directive-instruction_handler
  809.  db 'lock',0F0h
  810.  dw prefix_instruction-instruction_handler
  811.  db 'lods',0ACh
  812.  dw lods_instruction-instruction_handler
  813.  db 'loop',0E2h
  814.  dw loop_instruction-instruction_handler
  815.  db 'movd',0
  816.  dw movd_instruction-instruction_handler
  817.  db 'movq',0
  818.  dw movq_instruction-instruction_handler
  819.  db 'movs',0A4h
  820.  dw movs_instruction-instruction_handler
  821.  db 'mulx',0F6h
  822.  dw pdep_instruction-instruction_handler
  823.  db 'orpd',56h
  824.  dw sse_pd_instruction-instruction_handler
  825.  db 'orps',56h
  826.  dw sse_ps_instruction-instruction_handler
  827.  db 'outs',6Eh
  828.  dw outs_instruction-instruction_handler
  829.  db 'pand',0DBh
  830.  dw basic_mmx_instruction-instruction_handler
  831.  db 'pdep',0F5h
  832.  dw pdep_instruction-instruction_handler
  833.  db 'pext',0F5h
  834.  dw pext_instruction-instruction_handler
  835.  db 'popa',61h
  836.  dw simple_instruction_except64-instruction_handler
  837.  db 'popd',4
  838.  dw pop_instruction-instruction_handler
  839.  db 'popf',9Dh
  840.  dw simple_instruction-instruction_handler
  841.  db 'popq',8
  842.  dw pop_instruction-instruction_handler
  843.  db 'popw',2
  844.  dw pop_instruction-instruction_handler
  845.  db 'push',0
  846.  dw push_instruction-instruction_handler
  847.  db 'pxor',0EFh
  848.  dw basic_mmx_instruction-instruction_handler
  849.  db 'repe',0F3h
  850.  dw prefix_instruction-instruction_handler
  851.  db 'repz',0F3h
  852.  dw prefix_instruction-instruction_handler
  853.  db 'retd',0C2h
  854.  dw ret_instruction_32bit_except64-instruction_handler
  855.  db 'retf',0CAh
  856.  dw retf_instruction-instruction_handler
  857.  db 'retn',0C2h
  858.  dw ret_instruction-instruction_handler
  859.  db 'retq',0C2h
  860.  dw ret_instruction_only64-instruction_handler
  861.  db 'retw',0C2h
  862.  dw ret_instruction_16bit-instruction_handler
  863.  db 'rorx',0F0h
  864.  dw rorx_instruction-instruction_handler
  865.  db 'sahf',9Eh
  866.  dw simple_instruction-instruction_handler
  867.  db 'salc',0D6h
  868.  dw simple_instruction_except64-instruction_handler
  869.  db 'sarx',0F7h
  870.  dw sarx_instruction-instruction_handler
  871.  db 'scas',0AEh
  872.  dw stos_instruction-instruction_handler
  873.  db 'seta',97h
  874.  dw set_instruction-instruction_handler
  875.  db 'setb',92h
  876.  dw set_instruction-instruction_handler
  877.  db 'setc',92h
  878.  dw set_instruction-instruction_handler
  879.  db 'sete',94h
  880.  dw set_instruction-instruction_handler
  881.  db 'setg',9Fh
  882.  dw set_instruction-instruction_handler
  883.  db 'setl',9Ch
  884.  dw set_instruction-instruction_handler
  885.  db 'seto',90h
  886.  dw set_instruction-instruction_handler
  887.  db 'setp',9Ah
  888.  dw set_instruction-instruction_handler
  889.  db 'sets',98h
  890.  dw set_instruction-instruction_handler
  891.  db 'setz',94h
  892.  dw set_instruction-instruction_handler
  893.  db 'sgdt',0
  894.  dw lgdt_instruction-instruction_handler
  895.  db 'shld',0A4h
  896.  dw shd_instruction-instruction_handler
  897.  db 'shlx',0F7h
  898.  dw shlx_instruction-instruction_handler
  899.  db 'shrd',0ACh
  900.  dw shd_instruction-instruction_handler
  901.  db 'shrx',0F7h
  902.  dw shrx_instruction-instruction_handler
  903.  db 'sidt',1
  904.  dw lgdt_instruction-instruction_handler
  905.  db 'sldt',0
  906.  dw pm_store_word_instruction-instruction_handler
  907.  db 'smsw',14h
  908.  dw pm_store_word_instruction-instruction_handler
  909.  db 'stac',0CBh
  910.  dw simple_instruction_0f_01-instruction_handler
  911.  db 'stgi',0DCh
  912.  dw simple_instruction_0f_01-instruction_handler
  913.  db 'stos',0AAh
  914.  dw stos_instruction-instruction_handler
  915.  db 'test',0
  916.  dw test_instruction-instruction_handler
  917.  db 'verr',4
  918.  dw pm_word_instruction-instruction_handler
  919.  db 'verw',5
  920.  dw pm_word_instruction-instruction_handler
  921.  db 'vpor',0EBh
  922.  dw avx_pd_instruction_noevex-instruction_handler
  923.  db 'wait',9Bh
  924.  dw simple_instruction-instruction_handler
  925.  db 'xadd',0C0h
  926.  dw basic_486_instruction-instruction_handler
  927.  db 'xchg',0
  928.  dw xchg_instruction-instruction_handler
  929.  db 'xend',0D5h
  930.  dw simple_instruction_0f_01-instruction_handler
  931.  db 'xlat',0D7h
  932.  dw xlat_instruction-instruction_handler
  933. instructions_5:
  934.  db 'addpd',58h
  935.  dw sse_pd_instruction-instruction_handler
  936.  db 'addps',58h
  937.  dw sse_ps_instruction-instruction_handler
  938.  db 'addsd',58h
  939.  dw sse_sd_instruction-instruction_handler
  940.  db 'addss',58h
  941.  dw sse_ss_instruction-instruction_handler
  942.  db 'align',0
  943.  dw align_directive-instruction_handler
  944.  db 'andpd',54h
  945.  dw sse_pd_instruction-instruction_handler
  946.  db 'andps',54h
  947.  dw sse_ps_instruction-instruction_handler
  948.  db 'bextr',0F7h
  949.  dw bextr_instruction-instruction_handler
  950.  db 'blcic',15h
  951.  dw tbm_instruction-instruction_handler
  952.  db 'blsic',16h
  953.  dw tbm_instruction-instruction_handler
  954.  db 'bndcl',1Ah
  955.  dw bndcl_instruction-instruction_handler
  956.  db 'bndcn',1Bh
  957.  dw bndcu_instruction-instruction_handler
  958.  db 'bndcu',1Ah
  959.  dw bndcu_instruction-instruction_handler
  960.  db 'bndmk',1Bh
  961.  dw bndmk_instruction-instruction_handler
  962.  db 'bound',0
  963.  dw bound_instruction-instruction_handler
  964.  db 'break',0
  965.  dw break_directive-instruction_handler
  966.  db 'bswap',0
  967.  dw bswap_instruction-instruction_handler
  968.  db 'cmova',47h
  969.  dw bs_instruction-instruction_handler
  970.  db 'cmovb',42h
  971.  dw bs_instruction-instruction_handler
  972.  db 'cmovc',42h
  973.  dw bs_instruction-instruction_handler
  974.  db 'cmove',44h
  975.  dw bs_instruction-instruction_handler
  976.  db 'cmovg',4Fh
  977.  dw bs_instruction-instruction_handler
  978.  db 'cmovl',4Ch
  979.  dw bs_instruction-instruction_handler
  980.  db 'cmovo',40h
  981.  dw bs_instruction-instruction_handler
  982.  db 'cmovp',4Ah
  983.  dw bs_instruction-instruction_handler
  984.  db 'cmovs',48h
  985.  dw bs_instruction-instruction_handler
  986.  db 'cmovz',44h
  987.  dw bs_instruction-instruction_handler
  988.  db 'cmppd',-1
  989.  dw cmp_pd_instruction-instruction_handler
  990.  db 'cmpps',-1
  991.  dw cmp_ps_instruction-instruction_handler
  992.  db 'cmpsb',0A6h
  993.  dw simple_instruction-instruction_handler
  994.  db 'cmpsd',-1
  995.  dw cmpsd_instruction-instruction_handler
  996.  db 'cmpsq',0A7h
  997.  dw simple_instruction_64bit-instruction_handler
  998.  db 'cmpss',-1
  999.  dw cmp_ss_instruction-instruction_handler
  1000.  db 'cmpsw',0A7h
  1001.  dw simple_instruction_16bit-instruction_handler
  1002.  db 'cpuid',0A2h
  1003.  dw simple_extended_instruction-instruction_handler
  1004.  db 'crc32',0
  1005.  dw crc32_instruction-instruction_handler
  1006.  db 'divpd',5Eh
  1007.  dw sse_pd_instruction-instruction_handler
  1008.  db 'divps',5Eh
  1009.  dw sse_ps_instruction-instruction_handler
  1010.  db 'divsd',5Eh
  1011.  dw sse_sd_instruction-instruction_handler
  1012.  db 'divss',5Eh
  1013.  dw sse_ss_instruction-instruction_handler
  1014.  db 'enter',0
  1015.  dw enter_instruction-instruction_handler
  1016.  db 'entry',0
  1017.  dw entry_directive-instruction_handler
  1018.  db 'extrn',0
  1019.  dw extrn_directive-instruction_handler
  1020.  db 'extrq',0
  1021.  dw extrq_instruction-instruction_handler
  1022.  db 'f2xm1',110000b
  1023.  dw simple_fpu_instruction-instruction_handler
  1024.  db 'faddp',0
  1025.  dw faddp_instruction-instruction_handler
  1026.  db 'fbstp',6
  1027.  dw fbld_instruction-instruction_handler
  1028.  db 'fclex',0E2h
  1029.  dw finit_instruction-instruction_handler
  1030.  db 'fcomi',0F0h
  1031.  dw fcomi_instruction-instruction_handler
  1032.  db 'fcomp',3
  1033.  dw basic_fpu_instruction-instruction_handler
  1034.  db 'fdisi',0E1h
  1035.  dw finit_instruction-instruction_handler
  1036.  db 'fdivp',7
  1037.  dw faddp_instruction-instruction_handler
  1038.  db 'fdivr',7
  1039.  dw basic_fpu_instruction-instruction_handler
  1040.  db 'femms',0Eh
  1041.  dw simple_extended_instruction-instruction_handler
  1042.  db 'ffree',0
  1043.  dw ffree_instruction-instruction_handler
  1044.  db 'fiadd',0
  1045.  dw fi_instruction-instruction_handler
  1046.  db 'ficom',2
  1047.  dw fi_instruction-instruction_handler
  1048.  db 'fidiv',6
  1049.  dw fi_instruction-instruction_handler
  1050.  db 'fimul',1
  1051.  dw fi_instruction-instruction_handler
  1052.  db 'finit',0E3h
  1053.  dw finit_instruction-instruction_handler
  1054.  db 'fistp',3
  1055.  dw fild_instruction-instruction_handler
  1056.  db 'fisub',4
  1057.  dw fi_instruction-instruction_handler
  1058.  db 'fldcw',5
  1059.  dw fldcw_instruction-instruction_handler
  1060.  db 'fldpi',101011b
  1061.  dw simple_fpu_instruction-instruction_handler
  1062.  db 'fmulp',1
  1063.  dw faddp_instruction-instruction_handler
  1064.  db 'fneni',0E0h
  1065.  dw fninit_instruction-instruction_handler
  1066.  db 'fprem',111000b
  1067.  dw simple_fpu_instruction-instruction_handler
  1068.  db 'fptan',110010b
  1069.  dw simple_fpu_instruction-instruction_handler
  1070.  db 'fsave',6
  1071.  dw fsave_instruction-instruction_handler
  1072.  db 'fsqrt',111010b
  1073.  dw simple_fpu_instruction-instruction_handler
  1074.  db 'fstcw',7
  1075.  dw fstcw_instruction-instruction_handler
  1076.  db 'fstsw',0
  1077.  dw fstsw_instruction-instruction_handler
  1078.  db 'fsubp',5
  1079.  dw faddp_instruction-instruction_handler
  1080.  db 'fsubr',5
  1081.  dw basic_fpu_instruction-instruction_handler
  1082.  db 'fucom',4
  1083.  dw ffree_instruction-instruction_handler
  1084.  db 'fwait',9Bh
  1085.  dw simple_instruction-instruction_handler
  1086.  db 'fyl2x',110001b
  1087.  dw simple_fpu_instruction-instruction_handler
  1088.  db 'icebp',0F1h
  1089.  dw simple_instruction-instruction_handler
  1090.  db 'iretd',0CFh
  1091.  dw simple_instruction_32bit-instruction_handler
  1092.  db 'iretq',0CFh
  1093.  dw simple_instruction_64bit-instruction_handler
  1094.  db 'iretw',0CFh
  1095.  dw simple_instruction_16bit-instruction_handler
  1096.  db 'jecxz',0E3h
  1097.  dw loop_instruction_32bit-instruction_handler
  1098.  db 'jrcxz',0E3h
  1099.  dw loop_instruction_64bit-instruction_handler
  1100.  db 'kaddb',4Ah
  1101.  dw mask_instruction_b-instruction_handler
  1102.  db 'kaddd',4Ah
  1103.  dw mask_instruction_d-instruction_handler
  1104.  db 'kaddq',4Ah
  1105.  dw mask_instruction_q-instruction_handler
  1106.  db 'kaddw',4Ah
  1107.  dw mask_instruction_w-instruction_handler
  1108.  db 'kandb',41h
  1109.  dw mask_instruction_b-instruction_handler
  1110.  db 'kandd',41h
  1111.  dw mask_instruction_d-instruction_handler
  1112.  db 'kandq',41h
  1113.  dw mask_instruction_q-instruction_handler
  1114.  db 'kandw',41h
  1115.  dw mask_instruction_w-instruction_handler
  1116.  db 'kmovb',1
  1117.  dw kmov_instruction-instruction_handler
  1118.  db 'kmovd',4
  1119.  dw kmov_instruction-instruction_handler
  1120.  db 'kmovq',8
  1121.  dw kmov_instruction-instruction_handler
  1122.  db 'kmovw',2
  1123.  dw kmov_instruction-instruction_handler
  1124.  db 'knotb',44h
  1125.  dw mask_instruction_single_source_b-instruction_handler
  1126.  db 'knotd',44h
  1127.  dw mask_instruction_single_source_d-instruction_handler
  1128.  db 'knotq',44h
  1129.  dw mask_instruction_single_source_q-instruction_handler
  1130.  db 'knotw',44h
  1131.  dw mask_instruction_single_source_w-instruction_handler
  1132.  db 'kxorb',47h
  1133.  dw mask_instruction_b-instruction_handler
  1134.  db 'kxord',47h
  1135.  dw mask_instruction_d-instruction_handler
  1136.  db 'kxorq',47h
  1137.  dw mask_instruction_q-instruction_handler
  1138.  db 'kxorw',47h
  1139.  dw mask_instruction_w-instruction_handler
  1140.  db 'label',0
  1141.  dw label_directive-instruction_handler
  1142.  db 'lddqu',0
  1143.  dw lddqu_instruction-instruction_handler
  1144.  db 'leave',0C9h
  1145.  dw simple_instruction-instruction_handler
  1146.  db 'lodsb',0ACh
  1147.  dw simple_instruction-instruction_handler
  1148.  db 'lodsd',0ADh
  1149.  dw simple_instruction_32bit-instruction_handler
  1150.  db 'lodsq',0ADh
  1151.  dw simple_instruction_64bit-instruction_handler
  1152.  db 'lodsw',0ADh
  1153.  dw simple_instruction_16bit-instruction_handler
  1154.  db 'loopd',0E2h
  1155.  dw loop_instruction_32bit-instruction_handler
  1156.  db 'loope',0E1h
  1157.  dw loop_instruction-instruction_handler
  1158.  db 'loopq',0E2h
  1159.  dw loop_instruction_64bit-instruction_handler
  1160.  db 'loopw',0E2h
  1161.  dw loop_instruction_16bit-instruction_handler
  1162.  db 'loopz',0E1h
  1163.  dw loop_instruction-instruction_handler
  1164.  db 'lzcnt',0BDh
  1165.  dw popcnt_instruction-instruction_handler
  1166.  db 'maxpd',5Fh
  1167.  dw sse_pd_instruction-instruction_handler
  1168.  db 'maxps',5Fh
  1169.  dw sse_ps_instruction-instruction_handler
  1170.  db 'maxsd',5Fh
  1171.  dw sse_sd_instruction-instruction_handler
  1172.  db 'maxss',5Fh
  1173.  dw sse_ss_instruction-instruction_handler
  1174.  db 'minpd',5Dh
  1175.  dw sse_pd_instruction-instruction_handler
  1176.  db 'minps',5Dh
  1177.  dw sse_ps_instruction-instruction_handler
  1178.  db 'minsd',5Dh
  1179.  dw sse_sd_instruction-instruction_handler
  1180.  db 'minss',5Dh
  1181.  dw sse_ss_instruction-instruction_handler
  1182.  db 'movbe',0F0h
  1183.  dw movbe_instruction-instruction_handler
  1184.  db 'movsb',0A4h
  1185.  dw simple_instruction-instruction_handler
  1186.  db 'movsd',0
  1187.  dw movsd_instruction-instruction_handler
  1188.  db 'movsq',0A5h
  1189.  dw simple_instruction_64bit-instruction_handler
  1190.  db 'movss',0
  1191.  dw movss_instruction-instruction_handler
  1192.  db 'movsw',0A5h
  1193.  dw simple_instruction_16bit-instruction_handler
  1194.  db 'movsx',0BEh
  1195.  dw movx_instruction-instruction_handler
  1196.  db 'movzx',0B6h
  1197.  dw movx_instruction-instruction_handler
  1198.  db 'mulpd',59h
  1199.  dw sse_pd_instruction-instruction_handler
  1200.  db 'mulps',59h
  1201.  dw sse_ps_instruction-instruction_handler
  1202.  db 'mulsd',59h
  1203.  dw sse_sd_instruction-instruction_handler
  1204.  db 'mulss',59h
  1205.  dw sse_ss_instruction-instruction_handler
  1206.  db 'mwait',0C9h
  1207.  dw monitor_instruction-instruction_handler
  1208.  db 'outsb',6Eh
  1209.  dw simple_instruction-instruction_handler
  1210.  db 'outsd',6Fh
  1211.  dw simple_instruction_32bit-instruction_handler
  1212.  db 'outsw',6Fh
  1213.  dw simple_instruction_16bit-instruction_handler
  1214.  db 'pabsb',1Ch
  1215.  dw ssse3_instruction-instruction_handler
  1216.  db 'pabsd',1Eh
  1217.  dw ssse3_instruction-instruction_handler
  1218.  db 'pabsw',1Dh
  1219.  dw ssse3_instruction-instruction_handler
  1220.  db 'paddb',0FCh
  1221.  dw basic_mmx_instruction-instruction_handler
  1222.  db 'paddd',0FEh
  1223.  dw basic_mmx_instruction-instruction_handler
  1224.  db 'paddq',0D4h
  1225.  dw basic_mmx_instruction-instruction_handler
  1226.  db 'paddw',0FDh
  1227.  dw basic_mmx_instruction-instruction_handler
  1228.  db 'pandn',0DFh
  1229.  dw basic_mmx_instruction-instruction_handler
  1230.  db 'pause',0
  1231.  dw pause_instruction-instruction_handler
  1232.  db 'pavgb',0E0h
  1233.  dw basic_mmx_instruction-instruction_handler
  1234.  db 'pavgw',0E3h
  1235.  dw basic_mmx_instruction-instruction_handler
  1236.  db 'pf2id',1Dh
  1237.  dw amd3dnow_instruction-instruction_handler
  1238.  db 'pf2iw',1Ch
  1239.  dw amd3dnow_instruction-instruction_handler
  1240.  db 'pfacc',0AEh
  1241.  dw amd3dnow_instruction-instruction_handler
  1242.  db 'pfadd',9Eh
  1243.  dw amd3dnow_instruction-instruction_handler
  1244.  db 'pfmax',0A4h
  1245.  dw amd3dnow_instruction-instruction_handler
  1246.  db 'pfmin',94h
  1247.  dw amd3dnow_instruction-instruction_handler
  1248.  db 'pfmul',0B4h
  1249.  dw amd3dnow_instruction-instruction_handler
  1250.  db 'pfrcp',96h
  1251.  dw amd3dnow_instruction-instruction_handler
  1252.  db 'pfsub',9Ah
  1253.  dw amd3dnow_instruction-instruction_handler
  1254.  db 'pi2fd',0Dh
  1255.  dw amd3dnow_instruction-instruction_handler
  1256.  db 'pi2fw',0Ch
  1257.  dw amd3dnow_instruction-instruction_handler
  1258.  db 'popad',61h
  1259.  dw simple_instruction_32bit_except64-instruction_handler
  1260.  db 'popaw',61h
  1261.  dw simple_instruction_16bit_except64-instruction_handler
  1262.  db 'popfd',9Dh
  1263.  dw simple_instruction_32bit_except64-instruction_handler
  1264.  db 'popfq',9Dh
  1265.  dw simple_instruction_only64-instruction_handler
  1266.  db 'popfw',9Dh
  1267.  dw simple_instruction_16bit-instruction_handler
  1268.  db 'pslld',0F2h
  1269.  dw mmx_bit_shift_instruction-instruction_handler
  1270.  db 'psllq',0F3h
  1271.  dw mmx_bit_shift_instruction-instruction_handler
  1272.  db 'psllw',0F1h
  1273.  dw mmx_bit_shift_instruction-instruction_handler
  1274.  db 'psrad',0E2h
  1275.  dw mmx_bit_shift_instruction-instruction_handler
  1276.  db 'psraw',0E1h
  1277.  dw mmx_bit_shift_instruction-instruction_handler
  1278.  db 'psrld',0D2h
  1279.  dw mmx_bit_shift_instruction-instruction_handler
  1280.  db 'psrlq',0D3h
  1281.  dw mmx_bit_shift_instruction-instruction_handler
  1282.  db 'psrlw',0D1h
  1283.  dw mmx_bit_shift_instruction-instruction_handler
  1284.  db 'psubb',0F8h
  1285.  dw basic_mmx_instruction-instruction_handler
  1286.  db 'psubd',0FAh
  1287.  dw basic_mmx_instruction-instruction_handler
  1288.  db 'psubq',0FBh
  1289.  dw basic_mmx_instruction-instruction_handler
  1290.  db 'psubw',0F9h
  1291.  dw basic_mmx_instruction-instruction_handler
  1292.  db 'ptest',17h
  1293.  dw sse4_instruction_66_38-instruction_handler
  1294.  db 'pusha',60h
  1295.  dw simple_instruction_except64-instruction_handler
  1296.  db 'pushd',4
  1297.  dw push_instruction-instruction_handler
  1298.  db 'pushf',9Ch
  1299.  dw simple_instruction-instruction_handler
  1300.  db 'pushq',8
  1301.  dw push_instruction-instruction_handler
  1302.  db 'pushw',2
  1303.  dw push_instruction-instruction_handler
  1304.  db 'rcpps',53h
  1305.  dw sse_ps_instruction-instruction_handler
  1306.  db 'rcpss',53h
  1307.  dw sse_ss_instruction-instruction_handler
  1308.  db 'rdmsr',32h
  1309.  dw simple_extended_instruction-instruction_handler
  1310.  db 'rdpid',7
  1311.  dw rdpid_instruction-instruction_handler
  1312.  db 'rdpmc',33h
  1313.  dw simple_extended_instruction-instruction_handler
  1314.  db 'rdpru',0FDh
  1315.  dw simple_instruction_0f_01-instruction_handler
  1316.  db 'rdtsc',31h
  1317.  dw simple_extended_instruction-instruction_handler
  1318.  db 'repne',0F2h
  1319.  dw prefix_instruction-instruction_handler
  1320.  db 'repnz',0F2h
  1321.  dw prefix_instruction-instruction_handler
  1322.  db 'retfd',0CAh
  1323.  dw retf_instruction_32bit-instruction_handler
  1324.  db 'retfq',0CAh
  1325.  dw retf_instruction_64bit-instruction_handler
  1326.  db 'retfw',0CAh
  1327.  dw retf_instruction_16bit-instruction_handler
  1328.  db 'retnd',0C2h
  1329.  dw ret_instruction_32bit_except64-instruction_handler
  1330.  db 'retnq',0C2h
  1331.  dw ret_instruction_only64-instruction_handler
  1332.  db 'retnw',0C2h
  1333.  dw ret_instruction_16bit-instruction_handler
  1334.  db 'scasb',0AEh
  1335.  dw simple_instruction-instruction_handler
  1336.  db 'scasd',0AFh
  1337.  dw simple_instruction_32bit-instruction_handler
  1338.  db 'scasq',0AFh
  1339.  dw simple_instruction_64bit-instruction_handler
  1340.  db 'scasw',0AFh
  1341.  dw simple_instruction_16bit-instruction_handler
  1342.  db 'setae',93h
  1343.  dw set_instruction-instruction_handler
  1344.  db 'setbe',96h
  1345.  dw set_instruction-instruction_handler
  1346.  db 'setge',9Dh
  1347.  dw set_instruction-instruction_handler
  1348.  db 'setle',9Eh
  1349.  dw set_instruction-instruction_handler
  1350.  db 'setna',96h
  1351.  dw set_instruction-instruction_handler
  1352.  db 'setnb',93h
  1353.  dw set_instruction-instruction_handler
  1354.  db 'setnc',93h
  1355.  dw set_instruction-instruction_handler
  1356.  db 'setne',95h
  1357.  dw set_instruction-instruction_handler
  1358.  db 'setng',9Eh
  1359.  dw set_instruction-instruction_handler
  1360.  db 'setnl',9Dh
  1361.  dw set_instruction-instruction_handler
  1362.  db 'setno',91h
  1363.  dw set_instruction-instruction_handler
  1364.  db 'setnp',9Bh
  1365.  dw set_instruction-instruction_handler
  1366.  db 'setns',99h
  1367.  dw set_instruction-instruction_handler
  1368.  db 'setnz',95h
  1369.  dw set_instruction-instruction_handler
  1370.  db 'setpe',9Ah
  1371.  dw set_instruction-instruction_handler
  1372.  db 'setpo',9Bh
  1373.  dw set_instruction-instruction_handler
  1374.  db 'stack',0
  1375.  dw stack_directive-instruction_handler
  1376.  db 'store',0
  1377.  dw store_directive-instruction_handler
  1378.  db 'stosb',0AAh
  1379.  dw simple_instruction-instruction_handler
  1380.  db 'stosd',0ABh
  1381.  dw simple_instruction_32bit-instruction_handler
  1382.  db 'stosq',0ABh
  1383.  dw simple_instruction_64bit-instruction_handler
  1384.  db 'stosw',0ABh
  1385.  dw simple_instruction_16bit-instruction_handler
  1386.  db 'subpd',5Ch
  1387.  dw sse_pd_instruction-instruction_handler
  1388.  db 'subps',5Ch
  1389.  dw sse_ps_instruction-instruction_handler
  1390.  db 'subsd',5Ch
  1391.  dw sse_sd_instruction-instruction_handler
  1392.  db 'subss',5Ch
  1393.  dw sse_ss_instruction-instruction_handler
  1394.  db 'times',0
  1395.  dw times_directive-instruction_handler
  1396.  db 'tzcnt',0BCh
  1397.  dw popcnt_instruction-instruction_handler
  1398.  db 'tzmsk',14h
  1399.  dw tbm_instruction-instruction_handler
  1400.  db 'vdppd',41h
  1401.  dw avx_128bit_instruction_3a_imm8_noevex-instruction_handler
  1402.  db 'vdpps',40h
  1403.  dw avx_pi_instruction_3a_imm8_noevex-instruction_handler
  1404.  db 'vmovd',0
  1405.  dw avx_movd_instruction-instruction_handler
  1406.  db 'vmovq',0
  1407.  dw avx_movq_instruction-instruction_handler
  1408.  db 'vmrun',0D8h
  1409.  dw simple_svm_instruction-instruction_handler
  1410.  db 'vmxon',6
  1411.  dw vmxon_instruction-instruction_handler
  1412.  db 'vorpd',56h
  1413.  dw avx_pd_instruction-instruction_handler
  1414.  db 'vorps',56h
  1415.  dw avx_ps_instruction-instruction_handler
  1416.  db 'vpand',0DBh
  1417.  dw avx_pd_instruction_noevex-instruction_handler
  1418.  db 'vpord',0EBh
  1419.  dw avx_d_instruction_evex-instruction_handler
  1420.  db 'vporq',0EBh
  1421.  dw avx_q_instruction_evex-instruction_handler
  1422.  db 'vpxor',0EFh
  1423.  dw avx_pd_instruction_noevex-instruction_handler
  1424.  db 'while',0
  1425.  dw while_directive-instruction_handler
  1426.  db 'wrmsr',30h
  1427.  dw simple_extended_instruction-instruction_handler
  1428.  db 'wrssd',0F6h
  1429.  dw wrssd_instruction-instruction_handler
  1430.  db 'wrssq',0F6h
  1431.  dw wrssq_instruction-instruction_handler
  1432.  db 'xlatb',0D7h
  1433.  dw simple_instruction-instruction_handler
  1434.  db 'xorpd',57h
  1435.  dw sse_pd_instruction-instruction_handler
  1436.  db 'xorps',57h
  1437.  dw sse_ps_instruction-instruction_handler
  1438.  db 'xsave',100b
  1439.  dw fxsave_instruction-instruction_handler
  1440.  db 'xtest',0D6h
  1441.  dw simple_instruction_0f_01-instruction_handler
  1442. instructions_6:
  1443.  db 'aesdec',0DEh
  1444.  dw sse4_instruction_66_38-instruction_handler
  1445.  db 'aesenc',0DCh
  1446.  dw sse4_instruction_66_38-instruction_handler
  1447.  db 'aesimc',0DBh
  1448.  dw sse4_instruction_66_38-instruction_handler
  1449.  db 'andnpd',55h
  1450.  dw sse_pd_instruction-instruction_handler
  1451.  db 'andnps',55h
  1452.  dw sse_ps_instruction-instruction_handler
  1453.  db 'assert',0
  1454.  dw assert_directive-instruction_handler
  1455.  db 'blcmsk',21h
  1456.  dw tbm_instruction-instruction_handler
  1457.  db 'blsmsk',2
  1458.  dw bmi_instruction-instruction_handler
  1459.  db 'bndldx',1Ah
  1460.  dw bndldx_instruction-instruction_handler
  1461.  db 'bndmov',1Ah
  1462.  dw bndmov_instruction-instruction_handler
  1463.  db 'bndstx',1Bh
  1464.  dw bndstx_instruction-instruction_handler
  1465.  db 'clzero',0
  1466.  dw clzero_instruction-instruction_handler
  1467.  db 'cmovae',43h
  1468.  dw bs_instruction-instruction_handler
  1469.  db 'cmovbe',46h
  1470.  dw bs_instruction-instruction_handler
  1471.  db 'cmovge',4Dh
  1472.  dw bs_instruction-instruction_handler
  1473.  db 'cmovle',4Eh
  1474.  dw bs_instruction-instruction_handler
  1475.  db 'cmovna',46h
  1476.  dw bs_instruction-instruction_handler
  1477.  db 'cmovnb',43h
  1478.  dw bs_instruction-instruction_handler
  1479.  db 'cmovnc',43h
  1480.  dw bs_instruction-instruction_handler
  1481.  db 'cmovne',45h
  1482.  dw bs_instruction-instruction_handler
  1483.  db 'cmovng',4Eh
  1484.  dw bs_instruction-instruction_handler
  1485.  db 'cmovnl',4Dh
  1486.  dw bs_instruction-instruction_handler
  1487.  db 'cmovno',41h
  1488.  dw bs_instruction-instruction_handler
  1489.  db 'cmovnp',4Bh
  1490.  dw bs_instruction-instruction_handler
  1491.  db 'cmovns',49h
  1492.  dw bs_instruction-instruction_handler
  1493.  db 'cmovnz',45h
  1494.  dw bs_instruction-instruction_handler
  1495.  db 'cmovpe',4Ah
  1496.  dw bs_instruction-instruction_handler
  1497.  db 'cmovpo',4Bh
  1498.  dw bs_instruction-instruction_handler
  1499.  db 'comisd',2Fh
  1500.  dw comisd_instruction-instruction_handler
  1501.  db 'comiss',2Fh
  1502.  dw comiss_instruction-instruction_handler
  1503.  db 'fcmovb',0C0h
  1504.  dw fcmov_instruction-instruction_handler
  1505.  db 'fcmove',0C8h
  1506.  dw fcmov_instruction-instruction_handler
  1507.  db 'fcmovu',0D8h
  1508.  dw fcmov_instruction-instruction_handler
  1509.  db 'fcomip',0F0h
  1510.  dw fcomip_instruction-instruction_handler
  1511.  db 'fcompp',0
  1512.  dw fcompp_instruction-instruction_handler
  1513.  db 'fdivrp',6
  1514.  dw faddp_instruction-instruction_handler
  1515.  db 'ffreep',0
  1516.  dw ffreep_instruction-instruction_handler
  1517.  db 'ficomp',3
  1518.  dw fi_instruction-instruction_handler
  1519.  db 'fidivr',7
  1520.  dw fi_instruction-instruction_handler
  1521.  db 'fisttp',1
  1522.  dw fild_instruction-instruction_handler
  1523.  db 'fisubr',5
  1524.  dw fi_instruction-instruction_handler
  1525.  db 'fldenv',4
  1526.  dw fldenv_instruction-instruction_handler
  1527.  db 'fldl2e',101010b
  1528.  dw simple_fpu_instruction-instruction_handler
  1529.  db 'fldl2t',101001b
  1530.  dw simple_fpu_instruction-instruction_handler
  1531.  db 'fldlg2',101100b
  1532.  dw simple_fpu_instruction-instruction_handler
  1533.  db 'fldln2',101101b
  1534.  dw simple_fpu_instruction-instruction_handler
  1535.  db 'fnclex',0E2h
  1536.  dw fninit_instruction-instruction_handler
  1537.  db 'fndisi',0E1h
  1538.  dw fninit_instruction-instruction_handler
  1539.  db 'fninit',0E3h
  1540.  dw fninit_instruction-instruction_handler
  1541.  db 'fnsave',6
  1542.  dw fnsave_instruction-instruction_handler
  1543.  db 'fnstcw',7
  1544.  dw fldcw_instruction-instruction_handler
  1545.  db 'fnstsw',0
  1546.  dw fnstsw_instruction-instruction_handler
  1547.  db 'format',0
  1548.  dw format_directive-instruction_handler
  1549.  db 'fpatan',110011b
  1550.  dw simple_fpu_instruction-instruction_handler
  1551.  db 'fprem1',110101b
  1552.  dw simple_fpu_instruction-instruction_handler
  1553.  db 'frstor',4
  1554.  dw fnsave_instruction-instruction_handler
  1555.  db 'frstpm',0E5h
  1556.  dw fninit_instruction-instruction_handler
  1557.  db 'fsaved',6
  1558.  dw fsave_instruction_32bit-instruction_handler
  1559.  db 'fsavew',6
  1560.  dw fsave_instruction_16bit-instruction_handler
  1561.  db 'fscale',111101b
  1562.  dw simple_fpu_instruction-instruction_handler
  1563.  db 'fsetpm',0E4h
  1564.  dw fninit_instruction-instruction_handler
  1565.  db 'fstenv',6
  1566.  dw fstenv_instruction-instruction_handler
  1567.  db 'fsubrp',4
  1568.  dw faddp_instruction-instruction_handler
  1569.  db 'fucomi',0E8h
  1570.  dw fcomi_instruction-instruction_handler
  1571.  db 'fucomp',5
  1572.  dw ffree_instruction-instruction_handler
  1573.  db 'fxsave',0
  1574.  dw fxsave_instruction-instruction_handler
  1575.  db 'getsec',37h
  1576.  dw simple_extended_instruction-instruction_handler
  1577.  db 'haddpd',07Ch
  1578.  dw sse_pd_instruction-instruction_handler
  1579.  db 'haddps',07Ch
  1580.  dw cvtpd2dq_instruction-instruction_handler
  1581.  db 'hsubpd',07Dh
  1582.  dw sse_pd_instruction-instruction_handler
  1583.  db 'hsubps',07Dh
  1584.  dw cvtpd2dq_instruction-instruction_handler
  1585.  db 'invept',80h
  1586.  dw vmx_inv_instruction-instruction_handler
  1587.  db 'invlpg',0
  1588.  dw invlpg_instruction-instruction_handler
  1589.  db 'kandnb',42h
  1590.  dw mask_instruction_b-instruction_handler
  1591.  db 'kandnd',42h
  1592.  dw mask_instruction_d-instruction_handler
  1593.  db 'kandnq',42h
  1594.  dw mask_instruction_q-instruction_handler
  1595.  db 'kandnw',42h
  1596.  dw mask_instruction_w-instruction_handler
  1597.  db 'ktestb',99h
  1598.  dw mask_instruction_single_source_b-instruction_handler
  1599.  db 'ktestd',99h
  1600.  dw mask_instruction_single_source_d-instruction_handler
  1601.  db 'ktestq',99h
  1602.  dw mask_instruction_single_source_q-instruction_handler
  1603.  db 'ktestw',99h
  1604.  dw mask_instruction_single_source_w-instruction_handler
  1605.  db 'kxnorb',46h
  1606.  dw mask_instruction_b-instruction_handler
  1607.  db 'kxnord',46h
  1608.  dw mask_instruction_d-instruction_handler
  1609.  db 'kxnorq',46h
  1610.  dw mask_instruction_q-instruction_handler
  1611.  db 'kxnorw',46h
  1612.  dw mask_instruction_w-instruction_handler
  1613.  db 'lfence',0E8h
  1614.  dw fence_instruction-instruction_handler
  1615.  db 'llwpcb',0
  1616.  dw llwpcb_instruction-instruction_handler
  1617.  db 'looped',0E1h
  1618.  dw loop_instruction_32bit-instruction_handler
  1619.  db 'loopeq',0E1h
  1620.  dw loop_instruction_64bit-instruction_handler
  1621.  db 'loopew',0E1h
  1622.  dw loop_instruction_16bit-instruction_handler
  1623.  db 'loopne',0E0h
  1624.  dw loop_instruction-instruction_handler
  1625.  db 'loopnz',0E0h
  1626.  dw loop_instruction-instruction_handler
  1627.  db 'loopzd',0E1h
  1628.  dw loop_instruction_32bit-instruction_handler
  1629.  db 'loopzq',0E1h
  1630.  dw loop_instruction_64bit-instruction_handler
  1631.  db 'loopzw',0E1h
  1632.  dw loop_instruction_16bit-instruction_handler
  1633.  db 'lwpins',0
  1634.  dw lwpins_instruction-instruction_handler
  1635.  db 'lwpval',1
  1636.  dw lwpins_instruction-instruction_handler
  1637.  db 'mfence',0F0h
  1638.  dw fence_instruction-instruction_handler
  1639.  db 'movapd',28h
  1640.  dw movpd_instruction-instruction_handler
  1641.  db 'movaps',28h
  1642.  dw movps_instruction-instruction_handler
  1643.  db 'movdqa',66h
  1644.  dw movdq_instruction-instruction_handler
  1645.  db 'movdqu',0F3h
  1646.  dw movdq_instruction-instruction_handler
  1647.  db 'movhpd',16h
  1648.  dw movlpd_instruction-instruction_handler
  1649.  db 'movhps',16h
  1650.  dw movlps_instruction-instruction_handler
  1651.  db 'movlpd',12h
  1652.  dw movlpd_instruction-instruction_handler
  1653.  db 'movlps',12h
  1654.  dw movlps_instruction-instruction_handler
  1655.  db 'movnti',0C3h
  1656.  dw movnti_instruction-instruction_handler
  1657.  db 'movntq',0E7h
  1658.  dw movntq_instruction-instruction_handler
  1659.  db 'movsxd',63h
  1660.  dw movsxd_instruction-instruction_handler
  1661.  db 'movupd',10h
  1662.  dw movpd_instruction-instruction_handler
  1663.  db 'movups',10h
  1664.  dw movps_instruction-instruction_handler
  1665.  db 'mwaitx',0FBh
  1666.  dw monitor_instruction-instruction_handler
  1667.  db 'paddsb',0ECh
  1668.  dw basic_mmx_instruction-instruction_handler
  1669.  db 'paddsw',0EDh
  1670.  dw basic_mmx_instruction-instruction_handler
  1671.  db 'pextrb',14h
  1672.  dw pextrb_instruction-instruction_handler
  1673.  db 'pextrd',16h
  1674.  dw pextrd_instruction-instruction_handler
  1675.  db 'pextrq',16h
  1676.  dw pextrq_instruction-instruction_handler
  1677.  db 'pextrw',15h
  1678.  dw pextrw_instruction-instruction_handler
  1679.  db 'pfnacc',8Ah
  1680.  dw amd3dnow_instruction-instruction_handler
  1681.  db 'pfsubr',0AAh
  1682.  dw amd3dnow_instruction-instruction_handler
  1683.  db 'phaddd',2
  1684.  dw ssse3_instruction-instruction_handler
  1685.  db 'phaddw',1
  1686.  dw ssse3_instruction-instruction_handler
  1687.  db 'phsubd',6
  1688.  dw ssse3_instruction-instruction_handler
  1689.  db 'phsubw',5
  1690.  dw ssse3_instruction-instruction_handler
  1691.  db 'pinsrb',20h
  1692.  dw pinsrb_instruction-instruction_handler
  1693.  db 'pinsrd',22h
  1694.  dw pinsrd_instruction-instruction_handler
  1695.  db 'pinsrq',22h
  1696.  dw pinsrq_instruction-instruction_handler
  1697.  db 'pinsrw',0C4h
  1698.  dw pinsrw_instruction-instruction_handler
  1699.  db 'pmaxsb',3Ch
  1700.  dw sse4_instruction_66_38-instruction_handler
  1701.  db 'pmaxsd',3Dh
  1702.  dw sse4_instruction_66_38-instruction_handler
  1703.  db 'pmaxsw',0EEh
  1704.  dw basic_mmx_instruction-instruction_handler
  1705.  db 'pmaxub',0DEh
  1706.  dw basic_mmx_instruction-instruction_handler
  1707.  db 'pmaxud',3Fh
  1708.  dw sse4_instruction_66_38-instruction_handler
  1709.  db 'pmaxuw',3Eh
  1710.  dw sse4_instruction_66_38-instruction_handler
  1711.  db 'pminsb',38h
  1712.  dw sse4_instruction_66_38-instruction_handler
  1713.  db 'pminsd',39h
  1714.  dw sse4_instruction_66_38-instruction_handler
  1715.  db 'pminsw',0EAh
  1716.  dw basic_mmx_instruction-instruction_handler
  1717.  db 'pminub',0DAh
  1718.  dw basic_mmx_instruction-instruction_handler
  1719.  db 'pminud',3Bh
  1720.  dw sse4_instruction_66_38-instruction_handler
  1721.  db 'pminuw',3Ah
  1722.  dw sse4_instruction_66_38-instruction_handler
  1723.  db 'pmuldq',28h
  1724.  dw sse4_instruction_66_38-instruction_handler
  1725.  db 'pmulhw',0E5h
  1726.  dw basic_mmx_instruction-instruction_handler
  1727.  db 'pmulld',40h
  1728.  dw sse4_instruction_66_38-instruction_handler
  1729.  db 'pmullw',0D5h
  1730.  dw basic_mmx_instruction-instruction_handler
  1731.  db 'popcnt',0B8h
  1732.  dw popcnt_instruction-instruction_handler
  1733.  db 'psadbw',0F6h
  1734.  dw basic_mmx_instruction-instruction_handler
  1735.  db 'pshufb',0
  1736.  dw ssse3_instruction-instruction_handler
  1737.  db 'pshufd',66h
  1738.  dw pshufd_instruction-instruction_handler
  1739.  db 'pshufw',0
  1740.  dw pshufw_instruction-instruction_handler
  1741.  db 'psignb',8
  1742.  dw ssse3_instruction-instruction_handler
  1743.  db 'psignd',0Ah
  1744.  dw ssse3_instruction-instruction_handler
  1745.  db 'psignw',9
  1746.  dw ssse3_instruction-instruction_handler
  1747.  db 'pslldq',111b
  1748.  dw pslldq_instruction-instruction_handler
  1749.  db 'psmash',0FFh
  1750.  dw simple_instruction_f3_0f_01-instruction_handler
  1751.  db 'psrldq',011b
  1752.  dw pslldq_instruction-instruction_handler
  1753.  db 'psubsb',0E8h
  1754.  dw basic_mmx_instruction-instruction_handler
  1755.  db 'psubsw',0E9h
  1756.  dw basic_mmx_instruction-instruction_handler
  1757.  db 'pswapd',0BBh
  1758.  dw amd3dnow_instruction-instruction_handler
  1759.  db 'public',0
  1760.  dw public_directive-instruction_handler
  1761.  db 'pushad',60h
  1762.  dw simple_instruction_32bit_except64-instruction_handler
  1763.  db 'pushaw',60h
  1764.  dw simple_instruction_16bit_except64-instruction_handler
  1765.  db 'pushfd',9Ch
  1766.  dw simple_instruction_32bit_except64-instruction_handler
  1767.  db 'pushfq',9Ch
  1768.  dw simple_instruction_only64-instruction_handler
  1769.  db 'pushfw',9Ch
  1770.  dw simple_instruction_16bit-instruction_handler
  1771.  db 'rdmsrq',32h
  1772.  dw simple_extended_instruction_64bit-instruction_handler
  1773.  db 'rdpkru',0EEh
  1774.  dw simple_instruction_0f_01-instruction_handler
  1775.  db 'rdrand',110b
  1776.  dw rdrand_instruction-instruction_handler
  1777.  db 'rdseed',111b
  1778.  dw rdrand_instruction-instruction_handler
  1779.  db 'rdsspd',1
  1780.  dw rdsspd_instruction-instruction_handler
  1781.  db 'rdsspq',1
  1782.  dw rdsspq_instruction-instruction_handler
  1783.  db 'rdtscp',0F9h
  1784.  dw simple_instruction_0f_01-instruction_handler
  1785.  db 'repeat',0
  1786.  dw repeat_directive-instruction_handler
  1787.  db 'setalc',0D6h
  1788.  dw simple_instruction_except64-instruction_handler
  1789.  db 'setnae',92h
  1790.  dw set_instruction-instruction_handler
  1791.  db 'setnbe',97h
  1792.  dw set_instruction-instruction_handler
  1793.  db 'setnge',9Ch
  1794.  dw set_instruction-instruction_handler
  1795.  db 'setnle',9Fh
  1796.  dw set_instruction-instruction_handler
  1797.  db 'sfence',0F8h
  1798.  dw fence_instruction-instruction_handler
  1799.  db 'shufpd',0C6h
  1800.  dw sse_pd_instruction_imm8-instruction_handler
  1801.  db 'shufps',0C6h
  1802.  dw sse_ps_instruction_imm8-instruction_handler
  1803.  db 'skinit',0
  1804.  dw skinit_instruction-instruction_handler
  1805.  db 'slwpcb',1
  1806.  dw llwpcb_instruction-instruction_handler
  1807.  db 'sqrtpd',51h
  1808.  dw sse_pd_instruction-instruction_handler
  1809.  db 'sqrtps',51h
  1810.  dw sse_ps_instruction-instruction_handler
  1811.  db 'sqrtsd',51h
  1812.  dw sse_sd_instruction-instruction_handler
  1813.  db 'sqrtss',51h
  1814.  dw sse_ss_instruction-instruction_handler
  1815.  db 'swapgs',0F8h
  1816.  dw swapgs_instruction-instruction_handler
  1817.  db 'sysret',07h
  1818.  dw simple_extended_instruction-instruction_handler
  1819.  db 't1mskc',17h
  1820.  dw tbm_instruction-instruction_handler
  1821.  db 'tpause',66h
  1822.  dw tpause_instruction-instruction_handler
  1823.  db 'umwait',0F2h
  1824.  dw tpause_instruction-instruction_handler
  1825.  db 'vaddpd',58h
  1826.  dw avx_pd_instruction_er-instruction_handler
  1827.  db 'vaddps',58h
  1828.  dw avx_ps_instruction_er-instruction_handler
  1829.  db 'vaddsd',58h
  1830.  dw avx_sd_instruction_er-instruction_handler
  1831.  db 'vaddss',58h
  1832.  dw avx_ss_instruction_er-instruction_handler
  1833.  db 'vandpd',54h
  1834.  dw avx_pd_instruction-instruction_handler
  1835.  db 'vandps',54h
  1836.  dw avx_ps_instruction-instruction_handler
  1837.  db 'vcmppd',-1
  1838.  dw avx_cmp_pd_instruction-instruction_handler
  1839.  db 'vcmpps',-1
  1840.  dw avx_cmp_ps_instruction-instruction_handler
  1841.  db 'vcmpsd',-1
  1842.  dw avx_cmp_sd_instruction-instruction_handler
  1843.  db 'vcmpss',-1
  1844.  dw avx_cmp_ss_instruction-instruction_handler
  1845.  db 'vdivpd',5Eh
  1846.  dw avx_pd_instruction_er-instruction_handler
  1847.  db 'vdivps',5Eh
  1848.  dw avx_ps_instruction_er-instruction_handler
  1849.  db 'vdivsd',5Eh
  1850.  dw avx_sd_instruction_er-instruction_handler
  1851.  db 'vdivss',5Eh
  1852.  dw avx_ss_instruction_er-instruction_handler
  1853.  db 'vlddqu',0F0h
  1854.  dw avx_lddqu_instruction-instruction_handler
  1855.  db 'vmaxpd',5Fh
  1856.  dw avx_pd_instruction_sae-instruction_handler
  1857.  db 'vmaxps',5Fh
  1858.  dw avx_ps_instruction_sae-instruction_handler
  1859.  db 'vmaxsd',5Fh
  1860.  dw avx_sd_instruction_sae-instruction_handler
  1861.  db 'vmaxss',5Fh
  1862.  dw avx_ss_instruction_sae-instruction_handler
  1863.  db 'vmcall',0C1h
  1864.  dw simple_instruction_0f_01-instruction_handler
  1865.  db 'vmfunc',0D4h
  1866.  dw simple_instruction_0f_01-instruction_handler
  1867.  db 'vminpd',5Dh
  1868.  dw avx_pd_instruction_sae-instruction_handler
  1869.  db 'vminps',5Dh
  1870.  dw avx_ps_instruction_sae-instruction_handler
  1871.  db 'vminsd',5Dh
  1872.  dw avx_sd_instruction_sae-instruction_handler
  1873.  db 'vminss',5Dh
  1874.  dw avx_ss_instruction_sae-instruction_handler
  1875.  db 'vmload',0DAh
  1876.  dw simple_svm_instruction-instruction_handler
  1877.  db 'vmovsd',0
  1878.  dw avx_movsd_instruction-instruction_handler
  1879.  db 'vmovss',0
  1880.  dw avx_movss_instruction-instruction_handler
  1881.  db 'vmread',0
  1882.  dw vmread_instruction-instruction_handler
  1883.  db 'vmsave',0DBh
  1884.  dw simple_svm_instruction-instruction_handler
  1885.  db 'vmulpd',59h
  1886.  dw avx_pd_instruction_er-instruction_handler
  1887.  db 'vmulps',59h
  1888.  dw avx_ps_instruction_er-instruction_handler
  1889.  db 'vmulsd',59h
  1890.  dw avx_sd_instruction_er-instruction_handler
  1891.  db 'vmulss',59h
  1892.  dw avx_ss_instruction_er-instruction_handler
  1893.  db 'vmxoff',0C4h
  1894.  dw simple_instruction_0f_01-instruction_handler
  1895.  db 'vpabsb',1Ch
  1896.  dw avx_single_source_bw_instruction_38-instruction_handler
  1897.  db 'vpabsd',1Eh
  1898.  dw avx_single_source_d_instruction_38-instruction_handler
  1899.  db 'vpabsq',1Fh
  1900.  dw avx_single_source_q_instruction_38_evex-instruction_handler
  1901.  db 'vpabsw',1Dh
  1902.  dw avx_single_source_bw_instruction_38-instruction_handler
  1903.  db 'vpaddb',0FCh
  1904.  dw avx_bw_instruction-instruction_handler
  1905.  db 'vpaddd',0FEh
  1906.  dw avx_d_instruction-instruction_handler
  1907.  db 'vpaddq',0D4h
  1908.  dw avx_q_instruction-instruction_handler
  1909.  db 'vpaddw',0FDh
  1910.  dw avx_bw_instruction-instruction_handler
  1911.  db 'vpandd',0DBh
  1912.  dw avx_d_instruction_evex-instruction_handler
  1913.  db 'vpandn',0DFh
  1914.  dw avx_pd_instruction_noevex-instruction_handler
  1915.  db 'vpandq',0DBh
  1916.  dw avx_q_instruction_evex-instruction_handler
  1917.  db 'vpavgb',0E0h
  1918.  dw avx_bw_instruction-instruction_handler
  1919.  db 'vpavgw',0E3h
  1920.  dw avx_bw_instruction-instruction_handler
  1921.  db 'vpcmov',0A2h
  1922.  dw vpcmov_instruction-instruction_handler
  1923.  db 'vpcmpb',-1
  1924.  dw avx512_cmp_b_instruction-instruction_handler
  1925.  db 'vpcmpd',-1
  1926.  dw avx512_cmp_d_instruction-instruction_handler
  1927.  db 'vpcmpq',-1
  1928.  dw avx512_cmp_q_instruction-instruction_handler
  1929.  db 'vpcmpw',-1
  1930.  dw avx512_cmp_w_instruction-instruction_handler
  1931.  db 'vpcomb',-1
  1932.  dw xop_pcom_b_instruction-instruction_handler
  1933.  db 'vpcomd',-1
  1934.  dw xop_pcom_d_instruction-instruction_handler
  1935.  db 'vpcomq',-1
  1936.  dw xop_pcom_q_instruction-instruction_handler
  1937.  db 'vpcomw',-1
  1938.  dw xop_pcom_w_instruction-instruction_handler
  1939.  db 'vpermb',8Dh
  1940.  dw avx_bw_instruction_38_evex-instruction_handler
  1941.  db 'vpermd',36h
  1942.  dw avx_permd_instruction-instruction_handler
  1943.  db 'vpermq',0
  1944.  dw avx_permq_instruction-instruction_handler
  1945.  db 'vpermw',8Dh
  1946.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  1947.  db 'vpperm',0A3h
  1948.  dw xop_128bit_instruction-instruction_handler
  1949.  db 'vprold',1
  1950.  dw avx512_rotate_d_instruction-instruction_handler
  1951.  db 'vprolq',1
  1952.  dw avx512_rotate_q_instruction-instruction_handler
  1953.  db 'vprord',0
  1954.  dw avx512_rotate_d_instruction-instruction_handler
  1955.  db 'vprorq',0
  1956.  dw avx512_rotate_q_instruction-instruction_handler
  1957.  db 'vprotb',90h
  1958.  dw xop_shift_instruction-instruction_handler
  1959.  db 'vprotd',92h
  1960.  dw xop_shift_instruction-instruction_handler
  1961.  db 'vprotq',93h
  1962.  dw xop_shift_instruction-instruction_handler
  1963.  db 'vprotw',91h
  1964.  dw xop_shift_instruction-instruction_handler
  1965.  db 'vpshab',98h
  1966.  dw xop_shift_instruction-instruction_handler
  1967.  db 'vpshad',9Ah
  1968.  dw xop_shift_instruction-instruction_handler
  1969.  db 'vpshaq',9Bh
  1970.  dw xop_shift_instruction-instruction_handler
  1971.  db 'vpshaw',99h
  1972.  dw xop_shift_instruction-instruction_handler
  1973.  db 'vpshlb',94h
  1974.  dw xop_shift_instruction-instruction_handler
  1975.  db 'vpshld',96h
  1976.  dw xop_shift_instruction-instruction_handler
  1977.  db 'vpshlq',97h
  1978.  dw xop_shift_instruction-instruction_handler
  1979.  db 'vpshlw',95h
  1980.  dw xop_shift_instruction-instruction_handler
  1981.  db 'vpslld',0F2h
  1982.  dw avx_shift_d_instruction-instruction_handler
  1983.  db 'vpsllq',0F3h
  1984.  dw avx_shift_q_instruction-instruction_handler
  1985.  db 'vpsllw',0F1h
  1986.  dw avx_shift_bw_instruction-instruction_handler
  1987.  db 'vpsrad',0E2h
  1988.  dw avx_shift_d_instruction-instruction_handler
  1989.  db 'vpsraq',0E2h
  1990.  dw avx_shift_q_instruction_evex-instruction_handler
  1991.  db 'vpsraw',0E1h
  1992.  dw avx_shift_bw_instruction-instruction_handler
  1993.  db 'vpsrld',0D2h
  1994.  dw avx_shift_d_instruction-instruction_handler
  1995.  db 'vpsrlq',0D3h
  1996.  dw avx_shift_q_instruction-instruction_handler
  1997.  db 'vpsrlw',0D1h
  1998.  dw avx_shift_bw_instruction-instruction_handler
  1999.  db 'vpsubb',0F8h
  2000.  dw avx_bw_instruction-instruction_handler
  2001.  db 'vpsubd',0FAh
  2002.  dw avx_d_instruction-instruction_handler
  2003.  db 'vpsubq',0FBh
  2004.  dw avx_q_instruction-instruction_handler
  2005.  db 'vpsubw',0F9h
  2006.  dw avx_bw_instruction-instruction_handler
  2007.  db 'vptest',17h
  2008.  dw avx_single_source_instruction_38_noevex-instruction_handler
  2009.  db 'vpxord',0EFh
  2010.  dw avx_d_instruction_evex-instruction_handler
  2011.  db 'vpxorq',0EFh
  2012.  dw avx_q_instruction_evex-instruction_handler
  2013.  db 'vrcpps',53h
  2014.  dw avx_single_source_ps_instruction_noevex-instruction_handler
  2015.  db 'vrcpss',53h
  2016.  dw avx_ss_instruction_noevex-instruction_handler
  2017.  db 'vsubpd',5Ch
  2018.  dw avx_pd_instruction_er-instruction_handler
  2019.  db 'vsubps',5Ch
  2020.  dw avx_ps_instruction_er-instruction_handler
  2021.  db 'vsubsd',5Ch
  2022.  dw avx_sd_instruction_er-instruction_handler
  2023.  db 'vsubss',5Ch
  2024.  dw avx_ss_instruction_er-instruction_handler
  2025.  db 'vxorpd',57h
  2026.  dw avx_pd_instruction-instruction_handler
  2027.  db 'vxorps',57h
  2028.  dw avx_ps_instruction-instruction_handler
  2029.  db 'wbinvd',9
  2030.  dw simple_extended_instruction-instruction_handler
  2031.  db 'wrmsrq',30h
  2032.  dw simple_extended_instruction_64bit-instruction_handler
  2033.  db 'wrpkru',0EFh
  2034.  dw simple_instruction_0f_01-instruction_handler
  2035.  db 'wrussd',0F5h
  2036.  dw wrussd_instruction-instruction_handler
  2037.  db 'wrussq',0F5h
  2038.  dw wrussq_instruction-instruction_handler
  2039.  db 'xabort',0
  2040.  dw xabort_instruction-instruction_handler
  2041.  db 'xbegin',0
  2042.  dw xbegin_instruction-instruction_handler
  2043.  db 'xgetbv',0D0h
  2044.  dw simple_instruction_0f_01-instruction_handler
  2045.  db 'xrstor',101b
  2046.  dw fxsave_instruction-instruction_handler
  2047.  db 'xsavec',4
  2048.  dw xsaves_instruction-instruction_handler
  2049.  db 'xsaves',5
  2050.  dw xsaves_instruction-instruction_handler
  2051.  db 'xsetbv',0D1h
  2052.  dw simple_instruction_0f_01-instruction_handler
  2053. instructions_7:
  2054.  db 'blcfill',11h
  2055.  dw tbm_instruction-instruction_handler
  2056.  db 'blendpd',0Dh
  2057.  dw sse4_instruction_66_3a_imm8-instruction_handler
  2058.  db 'blendps',0Ch
  2059.  dw sse4_instruction_66_3a_imm8-instruction_handler
  2060.  db 'blsfill',12h
  2061.  dw tbm_instruction-instruction_handler
  2062.  db 'clflush',111b
  2063.  dw clflush_instruction-instruction_handler
  2064.  db 'cmovnae',42h
  2065.  dw bs_instruction-instruction_handler
  2066.  db 'cmovnbe',47h
  2067.  dw bs_instruction-instruction_handler
  2068.  db 'cmovnge',4Ch
  2069.  dw bs_instruction-instruction_handler
  2070.  db 'cmovnle',4Fh
  2071.  dw bs_instruction-instruction_handler
  2072.  db 'cmpeqpd',0
  2073.  dw cmp_pd_instruction-instruction_handler
  2074.  db 'cmpeqps',0
  2075.  dw cmp_ps_instruction-instruction_handler
  2076.  db 'cmpeqsd',0
  2077.  dw cmp_sd_instruction-instruction_handler
  2078.  db 'cmpeqss',0
  2079.  dw cmp_ss_instruction-instruction_handler
  2080.  db 'cmplepd',2
  2081.  dw cmp_pd_instruction-instruction_handler
  2082.  db 'cmpleps',2
  2083.  dw cmp_ps_instruction-instruction_handler
  2084.  db 'cmplesd',2
  2085.  dw cmp_sd_instruction-instruction_handler
  2086.  db 'cmpless',2
  2087.  dw cmp_ss_instruction-instruction_handler
  2088.  db 'cmpltpd',1
  2089.  dw cmp_pd_instruction-instruction_handler
  2090.  db 'cmpltps',1
  2091.  dw cmp_ps_instruction-instruction_handler
  2092.  db 'cmpltsd',1
  2093.  dw cmp_sd_instruction-instruction_handler
  2094.  db 'cmpltss',1
  2095.  dw cmp_ss_instruction-instruction_handler
  2096.  db 'cmpxchg',0B0h
  2097.  dw basic_486_instruction-instruction_handler
  2098.  db 'display',0
  2099.  dw display_directive-instruction_handler
  2100.  db 'endbr32',0FBh
  2101.  dw endbr_instruction-instruction_handler
  2102.  db 'endbr64',0FAh
  2103.  dw endbr_instruction-instruction_handler
  2104.  db 'fcmovbe',0D0h
  2105.  dw fcmov_instruction-instruction_handler
  2106.  db 'fcmovnb',0C0h
  2107.  dw fcomi_instruction-instruction_handler
  2108.  db 'fcmovne',0C8h
  2109.  dw fcomi_instruction-instruction_handler
  2110.  db 'fcmovnu',0D8h
  2111.  dw fcomi_instruction-instruction_handler
  2112.  db 'fdecstp',110110b
  2113.  dw simple_fpu_instruction-instruction_handler
  2114.  db 'fincstp',110111b
  2115.  dw simple_fpu_instruction-instruction_handler
  2116.  db 'fldenvd',4
  2117.  dw fldenv_instruction_32bit-instruction_handler
  2118.  db 'fldenvw',4
  2119.  dw fldenv_instruction_16bit-instruction_handler
  2120.  db 'fnsaved',6
  2121.  dw fnsave_instruction_32bit-instruction_handler
  2122.  db 'fnsavew',6
  2123.  dw fnsave_instruction_16bit-instruction_handler
  2124.  db 'fnstenv',6
  2125.  dw fldenv_instruction-instruction_handler
  2126.  db 'frndint',111100b
  2127.  dw simple_fpu_instruction-instruction_handler
  2128.  db 'frstord',4
  2129.  dw fnsave_instruction_32bit-instruction_handler
  2130.  db 'frstorw',4
  2131.  dw fnsave_instruction_16bit-instruction_handler
  2132.  db 'fsincos',111011b
  2133.  dw simple_fpu_instruction-instruction_handler
  2134.  db 'fstenvd',6
  2135.  dw fstenv_instruction_32bit-instruction_handler
  2136.  db 'fstenvw',6
  2137.  dw fstenv_instruction_16bit-instruction_handler
  2138.  db 'fucomip',0E8h
  2139.  dw fcomip_instruction-instruction_handler
  2140.  db 'fucompp',0
  2141.  dw fucompp_instruction-instruction_handler
  2142.  db 'fxrstor',1
  2143.  dw fxsave_instruction-instruction_handler
  2144.  db 'fxtract',110100b
  2145.  dw simple_fpu_instruction-instruction_handler
  2146.  db 'fyl2xp1',111001b
  2147.  dw simple_fpu_instruction-instruction_handler
  2148.  db 'incsspd',5
  2149.  dw incsspd_instruction-instruction_handler
  2150.  db 'incsspq',5
  2151.  dw incsspq_instruction-instruction_handler
  2152.  db 'insertq',0
  2153.  dw insertq_instruction-instruction_handler
  2154.  db 'invlpga',0DFh
  2155.  dw invlpga_instruction-instruction_handler
  2156.  db 'invlpgb',0FEh
  2157.  dw simple_instruction_0f_01-instruction_handler
  2158.  db 'invpcid',82h
  2159.  dw vmx_inv_instruction-instruction_handler
  2160.  db 'invvpid',81h
  2161.  dw vmx_inv_instruction-instruction_handler
  2162.  db 'ldmxcsr',10b
  2163.  dw stmxcsr_instruction-instruction_handler
  2164.  db 'loopned',0E0h
  2165.  dw loop_instruction_32bit-instruction_handler
  2166.  db 'loopneq',0E0h
  2167.  dw loop_instruction_64bit-instruction_handler
  2168.  db 'loopnew',0E0h
  2169.  dw loop_instruction_16bit-instruction_handler
  2170.  db 'loopnzd',0E0h
  2171.  dw loop_instruction_32bit-instruction_handler
  2172.  db 'loopnzq',0E0h
  2173.  dw loop_instruction_64bit-instruction_handler
  2174.  db 'loopnzw',0E0h
  2175.  dw loop_instruction_16bit-instruction_handler
  2176.  db 'mcommit',0FAh
  2177.  dw simple_instruction_f3_0f_01-instruction_handler
  2178.  db 'monitor',0C8h
  2179.  dw monitor_instruction-instruction_handler
  2180.  db 'movddup',12h
  2181.  dw sse_sd_instruction-instruction_handler
  2182.  db 'movdiri',0F9h
  2183.  dw movdiri_instruction-instruction_handler
  2184.  db 'movdq2q',0
  2185.  dw movdq2q_instruction-instruction_handler
  2186.  db 'movhlps',12h
  2187.  dw movhlps_instruction-instruction_handler
  2188.  db 'movlhps',16h
  2189.  dw movhlps_instruction-instruction_handler
  2190.  db 'movntdq',0E7h
  2191.  dw movntpd_instruction-instruction_handler
  2192.  db 'movntpd',2Bh
  2193.  dw movntpd_instruction-instruction_handler
  2194.  db 'movntps',2Bh
  2195.  dw movntps_instruction-instruction_handler
  2196.  db 'movntsd',2Bh
  2197.  dw movntsd_instruction-instruction_handler
  2198.  db 'movntss',2Bh
  2199.  dw movntss_instruction-instruction_handler
  2200.  db 'movq2dq',0
  2201.  dw movq2dq_instruction-instruction_handler
  2202.  db 'mpsadbw',42h
  2203.  dw sse4_instruction_66_3a_imm8-instruction_handler
  2204.  db 'paddusb',0DCh
  2205.  dw basic_mmx_instruction-instruction_handler
  2206.  db 'paddusw',0DDh
  2207.  dw basic_mmx_instruction-instruction_handler
  2208.  db 'palignr',0
  2209.  dw palignr_instruction-instruction_handler
  2210.  db 'pavgusb',0BFh
  2211.  dw amd3dnow_instruction-instruction_handler
  2212.  db 'pblendw',0Eh
  2213.  dw sse4_instruction_66_3a_imm8-instruction_handler
  2214.  db 'pcmpeqb',74h
  2215.  dw basic_mmx_instruction-instruction_handler
  2216.  db 'pcmpeqd',76h
  2217.  dw basic_mmx_instruction-instruction_handler
  2218.  db 'pcmpeqq',29h
  2219.  dw sse4_instruction_66_38-instruction_handler
  2220.  db 'pcmpeqw',75h
  2221.  dw basic_mmx_instruction-instruction_handler
  2222.  db 'pcmpgtb',64h
  2223.  dw basic_mmx_instruction-instruction_handler
  2224.  db 'pcmpgtd',66h
  2225.  dw basic_mmx_instruction-instruction_handler
  2226.  db 'pcmpgtq',37h
  2227.  dw sse4_instruction_66_38-instruction_handler
  2228.  db 'pcmpgtw',65h
  2229.  dw basic_mmx_instruction-instruction_handler
  2230.  db 'pcommit',0F8h
  2231.  dw pcommit_instruction-instruction_handler
  2232.  db 'pconfig',0C5h
  2233.  dw pconfig_instruction-instruction_handler
  2234.  db 'pfcmpeq',0B0h
  2235.  dw amd3dnow_instruction-instruction_handler
  2236.  db 'pfcmpge',90h
  2237.  dw amd3dnow_instruction-instruction_handler
  2238.  db 'pfcmpgt',0A0h
  2239.  dw amd3dnow_instruction-instruction_handler
  2240.  db 'pfpnacc',8Eh
  2241.  dw amd3dnow_instruction-instruction_handler
  2242.  db 'pfrsqrt',97h
  2243.  dw amd3dnow_instruction-instruction_handler
  2244.  db 'phaddsw',3
  2245.  dw ssse3_instruction-instruction_handler
  2246.  db 'phsubsw',7
  2247.  dw ssse3_instruction-instruction_handler
  2248.  db 'pmaddwd',0F5h
  2249.  dw basic_mmx_instruction-instruction_handler
  2250.  db 'pmulhrw',0B7h
  2251.  dw amd3dnow_instruction-instruction_handler
  2252.  db 'pmulhuw',0E4h
  2253.  dw basic_mmx_instruction-instruction_handler
  2254.  db 'pmuludq',0F4h
  2255.  dw basic_mmx_instruction-instruction_handler
  2256.  db 'pshufhw',0F3h
  2257.  dw pshufd_instruction-instruction_handler
  2258.  db 'pshuflw',0F2h
  2259.  dw pshufd_instruction-instruction_handler
  2260.  db 'psubusb',0D8h
  2261.  dw basic_mmx_instruction-instruction_handler
  2262.  db 'psubusw',0D9h
  2263.  dw basic_mmx_instruction-instruction_handler
  2264.  db 'ptwrite',4
  2265.  dw ptwrite_instruction-instruction_handler
  2266.  db 'roundpd',9
  2267.  dw sse4_instruction_66_3a_imm8-instruction_handler
  2268.  db 'roundps',8
  2269.  dw sse4_instruction_66_3a_imm8-instruction_handler
  2270.  db 'roundsd',0Bh
  2271.  dw sse4_sd_instruction_66_3a_imm8-instruction_handler
  2272.  db 'roundss',0Ah
  2273.  dw sse4_ss_instruction_66_3a_imm8-instruction_handler
  2274.  db 'rsqrtps',52h
  2275.  dw sse_ps_instruction-instruction_handler
  2276.  db 'rsqrtss',52h
  2277.  dw sse_ss_instruction-instruction_handler
  2278.  db 'section',0
  2279.  dw section_directive-instruction_handler
  2280.  db 'segment',0
  2281.  dw segment_directive-instruction_handler
  2282.  db 'stmxcsr',11b
  2283.  dw stmxcsr_instruction-instruction_handler
  2284.  db 'syscall',05h
  2285.  dw simple_extended_instruction-instruction_handler
  2286.  db 'sysexit',35h
  2287.  dw simple_extended_instruction-instruction_handler
  2288.  db 'sysretq',07h
  2289.  dw simple_extended_instruction_64bit-instruction_handler
  2290.  db 'tlbsync',0FFh
  2291.  dw simple_instruction_0f_01-instruction_handler
  2292.  db 'ucomisd',2Eh
  2293.  dw comisd_instruction-instruction_handler
  2294.  db 'ucomiss',2Eh
  2295.  dw comiss_instruction-instruction_handler
  2296.  db 'vaesdec',0DEh
  2297.  dw avx_instruction_38_nomask-instruction_handler
  2298.  db 'vaesenc',0DCh
  2299.  dw avx_instruction_38_nomask-instruction_handler
  2300.  db 'vaesimc',0DBh
  2301.  dw avx_single_source_128bit_instruction_38_noevex-instruction_handler
  2302.  db 'valignd',3
  2303.  dw avx_d_instruction_3a_imm8_evex-instruction_handler
  2304.  db 'valignq',3
  2305.  dw avx_q_instruction_3a_imm8_evex-instruction_handler
  2306.  db 'vandnpd',55h
  2307.  dw avx_pd_instruction-instruction_handler
  2308.  db 'vandnps',55h
  2309.  dw avx_ps_instruction-instruction_handler
  2310.  db 'vcomisd',2Fh
  2311.  dw avx_comisd_instruction-instruction_handler
  2312.  db 'vcomiss',2Fh
  2313.  dw avx_comiss_instruction-instruction_handler
  2314.  db 'vexp2pd',0C8h
  2315.  dw avx512_exp2pd_instruction-instruction_handler
  2316.  db 'vexp2ps',0C8h
  2317.  dw avx512_exp2ps_instruction-instruction_handler
  2318.  db 'vfrczpd',81h
  2319.  dw xop_single_source_instruction-instruction_handler
  2320.  db 'vfrczps',80h
  2321.  dw xop_single_source_instruction-instruction_handler
  2322.  db 'vfrczsd',83h
  2323.  dw xop_single_source_sd_instruction-instruction_handler
  2324.  db 'vfrczss',82h
  2325.  dw xop_single_source_ss_instruction-instruction_handler
  2326.  db 'vhaddpd',07Ch
  2327.  dw avx_pd_instruction_noevex-instruction_handler
  2328.  db 'vhaddps',07Ch
  2329.  dw avx_ps_instruction_noevex-instruction_handler
  2330.  db 'vhsubpd',07Dh
  2331.  dw avx_pd_instruction_noevex-instruction_handler
  2332.  db 'vhsubps',07Dh
  2333.  dw avx_ps_instruction_noevex-instruction_handler
  2334.  db 'virtual',0
  2335.  dw virtual_directive-instruction_handler
  2336.  db 'vmclear',6
  2337.  dw vmclear_instruction-instruction_handler
  2338.  db 'vmmcall',0D9h
  2339.  dw simple_instruction_0f_01-instruction_handler
  2340.  db 'vmovapd',28h
  2341.  dw avx_movpd_instruction-instruction_handler
  2342.  db 'vmovaps',28h
  2343.  dw avx_movps_instruction-instruction_handler
  2344.  db 'vmovdqa',6Fh
  2345.  dw avx_movdqa_instruction-instruction_handler
  2346.  db 'vmovdqu',6Fh
  2347.  dw avx_movdqu_instruction-instruction_handler
  2348.  db 'vmovhpd',16h
  2349.  dw avx_movlpd_instruction-instruction_handler
  2350.  db 'vmovhps',16h
  2351.  dw avx_movlps_instruction-instruction_handler
  2352.  db 'vmovlpd',12h
  2353.  dw avx_movlpd_instruction-instruction_handler
  2354.  db 'vmovlps',12h
  2355.  dw avx_movlps_instruction-instruction_handler
  2356.  db 'vmovupd',10h
  2357.  dw avx_movpd_instruction-instruction_handler
  2358.  db 'vmovups',10h
  2359.  dw avx_movps_instruction-instruction_handler
  2360.  db 'vmptrld',6
  2361.  dw vmx_instruction-instruction_handler
  2362.  db 'vmptrst',7
  2363.  dw vmx_instruction-instruction_handler
  2364.  db 'vmwrite',0
  2365.  dw vmwrite_instruction-instruction_handler
  2366.  db 'vpaddsb',0ECh
  2367.  dw avx_bw_instruction-instruction_handler
  2368.  db 'vpaddsw',0EDh
  2369.  dw avx_bw_instruction-instruction_handler
  2370.  db 'vpandnd',0DFh
  2371.  dw avx_d_instruction_evex-instruction_handler
  2372.  db 'vpandnq',0DFh
  2373.  dw avx_q_instruction_evex-instruction_handler
  2374.  db 'vpcmpub',-1
  2375.  dw avx512_cmp_ub_instruction-instruction_handler
  2376.  db 'vpcmpud',-1
  2377.  dw avx512_cmp_ud_instruction-instruction_handler
  2378.  db 'vpcmpuq',-1
  2379.  dw avx512_cmp_uq_instruction-instruction_handler
  2380.  db 'vpcmpuw',-1
  2381.  dw avx512_cmp_uw_instruction-instruction_handler
  2382.  db 'vpcomub',-1
  2383.  dw xop_pcom_ub_instruction-instruction_handler
  2384.  db 'vpcomud',-1
  2385.  dw xop_pcom_ud_instruction-instruction_handler
  2386.  db 'vpcomuq',-1
  2387.  dw xop_pcom_uq_instruction-instruction_handler
  2388.  db 'vpcomuw',-1
  2389.  dw xop_pcom_uw_instruction-instruction_handler
  2390.  db 'vpermpd',1
  2391.  dw avx_permq_instruction-instruction_handler
  2392.  db 'vpermps',16h
  2393.  dw avx_permd_instruction-instruction_handler
  2394.  db 'vpextrb',14h
  2395.  dw avx_extract_b_instruction-instruction_handler
  2396.  db 'vpextrd',16h
  2397.  dw avx_extract_d_instruction-instruction_handler
  2398.  db 'vpextrq',16h
  2399.  dw avx_extract_q_instruction-instruction_handler
  2400.  db 'vpextrw',15h
  2401.  dw avx_extract_w_instruction-instruction_handler
  2402.  db 'vphaddd',2
  2403.  dw avx_pi_instruction_38_noevex-instruction_handler
  2404.  db 'vphaddw',1
  2405.  dw avx_pi_instruction_38_noevex-instruction_handler
  2406.  db 'vphsubd',6
  2407.  dw avx_pi_instruction_38_noevex-instruction_handler
  2408.  db 'vphsubw',5
  2409.  dw avx_pi_instruction_38_noevex-instruction_handler
  2410.  db 'vpinsrb',20h
  2411.  dw avx_pinsrb_instruction-instruction_handler
  2412.  db 'vpinsrd',22h
  2413.  dw avx_pinsrd_instruction-instruction_handler
  2414.  db 'vpinsrq',22h
  2415.  dw avx_pinsrq_instruction-instruction_handler
  2416.  db 'vpinsrw',0C4h
  2417.  dw avx_pinsrw_instruction-instruction_handler
  2418.  db 'vpmaxsb',3Ch
  2419.  dw avx_bw_instruction_38-instruction_handler
  2420.  db 'vpmaxsd',3Dh
  2421.  dw avx_d_instruction_38-instruction_handler
  2422.  db 'vpmaxsq',3Dh
  2423.  dw avx_q_instruction_38_evex-instruction_handler
  2424.  db 'vpmaxsw',0EEh
  2425.  dw avx_bw_instruction-instruction_handler
  2426.  db 'vpmaxub',0DEh
  2427.  dw avx_bw_instruction-instruction_handler
  2428.  db 'vpmaxud',3Fh
  2429.  dw avx_d_instruction_38-instruction_handler
  2430.  db 'vpmaxuq',3Fh
  2431.  dw avx_q_instruction_38_evex-instruction_handler
  2432.  db 'vpmaxuw',3Eh
  2433.  dw avx_bw_instruction_38-instruction_handler
  2434.  db 'vpminsb',38h
  2435.  dw avx_bw_instruction_38-instruction_handler
  2436.  db 'vpminsd',39h
  2437.  dw avx_d_instruction_38-instruction_handler
  2438.  db 'vpminsq',39h
  2439.  dw avx_q_instruction_38_evex-instruction_handler
  2440.  db 'vpminsw',0EAh
  2441.  dw avx_bw_instruction-instruction_handler
  2442.  db 'vpminub',0DAh
  2443.  dw avx_bw_instruction-instruction_handler
  2444.  db 'vpminud',3Bh
  2445.  dw avx_d_instruction_38-instruction_handler
  2446.  db 'vpminuq',3Bh
  2447.  dw avx_q_instruction_38_evex-instruction_handler
  2448.  db 'vpminuw',3Ah
  2449.  dw avx_bw_instruction_38-instruction_handler
  2450.  db 'vpmovdb',31h
  2451.  dw avx512_pmovdb_instruction-instruction_handler
  2452.  db 'vpmovdw',33h
  2453.  dw avx512_pmovwb_instruction-instruction_handler
  2454.  db 'vpmovqb',32h
  2455.  dw avx512_pmovqb_instruction-instruction_handler
  2456.  db 'vpmovqd',35h
  2457.  dw avx512_pmovwb_instruction-instruction_handler
  2458.  db 'vpmovqw',34h
  2459.  dw avx512_pmovdb_instruction-instruction_handler
  2460.  db 'vpmovwb',30h
  2461.  dw avx512_pmovwb_instruction-instruction_handler
  2462.  db 'vpmuldq',28h
  2463.  dw avx_q_instruction_38-instruction_handler
  2464.  db 'vpmulhw',0E5h
  2465.  dw avx_bw_instruction-instruction_handler
  2466.  db 'vpmulld',40h
  2467.  dw avx_d_instruction_38-instruction_handler
  2468.  db 'vpmullq',40h
  2469.  dw avx_q_instruction_38_evex-instruction_handler
  2470.  db 'vpmullw',0D5h
  2471.  dw avx_bw_instruction-instruction_handler
  2472.  db 'vprolvd',15h
  2473.  dw avx_d_instruction_38_evex-instruction_handler
  2474.  db 'vprolvq',15h
  2475.  dw avx_q_instruction_38_evex-instruction_handler
  2476.  db 'vprorvd',14h
  2477.  dw avx_d_instruction_38_evex-instruction_handler
  2478.  db 'vprorvq',14h
  2479.  dw avx_q_instruction_38_evex-instruction_handler
  2480.  db 'vpsadbw',0F6h
  2481.  dw avx_bw_instruction-instruction_handler
  2482.  db 'vpshldd',71h
  2483.  dw avx_d_instruction_3a_imm8_evex-instruction_handler
  2484.  db 'vpshldq',71h
  2485.  dw avx_q_instruction_3a_imm8_evex-instruction_handler
  2486.  db 'vpshldw',70h
  2487.  dw avx_bw_instruction_3a_imm8_w1_evex-instruction_handler
  2488.  db 'vpshrdd',73h
  2489.  dw avx_d_instruction_3a_imm8_evex-instruction_handler
  2490.  db 'vpshrdq',73h
  2491.  dw avx_q_instruction_3a_imm8_evex-instruction_handler
  2492.  db 'vpshrdw',72h
  2493.  dw avx_bw_instruction_3a_imm8_w1_evex-instruction_handler
  2494.  db 'vpshufb',0
  2495.  dw avx_bw_instruction_38-instruction_handler
  2496.  db 'vpshufd',70h
  2497.  dw avx_single_source_d_instruction_imm8-instruction_handler
  2498.  db 'vpsignb',8
  2499.  dw avx_pi_instruction_38_noevex-instruction_handler
  2500.  db 'vpsignd',0Ah
  2501.  dw avx_pi_instruction_38_noevex-instruction_handler
  2502.  db 'vpsignw',9
  2503.  dw avx_pi_instruction_38_noevex-instruction_handler
  2504.  db 'vpslldq',111b
  2505.  dw avx_shift_dq_instruction-instruction_handler
  2506.  db 'vpsllvd',47h
  2507.  dw avx_d_instruction_38-instruction_handler
  2508.  db 'vpsllvq',47h
  2509.  dw avx_q_instruction_38_w1-instruction_handler
  2510.  db 'vpsllvw',12h
  2511.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  2512.  db 'vpsravd',46h
  2513.  dw avx_d_instruction_38-instruction_handler
  2514.  db 'vpsravq',46h
  2515.  dw avx_q_instruction_38_w1_evex-instruction_handler
  2516.  db 'vpsravw',11h
  2517.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  2518.  db 'vpsrldq',011b
  2519.  dw avx_shift_dq_instruction-instruction_handler
  2520.  db 'vpsrlvd',45h
  2521.  dw avx_d_instruction_38-instruction_handler
  2522.  db 'vpsrlvq',45h
  2523.  dw avx_q_instruction_38_w1-instruction_handler
  2524.  db 'vpsrlvw',10h
  2525.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  2526.  db 'vpsubsb',0E8h
  2527.  dw avx_bw_instruction-instruction_handler
  2528.  db 'vpsubsw',0E9h
  2529.  dw avx_bw_instruction-instruction_handler
  2530.  db 'vshufpd',0C6h
  2531.  dw avx_pd_instruction_imm8-instruction_handler
  2532.  db 'vshufps',0C6h
  2533.  dw avx_ps_instruction_imm8-instruction_handler
  2534.  db 'vsqrtpd',51h
  2535.  dw avx_single_source_pd_instruction_er-instruction_handler
  2536.  db 'vsqrtps',51h
  2537.  dw avx_single_source_ps_instruction_er-instruction_handler
  2538.  db 'vsqrtsd',51h
  2539.  dw avx_sd_instruction_er-instruction_handler
  2540.  db 'vsqrtss',51h
  2541.  dw avx_ss_instruction_er-instruction_handler
  2542.  db 'vtestpd',0Fh
  2543.  dw avx_single_source_instruction_38_noevex-instruction_handler
  2544.  db 'vtestps',0Eh
  2545.  dw avx_single_source_instruction_38_noevex-instruction_handler
  2546.  db 'xrstors',3
  2547.  dw xsaves_instruction-instruction_handler
  2548.  db 'xsave64',100b
  2549.  dw fxsave_instruction_64bit-instruction_handler
  2550. instructions_8:
  2551.  db 'addsubpd',0D0h
  2552.  dw sse_pd_instruction-instruction_handler
  2553.  db 'addsubps',0D0h
  2554.  dw cvtpd2dq_instruction-instruction_handler
  2555.  db 'blendvpd',15h
  2556.  dw sse4_instruction_66_38_xmm0-instruction_handler
  2557.  db 'blendvps',14h
  2558.  dw sse4_instruction_66_38_xmm0-instruction_handler
  2559.  db 'cldemote',0
  2560.  dw cldemote_instruction-instruction_handler
  2561.  db 'clrssbsy',6
  2562.  dw clrssbsy_instruction-instruction_handler
  2563.  db 'cmpneqpd',4
  2564.  dw cmp_pd_instruction-instruction_handler
  2565.  db 'cmpneqps',4
  2566.  dw cmp_ps_instruction-instruction_handler
  2567.  db 'cmpneqsd',4
  2568.  dw cmp_sd_instruction-instruction_handler
  2569.  db 'cmpneqss',4
  2570.  dw cmp_ss_instruction-instruction_handler
  2571.  db 'cmpnlepd',6
  2572.  dw cmp_pd_instruction-instruction_handler
  2573.  db 'cmpnleps',6
  2574.  dw cmp_ps_instruction-instruction_handler
  2575.  db 'cmpnlesd',6
  2576.  dw cmp_sd_instruction-instruction_handler
  2577.  db 'cmpnless',6
  2578.  dw cmp_ss_instruction-instruction_handler
  2579.  db 'cmpnltpd',5
  2580.  dw cmp_pd_instruction-instruction_handler
  2581.  db 'cmpnltps',5
  2582.  dw cmp_ps_instruction-instruction_handler
  2583.  db 'cmpnltsd',5
  2584.  dw cmp_sd_instruction-instruction_handler
  2585.  db 'cmpnltss',5
  2586.  dw cmp_ss_instruction-instruction_handler
  2587.  db 'cmpordpd',7
  2588.  dw cmp_pd_instruction-instruction_handler
  2589.  db 'cmpordps',7
  2590.  dw cmp_ps_instruction-instruction_handler
  2591.  db 'cmpordsd',7
  2592.  dw cmp_sd_instruction-instruction_handler
  2593.  db 'cmpordss',7
  2594.  dw cmp_ss_instruction-instruction_handler
  2595.  db 'cvtdq2pd',0E6h
  2596.  dw cvtdq2pd_instruction-instruction_handler
  2597.  db 'cvtdq2ps',5Bh
  2598.  dw sse_ps_instruction-instruction_handler
  2599.  db 'cvtpd2dq',0E6h
  2600.  dw cvtpd2dq_instruction-instruction_handler
  2601.  db 'cvtpd2pi',2Dh
  2602.  dw cvtpd2pi_instruction-instruction_handler
  2603.  db 'cvtpd2ps',5Ah
  2604.  dw sse_pd_instruction-instruction_handler
  2605.  db 'cvtpi2pd',2Ah
  2606.  dw cvtpi2pd_instruction-instruction_handler
  2607.  db 'cvtpi2ps',2Ah
  2608.  dw cvtpi2ps_instruction-instruction_handler
  2609.  db 'cvtps2dq',5Bh
  2610.  dw sse_pd_instruction-instruction_handler
  2611.  db 'cvtps2pd',5Ah
  2612.  dw cvtps2pd_instruction-instruction_handler
  2613.  db 'cvtps2pi',2Dh
  2614.  dw cvtps2pi_instruction-instruction_handler
  2615.  db 'cvtsd2si',2Dh
  2616.  dw cvtsd2si_instruction-instruction_handler
  2617.  db 'cvtsd2ss',5Ah
  2618.  dw sse_sd_instruction-instruction_handler
  2619.  db 'cvtsi2sd',2Ah
  2620.  dw cvtsi2sd_instruction-instruction_handler
  2621.  db 'cvtsi2ss',2Ah
  2622.  dw cvtsi2ss_instruction-instruction_handler
  2623.  db 'cvtss2sd',5Ah
  2624.  dw sse_ss_instruction-instruction_handler
  2625.  db 'cvtss2si',2Dh
  2626.  dw cvtss2si_instruction-instruction_handler
  2627.  db 'fcmovnbe',0D0h
  2628.  dw fcomi_instruction-instruction_handler
  2629.  db 'fnstenvd',6
  2630.  dw fldenv_instruction_32bit-instruction_handler
  2631.  db 'fnstenvw',6
  2632.  dw fldenv_instruction_16bit-instruction_handler
  2633.  db 'fxsave64',0
  2634.  dw fxsave_instruction_64bit-instruction_handler
  2635.  db 'insertps',21h
  2636.  dw insertps_instruction-instruction_handler
  2637.  db 'kortestb',98h
  2638.  dw mask_instruction_single_source_b-instruction_handler
  2639.  db 'kortestd',98h
  2640.  dw mask_instruction_single_source_d-instruction_handler
  2641.  db 'kortestq',98h
  2642.  dw mask_instruction_single_source_q-instruction_handler
  2643.  db 'kortestw',98h
  2644.  dw mask_instruction_single_source_w-instruction_handler
  2645.  db 'kshiftlb',32h
  2646.  dw mask_shift_instruction_d-instruction_handler
  2647.  db 'kshiftld',33h
  2648.  dw mask_shift_instruction_d-instruction_handler
  2649.  db 'kshiftlq',33h
  2650.  dw mask_shift_instruction_q-instruction_handler
  2651.  db 'kshiftlw',32h
  2652.  dw mask_shift_instruction_q-instruction_handler
  2653.  db 'kshiftrb',30h
  2654.  dw mask_shift_instruction_d-instruction_handler
  2655.  db 'kshiftrd',31h
  2656.  dw mask_shift_instruction_d-instruction_handler
  2657.  db 'kshiftrq',31h
  2658.  dw mask_shift_instruction_q-instruction_handler
  2659.  db 'kshiftrw',30h
  2660.  dw mask_shift_instruction_q-instruction_handler
  2661.  db 'kunpckbw',4Bh
  2662.  dw mask_instruction_b-instruction_handler
  2663.  db 'kunpckdq',4Bh
  2664.  dw mask_instruction_q-instruction_handler
  2665.  db 'kunpckwd',4Bh
  2666.  dw mask_instruction_w-instruction_handler
  2667.  db 'maskmovq',0
  2668.  dw maskmovq_instruction-instruction_handler
  2669.  db 'monitorx',0FAh
  2670.  dw monitor_instruction-instruction_handler
  2671.  db 'movmskpd',0
  2672.  dw movmskpd_instruction-instruction_handler
  2673.  db 'movmskps',0
  2674.  dw movmskps_instruction-instruction_handler
  2675.  db 'movntdqa',2Ah
  2676.  dw movntdqa_instruction-instruction_handler
  2677.  db 'movshdup',16h
  2678.  dw movshdup_instruction-instruction_handler
  2679.  db 'movsldup',12h
  2680.  dw movshdup_instruction-instruction_handler
  2681.  db 'packssdw',6Bh
  2682.  dw basic_mmx_instruction-instruction_handler
  2683.  db 'packsswb',63h
  2684.  dw basic_mmx_instruction-instruction_handler
  2685.  db 'packusdw',2Bh
  2686.  dw sse4_instruction_66_38-instruction_handler
  2687.  db 'packuswb',67h
  2688.  dw basic_mmx_instruction-instruction_handler
  2689.  db 'pblendvb',10h
  2690.  dw sse4_instruction_66_38_xmm0-instruction_handler
  2691.  db 'pfrcpit1',0A6h
  2692.  dw amd3dnow_instruction-instruction_handler
  2693.  db 'pfrcpit2',0B6h
  2694.  dw amd3dnow_instruction-instruction_handler
  2695.  db 'pfrsqit1',0A7h
  2696.  dw amd3dnow_instruction-instruction_handler
  2697.  db 'pmovmskb',0D7h
  2698.  dw pmovmskb_instruction-instruction_handler
  2699.  db 'pmovsxbd',21h
  2700.  dw pmovsxbd_instruction-instruction_handler
  2701.  db 'pmovsxbq',22h
  2702.  dw pmovsxbq_instruction-instruction_handler
  2703.  db 'pmovsxbw',20h
  2704.  dw pmovsxbw_instruction-instruction_handler
  2705.  db 'pmovsxdq',25h
  2706.  dw pmovsxdq_instruction-instruction_handler
  2707.  db 'pmovsxwd',23h
  2708.  dw pmovsxwd_instruction-instruction_handler
  2709.  db 'pmovsxwq',24h
  2710.  dw pmovsxwq_instruction-instruction_handler
  2711.  db 'pmovzxbd',31h
  2712.  dw pmovsxbd_instruction-instruction_handler
  2713.  db 'pmovzxbq',32h
  2714.  dw pmovsxbq_instruction-instruction_handler
  2715.  db 'pmovzxbw',30h
  2716.  dw pmovsxbw_instruction-instruction_handler
  2717.  db 'pmovzxdq',35h
  2718.  dw pmovsxdq_instruction-instruction_handler
  2719.  db 'pmovzxwd',33h
  2720.  dw pmovsxwd_instruction-instruction_handler
  2721.  db 'pmovzxwq',34h
  2722.  dw pmovsxwq_instruction-instruction_handler
  2723.  db 'pmulhrsw',0Bh
  2724.  dw ssse3_instruction-instruction_handler
  2725.  db 'prefetch',0
  2726.  dw amd_prefetch_instruction-instruction_handler
  2727.  db 'rdfsbase',0
  2728.  dw rdfsbase_instruction-instruction_handler
  2729.  db 'rdgsbase',1
  2730.  dw rdfsbase_instruction-instruction_handler
  2731.  db 'rstorssp',5
  2732.  dw rstorssp_instruction-instruction_handler
  2733.  db 'setssbsy',0E8h
  2734.  dw setssbsy_instruction-instruction_handler
  2735.  db 'sha1msg1',0C9h
  2736.  dw sse4_instruction_38-instruction_handler
  2737.  db 'sha1msg2',0CAh
  2738.  dw sse4_instruction_38-instruction_handler
  2739.  db 'sysenter',34h
  2740.  dw simple_extended_instruction-instruction_handler
  2741.  db 'sysexitq',35h
  2742.  dw simple_extended_instruction_64bit-instruction_handler
  2743.  db 'umonitor',0
  2744.  dw umonitor_instruction-instruction_handler
  2745.  db 'unpckhpd',15h
  2746.  dw sse_pd_instruction-instruction_handler
  2747.  db 'unpckhps',15h
  2748.  dw sse_ps_instruction-instruction_handler
  2749.  db 'unpcklpd',14h
  2750.  dw sse_pd_instruction-instruction_handler
  2751.  db 'unpcklps',14h
  2752.  dw sse_ps_instruction-instruction_handler
  2753.  db 'vblendpd',0Dh
  2754.  dw avx_pi_instruction_3a_imm8_noevex-instruction_handler
  2755.  db 'vblendps',0Ch
  2756.  dw avx_pi_instruction_3a_imm8_noevex-instruction_handler
  2757.  db 'vcmpeqpd',0
  2758.  dw avx_cmp_pd_instruction-instruction_handler
  2759.  db 'vcmpeqps',0
  2760.  dw avx_cmp_ps_instruction-instruction_handler
  2761.  db 'vcmpeqsd',0
  2762.  dw avx_cmp_sd_instruction-instruction_handler
  2763.  db 'vcmpeqss',0
  2764.  dw avx_cmp_ss_instruction-instruction_handler
  2765.  db 'vcmpgepd',0Dh
  2766.  dw avx_cmp_pd_instruction-instruction_handler
  2767.  db 'vcmpgeps',0Dh
  2768.  dw avx_cmp_ps_instruction-instruction_handler
  2769.  db 'vcmpgesd',0Dh
  2770.  dw avx_cmp_sd_instruction-instruction_handler
  2771.  db 'vcmpgess',0Dh
  2772.  dw avx_cmp_ss_instruction-instruction_handler
  2773.  db 'vcmpgtpd',0Eh
  2774.  dw avx_cmp_pd_instruction-instruction_handler
  2775.  db 'vcmpgtps',0Eh
  2776.  dw avx_cmp_ps_instruction-instruction_handler
  2777.  db 'vcmpgtsd',0Eh
  2778.  dw avx_cmp_sd_instruction-instruction_handler
  2779.  db 'vcmpgtss',0Eh
  2780.  dw avx_cmp_ss_instruction-instruction_handler
  2781.  db 'vcmplepd',2
  2782.  dw avx_cmp_pd_instruction-instruction_handler
  2783.  db 'vcmpleps',2
  2784.  dw avx_cmp_ps_instruction-instruction_handler
  2785.  db 'vcmplesd',2
  2786.  dw avx_cmp_sd_instruction-instruction_handler
  2787.  db 'vcmpless',2
  2788.  dw avx_cmp_ss_instruction-instruction_handler
  2789.  db 'vcmpltpd',1
  2790.  dw avx_cmp_pd_instruction-instruction_handler
  2791.  db 'vcmpltps',1
  2792.  dw avx_cmp_ps_instruction-instruction_handler
  2793.  db 'vcmpltsd',1
  2794.  dw avx_cmp_sd_instruction-instruction_handler
  2795.  db 'vcmpltss',1
  2796.  dw avx_cmp_ss_instruction-instruction_handler
  2797.  db 'vfmaddpd',69h
  2798.  dw fma4_instruction_p-instruction_handler
  2799.  db 'vfmaddps',68h
  2800.  dw fma4_instruction_p-instruction_handler
  2801.  db 'vfmaddsd',6Bh
  2802.  dw fma4_instruction_sd-instruction_handler
  2803.  db 'vfmaddss',6Ah
  2804.  dw fma4_instruction_ss-instruction_handler
  2805.  db 'vfmsubpd',6Dh
  2806.  dw fma4_instruction_p-instruction_handler
  2807.  db 'vfmsubps',6Ch
  2808.  dw fma4_instruction_p-instruction_handler
  2809.  db 'vfmsubsd',6Fh
  2810.  dw fma4_instruction_sd-instruction_handler
  2811.  db 'vfmsubss',6Eh
  2812.  dw fma4_instruction_ss-instruction_handler
  2813.  db 'vldmxcsr',10b
  2814.  dw vldmxcsr_instruction-instruction_handler
  2815.  db 'vmlaunch',0C2h
  2816.  dw simple_instruction_0f_01-instruction_handler
  2817.  db 'vmovddup',12h
  2818.  dw avx_movddup_instruction-instruction_handler
  2819.  db 'vmovdqu8',6Fh
  2820.  dw avx512_movdqu8_instruction-instruction_handler
  2821.  db 'vmovhlps',12h
  2822.  dw avx_movhlps_instruction-instruction_handler
  2823.  db 'vmovlhps',16h
  2824.  dw avx_movhlps_instruction-instruction_handler
  2825.  db 'vmovntdq',0E7h
  2826.  dw avx_movntdq_instruction-instruction_handler
  2827.  db 'vmovntpd',2Bh
  2828.  dw avx_movntpd_instruction-instruction_handler
  2829.  db 'vmovntps',2Bh
  2830.  dw avx_movntps_instruction-instruction_handler
  2831.  db 'vmpsadbw',42h
  2832.  dw avx_pi_instruction_3a_imm8_noevex-instruction_handler
  2833.  db 'vmresume',0C3h
  2834.  dw simple_instruction_0f_01-instruction_handler
  2835.  db 'vpaddusb',0DCh
  2836.  dw avx_bw_instruction-instruction_handler
  2837.  db 'vpaddusw',0DDh
  2838.  dw avx_bw_instruction-instruction_handler
  2839.  db 'vpalignr',0Fh
  2840.  dw avx_pi_instruction_3a_imm8-instruction_handler
  2841.  db 'vpblendd',2
  2842.  dw avx_pi_instruction_3a_imm8_noevex-instruction_handler
  2843.  db 'vpblendw',0Eh
  2844.  dw avx_pi_instruction_3a_imm8_noevex-instruction_handler
  2845.  db 'vpcmpeqb',74h
  2846.  dw avx_cmpeqb_instruction-instruction_handler
  2847.  db 'vpcmpeqd',76h
  2848.  dw avx_cmpeqd_instruction-instruction_handler
  2849.  db 'vpcmpeqq',29h
  2850.  dw avx_cmpeqq_instruction-instruction_handler
  2851.  db 'vpcmpeqw',75h
  2852.  dw avx_cmpeqb_instruction-instruction_handler
  2853.  db 'vpcmpgtb',64h
  2854.  dw avx_cmpeqb_instruction-instruction_handler
  2855.  db 'vpcmpgtd',66h
  2856.  dw avx_cmpeqd_instruction-instruction_handler
  2857.  db 'vpcmpgtq',37h
  2858.  dw avx_cmpeqq_instruction-instruction_handler
  2859.  db 'vpcmpgtw',65h
  2860.  dw avx_cmpeqb_instruction-instruction_handler
  2861.  db 'vpcmpleb',2
  2862.  dw avx512_cmp_b_instruction-instruction_handler
  2863.  db 'vpcmpled',2
  2864.  dw avx512_cmp_d_instruction-instruction_handler
  2865.  db 'vpcmpleq',2
  2866.  dw avx512_cmp_q_instruction-instruction_handler
  2867.  db 'vpcmplew',2
  2868.  dw avx512_cmp_w_instruction-instruction_handler
  2869.  db 'vpcmpltb',1
  2870.  dw avx512_cmp_b_instruction-instruction_handler
  2871.  db 'vpcmpltd',1
  2872.  dw avx512_cmp_d_instruction-instruction_handler
  2873.  db 'vpcmpltq',1
  2874.  dw avx512_cmp_q_instruction-instruction_handler
  2875.  db 'vpcmpltw',1
  2876.  dw avx512_cmp_w_instruction-instruction_handler
  2877.  db 'vpcomeqb',4
  2878.  dw xop_pcom_b_instruction-instruction_handler
  2879.  db 'vpcomeqd',4
  2880.  dw xop_pcom_d_instruction-instruction_handler
  2881.  db 'vpcomeqq',4
  2882.  dw xop_pcom_q_instruction-instruction_handler
  2883.  db 'vpcomeqw',4
  2884.  dw xop_pcom_w_instruction-instruction_handler
  2885.  db 'vpcomgeb',3
  2886.  dw xop_pcom_b_instruction-instruction_handler
  2887.  db 'vpcomged',3
  2888.  dw xop_pcom_d_instruction-instruction_handler
  2889.  db 'vpcomgeq',3
  2890.  dw xop_pcom_q_instruction-instruction_handler
  2891.  db 'vpcomgew',3
  2892.  dw xop_pcom_w_instruction-instruction_handler
  2893.  db 'vpcomgtb',2
  2894.  dw xop_pcom_b_instruction-instruction_handler
  2895.  db 'vpcomgtd',2
  2896.  dw xop_pcom_d_instruction-instruction_handler
  2897.  db 'vpcomgtq',2
  2898.  dw xop_pcom_q_instruction-instruction_handler
  2899.  db 'vpcomgtw',2
  2900.  dw xop_pcom_w_instruction-instruction_handler
  2901.  db 'vpcomleb',1
  2902.  dw xop_pcom_b_instruction-instruction_handler
  2903.  db 'vpcomled',1
  2904.  dw xop_pcom_d_instruction-instruction_handler
  2905.  db 'vpcomleq',1
  2906.  dw xop_pcom_q_instruction-instruction_handler
  2907.  db 'vpcomlew',1
  2908.  dw xop_pcom_w_instruction-instruction_handler
  2909.  db 'vpcomltb',0
  2910.  dw xop_pcom_b_instruction-instruction_handler
  2911.  db 'vpcomltd',0
  2912.  dw xop_pcom_d_instruction-instruction_handler
  2913.  db 'vpcomltq',0
  2914.  dw xop_pcom_q_instruction-instruction_handler
  2915.  db 'vpcomltw',0
  2916.  dw xop_pcom_w_instruction-instruction_handler
  2917.  db 'vpdpbusd',50h
  2918.  dw avx_d_instruction_38_evex-instruction_handler
  2919.  db 'vpdpwssd',52h
  2920.  dw avx_d_instruction_38_evex-instruction_handler
  2921.  db 'vpermi2b',75h
  2922.  dw avx_bw_instruction_38_evex-instruction_handler
  2923.  db 'vpermi2d',76h
  2924.  dw avx_d_instruction_38_evex-instruction_handler
  2925.  db 'vpermi2q',76h
  2926.  dw avx_q_instruction_38_evex-instruction_handler
  2927.  db 'vpermi2w',75h
  2928.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  2929.  db 'vpermt2b',7Dh
  2930.  dw avx_bw_instruction_38_evex-instruction_handler
  2931.  db 'vpermt2d',7Eh
  2932.  dw avx_d_instruction_38_evex-instruction_handler
  2933.  db 'vpermt2q',7Eh
  2934.  dw avx_q_instruction_38_evex-instruction_handler
  2935.  db 'vpermt2w',7Dh
  2936.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  2937.  db 'vphaddbd',0C2h
  2938.  dw xop_single_source_128bit_instruction-instruction_handler
  2939.  db 'vphaddbq',0C3h
  2940.  dw xop_single_source_128bit_instruction-instruction_handler
  2941.  db 'vphaddbw',0C1h
  2942.  dw xop_single_source_128bit_instruction-instruction_handler
  2943.  db 'vphadddq',0CBh
  2944.  dw xop_single_source_128bit_instruction-instruction_handler
  2945.  db 'vphaddsw',3
  2946.  dw avx_pi_instruction_38_noevex-instruction_handler
  2947.  db 'vphaddwd',0C6h
  2948.  dw xop_single_source_128bit_instruction-instruction_handler
  2949.  db 'vphaddwq',0C7h
  2950.  dw xop_single_source_128bit_instruction-instruction_handler
  2951.  db 'vphsubbw',0E1h
  2952.  dw xop_single_source_128bit_instruction-instruction_handler
  2953.  db 'vphsubdq',0E3h
  2954.  dw xop_single_source_128bit_instruction-instruction_handler
  2955.  db 'vphsubsw',7
  2956.  dw avx_pi_instruction_38_noevex-instruction_handler
  2957.  db 'vphsubwd',0E2h
  2958.  dw xop_single_source_128bit_instruction-instruction_handler
  2959.  db 'vplzcntd',44h
  2960.  dw avx_single_source_d_instruction_38_evex-instruction_handler
  2961.  db 'vplzcntq',44h
  2962.  dw avx_single_source_q_instruction_38_evex-instruction_handler
  2963.  db 'vpmacsdd',9Eh
  2964.  dw xop_triple_source_128bit_instruction-instruction_handler
  2965.  db 'vpmacswd',96h
  2966.  dw xop_triple_source_128bit_instruction-instruction_handler
  2967.  db 'vpmacsww',95h
  2968.  dw xop_triple_source_128bit_instruction-instruction_handler
  2969.  db 'vpmaddwd',0F5h
  2970.  dw avx_bw_instruction-instruction_handler
  2971.  db 'vpmovb2m',29h
  2972.  dw avx512_pmov_2m_instruction-instruction_handler
  2973.  db 'vpmovd2m',39h
  2974.  dw avx512_pmov_2m_instruction-instruction_handler
  2975.  db 'vpmovm2b',28h
  2976.  dw avx512_pmov_m2_instruction-instruction_handler
  2977.  db 'vpmovm2d',38h
  2978.  dw avx512_pmov_m2_instruction-instruction_handler
  2979.  db 'vpmovm2q',38h
  2980.  dw avx512_pmov_m2_instruction_w1-instruction_handler
  2981.  db 'vpmovm2w',28h
  2982.  dw avx512_pmov_m2_instruction_w1-instruction_handler
  2983.  db 'vpmovq2m',39h
  2984.  dw avx512_pmov_2m_instruction_w1-instruction_handler
  2985.  db 'vpmovsdb',21h
  2986.  dw avx512_pmovdb_instruction-instruction_handler
  2987.  db 'vpmovsdw',23h
  2988.  dw avx512_pmovwb_instruction-instruction_handler
  2989.  db 'vpmovsqb',22h
  2990.  dw avx512_pmovqb_instruction-instruction_handler
  2991.  db 'vpmovsqd',25h
  2992.  dw avx512_pmovwb_instruction-instruction_handler
  2993.  db 'vpmovsqw',24h
  2994.  dw avx512_pmovdb_instruction-instruction_handler
  2995.  db 'vpmovswb',20h
  2996.  dw avx512_pmovwb_instruction-instruction_handler
  2997.  db 'vpmovw2m',29h
  2998.  dw avx512_pmov_2m_instruction_w1-instruction_handler
  2999.  db 'vpmulhuw',0E4h
  3000.  dw avx_bw_instruction-instruction_handler
  3001.  db 'vpmuludq',0F4h
  3002.  dw avx_q_instruction-instruction_handler
  3003.  db 'vpopcntb',54h
  3004.  dw avx_single_source_d_instruction_38_evex-instruction_handler
  3005.  db 'vpopcntd',55h
  3006.  dw avx512_single_source_ps_instruction-instruction_handler
  3007.  db 'vpopcntq',55h
  3008.  dw avx512_single_source_pd_instruction-instruction_handler
  3009.  db 'vpopcntw',54h
  3010.  dw avx_single_source_d_instruction_38_evex_w1-instruction_handler
  3011.  db 'vpshldvd',71h
  3012.  dw avx_d_instruction_38_evex-instruction_handler
  3013.  db 'vpshldvq',71h
  3014.  dw avx_q_instruction_38_evex-instruction_handler
  3015.  db 'vpshldvw',70h
  3016.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  3017.  db 'vpshrdvd',73h
  3018.  dw avx_d_instruction_38_evex-instruction_handler
  3019.  db 'vpshrdvq',73h
  3020.  dw avx_q_instruction_38_evex-instruction_handler
  3021.  db 'vpshrdvw',72
  3022.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  3023.  db 'vpshufhw',0F3h
  3024.  dw avx_pshuf_w_instruction-instruction_handler
  3025.  db 'vpshuflw',0F2h
  3026.  dw avx_pshuf_w_instruction-instruction_handler
  3027.  db 'vpsubusb',0D8h
  3028.  dw avx_bw_instruction-instruction_handler
  3029.  db 'vpsubusw',0D9h
  3030.  dw avx_bw_instruction-instruction_handler
  3031.  db 'vptestmb',26h
  3032.  dw avx512_ptestmb_instruction-instruction_handler
  3033.  db 'vptestmd',27h
  3034.  dw avx512_ptestmd_instruction-instruction_handler
  3035.  db 'vptestmq',27h
  3036.  dw avx512_ptestmq_instruction-instruction_handler
  3037.  db 'vptestmw',26h
  3038.  dw avx512_ptestmw_instruction-instruction_handler
  3039.  db 'vrangepd',50h
  3040.  dw avx512_pd_instruction_sae_imm8-instruction_handler
  3041.  db 'vrangeps',50h
  3042.  dw avx512_ps_instruction_sae_imm8-instruction_handler
  3043.  db 'vrangesd',51h
  3044.  dw avx512_sd_instruction_sae_imm8-instruction_handler
  3045.  db 'vrangess',51h
  3046.  dw avx512_ss_instruction_sae_imm8-instruction_handler
  3047.  db 'vrcp14pd',4Ch
  3048.  dw avx512_single_source_pd_instruction-instruction_handler
  3049.  db 'vrcp14ps',4Ch
  3050.  dw avx512_single_source_ps_instruction-instruction_handler
  3051.  db 'vrcp14sd',4Dh
  3052.  dw avx512_sd_instruction-instruction_handler
  3053.  db 'vrcp14ss',4Dh
  3054.  dw avx512_ss_instruction-instruction_handler
  3055.  db 'vrcp28pd',0CAh
  3056.  dw avx512_exp2pd_instruction-instruction_handler
  3057.  db 'vrcp28ps',0CAh
  3058.  dw avx512_exp2ps_instruction-instruction_handler
  3059.  db 'vrcp28sd',0CBh
  3060.  dw avx512_sd_instruction_sae-instruction_handler
  3061.  db 'vrcp28ss',0CBh
  3062.  dw avx512_ss_instruction_sae-instruction_handler
  3063.  db 'vroundpd',9
  3064.  dw avx_single_source_instruction_3a_imm8_noevex-instruction_handler
  3065.  db 'vroundps',8
  3066.  dw avx_single_source_instruction_3a_imm8_noevex-instruction_handler
  3067.  db 'vroundsd',0Bh
  3068.  dw avx_sd_instruction_3a_imm8_noevex-instruction_handler
  3069.  db 'vroundss',0Ah
  3070.  dw avx_ss_instruction_3a_imm8_noevex-instruction_handler
  3071.  db 'vrsqrtps',52h
  3072.  dw avx_single_source_ps_instruction_noevex-instruction_handler
  3073.  db 'vrsqrtss',52h
  3074.  dw avx_ss_instruction_noevex-instruction_handler
  3075.  db 'vstmxcsr',11b
  3076.  dw vldmxcsr_instruction-instruction_handler
  3077.  db 'vucomisd',2Eh
  3078.  dw avx_comisd_instruction-instruction_handler
  3079.  db 'vucomiss',2Eh
  3080.  dw avx_comiss_instruction-instruction_handler
  3081.  db 'vzeroall',77h
  3082.  dw vzeroall_instruction-instruction_handler
  3083.  db 'wbnoinvd',9
  3084.  dw simple_extended_instruction_f3-instruction_handler
  3085.  db 'wrfsbase',2
  3086.  dw rdfsbase_instruction-instruction_handler
  3087.  db 'wrgsbase',3
  3088.  dw rdfsbase_instruction-instruction_handler
  3089.  db 'xacquire',0F2h
  3090.  dw prefix_instruction-instruction_handler
  3091.  db 'xrelease',0F3h
  3092.  dw prefix_instruction-instruction_handler
  3093.  db 'xrstor64',101b
  3094.  dw fxsave_instruction_64bit-instruction_handler
  3095.  db 'xsavec64',4
  3096.  dw xsaves_instruction_64bit-instruction_handler
  3097.  db 'xsaveopt',110b
  3098.  dw fxsave_instruction-instruction_handler
  3099.  db 'xsaves64',5
  3100.  dw xsaves_instruction_64bit-instruction_handler
  3101. instructions_9:
  3102.  db 'cmpxchg8b',8
  3103.  dw cmpxchgx_instruction-instruction_handler
  3104.  db 'cvttpd2dq',0E6h
  3105.  dw sse_pd_instruction-instruction_handler
  3106.  db 'cvttpd2pi',2Ch
  3107.  dw cvtpd2pi_instruction-instruction_handler
  3108.  db 'cvttps2dq',5Bh
  3109.  dw movshdup_instruction-instruction_handler
  3110.  db 'cvttps2pi',2Ch
  3111.  dw cvtps2pi_instruction-instruction_handler
  3112.  db 'cvttsd2si',2Ch
  3113.  dw cvtsd2si_instruction-instruction_handler
  3114.  db 'cvttss2si',2Ch
  3115.  dw cvtss2si_instruction-instruction_handler
  3116.  db 'extractps',17h
  3117.  dw extractps_instruction-instruction_handler
  3118.  db 'fxrstor64',1
  3119.  dw fxsave_instruction_64bit-instruction_handler
  3120.  db 'gf2p8mulb',0CFh
  3121.  dw sse4_instruction_66_38-instruction_handler
  3122.  db 'movdir64b',0F8h
  3123.  dw movdir64b_instruction-instruction_handler
  3124.  db 'pclmulqdq',-1
  3125.  dw pclmulqdq_instruction-instruction_handler
  3126.  db 'pcmpestri',61h
  3127.  dw sse4_instruction_66_3a_imm8-instruction_handler
  3128.  db 'pcmpestrm',60h
  3129.  dw sse4_instruction_66_3a_imm8-instruction_handler
  3130.  db 'pcmpistri',63h
  3131.  dw sse4_instruction_66_3a_imm8-instruction_handler
  3132.  db 'pcmpistrm',62h
  3133.  dw sse4_instruction_66_3a_imm8-instruction_handler
  3134.  db 'pmaddubsw',4
  3135.  dw ssse3_instruction-instruction_handler
  3136.  db 'prefetchw',1
  3137.  dw amd_prefetch_instruction-instruction_handler
  3138.  db 'punpckhbw',68h
  3139.  dw basic_mmx_instruction-instruction_handler
  3140.  db 'punpckhdq',6Ah
  3141.  dw basic_mmx_instruction-instruction_handler
  3142.  db 'punpckhwd',69h
  3143.  dw basic_mmx_instruction-instruction_handler
  3144.  db 'punpcklbw',60h
  3145.  dw basic_mmx_instruction-instruction_handler
  3146.  db 'punpckldq',62h
  3147.  dw basic_mmx_instruction-instruction_handler
  3148.  db 'punpcklwd',61h
  3149.  dw basic_mmx_instruction-instruction_handler
  3150.  db 'pvalidate',0FFh
  3151.  dw simple_instruction_f2_0f_01-instruction_handler
  3152.  db 'rmpadjust',0FEh
  3153.  dw simple_instruction_f3_0f_01-instruction_handler
  3154.  db 'rmpupdate',0FEh
  3155.  dw simple_instruction_f2_0f_01-instruction_handler
  3156.  db 'sha1nexte',0C8h
  3157.  dw sse4_instruction_38-instruction_handler
  3158.  db 'sha1rnds4',0CCh
  3159.  dw sse4_instruction_3a_imm8-instruction_handler
  3160.  db 'useavx256',0
  3161.  dw set_evex_mode-instruction_handler
  3162.  db 'useavx512',1
  3163.  dw set_evex_mode-instruction_handler
  3164.  db 'vaddsubpd',0D0h
  3165.  dw avx_pd_instruction_noevex-instruction_handler
  3166.  db 'vaddsubps',0D0h
  3167.  dw avx_ps_instruction_noevex-instruction_handler
  3168.  db 'vblendmpd',65h
  3169.  dw avx_pd_instruction_38_evex-instruction_handler
  3170.  db 'vblendmps',65h
  3171.  dw avx_ps_instruction_66_38_evex-instruction_handler
  3172.  db 'vblendvpd',4Bh
  3173.  dw avx_triple_source_instruction_3a_noevex-instruction_handler
  3174.  db 'vblendvps',4Ah
  3175.  dw avx_triple_source_instruction_3a_noevex-instruction_handler
  3176.  db 'vcmpneqpd',4
  3177.  dw avx_cmp_pd_instruction-instruction_handler
  3178.  db 'vcmpneqps',4
  3179.  dw avx_cmp_ps_instruction-instruction_handler
  3180.  db 'vcmpneqsd',4
  3181.  dw avx_cmp_sd_instruction-instruction_handler
  3182.  db 'vcmpneqss',4
  3183.  dw avx_cmp_ss_instruction-instruction_handler
  3184.  db 'vcmpngepd',9
  3185.  dw avx_cmp_pd_instruction-instruction_handler
  3186.  db 'vcmpngeps',9
  3187.  dw avx_cmp_ps_instruction-instruction_handler
  3188.  db 'vcmpngesd',9
  3189.  dw avx_cmp_sd_instruction-instruction_handler
  3190.  db 'vcmpngess',9
  3191.  dw avx_cmp_ss_instruction-instruction_handler
  3192.  db 'vcmpngtpd',0Ah
  3193.  dw avx_cmp_pd_instruction-instruction_handler
  3194.  db 'vcmpngtps',0Ah
  3195.  dw avx_cmp_ps_instruction-instruction_handler
  3196.  db 'vcmpngtsd',0Ah
  3197.  dw avx_cmp_sd_instruction-instruction_handler
  3198.  db 'vcmpngtss',0Ah
  3199.  dw avx_cmp_ss_instruction-instruction_handler
  3200.  db 'vcmpnlepd',6
  3201.  dw avx_cmp_pd_instruction-instruction_handler
  3202.  db 'vcmpnleps',6
  3203.  dw avx_cmp_ps_instruction-instruction_handler
  3204.  db 'vcmpnlesd',6
  3205.  dw avx_cmp_sd_instruction-instruction_handler
  3206.  db 'vcmpnless',6
  3207.  dw avx_cmp_ss_instruction-instruction_handler
  3208.  db 'vcmpnltpd',5
  3209.  dw avx_cmp_pd_instruction-instruction_handler
  3210.  db 'vcmpnltps',5
  3211.  dw avx_cmp_ps_instruction-instruction_handler
  3212.  db 'vcmpnltsd',5
  3213.  dw avx_cmp_sd_instruction-instruction_handler
  3214.  db 'vcmpnltss',5
  3215.  dw avx_cmp_ss_instruction-instruction_handler
  3216.  db 'vcmpordpd',7
  3217.  dw avx_cmp_pd_instruction-instruction_handler
  3218.  db 'vcmpordps',7
  3219.  dw avx_cmp_ps_instruction-instruction_handler
  3220.  db 'vcmpordsd',7
  3221.  dw avx_cmp_sd_instruction-instruction_handler
  3222.  db 'vcmpordss',7
  3223.  dw avx_cmp_ss_instruction-instruction_handler
  3224.  db 'vcvtdq2pd',0E6h
  3225.  dw avx_cvtdq2pd_instruction-instruction_handler
  3226.  db 'vcvtdq2ps',5Bh
  3227.  dw avx_single_source_ps_instruction_er-instruction_handler
  3228.  db 'vcvtpd2dq',0E6h
  3229.  dw avx_cvtpd2dq_instruction-instruction_handler
  3230.  db 'vcvtpd2ps',5Ah
  3231.  dw avx_cvtpd2ps_instruction-instruction_handler
  3232.  db 'vcvtpd2qq',7Bh
  3233.  dw avx_single_source_pd_instruction_er_evex-instruction_handler
  3234.  db 'vcvtph2ps',13h
  3235.  dw avx_cvtph2ps_instruction-instruction_handler
  3236.  db 'vcvtps2dq',5Bh
  3237.  dw avx_cvtps2dq_instruction-instruction_handler
  3238.  db 'vcvtps2pd',5Ah
  3239.  dw avx_cvtps2pd_instruction-instruction_handler
  3240.  db 'vcvtps2ph',1Dh
  3241.  dw avx_cvtps2ph_instruction-instruction_handler
  3242.  db 'vcvtps2qq',7Bh
  3243.  dw avx_cvtps2qq_instruction-instruction_handler
  3244.  db 'vcvtqq2pd',0E6h
  3245.  dw avx_cvtqq2pd_instruction-instruction_handler
  3246.  db 'vcvtqq2ps',5Bh
  3247.  dw avx_cvtpd2udq_instruction-instruction_handler
  3248.  db 'vcvtsd2si',2Dh
  3249.  dw avx_cvtsd2si_instruction-instruction_handler
  3250.  db 'vcvtsd2ss',5Ah
  3251.  dw avx_sd_instruction_er-instruction_handler
  3252.  db 'vcvtsi2sd',2Ah
  3253.  dw avx_cvtsi2sd_instruction-instruction_handler
  3254.  db 'vcvtsi2ss',2Ah
  3255.  dw avx_cvtsi2ss_instruction-instruction_handler
  3256.  db 'vcvtss2sd',5Ah
  3257.  dw avx_ss_instruction_sae-instruction_handler
  3258.  db 'vcvtss2si',2Dh
  3259.  dw avx_cvtss2si_instruction-instruction_handler
  3260.  db 'vdbpsadbw',42h
  3261.  dw avx_bw_instruction_3a_imm8_evex-instruction_handler
  3262.  db 'vexpandpd',88h
  3263.  dw avx_single_source_q_instruction_38_evex-instruction_handler
  3264.  db 'vexpandps',88h
  3265.  dw avx_single_source_d_instruction_38_evex-instruction_handler
  3266.  db 'vfnmaddpd',79h
  3267.  dw fma4_instruction_p-instruction_handler
  3268.  db 'vfnmaddps',78h
  3269.  dw fma4_instruction_p-instruction_handler
  3270.  db 'vfnmaddsd',7Bh
  3271.  dw fma4_instruction_sd-instruction_handler
  3272.  db 'vfnmaddss',7Ah
  3273.  dw fma4_instruction_ss-instruction_handler
  3274.  db 'vfnmsubpd',7Dh
  3275.  dw fma4_instruction_p-instruction_handler
  3276.  db 'vfnmsubps',7Ch
  3277.  dw fma4_instruction_p-instruction_handler
  3278.  db 'vfnmsubsd',7Fh
  3279.  dw fma4_instruction_sd-instruction_handler
  3280.  db 'vfnmsubss',7Eh
  3281.  dw fma4_instruction_ss-instruction_handler
  3282.  db 'vgetexppd',42h
  3283.  dw avx512_single_source_pd_instruction_sae-instruction_handler
  3284.  db 'vgetexpps',42h
  3285.  dw avx512_single_source_ps_instruction_sae-instruction_handler
  3286.  db 'vgetexpsd',43h
  3287.  dw avx512_sd_instruction_sae-instruction_handler
  3288.  db 'vgetexpss',43h
  3289.  dw avx512_ss_instruction_sae-instruction_handler
  3290.  db 'vinsertps',21h
  3291.  dw avx_insertps_instruction-instruction_handler
  3292.  db 'vmovdqa32',6Fh
  3293.  dw avx512_movdqa32_instruction-instruction_handler
  3294.  db 'vmovdqa64',6Fh
  3295.  dw avx512_movdqa64_instruction-instruction_handler
  3296.  db 'vmovdqu16',6Fh
  3297.  dw avx512_movdqu16_instruction-instruction_handler
  3298.  db 'vmovdqu32',6Fh
  3299.  dw avx512_movdqu32_instruction-instruction_handler
  3300.  db 'vmovdqu64',6Fh
  3301.  dw avx512_movdqu64_instruction-instruction_handler
  3302.  db 'vmovmskpd',0
  3303.  dw avx_movmskpd_instruction-instruction_handler
  3304.  db 'vmovmskps',0
  3305.  dw avx_movmskps_instruction-instruction_handler
  3306.  db 'vmovntdqa',2Ah
  3307.  dw avx_movntdqa_instruction-instruction_handler
  3308.  db 'vmovshdup',16h
  3309.  dw avx_movshdup_instruction-instruction_handler
  3310.  db 'vmovsldup',12h
  3311.  dw avx_movshdup_instruction-instruction_handler
  3312.  db 'vp4dpwssd',52h
  3313.  dw avx512_4vnniw_instruction-instruction_handler
  3314.  db 'vpackssdw',6Bh
  3315.  dw avx_d_instruction-instruction_handler
  3316.  db 'vpacksswb',63h
  3317.  dw avx_bw_instruction-instruction_handler
  3318.  db 'vpackusdw',2Bh
  3319.  dw avx_d_instruction_38-instruction_handler
  3320.  db 'vpackuswb',67h
  3321.  dw avx_bw_instruction-instruction_handler
  3322.  db 'vpblendmb',66h
  3323.  dw avx_bw_instruction_38_evex-instruction_handler
  3324.  db 'vpblendmd',64h
  3325.  dw avx_d_instruction_38_evex-instruction_handler
  3326.  db 'vpblendmq',64h
  3327.  dw avx_q_instruction_38_evex-instruction_handler
  3328.  db 'vpblendmw',66h
  3329.  dw avx_bw_instruction_38_w1_evex-instruction_handler
  3330.  db 'vpblendvb',4Ch
  3331.  dw avx_triple_source_instruction_3a_noevex-instruction_handler
  3332.  db 'vpcmpleub',2
  3333.  dw avx512_cmp_ub_instruction-instruction_handler
  3334.  db 'vpcmpleud',2
  3335.  dw avx512_cmp_ud_instruction-instruction_handler
  3336.  db 'vpcmpleuq',2
  3337.  dw avx512_cmp_uq_instruction-instruction_handler
  3338.  db 'vpcmpleuw',2
  3339.  dw avx512_cmp_uw_instruction-instruction_handler
  3340.  db 'vpcmpltub',1
  3341.  dw avx512_cmp_ub_instruction-instruction_handler
  3342.  db 'vpcmpltud',1
  3343.  dw avx512_cmp_ud_instruction-instruction_handler
  3344.  db 'vpcmpltuq',1
  3345.  dw avx512_cmp_uq_instruction-instruction_handler
  3346.  db 'vpcmpltuw',1
  3347.  dw avx512_cmp_uw_instruction-instruction_handler
  3348.  db 'vpcmpneqb',4
  3349.  dw avx512_cmp_b_instruction-instruction_handler
  3350.  db 'vpcmpneqd',4
  3351.  dw avx512_cmp_d_instruction-instruction_handler
  3352.  db 'vpcmpneqq',4
  3353.  dw avx512_cmp_q_instruction-instruction_handler
  3354.  db 'vpcmpneqw',4
  3355.  dw avx512_cmp_b_instruction-instruction_handler
  3356.  db 'vpcmpnleb',6
  3357.  dw avx512_cmp_b_instruction-instruction_handler
  3358.  db 'vpcmpnled',6
  3359.  dw avx512_cmp_d_instruction-instruction_handler
  3360.  db 'vpcmpnleq',6
  3361.  dw avx512_cmp_q_instruction-instruction_handler
  3362.  db 'vpcmpnlew',6
  3363.  dw avx512_cmp_b_instruction-instruction_handler
  3364.  db 'vpcmpnltb',5
  3365.  dw avx512_cmp_b_instruction-instruction_handler
  3366.  db 'vpcmpnltd',5
  3367.  dw avx512_cmp_d_instruction-instruction_handler
  3368.  db 'vpcmpnltq',5
  3369.  dw avx512_cmp_q_instruction-instruction_handler
  3370.  db 'vpcmpnltw',5
  3371.  dw avx512_cmp_b_instruction-instruction_handler
  3372.  db 'vpcomequb',4
  3373.  dw xop_pcom_ub_instruction-instruction_handler
  3374.  db 'vpcomequd',4
  3375.  dw xop_pcom_ud_instruction-instruction_handler
  3376.  db 'vpcomequq',4
  3377.  dw xop_pcom_uq_instruction-instruction_handler
  3378.  db 'vpcomequw',4
  3379.  dw xop_pcom_uw_instruction-instruction_handler
  3380.  db 'vpcomgeub',3
  3381.  dw xop_pcom_ub_instruction-instruction_handler
  3382.  db 'vpcomgeud',3
  3383.  dw xop_pcom_ud_instruction-instruction_handler
  3384.  db 'vpcomgeuq',3
  3385.  dw xop_pcom_uq_instruction-instruction_handler
  3386.  db 'vpcomgeuw',3
  3387.  dw xop_pcom_uw_instruction-instruction_handler
  3388.  db 'vpcomgtub',2
  3389.  dw xop_pcom_ub_instruction-instruction_handler
  3390.  db 'vpcomgtud',2
  3391.  dw xop_pcom_ud_instruction-instruction_handler
  3392.  db 'vpcomgtuq',2
  3393.  dw xop_pcom_uq_instruction-instruction_handler
  3394.  db 'vpcomgtuw',2
  3395.  dw xop_pcom_uw_instruction-instruction_handler
  3396.  db 'vpcomleub',1
  3397.  dw xop_pcom_ub_instruction-instruction_handler
  3398.  db 'vpcomleud',1
  3399.  dw xop_pcom_ud_instruction-instruction_handler
  3400.  db 'vpcomleuq',1
  3401.  dw xop_pcom_uq_instruction-instruction_handler
  3402.  db 'vpcomleuw',1
  3403.  dw xop_pcom_uw_instruction-instruction_handler
  3404.  db 'vpcomltub',0
  3405.  dw xop_pcom_ub_instruction-instruction_handler
  3406.  db 'vpcomltud',0
  3407.  dw xop_pcom_ud_instruction-instruction_handler
  3408.  db 'vpcomltuq',0
  3409.  dw xop_pcom_uq_instruction-instruction_handler
  3410.  db 'vpcomltuw',0
  3411.  dw xop_pcom_uw_instruction-instruction_handler
  3412.  db 'vpcomneqb',5
  3413.  dw xop_pcom_b_instruction-instruction_handler
  3414.  db 'vpcomneqd',5
  3415.  dw xop_pcom_d_instruction-instruction_handler
  3416.  db 'vpcomneqq',5
  3417.  dw xop_pcom_q_instruction-instruction_handler
  3418.  db 'vpcomneqw',5
  3419.  dw xop_pcom_w_instruction-instruction_handler
  3420.  db 'vpdpbusds',51h
  3421.  dw avx_d_instruction_38_evex-instruction_handler
  3422.  db 'vpdpwssds',53h
  3423.  dw avx_d_instruction_38_evex-instruction_handler
  3424.  db 'vpermi2pd',77h
  3425.  dw avx_q_instruction_38_evex-instruction_handler
  3426.  db 'vpermi2ps',77h
  3427.  dw avx_d_instruction_38_evex-instruction_handler
  3428.  db 'vpermilpd',5
  3429.  dw avx_permilpd_instruction-instruction_handler
  3430.  db 'vpermilps',4
  3431.  dw avx_permilps_instruction-instruction_handler
  3432.  db 'vpermt2pd',7Fh
  3433.  dw avx_q_instruction_38_evex-instruction_handler
  3434.  db 'vpermt2ps',7Fh
  3435.  dw avx_d_instruction_38_evex-instruction_handler
  3436.  db 'vpexpandb',62h
  3437.  dw avx_single_source_d_instruction_38_evex-instruction_handler
  3438.  db 'vpexpandd',89h
  3439.  dw avx_single_source_d_instruction_38_evex-instruction_handler
  3440.  db 'vpexpandq',89h
  3441.  dw avx_single_source_q_instruction_38_evex-instruction_handler
  3442.  db 'vpexpandw',62h
  3443.  dw avx_single_source_q_instruction_38_evex-instruction_handler
  3444.  db 'vphaddubd',0D2h
  3445.  dw xop_single_source_128bit_instruction-instruction_handler
  3446.  db 'vphaddubq',0D3h
  3447.  dw xop_single_source_128bit_instruction-instruction_handler
  3448.  db 'vphaddubw',0D1h
  3449.  dw xop_single_source_128bit_instruction-instruction_handler
  3450.  db 'vphaddudq',0DBh
  3451.  dw xop_single_source_128bit_instruction-instruction_handler
  3452.  db 'vphadduwd',0D6h
  3453.  dw xop_single_source_128bit_instruction-instruction_handler
  3454.  db 'vphadduwq',0D7h
  3455.  dw xop_single_source_128bit_instruction-instruction_handler
  3456.  db 'vpmacsdqh',9Fh
  3457.  dw xop_triple_source_128bit_instruction-instruction_handler
  3458.  db 'vpmacsdql',97h
  3459.  dw xop_triple_source_128bit_instruction-instruction_handler
  3460.  db 'vpmacssdd',8Eh
  3461.  dw xop_triple_source_128bit_instruction-instruction_handler
  3462.  db 'vpmacsswd',86h
  3463.  dw xop_triple_source_128bit_instruction-instruction_handler
  3464.  db 'vpmacssww',85h
  3465.  dw xop_triple_source_128bit_instruction-instruction_handler
  3466.  db 'vpmadcswd',0B6h
  3467.  dw xop_triple_source_128bit_instruction-instruction_handler
  3468.  db 'vpmovmskb',0D7h
  3469.  dw avx_pmovmskb_instruction-instruction_handler
  3470.  db 'vpmovsxbd',21h
  3471.  dw avx_pmovsxbd_instruction-instruction_handler
  3472.  db 'vpmovsxbq',22h
  3473.  dw avx_pmovsxbq_instruction-instruction_handler
  3474.  db 'vpmovsxbw',20h
  3475.  dw avx_pmovsxbw_instruction-instruction_handler
  3476.  db 'vpmovsxdq',25h
  3477.  dw avx_pmovsxbw_instruction-instruction_handler
  3478.  db 'vpmovsxwd',23h
  3479.  dw avx_pmovsxbw_instruction-instruction_handler
  3480.  db 'vpmovsxwq',24h
  3481.  dw avx_pmovsxbd_instruction-instruction_handler
  3482.  db 'vpmovusdb',11h
  3483.  dw avx512_pmovdb_instruction-instruction_handler
  3484.  db 'vpmovusdw',13h
  3485.  dw avx512_pmovwb_instruction-instruction_handler
  3486.  db 'vpmovusqb',12h
  3487.  dw avx512_pmovqb_instruction-instruction_handler
  3488.  db 'vpmovusqd',15h
  3489.  dw avx512_pmovwb_instruction-instruction_handler
  3490.  db 'vpmovusqw',14h
  3491.  dw avx512_pmovdb_instruction-instruction_handler
  3492.  db 'vpmovuswb',10h
  3493.  dw avx512_pmovwb_instruction-instruction_handler
  3494.  db 'vpmovzxbd',31h
  3495.  dw avx_pmovsxbd_instruction-instruction_handler
  3496.  db 'vpmovzxbq',32h
  3497.  dw avx_pmovsxbq_instruction-instruction_handler
  3498.  db 'vpmovzxbw',30h
  3499.  dw avx_pmovsxbw_instruction-instruction_handler
  3500.  db 'vpmovzxdq',35h
  3501.  dw avx_pmovsxbw_instruction-instruction_handler
  3502.  db 'vpmovzxwd',33h
  3503.  dw avx_pmovsxbw_instruction-instruction_handler
  3504.  db 'vpmovzxwq',34h
  3505.  dw avx_pmovsxbd_instruction-instruction_handler
  3506.  db 'vpmulhrsw',0Bh
  3507.  dw avx_bw_instruction_38-instruction_handler
  3508.  db 'vptestnmb',26h
  3509.  dw avx512_ptestnmb_instruction-instruction_handler
  3510.  db 'vptestnmd',27h
  3511.  dw avx512_ptestnmd_instruction-instruction_handler
  3512.  db 'vptestnmq',27h
  3513.  dw avx512_ptestnmq_instruction-instruction_handler
  3514.  db 'vptestnmw',26h
  3515.  dw avx512_ptestnmw_instruction-instruction_handler
  3516.  db 'vreducepd',56h
  3517.  dw avx512_single_source_pd_instruction_sae_imm8-instruction_handler
  3518.  db 'vreduceps',56h
  3519.  dw avx512_single_source_ps_instruction_sae_imm8-instruction_handler
  3520.  db 'vreducesd',57h
  3521.  dw avx512_sd_instruction_sae_imm8-instruction_handler
  3522.  db 'vreducess',57h
  3523.  dw avx512_ss_instruction_sae_imm8-instruction_handler
  3524.  db 'vscalefpd',2Ch
  3525.  dw avx512_pd_instruction_er-instruction_handler
  3526.  db 'vscalefps',2Ch
  3527.  dw avx512_ps_instruction_er-instruction_handler
  3528.  db 'vscalefsd',2Dh
  3529.  dw avx512_sd_instruction_er-instruction_handler
  3530.  db 'vscalefss',2Dh
  3531.  dw avx512_ss_instruction_er-instruction_handler
  3532.  db 'vunpckhpd',15h
  3533.  dw avx_pd_instruction-instruction_handler
  3534.  db 'vunpckhps',15h
  3535.  dw avx_ps_instruction-instruction_handler
  3536.  db 'vunpcklpd',14h
  3537.  dw avx_pd_instruction-instruction_handler
  3538.  db 'vunpcklps',14h
  3539.  dw avx_ps_instruction-instruction_handler
  3540.  db 'xrstors64',3
  3541.  dw xsaves_instruction_64bit-instruction_handler
  3542. instructions_10:
  3543.  db 'aesdeclast',0DFh
  3544.  dw sse4_instruction_66_38-instruction_handler
  3545.  db 'aesenclast',0DDh
  3546.  dw sse4_instruction_66_38-instruction_handler
  3547.  db 'clflushopt',7
  3548.  dw clflushopt_instruction-instruction_handler
  3549.  db 'cmpunordpd',3
  3550.  dw cmp_pd_instruction-instruction_handler
  3551.  db 'cmpunordps',3
  3552.  dw cmp_ps_instruction-instruction_handler
  3553.  db 'cmpunordsd',3
  3554.  dw cmp_sd_instruction-instruction_handler
  3555.  db 'cmpunordss',3
  3556.  dw cmp_ss_instruction-instruction_handler
  3557.  db 'cmpxchg16b',16
  3558.  dw cmpxchgx_instruction-instruction_handler
  3559.  db 'loadall286',5
  3560.  dw simple_extended_instruction-instruction_handler
  3561.  db 'loadall386',7
  3562.  dw simple_extended_instruction-instruction_handler
  3563.  db 'maskmovdqu',0
  3564.  dw maskmovdqu_instruction-instruction_handler
  3565.  db 'phminposuw',41h
  3566.  dw sse4_instruction_66_38-instruction_handler
  3567.  db 'prefetcht0',1
  3568.  dw prefetch_instruction-instruction_handler
  3569.  db 'prefetcht1',2
  3570.  dw prefetch_instruction-instruction_handler
  3571.  db 'prefetcht2',3
  3572.  dw prefetch_instruction-instruction_handler
  3573.  db 'punpckhqdq',6Dh
  3574.  dw sse_pd_instruction-instruction_handler
  3575.  db 'punpcklqdq',6Ch
  3576.  dw sse_pd_instruction-instruction_handler
  3577.  db 'sha256msg1',0CCh
  3578.  dw sse4_instruction_38-instruction_handler
  3579.  db 'sha256msg2',0CDh
  3580.  dw sse4_instruction_38-instruction_handler
  3581.  db 'vcmptruepd',0Fh
  3582.  dw avx_cmp_pd_instruction-instruction_handler
  3583.  db 'vcmptrueps',0Fh
  3584.  dw avx_cmp_ps_instruction-instruction_handler
  3585.  db 'vcmptruesd',0Fh
  3586.  dw avx_cmp_sd_instruction-instruction_handler
  3587.  db 'vcmptruess',0Fh
  3588.  dw avx_cmp_ss_instruction-instruction_handler
  3589.  db 'vcvtpd2udq',79h
  3590.  dw avx_cvtpd2udq_instruction-instruction_handler
  3591.  db 'vcvtpd2uqq',79h
  3592.  dw avx_single_source_pd_instruction_er_evex-instruction_handler
  3593.  db 'vcvtps2udq',79h
  3594.  dw avx_single_source_ps_instruction_er_evex-instruction_handler
  3595.  db 'vcvtps2uqq',79h
  3596.  dw avx_cvtps2qq_instruction-instruction_handler
  3597.  db 'vcvtsd2usi',79h
  3598.  dw avx_cvtsd2usi_instruction-instruction_handler
  3599.  db 'vcvtss2usi',79h
  3600.  dw avx_cvtss2usi_instruction-instruction_handler
  3601.  db 'vcvttpd2dq',0E6h
  3602.  dw avx_cvttpd2dq_instruction-instruction_handler
  3603.  db 'vcvttpd2qq',7Ah
  3604.  dw avx_single_source_pd_instruction_sae_evex-instruction_handler
  3605.  db 'vcvttps2dq',5Bh
  3606.  dw avx_cvttps2dq_instruction-instruction_handler
  3607.  db 'vcvttps2qq',7Ah
  3608.  dw avx_cvttps2qq_instruction-instruction_handler
  3609.  db 'vcvttsd2si',2Ch
  3610.  dw avx_cvttsd2si_instruction-instruction_handler
  3611.  db 'vcvttss2si',2Ch
  3612.  dw avx_cvttss2si_instruction-instruction_handler
  3613.  db 'vcvtudq2pd',7Ah
  3614.  dw avx_cvtudq2pd_instruction-instruction_handler
  3615.  db 'vcvtudq2ps',7Ah
  3616.  dw avx_cvtudq2ps_instruction-instruction_handler
  3617.  db 'vcvtuqq2pd',7Ah
  3618.  dw avx_cvtqq2pd_instruction-instruction_handler
  3619.  db 'vcvtuqq2ps',7Ah
  3620.  dw avx_cvtuqq2ps_instruction-instruction_handler
  3621.  db 'vcvtusi2sd',7Bh
  3622.  dw avx_cvtusi2sd_instruction-instruction_handler
  3623.  db 'vcvtusi2ss',7Bh
  3624.  dw avx_cvtusi2ss_instruction-instruction_handler
  3625.  db 'vextractps',17h
  3626.  dw avx_extract_d_instruction-instruction_handler
  3627.  db 'vfpclasspd',66h
  3628.  dw avx512_fpclasspd_instruction-instruction_handler
  3629.  db 'vfpclassps',66h
  3630.  dw avx512_fpclassps_instruction-instruction_handler
  3631.  db 'vfpclasssd',67h
  3632.  dw avx512_fpclasssd_instruction-instruction_handler
  3633.  db 'vfpclassss',67h
  3634.  dw avx512_fpclassss_instruction-instruction_handler
  3635.  db 'vgatherdpd',92h
  3636.  dw gather_pd_instruction-instruction_handler
  3637.  db 'vgatherdps',92h
  3638.  dw gather_ps_instruction-instruction_handler
  3639.  db 'vgatherqpd',93h
  3640.  dw gather_pd_instruction-instruction_handler
  3641.  db 'vgatherqps',93h
  3642.  dw gather_ps_instruction-instruction_handler
  3643.  db 'vgetmantpd',26h
  3644.  dw avx512_single_source_pd_instruction_sae_imm8-instruction_handler
  3645.  db 'vgetmantps',26h
  3646.  dw avx512_single_source_ps_instruction_sae_imm8-instruction_handler
  3647.  db 'vgetmantsd',27h
  3648.  dw avx512_sd_instruction_sae_imm8-instruction_handler
  3649.  db 'vgetmantss',27h
  3650.  dw avx512_ss_instruction_sae_imm8-instruction_handler
  3651.  db 'vgf2p8mulb',0CFh
  3652.  dw avx_bw_instruction_38-instruction_handler
  3653.  db 'vmaskmovpd',2Dh
  3654.  dw avx_maskmov_instruction-instruction_handler
  3655.  db 'vmaskmovps',2Ch
  3656.  dw avx_maskmov_instruction-instruction_handler
  3657.  db 'vp4dpwssds',53h
  3658.  dw avx512_4vnniw_instruction-instruction_handler
  3659.  db 'vpclmulqdq',-1
  3660.  dw avx_pclmulqdq_instruction-instruction_handler
  3661.  db 'vpcmpestri',61h
  3662.  dw avx_single_source_128bit_instruction_3a_imm8_noevex-instruction_handler
  3663.  db 'vpcmpestrm',60h
  3664.  dw avx_single_source_128bit_instruction_3a_imm8_noevex-instruction_handler
  3665.  db 'vpcmpistri',63h
  3666.  dw avx_single_source_128bit_instruction_3a_imm8_noevex-instruction_handler
  3667.  db 'vpcmpistrm',62h
  3668.  dw avx_single_source_128bit_instruction_3a_imm8_noevex-instruction_handler
  3669.  db 'vpcmpnequb',4
  3670.  dw avx512_cmp_ub_instruction-instruction_handler
  3671.  db 'vpcmpnequd',4
  3672.  dw avx512_cmp_ud_instruction-instruction_handler
  3673.  db 'vpcmpnequq',4
  3674.  dw avx512_cmp_uq_instruction-instruction_handler
  3675.  db 'vpcmpnequw',4
  3676.  dw avx512_cmp_uw_instruction-instruction_handler
  3677.  db 'vpcmpnleub',6
  3678.  dw avx512_cmp_ub_instruction-instruction_handler
  3679.  db 'vpcmpnleud',6
  3680.  dw avx512_cmp_ud_instruction-instruction_handler
  3681.  db 'vpcmpnleuq',6
  3682.  dw avx512_cmp_uq_instruction-instruction_handler
  3683.  db 'vpcmpnleuw',6
  3684.  dw avx512_cmp_uw_instruction-instruction_handler
  3685.  db 'vpcmpnltub',5
  3686.  dw avx512_cmp_ub_instruction-instruction_handler
  3687.  db 'vpcmpnltud',5
  3688.  dw avx512_cmp_ud_instruction-instruction_handler
  3689.  db 'vpcmpnltuq',5
  3690.  dw avx512_cmp_uq_instruction-instruction_handler
  3691.  db 'vpcmpnltuw',5
  3692.  dw avx512_cmp_uw_instruction-instruction_handler
  3693.  db 'vpcomnequb',5
  3694.  dw xop_pcom_ub_instruction-instruction_handler
  3695.  db 'vpcomnequd',5
  3696.  dw xop_pcom_ud_instruction-instruction_handler
  3697.  db 'vpcomnequq',5
  3698.  dw xop_pcom_uq_instruction-instruction_handler
  3699.  db 'vpcomnequw',5
  3700.  dw xop_pcom_uw_instruction-instruction_handler
  3701.  db 'vpcomtrueb',7
  3702.  dw xop_pcom_b_instruction-instruction_handler
  3703.  db 'vpcomtrued',7
  3704.  dw xop_pcom_d_instruction-instruction_handler
  3705.  db 'vpcomtrueq',7
  3706.  dw xop_pcom_q_instruction-instruction_handler
  3707.  db 'vpcomtruew',7
  3708.  dw xop_pcom_w_instruction-instruction_handler
  3709.  db 'vperm2f128',6
  3710.  dw avx_perm2f128_instruction-instruction_handler
  3711.  db 'vperm2i128',46h
  3712.  dw avx_perm2f128_instruction-instruction_handler
  3713.  db 'vpermil2pd',49h
  3714.  dw vpermil2_instruction-instruction_handler
  3715.  db 'vpermil2ps',48h
  3716.  dw vpermil2_instruction-instruction_handler
  3717.  db 'vpgatherdd',90h
  3718.  dw gather_ps_instruction-instruction_handler
  3719.  db 'vpgatherdq',90h
  3720.  dw gather_pd_instruction-instruction_handler
  3721.  db 'vpgatherqd',91h
  3722.  dw gather_ps_instruction-instruction_handler
  3723.  db 'vpgatherqq',91h
  3724.  dw gather_pd_instruction-instruction_handler
  3725.  db 'vpmacssdqh',8Fh
  3726.  dw xop_triple_source_128bit_instruction-instruction_handler
  3727.  db 'vpmacssdql',87h
  3728.  dw xop_triple_source_128bit_instruction-instruction_handler
  3729.  db 'vpmadcsswd',0A6h
  3730.  dw xop_triple_source_128bit_instruction-instruction_handler
  3731.  db 'vpmaddubsw',4
  3732.  dw avx_bw_instruction_38-instruction_handler
  3733.  db 'vpmaskmovd',8Ch
  3734.  dw avx_maskmov_instruction-instruction_handler
  3735.  db 'vpmaskmovq',8Ch
  3736.  dw avx_maskmov_w1_instruction-instruction_handler
  3737.  db 'vpternlogd',25h
  3738.  dw avx_d_instruction_3a_imm8_evex-instruction_handler
  3739.  db 'vpternlogq',25h
  3740.  dw avx_q_instruction_3a_imm8_evex-instruction_handler
  3741.  db 'vpunpckhbw',68h
  3742.  dw avx_bw_instruction-instruction_handler
  3743.  db 'vpunpckhdq',6Ah
  3744.  dw avx_d_instruction-instruction_handler
  3745.  db 'vpunpckhwd',69h
  3746.  dw avx_bw_instruction-instruction_handler
  3747.  db 'vpunpcklbw',60h
  3748.  dw avx_bw_instruction-instruction_handler
  3749.  db 'vpunpckldq',62h
  3750.  dw avx_d_instruction-instruction_handler
  3751.  db 'vpunpcklwd',61h
  3752.  dw avx_bw_instruction-instruction_handler
  3753.  db 'vrsqrt14pd',4Eh
  3754.  dw avx512_single_source_pd_instruction-instruction_handler
  3755.  db 'vrsqrt14ps',4Eh
  3756.  dw avx512_single_source_ps_instruction-instruction_handler
  3757.  db 'vrsqrt14sd',4Fh
  3758.  dw avx512_sd_instruction-instruction_handler
  3759.  db 'vrsqrt14ss',4Fh
  3760.  dw avx512_ss_instruction-instruction_handler
  3761.  db 'vrsqrt28pd',0CCh
  3762.  dw avx512_exp2pd_instruction-instruction_handler
  3763.  db 'vrsqrt28ps',0CCh
  3764.  dw avx512_exp2ps_instruction-instruction_handler
  3765.  db 'vrsqrt28sd',0CDh
  3766.  dw avx512_sd_instruction_sae-instruction_handler
  3767.  db 'vrsqrt28ss',0CDh
  3768.  dw avx512_ss_instruction_sae-instruction_handler
  3769.  db 'vshuff32x4',23h
  3770.  dw avx512_shuf_d_instruction-instruction_handler
  3771.  db 'vshuff64x2',23h
  3772.  dw avx512_shuf_q_instruction-instruction_handler
  3773.  db 'vshufi32x4',43h
  3774.  dw avx512_shuf_d_instruction-instruction_handler
  3775.  db 'vshufi64x2',43h
  3776.  dw avx512_shuf_q_instruction-instruction_handler
  3777.  db 'vzeroupper',77h
  3778.  dw vzeroupper_instruction-instruction_handler
  3779.  db 'xsaveopt64',110b
  3780.  dw fxsave_instruction_64bit-instruction_handler
  3781. instructions_11:
  3782.  db 'pclmulhqhdq',10001b
  3783.  dw pclmulqdq_instruction-instruction_handler
  3784.  db 'pclmullqhdq',10000b
  3785.  dw pclmulqdq_instruction-instruction_handler
  3786.  db 'prefetchnta',0
  3787.  dw prefetch_instruction-instruction_handler
  3788.  db 'prefetchwt1',2
  3789.  dw amd_prefetch_instruction-instruction_handler
  3790.  db 'saveprevssp',0EAh
  3791.  dw setssbsy_instruction-instruction_handler
  3792.  db 'sha256rnds2',0CBh
  3793.  dw sse4_instruction_38_xmm0-instruction_handler
  3794.  db 'vaesdeclast',0DFh
  3795.  dw avx_instruction_38_nomask-instruction_handler
  3796.  db 'vaesenclast',0DDh
  3797.  dw avx_instruction_38_nomask-instruction_handler
  3798.  db 'vcmpeq_ospd',10h
  3799.  dw avx_cmp_pd_instruction-instruction_handler
  3800.  db 'vcmpeq_osps',10h
  3801.  dw avx_cmp_ps_instruction-instruction_handler
  3802.  db 'vcmpeq_ossd',10h
  3803.  dw avx_cmp_sd_instruction-instruction_handler
  3804.  db 'vcmpeq_osss',10h
  3805.  dw avx_cmp_ss_instruction-instruction_handler
  3806.  db 'vcmpeq_uqpd',8
  3807.  dw avx_cmp_pd_instruction-instruction_handler
  3808.  db 'vcmpeq_uqps',8
  3809.  dw avx_cmp_ps_instruction-instruction_handler
  3810.  db 'vcmpeq_uqsd',8
  3811.  dw avx_cmp_sd_instruction-instruction_handler
  3812.  db 'vcmpeq_uqss',8
  3813.  dw avx_cmp_ss_instruction-instruction_handler
  3814.  db 'vcmpeq_uspd',18h
  3815.  dw avx_cmp_pd_instruction-instruction_handler
  3816.  db 'vcmpeq_usps',18h
  3817.  dw avx_cmp_ps_instruction-instruction_handler
  3818.  db 'vcmpeq_ussd',18h
  3819.  dw avx_cmp_sd_instruction-instruction_handler
  3820.  db 'vcmpeq_usss',18h
  3821.  dw avx_cmp_ss_instruction-instruction_handler
  3822.  db 'vcmpfalsepd',0Bh
  3823.  dw avx_cmp_pd_instruction-instruction_handler
  3824.  db 'vcmpfalseps',0Bh
  3825.  dw avx_cmp_ps_instruction-instruction_handler
  3826.  db 'vcmpfalsesd',0Bh
  3827.  dw avx_cmp_sd_instruction-instruction_handler
  3828.  db 'vcmpfalsess',0Bh
  3829.  dw avx_cmp_ss_instruction-instruction_handler
  3830.  db 'vcmpge_oqpd',1Dh
  3831.  dw avx_cmp_pd_instruction-instruction_handler
  3832.  db 'vcmpge_oqps',1Dh
  3833.  dw avx_cmp_ps_instruction-instruction_handler
  3834.  db 'vcmpge_oqsd',1Dh
  3835.  dw avx_cmp_sd_instruction-instruction_handler
  3836.  db 'vcmpge_oqss',1Dh
  3837.  dw avx_cmp_ss_instruction-instruction_handler
  3838.  db 'vcmpgt_oqpd',1Eh
  3839.  dw avx_cmp_pd_instruction-instruction_handler
  3840.  db 'vcmpgt_oqps',1Eh
  3841.  dw avx_cmp_ps_instruction-instruction_handler
  3842.  db 'vcmpgt_oqsd',1Eh
  3843.  dw avx_cmp_sd_instruction-instruction_handler
  3844.  db 'vcmpgt_oqss',1Eh
  3845.  dw avx_cmp_ss_instruction-instruction_handler
  3846.  db 'vcmple_oqpd',12h
  3847.  dw avx_cmp_pd_instruction-instruction_handler
  3848.  db 'vcmple_oqps',12h
  3849.  dw avx_cmp_ps_instruction-instruction_handler
  3850.  db 'vcmple_oqsd',12h
  3851.  dw avx_cmp_sd_instruction-instruction_handler
  3852.  db 'vcmple_oqss',12h
  3853.  dw avx_cmp_ss_instruction-instruction_handler
  3854.  db 'vcmplt_oqpd',11h
  3855.  dw avx_cmp_pd_instruction-instruction_handler
  3856.  db 'vcmplt_oqps',11h
  3857.  dw avx_cmp_ps_instruction-instruction_handler
  3858.  db 'vcmplt_oqsd',11h
  3859.  dw avx_cmp_sd_instruction-instruction_handler
  3860.  db 'vcmplt_oqss',11h
  3861.  dw avx_cmp_ss_instruction-instruction_handler
  3862.  db 'vcmpord_spd',17h
  3863.  dw avx_cmp_pd_instruction-instruction_handler
  3864.  db 'vcmpord_sps',17h
  3865.  dw avx_cmp_ps_instruction-instruction_handler
  3866.  db 'vcmpord_ssd',17h
  3867.  dw avx_cmp_sd_instruction-instruction_handler
  3868.  db 'vcmpord_sss',17h
  3869.  dw avx_cmp_ss_instruction-instruction_handler
  3870.  db 'vcmpunordpd',3
  3871.  dw avx_cmp_pd_instruction-instruction_handler
  3872.  db 'vcmpunordps',3
  3873.  dw avx_cmp_ps_instruction-instruction_handler
  3874.  db 'vcmpunordsd',3
  3875.  dw avx_cmp_sd_instruction-instruction_handler
  3876.  db 'vcmpunordss',3
  3877.  dw avx_cmp_ss_instruction-instruction_handler
  3878.  db 'vcompresspd',8Ah
  3879.  dw avx_compress_q_instruction-instruction_handler
  3880.  db 'vcompressps',8Ah
  3881.  dw avx_compress_d_instruction-instruction_handler
  3882.  db 'vcvttpd2udq',78h
  3883.  dw avx_cvttpd2udq_instruction-instruction_handler
  3884.  db 'vcvttpd2uqq',78h
  3885.  dw avx_single_source_pd_instruction_sae_evex-instruction_handler
  3886.  db 'vcvttps2udq',78h
  3887.  dw avx_cvttps2udq_instruction-instruction_handler
  3888.  db 'vcvttps2uqq',78h
  3889.  dw avx_cvttps2qq_instruction-instruction_handler
  3890.  db 'vcvttsd2usi',78h
  3891.  dw avx_cvttsd2usi_instruction-instruction_handler
  3892.  db 'vcvttss2usi',78h
  3893.  dw avx_cvttss2usi_instruction-instruction_handler
  3894.  db 'vfixupimmpd',54h
  3895.  dw avx512_pd_instruction_sae_imm8-instruction_handler
  3896.  db 'vfixupimmps',54h
  3897.  dw avx512_ps_instruction_sae_imm8-instruction_handler
  3898.  db 'vfixupimmsd',55h
  3899.  dw avx512_sd_instruction_sae_imm8-instruction_handler
  3900.  db 'vfixupimmss',55h
  3901.  dw avx512_ss_instruction_sae_imm8-instruction_handler
  3902.  db 'vfmadd132pd',98h
  3903.  dw fma_instruction_pd-instruction_handler
  3904.  db 'vfmadd132ps',98h
  3905.  dw fma_instruction_ps-instruction_handler
  3906.  db 'vfmadd132sd',99h
  3907.  dw fma_instruction_sd-instruction_handler
  3908.  db 'vfmadd132ss',99h
  3909.  dw fma_instruction_ss-instruction_handler
  3910.  db 'vfmadd213pd',0A8h
  3911.  dw fma_instruction_pd-instruction_handler
  3912.  db 'vfmadd213ps',0A8h
  3913.  dw fma_instruction_ps-instruction_handler
  3914.  db 'vfmadd213sd',0A9h
  3915.  dw fma_instruction_sd-instruction_handler
  3916.  db 'vfmadd213ss',0A9h
  3917.  dw fma_instruction_ss-instruction_handler
  3918.  db 'vfmadd231pd',0B8h
  3919.  dw fma_instruction_pd-instruction_handler
  3920.  db 'vfmadd231ps',0B8h
  3921.  dw fma_instruction_ps-instruction_handler
  3922.  db 'vfmadd231sd',0B9h
  3923.  dw fma_instruction_sd-instruction_handler
  3924.  db 'vfmadd231ss',0B9h
  3925.  dw fma_instruction_ss-instruction_handler
  3926.  db 'vfmaddsubpd',5Dh
  3927.  dw fma4_instruction_p-instruction_handler
  3928.  db 'vfmaddsubps',5Ch
  3929.  dw fma4_instruction_p-instruction_handler
  3930.  db 'vfmsub132pd',9Ah
  3931.  dw fma_instruction_pd-instruction_handler
  3932.  db 'vfmsub132ps',9Ah
  3933.  dw fma_instruction_ps-instruction_handler
  3934.  db 'vfmsub132sd',9Bh
  3935.  dw fma_instruction_sd-instruction_handler
  3936.  db 'vfmsub132ss',9Bh
  3937.  dw fma_instruction_ss-instruction_handler
  3938.  db 'vfmsub213pd',0AAh
  3939.  dw fma_instruction_pd-instruction_handler
  3940.  db 'vfmsub213ps',0AAh
  3941.  dw fma_instruction_ps-instruction_handler
  3942.  db 'vfmsub213sd',0ABh
  3943.  dw fma_instruction_sd-instruction_handler
  3944.  db 'vfmsub213ss',0ABh
  3945.  dw fma_instruction_ss-instruction_handler
  3946.  db 'vfmsub231pd',0BAh
  3947.  dw fma_instruction_pd-instruction_handler
  3948.  db 'vfmsub231ps',0BAh
  3949.  dw fma_instruction_ps-instruction_handler
  3950.  db 'vfmsub231sd',0BBh
  3951.  dw fma_instruction_sd-instruction_handler
  3952.  db 'vfmsub231ss',0BBh
  3953.  dw fma_instruction_ss-instruction_handler
  3954.  db 'vfmsubaddpd',5Fh
  3955.  dw fma4_instruction_p-instruction_handler
  3956.  db 'vfmsubaddps',5Eh
  3957.  dw fma4_instruction_p-instruction_handler
  3958.  db 'vinsertf128',18h
  3959.  dw avx_insertf128_instruction-instruction_handler
  3960.  db 'vinserti128',38h
  3961.  dw avx_insertf128_instruction-instruction_handler
  3962.  db 'vmaskmovdqu',0
  3963.  dw avx_maskmovdqu_instruction-instruction_handler
  3964.  db 'vpcomfalseb',6
  3965.  dw xop_pcom_b_instruction-instruction_handler
  3966.  db 'vpcomfalsed',6
  3967.  dw xop_pcom_d_instruction-instruction_handler
  3968.  db 'vpcomfalseq',6
  3969.  dw xop_pcom_q_instruction-instruction_handler
  3970.  db 'vpcomfalsew',6
  3971.  dw xop_pcom_w_instruction-instruction_handler
  3972.  db 'vpcompressb',63h
  3973.  dw avx_compress_d_instruction-instruction_handler
  3974.  db 'vpcompressd',8Bh
  3975.  dw avx_compress_d_instruction-instruction_handler
  3976.  db 'vpcompressq',8Bh
  3977.  dw avx_compress_q_instruction-instruction_handler
  3978.  db 'vpcompressw',63h
  3979.  dw avx_compress_q_instruction-instruction_handler
  3980.  db 'vpcomtrueub',7
  3981.  dw xop_pcom_ub_instruction-instruction_handler
  3982.  db 'vpcomtrueud',7
  3983.  dw xop_pcom_ud_instruction-instruction_handler
  3984.  db 'vpcomtrueuq',7
  3985.  dw xop_pcom_uq_instruction-instruction_handler
  3986.  db 'vpcomtrueuw',7
  3987.  dw xop_pcom_uw_instruction-instruction_handler
  3988.  db 'vpconflictd',0C4h
  3989.  dw avx_single_source_d_instruction_38_evex-instruction_handler
  3990.  db 'vpconflictq',0C4h
  3991.  dw avx_single_source_q_instruction_38_evex-instruction_handler
  3992.  db 'vphminposuw',41h
  3993.  dw avx_single_source_instruction_38_noevex-instruction_handler
  3994.  db 'vpmadd52huq',0B5h
  3995.  dw avx_q_instruction_38_evex-instruction_handler
  3996.  db 'vpmadd52luq',0B4h
  3997.  dw avx_q_instruction_38_evex-instruction_handler
  3998.  db 'vpscatterdd',0A0h
  3999.  dw scatter_ps_instruction-instruction_handler
  4000.  db 'vpscatterdq',0A0h
  4001.  dw scatter_pd_instruction-instruction_handler
  4002.  db 'vpscatterqd',0A1h
  4003.  dw scatter_ps_instruction-instruction_handler
  4004.  db 'vpscatterqq',0A1h
  4005.  dw scatter_pd_instruction-instruction_handler
  4006.  db 'vpunpckhqdq',6Dh
  4007.  dw avx_q_instruction-instruction_handler
  4008.  db 'vpunpcklqdq',6Ch
  4009.  dw avx_q_instruction-instruction_handler
  4010.  db 'vrndscalepd',9
  4011.  dw avx512_single_source_pd_instruction_sae_imm8-instruction_handler
  4012.  db 'vrndscaleps',8
  4013.  dw avx512_single_source_ps_instruction_sae_imm8-instruction_handler
  4014.  db 'vrndscalesd',0Bh
  4015.  dw avx512_sd_instruction_sae_imm8-instruction_handler
  4016.  db 'vrndscaless',0Ah
  4017.  dw avx512_ss_instruction_sae_imm8-instruction_handler
  4018.  db 'vscatterdpd',0A2h
  4019.  dw scatter_pd_instruction-instruction_handler
  4020.  db 'vscatterdps',0A2h
  4021.  dw scatter_ps_instruction-instruction_handler
  4022.  db 'vscatterqpd',0A3h
  4023.  dw scatter_pd_instruction-instruction_handler
  4024.  db 'vscatterqps',0A3h
  4025.  dw scatter_ps_instruction-instruction_handler
  4026. instructions_12:
  4027.  db 'pclmulhqhqdq',10001b
  4028.  dw pclmulqdq_instruction-instruction_handler
  4029.  db 'pclmulhqlqdq',1
  4030.  dw pclmulqdq_instruction-instruction_handler
  4031.  db 'pclmullqhqdq',10000b
  4032.  dw pclmulqdq_instruction-instruction_handler
  4033.  db 'pclmullqlqdq',0
  4034.  dw pclmulqdq_instruction-instruction_handler
  4035.  db 'vbroadcastsd',19h
  4036.  dw avx_broadcastsd_instruction-instruction_handler
  4037.  db 'vbroadcastss',18h
  4038.  dw avx_broadcastss_instruction-instruction_handler
  4039.  db 'vcmpneq_oqpd',0Ch
  4040.  dw avx_cmp_pd_instruction-instruction_handler
  4041.  db 'vcmpneq_oqps',0Ch
  4042.  dw avx_cmp_ps_instruction-instruction_handler
  4043.  db 'vcmpneq_oqsd',0Ch
  4044.  dw avx_cmp_sd_instruction-instruction_handler
  4045.  db 'vcmpneq_oqss',0Ch
  4046.  dw avx_cmp_ss_instruction-instruction_handler
  4047.  db 'vcmpneq_ospd',1Ch
  4048.  dw avx_cmp_pd_instruction-instruction_handler
  4049.  db 'vcmpneq_osps',1Ch
  4050.  dw avx_cmp_ps_instruction-instruction_handler
  4051.  db 'vcmpneq_ossd',1Ch
  4052.  dw avx_cmp_sd_instruction-instruction_handler
  4053.  db 'vcmpneq_osss',1Ch
  4054.  dw avx_cmp_ss_instruction-instruction_handler
  4055.  db 'vcmpneq_uspd',14h
  4056.  dw avx_cmp_pd_instruction-instruction_handler
  4057.  db 'vcmpneq_usps',14h
  4058.  dw avx_cmp_ps_instruction-instruction_handler
  4059.  db 'vcmpneq_ussd',14h
  4060.  dw avx_cmp_sd_instruction-instruction_handler
  4061.  db 'vcmpneq_usss',14h
  4062.  dw avx_cmp_ss_instruction-instruction_handler
  4063.  db 'vcmpnge_uqpd',19h
  4064.  dw avx_cmp_pd_instruction-instruction_handler
  4065.  db 'vcmpnge_uqps',19h
  4066.  dw avx_cmp_ps_instruction-instruction_handler
  4067.  db 'vcmpnge_uqsd',19h
  4068.  dw avx_cmp_sd_instruction-instruction_handler
  4069.  db 'vcmpnge_uqss',19h
  4070.  dw avx_cmp_ss_instruction-instruction_handler
  4071.  db 'vcmpngt_uqpd',1Ah
  4072.  dw avx_cmp_pd_instruction-instruction_handler
  4073.  db 'vcmpngt_uqps',1Ah
  4074.  dw avx_cmp_ps_instruction-instruction_handler
  4075.  db 'vcmpngt_uqsd',1Ah
  4076.  dw avx_cmp_sd_instruction-instruction_handler
  4077.  db 'vcmpngt_uqss',1Ah
  4078.  dw avx_cmp_ss_instruction-instruction_handler
  4079.  db 'vcmpnle_uqpd',16h
  4080.  dw avx_cmp_pd_instruction-instruction_handler
  4081.  db 'vcmpnle_uqps',16h
  4082.  dw avx_cmp_ps_instruction-instruction_handler
  4083.  db 'vcmpnle_uqsd',16h
  4084.  dw avx_cmp_sd_instruction-instruction_handler
  4085.  db 'vcmpnle_uqss',16h
  4086.  dw avx_cmp_ss_instruction-instruction_handler
  4087.  db 'vcmpnlt_uqpd',15h
  4088.  dw avx_cmp_pd_instruction-instruction_handler
  4089.  db 'vcmpnlt_uqps',15h
  4090.  dw avx_cmp_ps_instruction-instruction_handler
  4091.  db 'vcmpnlt_uqsd',15h
  4092.  dw avx_cmp_sd_instruction-instruction_handler
  4093.  db 'vcmpnlt_uqss',15h
  4094.  dw avx_cmp_ss_instruction-instruction_handler
  4095.  db 'vextractf128',19h
  4096.  dw avx_extractf128_instruction-instruction_handler
  4097.  db 'vextracti128',39h
  4098.  dw avx_extractf128_instruction-instruction_handler
  4099.  db 'vfnmadd132pd',9Ch
  4100.  dw fma_instruction_pd-instruction_handler
  4101.  db 'vfnmadd132ps',9Ch
  4102.  dw fma_instruction_ps-instruction_handler
  4103.  db 'vfnmadd132sd',9Dh
  4104.  dw fma_instruction_sd-instruction_handler
  4105.  db 'vfnmadd132ss',9Dh
  4106.  dw fma_instruction_ss-instruction_handler
  4107.  db 'vfnmadd213pd',0ACh
  4108.  dw fma_instruction_pd-instruction_handler
  4109.  db 'vfnmadd213ps',0ACh
  4110.  dw fma_instruction_ps-instruction_handler
  4111.  db 'vfnmadd213sd',0ADh
  4112.  dw fma_instruction_sd-instruction_handler
  4113.  db 'vfnmadd213ss',0ADh
  4114.  dw fma_instruction_ss-instruction_handler
  4115.  db 'vfnmadd231pd',0BCh
  4116.  dw fma_instruction_pd-instruction_handler
  4117.  db 'vfnmadd231ps',0BCh
  4118.  dw fma_instruction_ps-instruction_handler
  4119.  db 'vfnmadd231sd',0BDh
  4120.  dw fma_instruction_sd-instruction_handler
  4121.  db 'vfnmadd231ss',0BDh
  4122.  dw fma_instruction_ss-instruction_handler
  4123.  db 'vfnmsub132pd',9Eh
  4124.  dw fma_instruction_pd-instruction_handler
  4125.  db 'vfnmsub132ps',9Eh
  4126.  dw fma_instruction_ps-instruction_handler
  4127.  db 'vfnmsub132sd',9Fh
  4128.  dw fma_instruction_sd-instruction_handler
  4129.  db 'vfnmsub132ss',9Fh
  4130.  dw fma_instruction_ss-instruction_handler
  4131.  db 'vfnmsub213pd',0AEh
  4132.  dw fma_instruction_pd-instruction_handler
  4133.  db 'vfnmsub213ps',0AEh
  4134.  dw fma_instruction_ps-instruction_handler
  4135.  db 'vfnmsub213sd',0AFh
  4136.  dw fma_instruction_sd-instruction_handler
  4137.  db 'vfnmsub213ss',0AFh
  4138.  dw fma_instruction_ss-instruction_handler
  4139.  db 'vfnmsub231pd',0BEh
  4140.  dw fma_instruction_pd-instruction_handler
  4141.  db 'vfnmsub231ps',0BEh
  4142.  dw fma_instruction_ps-instruction_handler
  4143.  db 'vfnmsub231sd',0BFh
  4144.  dw fma_instruction_sd-instruction_handler
  4145.  db 'vfnmsub231ss',0BFh
  4146.  dw fma_instruction_ss-instruction_handler
  4147.  db 'vinsertf32x4',18h
  4148.  dw avx512_insert_32x4_instruction-instruction_handler
  4149.  db 'vinsertf32x8',1Ah
  4150.  dw avx512_insert_32x8_instruction-instruction_handler
  4151.  db 'vinsertf64x2',18h
  4152.  dw avx512_insert_64x2_instruction-instruction_handler
  4153.  db 'vinsertf64x4',1Ah
  4154.  dw avx512_insert_64x4_instruction-instruction_handler
  4155.  db 'vinserti32x4',38h
  4156.  dw avx512_insert_32x4_instruction-instruction_handler
  4157.  db 'vinserti32x8',3Ah
  4158.  dw avx512_insert_32x8_instruction-instruction_handler
  4159.  db 'vinserti64x2',38h
  4160.  dw avx512_insert_64x2_instruction-instruction_handler
  4161.  db 'vinserti64x4',3Ah
  4162.  dw avx512_insert_64x4_instruction-instruction_handler
  4163.  db 'vpbroadcastb',78h
  4164.  dw avx_pbroadcastb_instruction-instruction_handler
  4165.  db 'vpbroadcastd',58h
  4166.  dw avx_pbroadcastd_instruction-instruction_handler
  4167.  db 'vpbroadcastq',59h
  4168.  dw avx_pbroadcastq_instruction-instruction_handler
  4169.  db 'vpbroadcastw',79h
  4170.  dw avx_pbroadcastw_instruction-instruction_handler
  4171.  db 'vpclmulhqhdq',10001b
  4172.  dw avx_pclmulqdq_instruction-instruction_handler
  4173.  db 'vpclmullqhdq',10000b
  4174.  dw avx_pclmulqdq_instruction-instruction_handler
  4175.  db 'vpcomfalseub',6
  4176.  dw xop_pcom_ub_instruction-instruction_handler
  4177.  db 'vpcomfalseud',6
  4178.  dw xop_pcom_ud_instruction-instruction_handler
  4179.  db 'vpcomfalseuq',6
  4180.  dw xop_pcom_uq_instruction-instruction_handler
  4181.  db 'vpcomfalseuw',6
  4182.  dw xop_pcom_uw_instruction-instruction_handler
  4183.  db 'vpermilmo2pd',10b
  4184.  dw vpermil_2pd_instruction-instruction_handler
  4185.  db 'vpermilmo2ps',10b
  4186.  dw vpermil_2ps_instruction-instruction_handler
  4187.  db 'vpermilmz2pd',11b
  4188.  dw vpermil_2pd_instruction-instruction_handler
  4189.  db 'vpermilmz2ps',11b
  4190.  dw vpermil_2ps_instruction-instruction_handler
  4191.  db 'vpermiltd2pd',0
  4192.  dw vpermil_2pd_instruction-instruction_handler
  4193.  db 'vpermiltd2ps',0
  4194.  dw vpermil_2ps_instruction-instruction_handler
  4195.  db 'vpshufbitqmb',8Fh
  4196.  dw avx512_ptestmb_instruction-instruction_handler
  4197. instructions_13:
  4198.  db 'gf2p8affineqb',0CEh
  4199.  dw sse4_instruction_66_3a_imm8-instruction_handler
  4200.  db 'vcmptrue_uspd',1Fh
  4201.  dw avx_cmp_pd_instruction-instruction_handler
  4202.  db 'vcmptrue_usps',1Fh
  4203.  dw avx_cmp_ps_instruction-instruction_handler
  4204.  db 'vcmptrue_ussd',1Fh
  4205.  dw avx_cmp_sd_instruction-instruction_handler
  4206.  db 'vcmptrue_usss',1Fh
  4207.  dw avx_cmp_ss_instruction-instruction_handler
  4208.  db 'vcmpunord_spd',13h
  4209.  dw avx_cmp_pd_instruction-instruction_handler
  4210.  db 'vcmpunord_sps',13h
  4211.  dw avx_cmp_ps_instruction-instruction_handler
  4212.  db 'vcmpunord_ssd',13h
  4213.  dw avx_cmp_sd_instruction-instruction_handler
  4214.  db 'vcmpunord_sss',13h
  4215.  dw avx_cmp_ss_instruction-instruction_handler
  4216.  db 'vextractf32x4',19h
  4217.  dw avx512_extract_32x4_instruction-instruction_handler
  4218.  db 'vextractf32x8',1Bh
  4219.  dw avx512_extract_32x8_instruction-instruction_handler
  4220.  db 'vextractf64x2',19h
  4221.  dw avx512_extract_64x2_instruction-instruction_handler
  4222.  db 'vextractf64x4',1Bh
  4223.  dw avx512_extract_64x4_instruction-instruction_handler
  4224.  db 'vextracti32x4',39h
  4225.  dw avx512_extract_32x4_instruction-instruction_handler
  4226.  db 'vextracti32x8',3Bh
  4227.  dw avx512_extract_32x8_instruction-instruction_handler
  4228.  db 'vextracti64x2',39h
  4229.  dw avx512_extract_64x2_instruction-instruction_handler
  4230.  db 'vextracti64x4',3Bh
  4231.  dw avx512_extract_64x4_instruction-instruction_handler
  4232.  db 'vgatherpf0dpd',1
  4233.  dw gatherpf_dpd_instruction-instruction_handler
  4234.  db 'vgatherpf0dps',1
  4235.  dw gatherpf_dps_instruction-instruction_handler
  4236.  db 'vgatherpf0qpd',1
  4237.  dw gatherpf_qpd_instruction-instruction_handler
  4238.  db 'vgatherpf0qps',1
  4239.  dw gatherpf_qps_instruction-instruction_handler
  4240.  db 'vgatherpf1dpd',2
  4241.  dw gatherpf_dpd_instruction-instruction_handler
  4242.  db 'vgatherpf1dps',2
  4243.  dw gatherpf_dps_instruction-instruction_handler
  4244.  db 'vgatherpf1qpd',2
  4245.  dw gatherpf_qpd_instruction-instruction_handler
  4246.  db 'vgatherpf1qps',2
  4247.  dw gatherpf_qps_instruction-instruction_handler
  4248.  db 'vpclmulhqlqdq',1
  4249.  dw avx_pclmulqdq_instruction-instruction_handler
  4250.  db 'vpclmullqlqdq',0
  4251.  dw avx_pclmulqdq_instruction-instruction_handler
  4252. instructions_14:
  4253.  db 'vbroadcastf128',1Ah
  4254.  dw avx_broadcast_128_instruction_noevex-instruction_handler
  4255.  db 'vbroadcasti128',5Ah
  4256.  dw avx_broadcast_128_instruction_noevex-instruction_handler
  4257.  db 'vcmpfalse_ospd',1Bh
  4258.  dw avx_cmp_pd_instruction-instruction_handler
  4259.  db 'vcmpfalse_osps',1Bh
  4260.  dw avx_cmp_ps_instruction-instruction_handler
  4261.  db 'vcmpfalse_ossd',1Bh
  4262.  dw avx_cmp_sd_instruction-instruction_handler
  4263.  db 'vcmpfalse_osss',1Bh
  4264.  dw avx_cmp_ss_instruction-instruction_handler
  4265.  db 'vfmaddsub132pd',96h
  4266.  dw fma_instruction_pd-instruction_handler
  4267.  db 'vfmaddsub132ps',96h
  4268.  dw fma_instruction_ps-instruction_handler
  4269.  db 'vfmaddsub213pd',0A6h
  4270.  dw fma_instruction_pd-instruction_handler
  4271.  db 'vfmaddsub213ps',0A6h
  4272.  dw fma_instruction_ps-instruction_handler
  4273.  db 'vfmaddsub231pd',0B6h
  4274.  dw fma_instruction_pd-instruction_handler
  4275.  db 'vfmaddsub231ps',0B6h
  4276.  dw fma_instruction_ps-instruction_handler
  4277.  db 'vfmsubadd132pd',97h
  4278.  dw fma_instruction_pd-instruction_handler
  4279.  db 'vfmsubadd132ps',97h
  4280.  dw fma_instruction_ps-instruction_handler
  4281.  db 'vfmsubadd213pd',0A7h
  4282.  dw fma_instruction_pd-instruction_handler
  4283.  db 'vfmsubadd213ps',0A7h
  4284.  dw fma_instruction_ps-instruction_handler
  4285.  db 'vfmsubadd231pd',0B7h
  4286.  dw fma_instruction_pd-instruction_handler
  4287.  db 'vfmsubadd231ps',0B7h
  4288.  dw fma_instruction_ps-instruction_handler
  4289.  db 'vgf2p8affineqb',0CEh
  4290.  dw avx_q_instruction_3a_imm8_w1-instruction_handler
  4291.  db 'vpmultishiftqb',83h
  4292.  dw avx_q_instruction_38_evex-instruction_handler
  4293.  db 'vscatterpf0dpd',5
  4294.  dw gatherpf_dpd_instruction-instruction_handler
  4295.  db 'vscatterpf0dps',5
  4296.  dw gatherpf_dps_instruction-instruction_handler
  4297.  db 'vscatterpf0qpd',5
  4298.  dw gatherpf_qpd_instruction-instruction_handler
  4299.  db 'vscatterpf0qps',5
  4300.  dw gatherpf_qps_instruction-instruction_handler
  4301.  db 'vscatterpf1dpd',6
  4302.  dw gatherpf_dpd_instruction-instruction_handler
  4303.  db 'vscatterpf1dps',6
  4304.  dw gatherpf_dps_instruction-instruction_handler
  4305.  db 'vscatterpf1qpd',6
  4306.  dw gatherpf_qpd_instruction-instruction_handler
  4307.  db 'vscatterpf1qps',6
  4308.  dw gatherpf_qps_instruction-instruction_handler
  4309. instructions_15:
  4310.  db 'aeskeygenassist',0DFh
  4311.  dw sse4_instruction_66_3a_imm8-instruction_handler
  4312.  db 'vbroadcastf32x2',19h
  4313.  dw avx512_broadcast_32x2_instruction-instruction_handler
  4314.  db 'vbroadcastf32x4',1Ah
  4315.  dw avx512_broadcast_32x4_instruction-instruction_handler
  4316.  db 'vbroadcastf32x8',1Bh
  4317.  dw avx512_broadcast_32x8_instruction-instruction_handler
  4318.  db 'vbroadcastf64x2',1Ah
  4319.  dw avx512_broadcast_64x2_instruction-instruction_handler
  4320.  db 'vbroadcastf64x4',1Bh
  4321.  dw avx512_broadcast_64x4_instruction-instruction_handler
  4322.  db 'vbroadcasti32x2',59h
  4323.  dw avx512_broadcast_32x2_instruction-instruction_handler
  4324.  db 'vbroadcasti32x4',5Ah
  4325.  dw avx512_broadcast_32x4_instruction-instruction_handler
  4326.  db 'vbroadcasti32x8',5Bh
  4327.  dw avx512_broadcast_32x8_instruction-instruction_handler
  4328.  db 'vbroadcasti64x2',5Ah
  4329.  dw avx512_broadcast_64x2_instruction-instruction_handler
  4330.  db 'vbroadcasti64x4',5Bh
  4331.  dw avx512_broadcast_64x4_instruction-instruction_handler
  4332.  db 'vpbroadcastmb2q',2Ah
  4333.  dw avx512_pmov_m2_instruction_w1-instruction_handler
  4334.  db 'vpbroadcastmw2d',3Ah
  4335.  dw avx512_pmov_m2_instruction-instruction_handler
  4336. instructions_16:
  4337.  db 'gf2p8affineinvqb',0CFh
  4338.  dw sse4_instruction_66_3a_imm8-instruction_handler
  4339.  db 'vaeskeygenassist',0DFh
  4340.  dw avx_single_source_128bit_instruction_3a_imm8_noevex-instruction_handler
  4341. instructions_17:
  4342.  db 'vgf2p8affineinvqb',0CFh
  4343.  dw avx_q_instruction_3a_imm8_w1-instruction_handler
  4344. instructions_end:
  4345.  
  4346. data_directives:
  4347.  dw data_directives_2-data_directives,(data_directives_3-data_directives_2)/(2+3)
  4348.  dw data_directives_3-data_directives,(data_directives_4-data_directives_3)/(3+3)
  4349.  dw data_directives_4-data_directives,(data_directives_end-data_directives_4)/(4+3)
  4350.  
  4351. data_directives_2:
  4352.  db 'db',1
  4353.  dw data_bytes-instruction_handler
  4354.  db 'dd',4
  4355.  dw data_dwords-instruction_handler
  4356.  db 'df',6
  4357.  dw data_pwords-instruction_handler
  4358.  db 'dp',6
  4359.  dw data_pwords-instruction_handler
  4360.  db 'dq',8
  4361.  dw data_qwords-instruction_handler
  4362.  db 'dt',10
  4363.  dw data_twords-instruction_handler
  4364.  db 'du',2
  4365.  dw data_unicode-instruction_handler
  4366.  db 'dw',2
  4367.  dw data_words-instruction_handler
  4368.  db 'rb',1
  4369.  dw reserve_bytes-instruction_handler
  4370.  db 'rd',4
  4371.  dw reserve_dwords-instruction_handler
  4372.  db 'rf',6
  4373.  dw reserve_pwords-instruction_handler
  4374.  db 'rp',6
  4375.  dw reserve_pwords-instruction_handler
  4376.  db 'rq',8
  4377.  dw reserve_qwords-instruction_handler
  4378.  db 'rt',10
  4379.  dw reserve_twords-instruction_handler
  4380.  db 'rw',2
  4381.  dw reserve_words-instruction_handler
  4382. data_directives_3:
  4383. data_directives_4:
  4384.  db 'file',1
  4385.  dw data_file-instruction_handler
  4386. data_directives_end:
  4387.