Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

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