Subversion Repositories Kolibri OS

Rev

Rev 7859 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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