Subversion Repositories Kolibri OS

Rev

Rev 4478 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

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