Subversion Repositories Kolibri OS

Rev

Rev 3011 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3011 Rev 4039
1
; flat assembler core
1
; flat assembler core
2
; Copyright (c) 1999-2012, Tomasz Grysztar.
2
; Copyright (c) 1999-2013, Tomasz Grysztar.
3
; All rights reserved.
3
; All rights reserved.
4
 
4
 
5
include_variable db 'INCLUDE',0
5
include_variable db 'INCLUDE',0
6
 
6
 
7
symbol_characters db 27
7
symbol_characters db 27
8
 db 9,0Ah,0Dh,1Ah,20h,'+-/*=<>()[]{}:,|&~#`;\'
8
 db 9,0Ah,0Dh,1Ah,20h,'+-/*=<>()[]{}:,|&~#`;\'
9
 
9
 
10
preprocessor_directives:
10
preprocessor_directives:
11
 db 6,'define'
11
 db 6,'define'
12
 dw define_symbolic_constant-directive_handler
12
 dw define_symbolic_constant-directive_handler
13
 db 7,'include'
13
 db 7,'include'
14
 dw include_file-directive_handler
14
 dw include_file-directive_handler
15
 db 3,'irp'
15
 db 3,'irp'
16
 dw irp_directive-directive_handler
16
 dw irp_directive-directive_handler
17
 db 4,'irps'
17
 db 4,'irps'
18
 dw irps_directive-directive_handler
18
 dw irps_directive-directive_handler
19
 db 5,'macro'
19
 db 5,'macro'
20
 dw define_macro-directive_handler
20
 dw define_macro-directive_handler
21
 db 5,'match'
21
 db 5,'match'
22
 dw match_directive-directive_handler
22
 dw match_directive-directive_handler
23
 db 5,'purge'
23
 db 5,'purge'
24
 dw purge_macro-directive_handler
24
 dw purge_macro-directive_handler
25
 db 4,'rept'
25
 db 4,'rept'
26
 dw rept_directive-directive_handler
26
 dw rept_directive-directive_handler
27
 db 7,'restore'
27
 db 7,'restore'
28
 dw restore_equ_constant-directive_handler
28
 dw restore_equ_constant-directive_handler
29
 db 7,'restruc'
29
 db 7,'restruc'
30
 dw purge_struc-directive_handler
30
 dw purge_struc-directive_handler
31
 db 5,'struc'
31
 db 5,'struc'
32
 dw define_struc-directive_handler
32
 dw define_struc-directive_handler
33
 db 0
33
 db 0
34
 
34
 
35
macro_directives:
35
macro_directives:
36
 db 6,'common'
36
 db 6,'common'
37
 dw common_block-directive_handler
37
 dw common_block-directive_handler
38
 db 7,'forward'
38
 db 7,'forward'
39
 dw forward_block-directive_handler
39
 dw forward_block-directive_handler
40
 db 5,'local'
40
 db 5,'local'
41
 dw local_symbols-directive_handler
41
 dw local_symbols-directive_handler
42
 db 7,'reverse'
42
 db 7,'reverse'
43
 dw reverse_block-directive_handler
43
 dw reverse_block-directive_handler
44
 db 0
44
 db 0
45
 
45
 
46
operators:
46
operators:
47
 db 1,'+',80h
47
 db 1,'+',80h
48
 db 1,'-',81h
48
 db 1,'-',81h
49
 db 1,'*',90h
49
 db 1,'*',90h
50
 db 1,'/',91h
50
 db 1,'/',91h
51
 db 3,'and',0B0h
51
 db 3,'and',0B0h
52
 db 3,'mod',0A0h
52
 db 3,'mod',0A0h
53
 db 2,'or',0B1h
53
 db 2,'or',0B1h
54
 db 3,'shl',0C0h
54
 db 3,'shl',0C0h
55
 db 3,'shr',0C1h
55
 db 3,'shr',0C1h
56
 db 3,'xor',0B2h
56
 db 3,'xor',0B2h
57
 db 0
57
 db 0
58
 
58
 
59
single_operand_operators:
59
single_operand_operators:
60
 db 1,'+',82h
60
 db 1,'+',82h
61
 db 1,'-',83h
61
 db 1,'-',83h
62
 db 3,'not',0D0h
62
 db 3,'not',0D0h
63
 db 3,'plt',0E1h
63
 db 3,'plt',0E1h
64
 db 3,'rva',0E0h
64
 db 3,'rva',0E0h
65
 db 0
65
 db 0
66
 
66
 
67
directive_operators:
67
directive_operators:
68
 db 5,'align',8Ch
68
 db 5,'align',8Ch
69
 db 2,'as',86h
69
 db 2,'as',86h
70
 db 2,'at',80h
70
 db 2,'at',80h
71
 db 7,'defined',88h
71
 db 7,'defined',88h
72
 db 3,'dup',81h
72
 db 3,'dup',81h
73
 db 2,'eq',0F0h
73
 db 2,'eq',0F0h
74
 db 6,'eqtype',0F7h
74
 db 6,'eqtype',0F7h
75
 db 4,'from',82h
75
 db 4,'from',82h
76
 db 2,'in',0F6h
76
 db 2,'in',0F6h
77
 db 2,'on',84h
77
 db 2,'on',84h
78
 db 3,'ptr',85h
78
 db 3,'ptr',85h
79
 db 10,'relativeto',0F8h
79
 db 10,'relativeto',0F8h
80
 db 4,'used',89h
80
 db 4,'used',89h
81
 db 0
81
 db 0
82
 
82
 
83
address_sizes:
83
address_sizes:
84
 db 4,'byte',1
84
 db 4,'byte',1
85
 db 5,'dword',4
85
 db 5,'dword',4
86
 db 5,'qword',8
86
 db 5,'qword',8
87
 db 4,'word',2
87
 db 4,'word',2
88
 db 0
88
 db 0
89
 
89
 
90
symbols:
90
symbols:
91
 dw symbols_2-symbols,(symbols_3-symbols_2)/(2+2)
91
 dw symbols_2-symbols,(symbols_3-symbols_2)/(2+2)
92
 dw symbols_3-symbols,(symbols_4-symbols_3)/(3+2)
92
 dw symbols_3-symbols,(symbols_4-symbols_3)/(3+2)
93
 dw symbols_4-symbols,(symbols_5-symbols_4)/(4+2)
93
 dw symbols_4-symbols,(symbols_5-symbols_4)/(4+2)
94
 dw symbols_5-symbols,(symbols_6-symbols_5)/(5+2)
94
 dw symbols_5-symbols,(symbols_6-symbols_5)/(5+2)
95
 dw symbols_6-symbols,(symbols_7-symbols_6)/(6+2)
95
 dw symbols_6-symbols,(symbols_7-symbols_6)/(6+2)
96
 dw symbols_7-symbols,(symbols_8-symbols_7)/(7+2)
96
 dw symbols_7-symbols,(symbols_8-symbols_7)/(7+2)
97
 dw symbols_8-symbols,(symbols_9-symbols_8)/(8+2)
97
 dw symbols_8-symbols,(symbols_9-symbols_8)/(8+2)
98
 dw symbols_9-symbols,(symbols_10-symbols_9)/(9+2)
98
 dw symbols_9-symbols,(symbols_10-symbols_9)/(9+2)
99
 dw symbols_10-symbols,(symbols_11-symbols_10)/(10+2)
99
 dw symbols_10-symbols,(symbols_11-symbols_10)/(10+2)
100
 dw symbols_11-symbols,(symbols_end-symbols_11)/(11+2)
100
 dw symbols_11-symbols,(symbols_end-symbols_11)/(11+2)
101
 
101
 
102
symbols_2:
102
symbols_2:
103
 db 'ah',10h,04h
103
 db 'ah',10h,04h
104
 db 'al',10h,10h
104
 db 'al',10h,10h
105
 db 'ax',10h,20h
105
 db 'ax',10h,20h
106
 db 'bh',10h,07h
106
 db 'bh',10h,07h
107
 db 'bl',10h,13h
107
 db 'bl',10h,13h
108
 db 'bp',10h,25h
108
 db 'bp',10h,25h
109
 db 'bx',10h,23h
109
 db 'bx',10h,23h
110
 db 'ch',10h,05h
110
 db 'ch',10h,05h
111
 db 'cl',10h,11h
111
 db 'cl',10h,11h
112
 db 'cs',10h,62h
112
 db 'cs',10h,62h
113
 db 'cx',10h,21h
113
 db 'cx',10h,21h
114
 db 'dh',10h,06h
114
 db 'dh',10h,06h
115
 db 'di',10h,27h
115
 db 'di',10h,27h
116
 db 'dl',10h,12h
116
 db 'dl',10h,12h
117
 db 'ds',10h,64h
117
 db 'ds',10h,64h
118
 db 'dx',10h,22h
118
 db 'dx',10h,22h
119
 db 'es',10h,61h
119
 db 'es',10h,61h
120
 db 'fs',10h,65h
120
 db 'fs',10h,65h
121
 db 'gs',10h,66h
121
 db 'gs',10h,66h
122
 db 'ms',1Ch,41h
122
 db 'ms',1Ch,41h
123
 db 'mz',18h,20h
123
 db 'mz',18h,20h
124
 db 'nx',1Bh,83h
124
 db 'nx',1Bh,83h
125
 db 'pe',18h,30h
125
 db 'pe',18h,30h
126
 db 'r8',10h,88h
126
 db 'r8',10h,88h
127
 db 'r9',10h,89h
127
 db 'r9',10h,89h
128
 db 'si',10h,26h
128
 db 'si',10h,26h
129
 db 'sp',10h,24h
129
 db 'sp',10h,24h
130
 db 'ss',10h,63h
130
 db 'ss',10h,63h
131
 db 'st',10h,0A0h
131
 db 'st',10h,0A0h
132
symbols_3:
132
symbols_3:
133
 db 'bpl',10h,15h
133
 db 'bpl',10h,15h
134
 db 'cr0',10h,50h
134
 db 'cr0',10h,50h
135
 db 'cr1',10h,51h
135
 db 'cr1',10h,51h
136
 db 'cr2',10h,52h
136
 db 'cr2',10h,52h
137
 db 'cr3',10h,53h
137
 db 'cr3',10h,53h
138
 db 'cr4',10h,54h
138
 db 'cr4',10h,54h
139
 db 'cr5',10h,55h
139
 db 'cr5',10h,55h
140
 db 'cr6',10h,56h
140
 db 'cr6',10h,56h
141
 db 'cr7',10h,57h
141
 db 'cr7',10h,57h
142
 db 'cr8',10h,58h
142
 db 'cr8',10h,58h
143
 db 'cr9',10h,59h
143
 db 'cr9',10h,59h
144
 db 'dil',10h,17h
144
 db 'dil',10h,17h
145
 db 'dll',1Bh,80h
145
 db 'dll',1Bh,80h
146
 db 'dr0',10h,70h
146
 db 'dr0',10h,70h
147
 db 'dr1',10h,71h
147
 db 'dr1',10h,71h
148
 db 'dr2',10h,72h
148
 db 'dr2',10h,72h
149
 db 'dr3',10h,73h
149
 db 'dr3',10h,73h
150
 db 'dr4',10h,74h
150
 db 'dr4',10h,74h
151
 db 'dr5',10h,75h
151
 db 'dr5',10h,75h
152
 db 'dr6',10h,76h
152
 db 'dr6',10h,76h
153
 db 'dr7',10h,77h
153
 db 'dr7',10h,77h
154
 db 'dr8',10h,78h
154
 db 'dr8',10h,78h
155
 db 'dr9',10h,79h
155
 db 'dr9',10h,79h
156
 db 'eax',10h,40h
156
 db 'eax',10h,40h
157
 db 'ebp',10h,45h
157
 db 'ebp',10h,45h
158
 db 'ebx',10h,43h
158
 db 'ebx',10h,43h
159
 db 'ecx',10h,41h
159
 db 'ecx',10h,41h
160
 db 'edi',10h,47h
160
 db 'edi',10h,47h
161
 db 'edx',10h,42h
161
 db 'edx',10h,42h
162
 db 'efi',1Bh,10
162
 db 'efi',1Bh,10
163
 db 'eip',10h,0F4h
163
 db 'eip',10h,0F4h
164
 db 'elf',18h,50h
164
 db 'elf',18h,50h
165
 db 'esi',10h,46h
165
 db 'esi',10h,46h
166
 db 'esp',10h,44h
166
 db 'esp',10h,44h
167
 db 'far',12h,3
167
 db 'far',12h,3
168
 db 'gui',1Bh,2
168
 db 'gui',1Bh,2
169
 db 'mm0',10h,0B0h
169
 db 'mm0',10h,0B0h
170
 db 'mm1',10h,0B1h
170
 db 'mm1',10h,0B1h
171
 db 'mm2',10h,0B2h
171
 db 'mm2',10h,0B2h
172
 db 'mm3',10h,0B3h
172
 db 'mm3',10h,0B3h
173
 db 'mm4',10h,0B4h
173
 db 'mm4',10h,0B4h
174
 db 'mm5',10h,0B5h
174
 db 'mm5',10h,0B5h
175
 db 'mm6',10h,0B6h
175
 db 'mm6',10h,0B6h
176
 db 'mm7',10h,0B7h
176
 db 'mm7',10h,0B7h
177
 db 'r10',10h,8Ah
177
 db 'r10',10h,8Ah
178
 db 'r11',10h,8Bh
178
 db 'r11',10h,8Bh
179
 db 'r12',10h,8Ch
179
 db 'r12',10h,8Ch
180
 db 'r13',10h,8Dh
180
 db 'r13',10h,8Dh
181
 db 'r14',10h,8Eh
181
 db 'r14',10h,8Eh
182
 db 'r15',10h,8Fh
182
 db 'r15',10h,8Fh
183
 db 'r8b',10h,18h
183
 db 'r8b',10h,18h
184
 db 'r8d',10h,48h
184
 db 'r8d',10h,48h
185
 db 'r8l',10h,18h
185
 db 'r8l',10h,18h
186
 db 'r8w',10h,28h
186
 db 'r8w',10h,28h
187
 db 'r9b',10h,19h
187
 db 'r9b',10h,19h
188
 db 'r9d',10h,49h
188
 db 'r9d',10h,49h
189
 db 'r9l',10h,19h
189
 db 'r9l',10h,19h
190
 db 'r9w',10h,29h
190
 db 'r9w',10h,29h
191
 db 'rax',10h,80h
191
 db 'rax',10h,80h
192
 db 'rbp',10h,85h
192
 db 'rbp',10h,85h
193
 db 'rbx',10h,83h
193
 db 'rbx',10h,83h
194
 db 'rcx',10h,81h
194
 db 'rcx',10h,81h
195
 db 'rdi',10h,87h
195
 db 'rdi',10h,87h
196
 db 'rdx',10h,82h
196
 db 'rdx',10h,82h
197
 db 'rip',10h,0F8h
197
 db 'rip',10h,0F8h
198
 db 'rsi',10h,86h
198
 db 'rsi',10h,86h
199
 db 'rsp',10h,84h
199
 db 'rsp',10h,84h
200
 db 'sil',10h,16h
200
 db 'sil',10h,16h
201
 db 'spl',10h,14h
201
 db 'spl',10h,14h
202
 db 'st0',10h,0A0h
202
 db 'st0',10h,0A0h
203
 db 'st1',10h,0A1h
203
 db 'st1',10h,0A1h
204
 db 'st2',10h,0A2h
204
 db 'st2',10h,0A2h
205
 db 'st3',10h,0A3h
205
 db 'st3',10h,0A3h
206
 db 'st4',10h,0A4h
206
 db 'st4',10h,0A4h
207
 db 'st5',10h,0A5h
207
 db 'st5',10h,0A5h
208
 db 'st6',10h,0A6h
208
 db 'st6',10h,0A6h
209
 db 'st7',10h,0A7h
209
 db 'st7',10h,0A7h
210
 db 'tr0',10h,90h
210
 db 'tr0',10h,90h
211
 db 'tr1',10h,91h
211
 db 'tr1',10h,91h
212
 db 'tr2',10h,92h
212
 db 'tr2',10h,92h
213
 db 'tr3',10h,93h
213
 db 'tr3',10h,93h
214
 db 'tr4',10h,94h
214
 db 'tr4',10h,94h
215
 db 'tr5',10h,95h
215
 db 'tr5',10h,95h
216
 db 'tr6',10h,96h
216
 db 'tr6',10h,96h
217
 db 'tr7',10h,97h
217
 db 'tr7',10h,97h
218
 db 'wdm',1Bh,81h
218
 db 'wdm',1Bh,81h
219
symbols_4:
219
symbols_4:
220
 db 'byte',11h,1
220
 db 'byte',11h,1
221
 db 'code',19h,5
221
 db 'code',19h,5
222
 db 'coff',18h,40h
222
 db 'coff',18h,40h
223
 db 'cr10',10h,5Ah
223
 db 'cr10',10h,5Ah
224
 db 'cr11',10h,5Bh
224
 db 'cr11',10h,5Bh
225
 db 'cr12',10h,5Ch
225
 db 'cr12',10h,5Ch
226
 db 'cr13',10h,5Dh
226
 db 'cr13',10h,5Dh
227
 db 'cr14',10h,5Eh
227
 db 'cr14',10h,5Eh
228
 db 'cr15',10h,5Fh
228
 db 'cr15',10h,5Fh
229
 db 'data',19h,6
229
 db 'data',19h,6
230
 db 'dr10',10h,7Ah
230
 db 'dr10',10h,7Ah
231
 db 'dr11',10h,7Bh
231
 db 'dr11',10h,7Bh
232
 db 'dr12',10h,7Ch
232
 db 'dr12',10h,7Ch
233
 db 'dr13',10h,7Dh
233
 db 'dr13',10h,7Dh
234
 db 'dr14',10h,7Eh
234
 db 'dr14',10h,7Eh
235
 db 'dr15',10h,7Fh
235
 db 'dr15',10h,7Fh
236
 db 'ms64',1Ch,49h
236
 db 'ms64',1Ch,49h
237
 db 'near',12h,2
237
 db 'near',12h,2
238
 db 'note',1Eh,4
238
 db 'note',1Eh,4
239
 db 'pe64',18h,3Ch
239
 db 'pe64',18h,3Ch
240
 db 'r10b',10h,1Ah
240
 db 'r10b',10h,1Ah
241
 db 'r10d',10h,4Ah
241
 db 'r10d',10h,4Ah
242
 db 'r10l',10h,1Ah
242
 db 'r10l',10h,1Ah
243
 db 'r10w',10h,2Ah
243
 db 'r10w',10h,2Ah
244
 db 'r11b',10h,1Bh
244
 db 'r11b',10h,1Bh
245
 db 'r11d',10h,4Bh
245
 db 'r11d',10h,4Bh
246
 db 'r11l',10h,1Bh
246
 db 'r11l',10h,1Bh
247
 db 'r11w',10h,2Bh
247
 db 'r11w',10h,2Bh
248
 db 'r12b',10h,1Ch
248
 db 'r12b',10h,1Ch
249
 db 'r12d',10h,4Ch
249
 db 'r12d',10h,4Ch
250
 db 'r12l',10h,1Ch
250
 db 'r12l',10h,1Ch
251
 db 'r12w',10h,2Ch
251
 db 'r12w',10h,2Ch
252
 db 'r13b',10h,1Dh
252
 db 'r13b',10h,1Dh
253
 db 'r13d',10h,4Dh
253
 db 'r13d',10h,4Dh
254
 db 'r13l',10h,1Dh
254
 db 'r13l',10h,1Dh
255
 db 'r13w',10h,2Dh
255
 db 'r13w',10h,2Dh
256
 db 'r14b',10h,1Eh
256
 db 'r14b',10h,1Eh
257
 db 'r14d',10h,4Eh
257
 db 'r14d',10h,4Eh
258
 db 'r14l',10h,1Eh
258
 db 'r14l',10h,1Eh
259
 db 'r14w',10h,2Eh
259
 db 'r14w',10h,2Eh
260
 db 'r15b',10h,1Fh
260
 db 'r15b',10h,1Fh
261
 db 'r15d',10h,4Fh
261
 db 'r15d',10h,4Fh
262
 db 'r15l',10h,1Fh
262
 db 'r15l',10h,1Fh
263
 db 'r15w',10h,2Fh
263
 db 'r15w',10h,2Fh
264
 db 'word',11h,2
264
 db 'word',11h,2
265
 db 'xmm0',10h,0C0h
265
 db 'xmm0',10h,0C0h
266
 db 'xmm1',10h,0C1h
266
 db 'xmm1',10h,0C1h
267
 db 'xmm2',10h,0C2h
267
 db 'xmm2',10h,0C2h
268
 db 'xmm3',10h,0C3h
268
 db 'xmm3',10h,0C3h
269
 db 'xmm4',10h,0C4h
269
 db 'xmm4',10h,0C4h
270
 db 'xmm5',10h,0C5h
270
 db 'xmm5',10h,0C5h
271
 db 'xmm6',10h,0C6h
271
 db 'xmm6',10h,0C6h
272
 db 'xmm7',10h,0C7h
272
 db 'xmm7',10h,0C7h
273
 db 'xmm8',10h,0C8h
273
 db 'xmm8',10h,0C8h
274
 db 'xmm9',10h,0C9h
274
 db 'xmm9',10h,0C9h
275
 db 'ymm0',10h,0D0h
275
 db 'ymm0',10h,0D0h
276
 db 'ymm1',10h,0D1h
276
 db 'ymm1',10h,0D1h
277
 db 'ymm2',10h,0D2h
277
 db 'ymm2',10h,0D2h
278
 db 'ymm3',10h,0D3h
278
 db 'ymm3',10h,0D3h
279
 db 'ymm4',10h,0D4h
279
 db 'ymm4',10h,0D4h
280
 db 'ymm5',10h,0D5h
280
 db 'ymm5',10h,0D5h
281
 db 'ymm6',10h,0D6h
281
 db 'ymm6',10h,0D6h
282
 db 'ymm7',10h,0D7h
282
 db 'ymm7',10h,0D7h
283
 db 'ymm8',10h,0D8h
283
 db 'ymm8',10h,0D8h
284
 db 'ymm9',10h,0D9h
284
 db 'ymm9',10h,0D9h
285
symbols_5:
285
symbols_5:
286
 db 'dword',11h,4
286
 db 'dword',11h,4
287
 db 'elf64',18h,58h
287
 db 'elf64',18h,58h
288
 db 'fword',11h,6
288
 db 'fword',11h,6
289
 db 'large',1Bh,82h
289
 db 'large',1Bh,82h
290
 db 'pword',11h,6
290
 db 'pword',11h,6
291
 db 'qword',11h,8
291
 db 'qword',11h,8
292
 db 'short',12h,1
292
 db 'short',12h,1
293
 db 'tbyte',11h,0Ah
293
 db 'tbyte',11h,0Ah
294
 db 'tword',11h,0Ah
294
 db 'tword',11h,0Ah
295
 db 'use16',13h,16
295
 db 'use16',13h,16
296
 db 'use32',13h,32
296
 db 'use32',13h,32
297
 db 'use64',13h,64
297
 db 'use64',13h,64
298
 db 'xmm10',10h,0CAh
298
 db 'xmm10',10h,0CAh
299
 db 'xmm11',10h,0CBh
299
 db 'xmm11',10h,0CBh
300
 db 'xmm12',10h,0CCh
300
 db 'xmm12',10h,0CCh
301
 db 'xmm13',10h,0CDh
301
 db 'xmm13',10h,0CDh
302
 db 'xmm14',10h,0CEh
302
 db 'xmm14',10h,0CEh
303
 db 'xmm15',10h,0CFh
303
 db 'xmm15',10h,0CFh
304
 db 'xword',11h,16
304
 db 'xword',11h,16
305
 db 'ymm10',10h,0DAh
305
 db 'ymm10',10h,0DAh
306
 db 'ymm11',10h,0DBh
306
 db 'ymm11',10h,0DBh
307
 db 'ymm12',10h,0DCh
307
 db 'ymm12',10h,0DCh
308
 db 'ymm13',10h,0DDh
308
 db 'ymm13',10h,0DDh
309
 db 'ymm14',10h,0DEh
309
 db 'ymm14',10h,0DEh
310
 db 'ymm15',10h,0DFh
310
 db 'ymm15',10h,0DFh
311
 db 'yword',11h,32
311
 db 'yword',11h,32
312
symbols_6:
312
symbols_6:
313
 db 'binary',18h,10h
313
 db 'binary',18h,10h
314
 db 'dqword',11h,16
314
 db 'dqword',11h,16
315
 db 'export',1Ah,0
315
 db 'export',1Ah,0
316
 db 'fixups',1Ah,5
316
 db 'fixups',1Ah,5
317
 db 'import',1Ah,1
317
 db 'import',1Ah,1
318
 db 'native',1Bh,1
318
 db 'native',1Bh,1
319
 db 'qqword',11h,32
319
 db 'qqword',11h,32
320
 db 'static',1Dh,1
320
 db 'static',1Dh,1
321
symbols_7:
321
symbols_7:
322
 db 'console',1Bh,3
322
 db 'console',1Bh,3
323
 db 'dynamic',1Eh,2
323
 db 'dynamic',1Eh,2
324
 db 'efiboot',1Bh,11
324
 db 'efiboot',1Bh,11
325
symbols_8:
325
symbols_8:
326
 db 'linkinfo',19h,9
326
 db 'linkinfo',19h,9
327
 db 'readable',19h,30
327
 db 'readable',19h,30
328
 db 'resource',1Ah,2
328
 db 'resource',1Ah,2
329
 db 'writable',19h,31
329
 db 'writable',19h,31
330
symbols_9:
330
symbols_9:
331
 db 'shareable',19h,28
331
 db 'shareable',19h,28
332
 db 'writeable',19h,31
332
 db 'writeable',19h,31
333
symbols_10:
333
symbols_10:
334
 db 'efiruntime',1Bh,12
334
 db 'efiruntime',1Bh,12
335
 db 'executable',19h,29
335
 db 'executable',19h,29
336
 db 'linkremove',19h,11
336
 db 'linkremove',19h,11
337
symbols_11:
337
symbols_11:
338
 db 'discardable',19h,25
338
 db 'discardable',19h,25
339
 db 'interpreter',1Eh,3
339
 db 'interpreter',1Eh,3
340
 db 'notpageable',19h,27
340
 db 'notpageable',19h,27
341
symbols_end:
341
symbols_end:
342
 
342
 
343
instructions:
343
instructions:
344
 dw instructions_2-instructions,(instructions_3-instructions_2)/(2+3)
344
 dw instructions_2-instructions,(instructions_3-instructions_2)/(2+3)
345
 dw instructions_3-instructions,(instructions_4-instructions_3)/(3+3)
345
 dw instructions_3-instructions,(instructions_4-instructions_3)/(3+3)
346
 dw instructions_4-instructions,(instructions_5-instructions_4)/(4+3)
346
 dw instructions_4-instructions,(instructions_5-instructions_4)/(4+3)
347
 dw instructions_5-instructions,(instructions_6-instructions_5)/(5+3)
347
 dw instructions_5-instructions,(instructions_6-instructions_5)/(5+3)
348
 dw instructions_6-instructions,(instructions_7-instructions_6)/(6+3)
348
 dw instructions_6-instructions,(instructions_7-instructions_6)/(6+3)
349
 dw instructions_7-instructions,(instructions_8-instructions_7)/(7+3)
349
 dw instructions_7-instructions,(instructions_8-instructions_7)/(7+3)
350
 dw instructions_8-instructions,(instructions_9-instructions_8)/(8+3)
350
 dw instructions_8-instructions,(instructions_9-instructions_8)/(8+3)
351
 dw instructions_9-instructions,(instructions_10-instructions_9)/(9+3)
351
 dw instructions_9-instructions,(instructions_10-instructions_9)/(9+3)
352
 dw instructions_10-instructions,(instructions_11-instructions_10)/(10+3)
352
 dw instructions_10-instructions,(instructions_11-instructions_10)/(10+3)
353
 dw instructions_11-instructions,(instructions_12-instructions_11)/(11+3)
353
 dw instructions_11-instructions,(instructions_12-instructions_11)/(11+3)
354
 dw instructions_12-instructions,(instructions_13-instructions_12)/(12+3)
354
 dw instructions_12-instructions,(instructions_13-instructions_12)/(12+3)
355
 dw instructions_13-instructions,(instructions_14-instructions_13)/(13+3)
355
 dw instructions_13-instructions,(instructions_14-instructions_13)/(13+3)
356
 dw instructions_14-instructions,(instructions_15-instructions_14)/(14+3)
356
 dw instructions_14-instructions,(instructions_15-instructions_14)/(14+3)
357
 dw instructions_15-instructions,(instructions_16-instructions_15)/(15+3)
357
 dw instructions_15-instructions,(instructions_16-instructions_15)/(15+3)
358
 dw instructions_16-instructions,(instructions_end-instructions_16)/(16+3)
358
 dw instructions_16-instructions,(instructions_end-instructions_16)/(16+3)
359
 
359
 
360
instructions_2:
360
instructions_2:
361
 db 'bt',4
361
 db 'bt',4
362
 dw bt_instruction-instruction_handler
362
 dw bt_instruction-instruction_handler
363
 db 'if',0
363
 db 'if',0
364
 dw if_directive-instruction_handler
364
 dw if_directive-instruction_handler
365
 db 'in',0
365
 db 'in',0
366
 dw in_instruction-instruction_handler
366
 dw in_instruction-instruction_handler
367
 db 'ja',77h
367
 db 'ja',77h
368
 dw conditional_jump-instruction_handler
368
 dw conditional_jump-instruction_handler
369
 db 'jb',72h
369
 db 'jb',72h
370
 dw conditional_jump-instruction_handler
370
 dw conditional_jump-instruction_handler
371
 db 'jc',72h
371
 db 'jc',72h
372
 dw conditional_jump-instruction_handler
372
 dw conditional_jump-instruction_handler
373
 db 'je',74h
373
 db 'je',74h
374
 dw conditional_jump-instruction_handler
374
 dw conditional_jump-instruction_handler
375
 db 'jg',7Fh
375
 db 'jg',7Fh
376
 dw conditional_jump-instruction_handler
376
 dw conditional_jump-instruction_handler
377
 db 'jl',7Ch
377
 db 'jl',7Ch
378
 dw conditional_jump-instruction_handler
378
 dw conditional_jump-instruction_handler
379
 db 'jo',70h
379
 db 'jo',70h
380
 dw conditional_jump-instruction_handler
380
 dw conditional_jump-instruction_handler
381
 db 'jp',7Ah
381
 db 'jp',7Ah
382
 dw conditional_jump-instruction_handler
382
 dw conditional_jump-instruction_handler
383
 db 'js',78h
383
 db 'js',78h
384
 dw conditional_jump-instruction_handler
384
 dw conditional_jump-instruction_handler
385
 db 'jz',74h
385
 db 'jz',74h
386
 dw conditional_jump-instruction_handler
386
 dw conditional_jump-instruction_handler
387
 db 'or',08h
387
 db 'or',08h
388
 dw basic_instruction-instruction_handler
388
 dw basic_instruction-instruction_handler
389
instructions_3:
389
instructions_3:
390
 db 'aaa',37h
390
 db 'aaa',37h
391
 dw simple_instruction_except64-instruction_handler
391
 dw simple_instruction_except64-instruction_handler
392
 db 'aad',0D5h
392
 db 'aad',0D5h
393
 dw aa_instruction-instruction_handler
393
 dw aa_instruction-instruction_handler
394
 db 'aam',0D4h
394
 db 'aam',0D4h
395
 dw aa_instruction-instruction_handler
395
 dw aa_instruction-instruction_handler
396
 db 'aas',3Fh
396
 db 'aas',3Fh
397
 dw simple_instruction_except64-instruction_handler
397
 dw simple_instruction_except64-instruction_handler
398
 db 'adc',10h
398
 db 'adc',10h
399
 dw basic_instruction-instruction_handler
399
 dw basic_instruction-instruction_handler
400
 db 'add',00h
400
 db 'add',00h
401
 dw basic_instruction-instruction_handler
401
 dw basic_instruction-instruction_handler
402
 db 'and',20h
402
 db 'and',20h
403
 dw basic_instruction-instruction_handler
403
 dw basic_instruction-instruction_handler
404
 db 'bsf',0BCh
404
 db 'bsf',0BCh
405
 dw bs_instruction-instruction_handler
405
 dw bs_instruction-instruction_handler
406
 db 'bsr',0BDh
406
 db 'bsr',0BDh
407
 dw bs_instruction-instruction_handler
407
 dw bs_instruction-instruction_handler
408
 db 'btc',7
408
 db 'btc',7
409
 dw bt_instruction-instruction_handler
409
 dw bt_instruction-instruction_handler
410
 db 'btr',6
410
 db 'btr',6
411
 dw bt_instruction-instruction_handler
411
 dw bt_instruction-instruction_handler
412
 db 'bts',5
412
 db 'bts',5
413
 dw bt_instruction-instruction_handler
413
 dw bt_instruction-instruction_handler
414
 db 'cbw',98h
414
 db 'cbw',98h
415
 dw simple_instruction_16bit-instruction_handler
415
 dw simple_instruction_16bit-instruction_handler
416
 db 'cdq',99h
416
 db 'cdq',99h
417
 dw simple_instruction_32bit-instruction_handler
417
 dw simple_instruction_32bit-instruction_handler
418
 db 'clc',0F8h
418
 db 'clc',0F8h
419
 dw simple_instruction-instruction_handler
419
 dw simple_instruction-instruction_handler
420
 db 'cld',0FCh
420
 db 'cld',0FCh
421
 dw simple_instruction-instruction_handler
421
 dw simple_instruction-instruction_handler
422
 db 'cli',0FAh
422
 db 'cli',0FAh
423
 dw simple_instruction-instruction_handler
423
 dw simple_instruction-instruction_handler
424
 db 'cmc',0F5h
424
 db 'cmc',0F5h
425
 dw simple_instruction-instruction_handler
425
 dw simple_instruction-instruction_handler
426
 db 'cmp',38h
426
 db 'cmp',38h
427
 dw basic_instruction-instruction_handler
427
 dw basic_instruction-instruction_handler
428
 db 'cqo',99h
428
 db 'cqo',99h
429
 dw simple_instruction_64bit-instruction_handler
429
 dw simple_instruction_64bit-instruction_handler
430
 db 'cwd',99h
430
 db 'cwd',99h
431
 dw simple_instruction_16bit-instruction_handler
431
 dw simple_instruction_16bit-instruction_handler
432
 db 'daa',27h
432
 db 'daa',27h
433
 dw simple_instruction_except64-instruction_handler
433
 dw simple_instruction_except64-instruction_handler
434
 db 'das',2Fh
434
 db 'das',2Fh
435
 dw simple_instruction_except64-instruction_handler
435
 dw simple_instruction_except64-instruction_handler
436
 db 'dec',1
436
 db 'dec',1
437
 dw inc_instruction-instruction_handler
437
 dw inc_instruction-instruction_handler
438
 db 'div',6
438
 db 'div',6
439
 dw single_operand_instruction-instruction_handler
439
 dw single_operand_instruction-instruction_handler
440
 db 'end',0
440
 db 'end',0
441
 dw end_directive-instruction_handler
441
 dw end_directive-instruction_handler
442
 db 'err',0
442
 db 'err',0
443
 dw err_directive-instruction_handler
443
 dw err_directive-instruction_handler
444
 db 'fld',0
444
 db 'fld',0
445
 dw fld_instruction-instruction_handler
445
 dw fld_instruction-instruction_handler
446
 db 'fst',2
446
 db 'fst',2
447
 dw fld_instruction-instruction_handler
447
 dw fld_instruction-instruction_handler
448
 db 'hlt',0F4h
448
 db 'hlt',0F4h
449
 dw simple_instruction-instruction_handler
449
 dw simple_instruction-instruction_handler
450
 db 'inc',0
450
 db 'inc',0
451
 dw inc_instruction-instruction_handler
451
 dw inc_instruction-instruction_handler
452
 db 'ins',6Ch
452
 db 'ins',6Ch
453
 dw ins_instruction-instruction_handler
453
 dw ins_instruction-instruction_handler
454
 db 'int',0CDh
454
 db 'int',0CDh
455
 dw int_instruction-instruction_handler
455
 dw int_instruction-instruction_handler
456
 db 'jae',73h
456
 db 'jae',73h
457
 dw conditional_jump-instruction_handler
457
 dw conditional_jump-instruction_handler
458
 db 'jbe',76h
458
 db 'jbe',76h
459
 dw conditional_jump-instruction_handler
459
 dw conditional_jump-instruction_handler
460
 db 'jge',7Dh
460
 db 'jge',7Dh
461
 dw conditional_jump-instruction_handler
461
 dw conditional_jump-instruction_handler
462
 db 'jle',7Eh
462
 db 'jle',7Eh
463
 dw conditional_jump-instruction_handler
463
 dw conditional_jump-instruction_handler
464
 db 'jmp',0
464
 db 'jmp',0
465
 dw jmp_instruction-instruction_handler
465
 dw jmp_instruction-instruction_handler
466
 db 'jna',76h
466
 db 'jna',76h
467
 dw conditional_jump-instruction_handler
467
 dw conditional_jump-instruction_handler
468
 db 'jnb',73h
468
 db 'jnb',73h
469
 dw conditional_jump-instruction_handler
469
 dw conditional_jump-instruction_handler
470
 db 'jnc',73h
470
 db 'jnc',73h
471
 dw conditional_jump-instruction_handler
471
 dw conditional_jump-instruction_handler
472
 db 'jne',75h
472
 db 'jne',75h
473
 dw conditional_jump-instruction_handler
473
 dw conditional_jump-instruction_handler
474
 db 'jng',7Eh
474
 db 'jng',7Eh
475
 dw conditional_jump-instruction_handler
475
 dw conditional_jump-instruction_handler
476
 db 'jnl',7Dh
476
 db 'jnl',7Dh
477
 dw conditional_jump-instruction_handler
477
 dw conditional_jump-instruction_handler
478
 db 'jno',71h
478
 db 'jno',71h
479
 dw conditional_jump-instruction_handler
479
 dw conditional_jump-instruction_handler
480
 db 'jnp',7Bh
480
 db 'jnp',7Bh
481
 dw conditional_jump-instruction_handler
481
 dw conditional_jump-instruction_handler
482
 db 'jns',79h
482
 db 'jns',79h
483
 dw conditional_jump-instruction_handler
483
 dw conditional_jump-instruction_handler
484
 db 'jnz',75h
484
 db 'jnz',75h
485
 dw conditional_jump-instruction_handler
485
 dw conditional_jump-instruction_handler
486
 db 'jpe',7Ah
486
 db 'jpe',7Ah
487
 dw conditional_jump-instruction_handler
487
 dw conditional_jump-instruction_handler
488
 db 'jpo',7Bh
488
 db 'jpo',7Bh
489
 dw conditional_jump-instruction_handler
489
 dw conditional_jump-instruction_handler
490
 db 'lar',2
490
 db 'lar',2
491
 dw lar_instruction-instruction_handler
491
 dw lar_instruction-instruction_handler
492
 db 'lds',3
492
 db 'lds',3
493
 dw ls_instruction-instruction_handler
493
 dw ls_instruction-instruction_handler
494
 db 'lea',0
494
 db 'lea',0
495
 dw lea_instruction-instruction_handler
495
 dw lea_instruction-instruction_handler
496
 db 'les',0
496
 db 'les',0
497
 dw ls_instruction-instruction_handler
497
 dw ls_instruction-instruction_handler
498
 db 'lfs',4
498
 db 'lfs',4
499
 dw ls_instruction-instruction_handler
499
 dw ls_instruction-instruction_handler
500
 db 'lgs',5
500
 db 'lgs',5
501
 dw ls_instruction-instruction_handler
501
 dw ls_instruction-instruction_handler
502
 db 'lsl',3
502
 db 'lsl',3
503
 dw lar_instruction-instruction_handler
503
 dw lar_instruction-instruction_handler
504
 db 'lss',2
504
 db 'lss',2
505
 dw ls_instruction-instruction_handler
505
 dw ls_instruction-instruction_handler
506
 db 'ltr',3
506
 db 'ltr',3
507
 dw pm_word_instruction-instruction_handler
507
 dw pm_word_instruction-instruction_handler
508
 db 'mov',0
508
 db 'mov',0
509
 dw mov_instruction-instruction_handler
509
 dw mov_instruction-instruction_handler
510
 db 'mul',4
510
 db 'mul',4
511
 dw single_operand_instruction-instruction_handler
511
 dw single_operand_instruction-instruction_handler
512
 db 'neg',3
512
 db 'neg',3
513
 dw single_operand_instruction-instruction_handler
513
 dw single_operand_instruction-instruction_handler
514
 db 'nop',90h
514
 db 'nop',90h
515
 dw nop_instruction-instruction_handler
515
 dw nop_instruction-instruction_handler
516
 db 'not',2
516
 db 'not',2
517
 dw single_operand_instruction-instruction_handler
517
 dw single_operand_instruction-instruction_handler
518
 db 'org',0
518
 db 'org',0
519
 dw org_directive-instruction_handler
519
 dw org_directive-instruction_handler
520
 db 'out',0
520
 db 'out',0
521
 dw out_instruction-instruction_handler
521
 dw out_instruction-instruction_handler
522
 db 'pop',0
522
 db 'pop',0
523
 dw pop_instruction-instruction_handler
523
 dw pop_instruction-instruction_handler
524
 db 'por',0EBh
524
 db 'por',0EBh
525
 dw basic_mmx_instruction-instruction_handler
525
 dw basic_mmx_instruction-instruction_handler
526
 db 'rcl',2
526
 db 'rcl',2
527
 dw sh_instruction-instruction_handler
527
 dw sh_instruction-instruction_handler
528
 db 'rcr',3
528
 db 'rcr',3
529
 dw sh_instruction-instruction_handler
529
 dw sh_instruction-instruction_handler
530
 db 'rep',0F3h
530
 db 'rep',0F3h
531
 dw prefix_instruction-instruction_handler
531
 dw prefix_instruction-instruction_handler
532
 db 'ret',0C2h
532
 db 'ret',0C2h
533
 dw ret_instruction-instruction_handler
533
 dw ret_instruction-instruction_handler
534
 db 'rol',0
534
 db 'rol',0
535
 dw sh_instruction-instruction_handler
535
 dw sh_instruction-instruction_handler
536
 db 'ror',1
536
 db 'ror',1
537
 dw sh_instruction-instruction_handler
537
 dw sh_instruction-instruction_handler
538
 db 'rsm',0AAh
538
 db 'rsm',0AAh
539
 dw simple_extended_instruction-instruction_handler
539
 dw simple_extended_instruction-instruction_handler
540
 db 'sal',4
540
 db 'sal',4
541
 dw sh_instruction-instruction_handler
541
 dw sh_instruction-instruction_handler
542
 db 'sar',7
542
 db 'sar',7
543
 dw sh_instruction-instruction_handler
543
 dw sh_instruction-instruction_handler
544
 db 'sbb',18h
544
 db 'sbb',18h
545
 dw basic_instruction-instruction_handler
545
 dw basic_instruction-instruction_handler
546
 db 'shl',4
546
 db 'shl',4
547
 dw sh_instruction-instruction_handler
547
 dw sh_instruction-instruction_handler
548
 db 'shr',5
548
 db 'shr',5
549
 dw sh_instruction-instruction_handler
549
 dw sh_instruction-instruction_handler
550
 db 'stc',0F9h
550
 db 'stc',0F9h
551
 dw simple_instruction-instruction_handler
551
 dw simple_instruction-instruction_handler
552
 db 'std',0FDh
552
 db 'std',0FDh
553
 dw simple_instruction-instruction_handler
553
 dw simple_instruction-instruction_handler
554
 db 'sti',0FBh
554
 db 'sti',0FBh
555
 dw simple_instruction-instruction_handler
555
 dw simple_instruction-instruction_handler
556
 db 'str',1
556
 db 'str',1
557
 dw pm_store_word_instruction-instruction_handler
557
 dw pm_store_word_instruction-instruction_handler
558
 db 'sub',28h
558
 db 'sub',28h
559
 dw basic_instruction-instruction_handler
559
 dw basic_instruction-instruction_handler
560
 db 'ud2',0Bh
560
 db 'ud2',0Bh
561
 dw simple_extended_instruction-instruction_handler
561
 dw simple_extended_instruction-instruction_handler
562
 db 'xor',30h
562
 db 'xor',30h
563
 dw basic_instruction-instruction_handler
563
 dw basic_instruction-instruction_handler
564
instructions_4:
564
instructions_4:
565
 db 'andn',0F2h
565
 db 'adcx',66h
-
 
566
 dw adx_instruction-instruction_handler
-
 
567
 db 'adox',0F3h
-
 
568
 dw adx_instruction-instruction_handler
-
 
569
 db 'andn',0F2h
566
 dw andn_instruction-instruction_handler
570
 dw andn_instruction-instruction_handler
567
 db 'arpl',0
571
 db 'arpl',0
568
 dw arpl_instruction-instruction_handler
572
 dw arpl_instruction-instruction_handler
569
 db 'blci',26h
573
 db 'blci',26h
570
 dw tbm_instruction-instruction_handler
574
 dw tbm_instruction-instruction_handler
571
 db 'blcs',13h
575
 db 'blcs',13h
572
 dw tbm_instruction-instruction_handler
576
 dw tbm_instruction-instruction_handler
573
 db 'blsi',3
577
 db 'blsi',3
574
 dw bmi_instruction-instruction_handler
578
 dw bmi_instruction-instruction_handler
575
 db 'blsr',1
579
 db 'blsr',1
576
 dw bmi_instruction-instruction_handler
580
 dw bmi_instruction-instruction_handler
577
 db 'bzhi',0F5h
581
 db 'bzhi',0F5h
578
 dw bzhi_instruction-instruction_handler
582
 dw bzhi_instruction-instruction_handler
579
 db 'call',0
583
 db 'call',0
580
 dw call_instruction-instruction_handler
584
 dw call_instruction-instruction_handler
581
 db 'cdqe',98h
585
 db 'cdqe',98h
582
 dw simple_instruction_64bit-instruction_handler
586
 dw simple_instruction_64bit-instruction_handler
583
 db 'clgi',0DDh
587
 db 'clac',0CAh
-
 
588
 dw simple_vmx_instruction-instruction_handler
-
 
589
 db 'clgi',0DDh
584
 dw simple_vmx_instruction-instruction_handler
590
 dw simple_vmx_instruction-instruction_handler
585
 db 'clts',6
591
 db 'clts',6
586
 dw simple_extended_instruction-instruction_handler
592
 dw simple_extended_instruction-instruction_handler
587
 db 'cmps',0A6h
593
 db 'cmps',0A6h
588
 dw cmps_instruction-instruction_handler
594
 dw cmps_instruction-instruction_handler
589
 db 'cwde',98h
595
 db 'cwde',98h
590
 dw simple_instruction_32bit-instruction_handler
596
 dw simple_instruction_32bit-instruction_handler
591
 db 'data',0
597
 db 'data',0
592
 dw data_directive-instruction_handler
598
 dw data_directive-instruction_handler
593
 db 'dppd',41h
599
 db 'dppd',41h
594
 dw sse4_instruction_3a_imm8-instruction_handler
600
 dw sse4_instruction_3a_imm8-instruction_handler
595
 db 'dpps',40h
601
 db 'dpps',40h
596
 dw sse4_instruction_3a_imm8-instruction_handler
602
 dw sse4_instruction_3a_imm8-instruction_handler
597
 db 'else',0
603
 db 'else',0
598
 dw else_directive-instruction_handler
604
 dw else_directive-instruction_handler
599
 db 'emms',77h
605
 db 'emms',77h
600
 dw simple_extended_instruction-instruction_handler
606
 dw simple_extended_instruction-instruction_handler
601
 db 'fabs',100001b
607
 db 'fabs',100001b
602
 dw simple_fpu_instruction-instruction_handler
608
 dw simple_fpu_instruction-instruction_handler
603
 db 'fadd',0
609
 db 'fadd',0
604
 dw basic_fpu_instruction-instruction_handler
610
 dw basic_fpu_instruction-instruction_handler
605
 db 'fbld',4
611
 db 'fbld',4
606
 dw fbld_instruction-instruction_handler
612
 dw fbld_instruction-instruction_handler
607
 db 'fchs',100000b
613
 db 'fchs',100000b
608
 dw simple_fpu_instruction-instruction_handler
614
 dw simple_fpu_instruction-instruction_handler
609
 db 'fcom',2
615
 db 'fcom',2
610
 dw basic_fpu_instruction-instruction_handler
616
 dw basic_fpu_instruction-instruction_handler
611
 db 'fcos',111111b
617
 db 'fcos',111111b
612
 dw simple_fpu_instruction-instruction_handler
618
 dw simple_fpu_instruction-instruction_handler
613
 db 'fdiv',6
619
 db 'fdiv',6
614
 dw basic_fpu_instruction-instruction_handler
620
 dw basic_fpu_instruction-instruction_handler
615
 db 'feni',0E0h
621
 db 'feni',0E0h
616
 dw finit_instruction-instruction_handler
622
 dw finit_instruction-instruction_handler
617
 db 'fild',0
623
 db 'fild',0
618
 dw fild_instruction-instruction_handler
624
 dw fild_instruction-instruction_handler
619
 db 'fist',2
625
 db 'fist',2
620
 dw fild_instruction-instruction_handler
626
 dw fild_instruction-instruction_handler
621
 db 'fld1',101000b
627
 db 'fld1',101000b
622
 dw simple_fpu_instruction-instruction_handler
628
 dw simple_fpu_instruction-instruction_handler
623
 db 'fldz',101110b
629
 db 'fldz',101110b
624
 dw simple_fpu_instruction-instruction_handler
630
 dw simple_fpu_instruction-instruction_handler
625
 db 'fmul',1
631
 db 'fmul',1
626
 dw basic_fpu_instruction-instruction_handler
632
 dw basic_fpu_instruction-instruction_handler
627
 db 'fnop',010000b
633
 db 'fnop',010000b
628
 dw simple_fpu_instruction-instruction_handler
634
 dw simple_fpu_instruction-instruction_handler
629
 db 'fsin',111110b
635
 db 'fsin',111110b
630
 dw simple_fpu_instruction-instruction_handler
636
 dw simple_fpu_instruction-instruction_handler
631
 db 'fstp',3
637
 db 'fstp',3
632
 dw fld_instruction-instruction_handler
638
 dw fld_instruction-instruction_handler
633
 db 'fsub',4
639
 db 'fsub',4
634
 dw basic_fpu_instruction-instruction_handler
640
 dw basic_fpu_instruction-instruction_handler
635
 db 'ftst',100100b
641
 db 'ftst',100100b
636
 dw simple_fpu_instruction-instruction_handler
642
 dw simple_fpu_instruction-instruction_handler
637
 db 'fxam',100101b
643
 db 'fxam',100101b
638
 dw simple_fpu_instruction-instruction_handler
644
 dw simple_fpu_instruction-instruction_handler
639
 db 'fxch',0
645
 db 'fxch',0
640
 dw fxch_instruction-instruction_handler
646
 dw fxch_instruction-instruction_handler
641
 db 'heap',0
647
 db 'heap',0
642
 dw heap_directive-instruction_handler
648
 dw heap_directive-instruction_handler
643
 db 'idiv',7
649
 db 'idiv',7
644
 dw single_operand_instruction-instruction_handler
650
 dw single_operand_instruction-instruction_handler
645
 db 'imul',0
651
 db 'imul',0
646
 dw imul_instruction-instruction_handler
652
 dw imul_instruction-instruction_handler
647
 db 'insb',6Ch
653
 db 'insb',6Ch
648
 dw simple_instruction-instruction_handler
654
 dw simple_instruction-instruction_handler
649
 db 'insd',6Dh
655
 db 'insd',6Dh
650
 dw simple_instruction_32bit-instruction_handler
656
 dw simple_instruction_32bit-instruction_handler
651
 db 'insw',6Dh
657
 db 'insw',6Dh
652
 dw simple_instruction_16bit-instruction_handler
658
 dw simple_instruction_16bit-instruction_handler
653
 db 'int1',0F1h
659
 db 'int1',0F1h
654
 dw simple_instruction-instruction_handler
660
 dw simple_instruction-instruction_handler
655
 db 'int3',0CCh
661
 db 'int3',0CCh
656
 dw simple_instruction-instruction_handler
662
 dw simple_instruction-instruction_handler
657
 db 'into',0CEh
663
 db 'into',0CEh
658
 dw simple_instruction_except64-instruction_handler
664
 dw simple_instruction_except64-instruction_handler
659
 db 'invd',8
665
 db 'invd',8
660
 dw simple_extended_instruction-instruction_handler
666
 dw simple_extended_instruction-instruction_handler
661
 db 'iret',0CFh
667
 db 'iret',0CFh
662
 dw iret_instruction-instruction_handler
668
 dw iret_instruction-instruction_handler
663
 db 'jcxz',0E3h
669
 db 'jcxz',0E3h
664
 dw loop_instruction_16bit-instruction_handler
670
 dw loop_instruction_16bit-instruction_handler
665
 db 'jnae',72h
671
 db 'jnae',72h
666
 dw conditional_jump-instruction_handler
672
 dw conditional_jump-instruction_handler
667
 db 'jnbe',77h
673
 db 'jnbe',77h
668
 dw conditional_jump-instruction_handler
674
 dw conditional_jump-instruction_handler
669
 db 'jnge',7Ch
675
 db 'jnge',7Ch
670
 dw conditional_jump-instruction_handler
676
 dw conditional_jump-instruction_handler
671
 db 'jnle',7Fh
677
 db 'jnle',7Fh
672
 dw conditional_jump-instruction_handler
678
 dw conditional_jump-instruction_handler
673
 db 'lahf',9Fh
679
 db 'lahf',9Fh
674
 dw simple_instruction-instruction_handler
680
 dw simple_instruction-instruction_handler
675
 db 'lgdt',2
681
 db 'lgdt',2
676
 dw lgdt_instruction-instruction_handler
682
 dw lgdt_instruction-instruction_handler
677
 db 'lidt',3
683
 db 'lidt',3
678
 dw lgdt_instruction-instruction_handler
684
 dw lgdt_instruction-instruction_handler
679
 db 'lldt',2
685
 db 'lldt',2
680
 dw pm_word_instruction-instruction_handler
686
 dw pm_word_instruction-instruction_handler
681
 db 'lmsw',16h
687
 db 'lmsw',16h
682
 dw pm_word_instruction-instruction_handler
688
 dw pm_word_instruction-instruction_handler
683
 db 'load',0
689
 db 'load',0
684
 dw load_directive-instruction_handler
690
 dw load_directive-instruction_handler
685
 db 'lock',0F0h
691
 db 'lock',0F0h
686
 dw prefix_instruction-instruction_handler
692
 dw prefix_instruction-instruction_handler
687
 db 'lods',0ACh
693
 db 'lods',0ACh
688
 dw lods_instruction-instruction_handler
694
 dw lods_instruction-instruction_handler
689
 db 'loop',0E2h
695
 db 'loop',0E2h
690
 dw loop_instruction-instruction_handler
696
 dw loop_instruction-instruction_handler
691
 db 'movd',0
697
 db 'movd',0
692
 dw movd_instruction-instruction_handler
698
 dw movd_instruction-instruction_handler
693
 db 'movq',0
699
 db 'movq',0
694
 dw movq_instruction-instruction_handler
700
 dw movq_instruction-instruction_handler
695
 db 'movs',0A4h
701
 db 'movs',0A4h
696
 dw movs_instruction-instruction_handler
702
 dw movs_instruction-instruction_handler
697
 db 'mulx',0F6h
703
 db 'mulx',0F6h
698
 dw pdep_instruction-instruction_handler
704
 dw pdep_instruction-instruction_handler
699
 db 'orpd',56h
705
 db 'orpd',56h
700
 dw sse_pd_instruction-instruction_handler
706
 dw sse_pd_instruction-instruction_handler
701
 db 'orps',56h
707
 db 'orps',56h
702
 dw sse_ps_instruction-instruction_handler
708
 dw sse_ps_instruction-instruction_handler
703
 db 'outs',6Eh
709
 db 'outs',6Eh
704
 dw outs_instruction-instruction_handler
710
 dw outs_instruction-instruction_handler
705
 db 'pand',0DBh
711
 db 'pand',0DBh
706
 dw basic_mmx_instruction-instruction_handler
712
 dw basic_mmx_instruction-instruction_handler
707
 db 'pdep',0F5h
713
 db 'pdep',0F5h
708
 dw pdep_instruction-instruction_handler
714
 dw pdep_instruction-instruction_handler
709
 db 'pext',0F5h
715
 db 'pext',0F5h
710
 dw pext_instruction-instruction_handler
716
 dw pext_instruction-instruction_handler
711
 db 'popa',61h
717
 db 'popa',61h
712
 dw simple_instruction_except64-instruction_handler
718
 dw simple_instruction_except64-instruction_handler
713
 db 'popd',4
719
 db 'popd',4
714
 dw pop_instruction-instruction_handler
720
 dw pop_instruction-instruction_handler
715
 db 'popf',9Dh
721
 db 'popf',9Dh
716
 dw simple_instruction-instruction_handler
722
 dw simple_instruction-instruction_handler
717
 db 'popq',8
723
 db 'popq',8
718
 dw pop_instruction-instruction_handler
724
 dw pop_instruction-instruction_handler
719
 db 'popw',2
725
 db 'popw',2
720
 dw pop_instruction-instruction_handler
726
 dw pop_instruction-instruction_handler
721
 db 'push',0
727
 db 'push',0
722
 dw push_instruction-instruction_handler
728
 dw push_instruction-instruction_handler
723
 db 'pxor',0EFh
729
 db 'pxor',0EFh
724
 dw basic_mmx_instruction-instruction_handler
730
 dw basic_mmx_instruction-instruction_handler
725
 db 'repe',0F3h
731
 db 'repe',0F3h
726
 dw prefix_instruction-instruction_handler
732
 dw prefix_instruction-instruction_handler
727
 db 'repz',0F3h
733
 db 'repz',0F3h
728
 dw prefix_instruction-instruction_handler
734
 dw prefix_instruction-instruction_handler
729
 db 'retd',0C2h
735
 db 'retd',0C2h
730
 dw ret_instruction_32bit_except64-instruction_handler
736
 dw ret_instruction_32bit_except64-instruction_handler
731
 db 'retf',0CAh
737
 db 'retf',0CAh
732
 dw retf_instruction-instruction_handler
738
 dw retf_instruction-instruction_handler
733
 db 'retn',0C2h
739
 db 'retn',0C2h
734
 dw ret_instruction-instruction_handler
740
 dw ret_instruction-instruction_handler
735
 db 'retq',0C2h
741
 db 'retq',0C2h
736
 dw ret_instruction_only64-instruction_handler
742
 dw ret_instruction_only64-instruction_handler
737
 db 'retw',0C2h
743
 db 'retw',0C2h
738
 dw ret_instruction_16bit-instruction_handler
744
 dw ret_instruction_16bit-instruction_handler
739
 db 'rorx',0F0h
745
 db 'rorx',0F0h
740
 dw rorx_instruction-instruction_handler
746
 dw rorx_instruction-instruction_handler
741
 db 'sahf',9Eh
747
 db 'sahf',9Eh
742
 dw simple_instruction-instruction_handler
748
 dw simple_instruction-instruction_handler
743
 db 'salc',0D6h
749
 db 'salc',0D6h
744
 dw simple_instruction_except64-instruction_handler
750
 dw simple_instruction_except64-instruction_handler
745
 db 'sarx',0F7h
751
 db 'sarx',0F7h
746
 dw sarx_instruction-instruction_handler
752
 dw sarx_instruction-instruction_handler
747
 db 'scas',0AEh
753
 db 'scas',0AEh
748
 dw stos_instruction-instruction_handler
754
 dw stos_instruction-instruction_handler
749
 db 'seta',97h
755
 db 'seta',97h
750
 dw set_instruction-instruction_handler
756
 dw set_instruction-instruction_handler
751
 db 'setb',92h
757
 db 'setb',92h
752
 dw set_instruction-instruction_handler
758
 dw set_instruction-instruction_handler
753
 db 'setc',92h
759
 db 'setc',92h
754
 dw set_instruction-instruction_handler
760
 dw set_instruction-instruction_handler
755
 db 'sete',94h
761
 db 'sete',94h
756
 dw set_instruction-instruction_handler
762
 dw set_instruction-instruction_handler
757
 db 'setg',9Fh
763
 db 'setg',9Fh
758
 dw set_instruction-instruction_handler
764
 dw set_instruction-instruction_handler
759
 db 'setl',9Ch
765
 db 'setl',9Ch
760
 dw set_instruction-instruction_handler
766
 dw set_instruction-instruction_handler
761
 db 'seto',90h
767
 db 'seto',90h
762
 dw set_instruction-instruction_handler
768
 dw set_instruction-instruction_handler
763
 db 'setp',9Ah
769
 db 'setp',9Ah
764
 dw set_instruction-instruction_handler
770
 dw set_instruction-instruction_handler
765
 db 'sets',98h
771
 db 'sets',98h
766
 dw set_instruction-instruction_handler
772
 dw set_instruction-instruction_handler
767
 db 'setz',94h
773
 db 'setz',94h
768
 dw set_instruction-instruction_handler
774
 dw set_instruction-instruction_handler
769
 db 'sgdt',0
775
 db 'sgdt',0
770
 dw lgdt_instruction-instruction_handler
776
 dw lgdt_instruction-instruction_handler
771
 db 'shld',0A4h
777
 db 'shld',0A4h
772
 dw shd_instruction-instruction_handler
778
 dw shd_instruction-instruction_handler
773
 db 'shlx',0F7h
779
 db 'shlx',0F7h
774
 dw shlx_instruction-instruction_handler
780
 dw shlx_instruction-instruction_handler
775
 db 'shrd',0ACh
781
 db 'shrd',0ACh
776
 dw shd_instruction-instruction_handler
782
 dw shd_instruction-instruction_handler
777
 db 'shrx',0F7h
783
 db 'shrx',0F7h
778
 dw shrx_instruction-instruction_handler
784
 dw shrx_instruction-instruction_handler
779
 db 'sidt',1
785
 db 'sidt',1
780
 dw lgdt_instruction-instruction_handler
786
 dw lgdt_instruction-instruction_handler
781
 db 'sldt',0
787
 db 'sldt',0
782
 dw pm_store_word_instruction-instruction_handler
788
 dw pm_store_word_instruction-instruction_handler
783
 db 'smsw',14h
789
 db 'smsw',14h
784
 dw pm_store_word_instruction-instruction_handler
790
 dw pm_store_word_instruction-instruction_handler
785
 db 'stgi',0DCh
791
 db 'stac',0CBh
-
 
792
 dw simple_vmx_instruction-instruction_handler
-
 
793
 db 'stgi',0DCh
786
 dw simple_vmx_instruction-instruction_handler
794
 dw simple_vmx_instruction-instruction_handler
787
 db 'stos',0AAh
795
 db 'stos',0AAh
788
 dw stos_instruction-instruction_handler
796
 dw stos_instruction-instruction_handler
789
 db 'test',0
797
 db 'test',0
790
 dw test_instruction-instruction_handler
798
 dw test_instruction-instruction_handler
791
 db 'verr',4
799
 db 'verr',4
792
 dw pm_word_instruction-instruction_handler
800
 dw pm_word_instruction-instruction_handler
793
 db 'verw',5
801
 db 'verw',5
794
 dw pm_word_instruction-instruction_handler
802
 dw pm_word_instruction-instruction_handler
795
 db 'vpor',0EBh
803
 db 'vpor',0EBh
796
 dw avx_pd_instruction-instruction_handler
804
 dw avx_pd_instruction-instruction_handler
797
 db 'wait',9Bh
805
 db 'wait',9Bh
798
 dw simple_instruction-instruction_handler
806
 dw simple_instruction-instruction_handler
799
 db 'xadd',0C0h
807
 db 'xadd',0C0h
800
 dw basic_486_instruction-instruction_handler
808
 dw basic_486_instruction-instruction_handler
801
 db 'xchg',0
809
 db 'xchg',0
802
 dw xchg_instruction-instruction_handler
810
 dw xchg_instruction-instruction_handler
803
 db 'xend',0D5h
811
 db 'xend',0D5h
804
 dw simple_vmx_instruction-instruction_handler
812
 dw simple_vmx_instruction-instruction_handler
805
 db 'xlat',0D7h
813
 db 'xlat',0D7h
806
 dw xlat_instruction-instruction_handler
814
 dw xlat_instruction-instruction_handler
807
instructions_5:
815
instructions_5:
808
 db 'addpd',58h
816
 db 'addpd',58h
809
 dw sse_pd_instruction-instruction_handler
817
 dw sse_pd_instruction-instruction_handler
810
 db 'addps',58h
818
 db 'addps',58h
811
 dw sse_ps_instruction-instruction_handler
819
 dw sse_ps_instruction-instruction_handler
812
 db 'addsd',58h
820
 db 'addsd',58h
813
 dw sse_sd_instruction-instruction_handler
821
 dw sse_sd_instruction-instruction_handler
814
 db 'addss',58h
822
 db 'addss',58h
815
 dw sse_ss_instruction-instruction_handler
823
 dw sse_ss_instruction-instruction_handler
816
 db 'align',0
824
 db 'align',0
817
 dw align_directive-instruction_handler
825
 dw align_directive-instruction_handler
818
 db 'andpd',54h
826
 db 'andpd',54h
819
 dw sse_pd_instruction-instruction_handler
827
 dw sse_pd_instruction-instruction_handler
820
 db 'andps',54h
828
 db 'andps',54h
821
 dw sse_ps_instruction-instruction_handler
829
 dw sse_ps_instruction-instruction_handler
822
 db 'bextr',0F7h
830
 db 'bextr',0F7h
823
 dw bextr_instruction-instruction_handler
831
 dw bextr_instruction-instruction_handler
824
 db 'blcic',15h
832
 db 'blcic',15h
825
 dw tbm_instruction-instruction_handler
833
 dw tbm_instruction-instruction_handler
826
 db 'blsic',16h
834
 db 'blsic',16h
827
 dw tbm_instruction-instruction_handler
835
 dw tbm_instruction-instruction_handler
828
 db 'bound',0
836
 db 'bound',0
829
 dw bound_instruction-instruction_handler
837
 dw bound_instruction-instruction_handler
830
 db 'break',0
838
 db 'break',0
831
 dw break_directive-instruction_handler
839
 dw break_directive-instruction_handler
832
 db 'bswap',0
840
 db 'bswap',0
833
 dw bswap_instruction-instruction_handler
841
 dw bswap_instruction-instruction_handler
834
 db 'cmova',47h
842
 db 'cmova',47h
835
 dw bs_instruction-instruction_handler
843
 dw bs_instruction-instruction_handler
836
 db 'cmovb',42h
844
 db 'cmovb',42h
837
 dw bs_instruction-instruction_handler
845
 dw bs_instruction-instruction_handler
838
 db 'cmovc',42h
846
 db 'cmovc',42h
839
 dw bs_instruction-instruction_handler
847
 dw bs_instruction-instruction_handler
840
 db 'cmove',44h
848
 db 'cmove',44h
841
 dw bs_instruction-instruction_handler
849
 dw bs_instruction-instruction_handler
842
 db 'cmovg',4Fh
850
 db 'cmovg',4Fh
843
 dw bs_instruction-instruction_handler
851
 dw bs_instruction-instruction_handler
844
 db 'cmovl',4Ch
852
 db 'cmovl',4Ch
845
 dw bs_instruction-instruction_handler
853
 dw bs_instruction-instruction_handler
846
 db 'cmovo',40h
854
 db 'cmovo',40h
847
 dw bs_instruction-instruction_handler
855
 dw bs_instruction-instruction_handler
848
 db 'cmovp',4Ah
856
 db 'cmovp',4Ah
849
 dw bs_instruction-instruction_handler
857
 dw bs_instruction-instruction_handler
850
 db 'cmovs',48h
858
 db 'cmovs',48h
851
 dw bs_instruction-instruction_handler
859
 dw bs_instruction-instruction_handler
852
 db 'cmovz',44h
860
 db 'cmovz',44h
853
 dw bs_instruction-instruction_handler
861
 dw bs_instruction-instruction_handler
854
 db 'cmppd',-1
862
 db 'cmppd',-1
855
 dw cmp_pd_instruction-instruction_handler
863
 dw cmp_pd_instruction-instruction_handler
856
 db 'cmpps',-1
864
 db 'cmpps',-1
857
 dw cmp_ps_instruction-instruction_handler
865
 dw cmp_ps_instruction-instruction_handler
858
 db 'cmpsb',0A6h
866
 db 'cmpsb',0A6h
859
 dw simple_instruction-instruction_handler
867
 dw simple_instruction-instruction_handler
860
 db 'cmpsd',-1
868
 db 'cmpsd',-1
861
 dw cmpsd_instruction-instruction_handler
869
 dw cmpsd_instruction-instruction_handler
862
 db 'cmpsq',0A7h
870
 db 'cmpsq',0A7h
863
 dw simple_instruction_64bit-instruction_handler
871
 dw simple_instruction_64bit-instruction_handler
864
 db 'cmpss',-1
872
 db 'cmpss',-1
865
 dw cmp_ss_instruction-instruction_handler
873
 dw cmp_ss_instruction-instruction_handler
866
 db 'cmpsw',0A7h
874
 db 'cmpsw',0A7h
867
 dw simple_instruction_16bit-instruction_handler
875
 dw simple_instruction_16bit-instruction_handler
868
 db 'cpuid',0A2h
876
 db 'cpuid',0A2h
869
 dw simple_extended_instruction-instruction_handler
877
 dw simple_extended_instruction-instruction_handler
870
 db 'crc32',0
878
 db 'crc32',0
871
 dw crc32_instruction-instruction_handler
879
 dw crc32_instruction-instruction_handler
872
 db 'divpd',5Eh
880
 db 'divpd',5Eh
873
 dw sse_pd_instruction-instruction_handler
881
 dw sse_pd_instruction-instruction_handler
874
 db 'divps',5Eh
882
 db 'divps',5Eh
875
 dw sse_ps_instruction-instruction_handler
883
 dw sse_ps_instruction-instruction_handler
876
 db 'divsd',5Eh
884
 db 'divsd',5Eh
877
 dw sse_sd_instruction-instruction_handler
885
 dw sse_sd_instruction-instruction_handler
878
 db 'divss',5Eh
886
 db 'divss',5Eh
879
 dw sse_ss_instruction-instruction_handler
887
 dw sse_ss_instruction-instruction_handler
880
 db 'enter',0
888
 db 'enter',0
881
 dw enter_instruction-instruction_handler
889
 dw enter_instruction-instruction_handler
882
 db 'entry',0
890
 db 'entry',0
883
 dw entry_directive-instruction_handler
891
 dw entry_directive-instruction_handler
884
 db 'extrn',0
892
 db 'extrn',0
885
 dw extrn_directive-instruction_handler
893
 dw extrn_directive-instruction_handler
886
 db 'extrq',0
894
 db 'extrq',0
887
 dw extrq_instruction-instruction_handler
895
 dw extrq_instruction-instruction_handler
888
 db 'f2xm1',110000b
896
 db 'f2xm1',110000b
889
 dw simple_fpu_instruction-instruction_handler
897
 dw simple_fpu_instruction-instruction_handler
890
 db 'faddp',0
898
 db 'faddp',0
891
 dw faddp_instruction-instruction_handler
899
 dw faddp_instruction-instruction_handler
892
 db 'fbstp',6
900
 db 'fbstp',6
893
 dw fbld_instruction-instruction_handler
901
 dw fbld_instruction-instruction_handler
894
 db 'fclex',0E2h
902
 db 'fclex',0E2h
895
 dw finit_instruction-instruction_handler
903
 dw finit_instruction-instruction_handler
896
 db 'fcomi',0F0h
904
 db 'fcomi',0F0h
897
 dw fcomi_instruction-instruction_handler
905
 dw fcomi_instruction-instruction_handler
898
 db 'fcomp',3
906
 db 'fcomp',3
899
 dw basic_fpu_instruction-instruction_handler
907
 dw basic_fpu_instruction-instruction_handler
900
 db 'fdisi',0E1h
908
 db 'fdisi',0E1h
901
 dw finit_instruction-instruction_handler
909
 dw finit_instruction-instruction_handler
902
 db 'fdivp',7
910
 db 'fdivp',7
903
 dw faddp_instruction-instruction_handler
911
 dw faddp_instruction-instruction_handler
904
 db 'fdivr',7
912
 db 'fdivr',7
905
 dw basic_fpu_instruction-instruction_handler
913
 dw basic_fpu_instruction-instruction_handler
906
 db 'femms',0Eh
914
 db 'femms',0Eh
907
 dw simple_extended_instruction-instruction_handler
915
 dw simple_extended_instruction-instruction_handler
908
 db 'ffree',0
916
 db 'ffree',0
909
 dw ffree_instruction-instruction_handler
917
 dw ffree_instruction-instruction_handler
910
 db 'fiadd',0
918
 db 'fiadd',0
911
 dw fi_instruction-instruction_handler
919
 dw fi_instruction-instruction_handler
912
 db 'ficom',2
920
 db 'ficom',2
913
 dw fi_instruction-instruction_handler
921
 dw fi_instruction-instruction_handler
914
 db 'fidiv',6
922
 db 'fidiv',6
915
 dw fi_instruction-instruction_handler
923
 dw fi_instruction-instruction_handler
916
 db 'fimul',1
924
 db 'fimul',1
917
 dw fi_instruction-instruction_handler
925
 dw fi_instruction-instruction_handler
918
 db 'finit',0E3h
926
 db 'finit',0E3h
919
 dw finit_instruction-instruction_handler
927
 dw finit_instruction-instruction_handler
920
 db 'fistp',3
928
 db 'fistp',3
921
 dw fild_instruction-instruction_handler
929
 dw fild_instruction-instruction_handler
922
 db 'fisub',4
930
 db 'fisub',4
923
 dw fi_instruction-instruction_handler
931
 dw fi_instruction-instruction_handler
924
 db 'fldcw',5
932
 db 'fldcw',5
925
 dw fldcw_instruction-instruction_handler
933
 dw fldcw_instruction-instruction_handler
926
 db 'fldpi',101011b
934
 db 'fldpi',101011b
927
 dw simple_fpu_instruction-instruction_handler
935
 dw simple_fpu_instruction-instruction_handler
928
 db 'fmulp',1
936
 db 'fmulp',1
929
 dw faddp_instruction-instruction_handler
937
 dw faddp_instruction-instruction_handler
930
 db 'fneni',0E0h
938
 db 'fneni',0E0h
931
 dw fninit_instruction-instruction_handler
939
 dw fninit_instruction-instruction_handler
932
 db 'fprem',111000b
940
 db 'fprem',111000b
933
 dw simple_fpu_instruction-instruction_handler
941
 dw simple_fpu_instruction-instruction_handler
934
 db 'fptan',110010b
942
 db 'fptan',110010b
935
 dw simple_fpu_instruction-instruction_handler
943
 dw simple_fpu_instruction-instruction_handler
936
 db 'fsave',6
944
 db 'fsave',6
937
 dw fsave_instruction-instruction_handler
945
 dw fsave_instruction-instruction_handler
938
 db 'fsqrt',111010b
946
 db 'fsqrt',111010b
939
 dw simple_fpu_instruction-instruction_handler
947
 dw simple_fpu_instruction-instruction_handler
940
 db 'fstcw',7
948
 db 'fstcw',7
941
 dw fstcw_instruction-instruction_handler
949
 dw fstcw_instruction-instruction_handler
942
 db 'fstsw',0
950
 db 'fstsw',0
943
 dw fstsw_instruction-instruction_handler
951
 dw fstsw_instruction-instruction_handler
944
 db 'fsubp',5
952
 db 'fsubp',5
945
 dw faddp_instruction-instruction_handler
953
 dw faddp_instruction-instruction_handler
946
 db 'fsubr',5
954
 db 'fsubr',5
947
 dw basic_fpu_instruction-instruction_handler
955
 dw basic_fpu_instruction-instruction_handler
948
 db 'fucom',4
956
 db 'fucom',4
949
 dw ffree_instruction-instruction_handler
957
 dw ffree_instruction-instruction_handler
950
 db 'fwait',9Bh
958
 db 'fwait',9Bh
951
 dw simple_instruction-instruction_handler
959
 dw simple_instruction-instruction_handler
952
 db 'fyl2x',110001b
960
 db 'fyl2x',110001b
953
 dw simple_fpu_instruction-instruction_handler
961
 dw simple_fpu_instruction-instruction_handler
954
 db 'icebp',0F1h
962
 db 'icebp',0F1h
955
 dw simple_instruction-instruction_handler
963
 dw simple_instruction-instruction_handler
956
 db 'iretd',0CFh
964
 db 'iretd',0CFh
957
 dw simple_instruction_32bit-instruction_handler
965
 dw simple_instruction_32bit-instruction_handler
958
 db 'iretq',0CFh
966
 db 'iretq',0CFh
959
 dw simple_instruction_64bit-instruction_handler
967
 dw simple_instruction_64bit-instruction_handler
960
 db 'iretw',0CFh
968
 db 'iretw',0CFh
961
 dw simple_instruction_16bit-instruction_handler
969
 dw simple_instruction_16bit-instruction_handler
962
 db 'jecxz',0E3h
970
 db 'jecxz',0E3h
963
 dw loop_instruction_32bit-instruction_handler
971
 dw loop_instruction_32bit-instruction_handler
964
 db 'jrcxz',0E3h
972
 db 'jrcxz',0E3h
965
 dw loop_instruction_64bit-instruction_handler
973
 dw loop_instruction_64bit-instruction_handler
966
 db 'label',0
974
 db 'label',0
967
 dw label_directive-instruction_handler
975
 dw label_directive-instruction_handler
968
 db 'lddqu',0
976
 db 'lddqu',0
969
 dw lddqu_instruction-instruction_handler
977
 dw lddqu_instruction-instruction_handler
970
 db 'leave',0C9h
978
 db 'leave',0C9h
971
 dw simple_instruction-instruction_handler
979
 dw simple_instruction-instruction_handler
972
 db 'lodsb',0ACh
980
 db 'lodsb',0ACh
973
 dw simple_instruction-instruction_handler
981
 dw simple_instruction-instruction_handler
974
 db 'lodsd',0ADh
982
 db 'lodsd',0ADh
975
 dw simple_instruction_32bit-instruction_handler
983
 dw simple_instruction_32bit-instruction_handler
976
 db 'lodsq',0ADh
984
 db 'lodsq',0ADh
977
 dw simple_instruction_64bit-instruction_handler
985
 dw simple_instruction_64bit-instruction_handler
978
 db 'lodsw',0ADh
986
 db 'lodsw',0ADh
979
 dw simple_instruction_16bit-instruction_handler
987
 dw simple_instruction_16bit-instruction_handler
980
 db 'loopd',0E2h
988
 db 'loopd',0E2h
981
 dw loop_instruction_32bit-instruction_handler
989
 dw loop_instruction_32bit-instruction_handler
982
 db 'loope',0E1h
990
 db 'loope',0E1h
983
 dw loop_instruction-instruction_handler
991
 dw loop_instruction-instruction_handler
984
 db 'loopq',0E2h
992
 db 'loopq',0E2h
985
 dw loop_instruction_64bit-instruction_handler
993
 dw loop_instruction_64bit-instruction_handler
986
 db 'loopw',0E2h
994
 db 'loopw',0E2h
987
 dw loop_instruction_16bit-instruction_handler
995
 dw loop_instruction_16bit-instruction_handler
988
 db 'loopz',0E1h
996
 db 'loopz',0E1h
989
 dw loop_instruction-instruction_handler
997
 dw loop_instruction-instruction_handler
990
 db 'lzcnt',0BDh
998
 db 'lzcnt',0BDh
991
 dw popcnt_instruction-instruction_handler
999
 dw popcnt_instruction-instruction_handler
992
 db 'maxpd',5Fh
1000
 db 'maxpd',5Fh
993
 dw sse_pd_instruction-instruction_handler
1001
 dw sse_pd_instruction-instruction_handler
994
 db 'maxps',5Fh
1002
 db 'maxps',5Fh
995
 dw sse_ps_instruction-instruction_handler
1003
 dw sse_ps_instruction-instruction_handler
996
 db 'maxsd',5Fh
1004
 db 'maxsd',5Fh
997
 dw sse_sd_instruction-instruction_handler
1005
 dw sse_sd_instruction-instruction_handler
998
 db 'maxss',5Fh
1006
 db 'maxss',5Fh
999
 dw sse_ss_instruction-instruction_handler
1007
 dw sse_ss_instruction-instruction_handler
1000
 db 'minpd',5Dh
1008
 db 'minpd',5Dh
1001
 dw sse_pd_instruction-instruction_handler
1009
 dw sse_pd_instruction-instruction_handler
1002
 db 'minps',5Dh
1010
 db 'minps',5Dh
1003
 dw sse_ps_instruction-instruction_handler
1011
 dw sse_ps_instruction-instruction_handler
1004
 db 'minsd',5Dh
1012
 db 'minsd',5Dh
1005
 dw sse_sd_instruction-instruction_handler
1013
 dw sse_sd_instruction-instruction_handler
1006
 db 'minss',5Dh
1014
 db 'minss',5Dh
1007
 dw sse_ss_instruction-instruction_handler
1015
 dw sse_ss_instruction-instruction_handler
1008
 db 'movbe',0F0h
1016
 db 'movbe',0F0h
1009
 dw movbe_instruction-instruction_handler
1017
 dw movbe_instruction-instruction_handler
1010
 db 'movsb',0A4h
1018
 db 'movsb',0A4h
1011
 dw simple_instruction-instruction_handler
1019
 dw simple_instruction-instruction_handler
1012
 db 'movsd',0
1020
 db 'movsd',0
1013
 dw movsd_instruction-instruction_handler
1021
 dw movsd_instruction-instruction_handler
1014
 db 'movsq',0A5h
1022
 db 'movsq',0A5h
1015
 dw simple_instruction_64bit-instruction_handler
1023
 dw simple_instruction_64bit-instruction_handler
1016
 db 'movss',0
1024
 db 'movss',0
1017
 dw movss_instruction-instruction_handler
1025
 dw movss_instruction-instruction_handler
1018
 db 'movsw',0A5h
1026
 db 'movsw',0A5h
1019
 dw simple_instruction_16bit-instruction_handler
1027
 dw simple_instruction_16bit-instruction_handler
1020
 db 'movsx',0BEh
1028
 db 'movsx',0BEh
1021
 dw movx_instruction-instruction_handler
1029
 dw movx_instruction-instruction_handler
1022
 db 'movzx',0B6h
1030
 db 'movzx',0B6h
1023
 dw movx_instruction-instruction_handler
1031
 dw movx_instruction-instruction_handler
1024
 db 'mulpd',59h
1032
 db 'mulpd',59h
1025
 dw sse_pd_instruction-instruction_handler
1033
 dw sse_pd_instruction-instruction_handler
1026
 db 'mulps',59h
1034
 db 'mulps',59h
1027
 dw sse_ps_instruction-instruction_handler
1035
 dw sse_ps_instruction-instruction_handler
1028
 db 'mulsd',59h
1036
 db 'mulsd',59h
1029
 dw sse_sd_instruction-instruction_handler
1037
 dw sse_sd_instruction-instruction_handler
1030
 db 'mulss',59h
1038
 db 'mulss',59h
1031
 dw sse_ss_instruction-instruction_handler
1039
 dw sse_ss_instruction-instruction_handler
1032
 db 'mwait',0C9h
1040
 db 'mwait',0C9h
1033
 dw monitor_instruction-instruction_handler
1041
 dw monitor_instruction-instruction_handler
1034
 db 'outsb',6Eh
1042
 db 'outsb',6Eh
1035
 dw simple_instruction-instruction_handler
1043
 dw simple_instruction-instruction_handler
1036
 db 'outsd',6Fh
1044
 db 'outsd',6Fh
1037
 dw simple_instruction_32bit-instruction_handler
1045
 dw simple_instruction_32bit-instruction_handler
1038
 db 'outsw',6Fh
1046
 db 'outsw',6Fh
1039
 dw simple_instruction_16bit-instruction_handler
1047
 dw simple_instruction_16bit-instruction_handler
1040
 db 'pabsb',1Ch
1048
 db 'pabsb',1Ch
1041
 dw ssse3_instruction-instruction_handler
1049
 dw ssse3_instruction-instruction_handler
1042
 db 'pabsd',1Eh
1050
 db 'pabsd',1Eh
1043
 dw ssse3_instruction-instruction_handler
1051
 dw ssse3_instruction-instruction_handler
1044
 db 'pabsw',1Dh
1052
 db 'pabsw',1Dh
1045
 dw ssse3_instruction-instruction_handler
1053
 dw ssse3_instruction-instruction_handler
1046
 db 'paddb',0FCh
1054
 db 'paddb',0FCh
1047
 dw basic_mmx_instruction-instruction_handler
1055
 dw basic_mmx_instruction-instruction_handler
1048
 db 'paddd',0FEh
1056
 db 'paddd',0FEh
1049
 dw basic_mmx_instruction-instruction_handler
1057
 dw basic_mmx_instruction-instruction_handler
1050
 db 'paddq',0D4h
1058
 db 'paddq',0D4h
1051
 dw basic_mmx_instruction-instruction_handler
1059
 dw basic_mmx_instruction-instruction_handler
1052
 db 'paddw',0FDh
1060
 db 'paddw',0FDh
1053
 dw basic_mmx_instruction-instruction_handler
1061
 dw basic_mmx_instruction-instruction_handler
1054
 db 'pandn',0DFh
1062
 db 'pandn',0DFh
1055
 dw basic_mmx_instruction-instruction_handler
1063
 dw basic_mmx_instruction-instruction_handler
1056
 db 'pause',0
1064
 db 'pause',0
1057
 dw pause_instruction-instruction_handler
1065
 dw pause_instruction-instruction_handler
1058
 db 'pavgb',0E0h
1066
 db 'pavgb',0E0h
1059
 dw basic_mmx_instruction-instruction_handler
1067
 dw basic_mmx_instruction-instruction_handler
1060
 db 'pavgw',0E3h
1068
 db 'pavgw',0E3h
1061
 dw basic_mmx_instruction-instruction_handler
1069
 dw basic_mmx_instruction-instruction_handler
1062
 db 'pf2id',1Dh
1070
 db 'pf2id',1Dh
1063
 dw amd3dnow_instruction-instruction_handler
1071
 dw amd3dnow_instruction-instruction_handler
1064
 db 'pf2iw',1Ch
1072
 db 'pf2iw',1Ch
1065
 dw amd3dnow_instruction-instruction_handler
1073
 dw amd3dnow_instruction-instruction_handler
1066
 db 'pfacc',0AEh
1074
 db 'pfacc',0AEh
1067
 dw amd3dnow_instruction-instruction_handler
1075
 dw amd3dnow_instruction-instruction_handler
1068
 db 'pfadd',9Eh
1076
 db 'pfadd',9Eh
1069
 dw amd3dnow_instruction-instruction_handler
1077
 dw amd3dnow_instruction-instruction_handler
1070
 db 'pfmax',0A4h
1078
 db 'pfmax',0A4h
1071
 dw amd3dnow_instruction-instruction_handler
1079
 dw amd3dnow_instruction-instruction_handler
1072
 db 'pfmin',94h
1080
 db 'pfmin',94h
1073
 dw amd3dnow_instruction-instruction_handler
1081
 dw amd3dnow_instruction-instruction_handler
1074
 db 'pfmul',0B4h
1082
 db 'pfmul',0B4h
1075
 dw amd3dnow_instruction-instruction_handler
1083
 dw amd3dnow_instruction-instruction_handler
1076
 db 'pfrcp',96h
1084
 db 'pfrcp',96h
1077
 dw amd3dnow_instruction-instruction_handler
1085
 dw amd3dnow_instruction-instruction_handler
1078
 db 'pfsub',9Ah
1086
 db 'pfsub',9Ah
1079
 dw amd3dnow_instruction-instruction_handler
1087
 dw amd3dnow_instruction-instruction_handler
1080
 db 'pi2fd',0Dh
1088
 db 'pi2fd',0Dh
1081
 dw amd3dnow_instruction-instruction_handler
1089
 dw amd3dnow_instruction-instruction_handler
1082
 db 'pi2fw',0Ch
1090
 db 'pi2fw',0Ch
1083
 dw amd3dnow_instruction-instruction_handler
1091
 dw amd3dnow_instruction-instruction_handler
1084
 db 'popad',61h
1092
 db 'popad',61h
1085
 dw simple_instruction_32bit_except64-instruction_handler
1093
 dw simple_instruction_32bit_except64-instruction_handler
1086
 db 'popaw',61h
1094
 db 'popaw',61h
1087
 dw simple_instruction_16bit_except64-instruction_handler
1095
 dw simple_instruction_16bit_except64-instruction_handler
1088
 db 'popfd',9Dh
1096
 db 'popfd',9Dh
1089
 dw simple_instruction_32bit_except64-instruction_handler
1097
 dw simple_instruction_32bit_except64-instruction_handler
1090
 db 'popfq',9Dh
1098
 db 'popfq',9Dh
1091
 dw simple_instruction_only64-instruction_handler
1099
 dw simple_instruction_only64-instruction_handler
1092
 db 'popfw',9Dh
1100
 db 'popfw',9Dh
1093
 dw simple_instruction_16bit-instruction_handler
1101
 dw simple_instruction_16bit-instruction_handler
1094
 db 'pslld',0F2h
1102
 db 'pslld',0F2h
1095
 dw mmx_bit_shift_instruction-instruction_handler
1103
 dw mmx_bit_shift_instruction-instruction_handler
1096
 db 'psllq',0F3h
1104
 db 'psllq',0F3h
1097
 dw mmx_bit_shift_instruction-instruction_handler
1105
 dw mmx_bit_shift_instruction-instruction_handler
1098
 db 'psllw',0F1h
1106
 db 'psllw',0F1h
1099
 dw mmx_bit_shift_instruction-instruction_handler
1107
 dw mmx_bit_shift_instruction-instruction_handler
1100
 db 'psrad',0E2h
1108
 db 'psrad',0E2h
1101
 dw mmx_bit_shift_instruction-instruction_handler
1109
 dw mmx_bit_shift_instruction-instruction_handler
1102
 db 'psraw',0E1h
1110
 db 'psraw',0E1h
1103
 dw mmx_bit_shift_instruction-instruction_handler
1111
 dw mmx_bit_shift_instruction-instruction_handler
1104
 db 'psrld',0D2h
1112
 db 'psrld',0D2h
1105
 dw mmx_bit_shift_instruction-instruction_handler
1113
 dw mmx_bit_shift_instruction-instruction_handler
1106
 db 'psrlq',0D3h
1114
 db 'psrlq',0D3h
1107
 dw mmx_bit_shift_instruction-instruction_handler
1115
 dw mmx_bit_shift_instruction-instruction_handler
1108
 db 'psrlw',0D1h
1116
 db 'psrlw',0D1h
1109
 dw mmx_bit_shift_instruction-instruction_handler
1117
 dw mmx_bit_shift_instruction-instruction_handler
1110
 db 'psubb',0F8h
1118
 db 'psubb',0F8h
1111
 dw basic_mmx_instruction-instruction_handler
1119
 dw basic_mmx_instruction-instruction_handler
1112
 db 'psubd',0FAh
1120
 db 'psubd',0FAh
1113
 dw basic_mmx_instruction-instruction_handler
1121
 dw basic_mmx_instruction-instruction_handler
1114
 db 'psubq',0FBh
1122
 db 'psubq',0FBh
1115
 dw basic_mmx_instruction-instruction_handler
1123
 dw basic_mmx_instruction-instruction_handler
1116
 db 'psubw',0F9h
1124
 db 'psubw',0F9h
1117
 dw basic_mmx_instruction-instruction_handler
1125
 dw basic_mmx_instruction-instruction_handler
1118
 db 'ptest',17h
1126
 db 'ptest',17h
1119
 dw sse4_instruction_38-instruction_handler
1127
 dw sse4_instruction_38-instruction_handler
1120
 db 'pusha',60h
1128
 db 'pusha',60h
1121
 dw simple_instruction_except64-instruction_handler
1129
 dw simple_instruction_except64-instruction_handler
1122
 db 'pushd',4
1130
 db 'pushd',4
1123
 dw push_instruction-instruction_handler
1131
 dw push_instruction-instruction_handler
1124
 db 'pushf',9Ch
1132
 db 'pushf',9Ch
1125
 dw simple_instruction-instruction_handler
1133
 dw simple_instruction-instruction_handler
1126
 db 'pushq',8
1134
 db 'pushq',8
1127
 dw push_instruction-instruction_handler
1135
 dw push_instruction-instruction_handler
1128
 db 'pushw',2
1136
 db 'pushw',2
1129
 dw push_instruction-instruction_handler
1137
 dw push_instruction-instruction_handler
1130
 db 'rcpps',53h
1138
 db 'rcpps',53h
1131
 dw sse_ps_instruction-instruction_handler
1139
 dw sse_ps_instruction-instruction_handler
1132
 db 'rcpss',53h
1140
 db 'rcpss',53h
1133
 dw sse_ss_instruction-instruction_handler
1141
 dw sse_ss_instruction-instruction_handler
1134
 db 'rdmsr',32h
1142
 db 'rdmsr',32h
1135
 dw simple_extended_instruction-instruction_handler
1143
 dw simple_extended_instruction-instruction_handler
1136
 db 'rdpmc',33h
1144
 db 'rdpmc',33h
1137
 dw simple_extended_instruction-instruction_handler
1145
 dw simple_extended_instruction-instruction_handler
1138
 db 'rdtsc',31h
1146
 db 'rdtsc',31h
1139
 dw simple_extended_instruction-instruction_handler
1147
 dw simple_extended_instruction-instruction_handler
1140
 db 'repne',0F2h
1148
 db 'repne',0F2h
1141
 dw prefix_instruction-instruction_handler
1149
 dw prefix_instruction-instruction_handler
1142
 db 'repnz',0F2h
1150
 db 'repnz',0F2h
1143
 dw prefix_instruction-instruction_handler
1151
 dw prefix_instruction-instruction_handler
1144
 db 'retfd',0CAh
1152
 db 'retfd',0CAh
1145
 dw ret_instruction_32bit-instruction_handler
1153
 dw ret_instruction_32bit-instruction_handler
1146
 db 'retfq',0CAh
1154
 db 'retfq',0CAh
1147
 dw ret_instruction_64bit-instruction_handler
1155
 dw ret_instruction_64bit-instruction_handler
1148
 db 'retfw',0CAh
1156
 db 'retfw',0CAh
1149
 dw ret_instruction_16bit-instruction_handler
1157
 dw ret_instruction_16bit-instruction_handler
1150
 db 'retnd',0C2h
1158
 db 'retnd',0C2h
1151
 dw ret_instruction_32bit_except64-instruction_handler
1159
 dw ret_instruction_32bit_except64-instruction_handler
1152
 db 'retnq',0C2h
1160
 db 'retnq',0C2h
1153
 dw ret_instruction_only64-instruction_handler
1161
 dw ret_instruction_only64-instruction_handler
1154
 db 'retnw',0C2h
1162
 db 'retnw',0C2h
1155
 dw ret_instruction_16bit-instruction_handler
1163
 dw ret_instruction_16bit-instruction_handler
1156
 db 'scasb',0AEh
1164
 db 'scasb',0AEh
1157
 dw simple_instruction-instruction_handler
1165
 dw simple_instruction-instruction_handler
1158
 db 'scasd',0AFh
1166
 db 'scasd',0AFh
1159
 dw simple_instruction_32bit-instruction_handler
1167
 dw simple_instruction_32bit-instruction_handler
1160
 db 'scasq',0AFh
1168
 db 'scasq',0AFh
1161
 dw simple_instruction_64bit-instruction_handler
1169
 dw simple_instruction_64bit-instruction_handler
1162
 db 'scasw',0AFh
1170
 db 'scasw',0AFh
1163
 dw simple_instruction_16bit-instruction_handler
1171
 dw simple_instruction_16bit-instruction_handler
1164
 db 'setae',93h
1172
 db 'setae',93h
1165
 dw set_instruction-instruction_handler
1173
 dw set_instruction-instruction_handler
1166
 db 'setbe',96h
1174
 db 'setbe',96h
1167
 dw set_instruction-instruction_handler
1175
 dw set_instruction-instruction_handler
1168
 db 'setge',9Dh
1176
 db 'setge',9Dh
1169
 dw set_instruction-instruction_handler
1177
 dw set_instruction-instruction_handler
1170
 db 'setle',9Eh
1178
 db 'setle',9Eh
1171
 dw set_instruction-instruction_handler
1179
 dw set_instruction-instruction_handler
1172
 db 'setna',96h
1180
 db 'setna',96h
1173
 dw set_instruction-instruction_handler
1181
 dw set_instruction-instruction_handler
1174
 db 'setnb',93h
1182
 db 'setnb',93h
1175
 dw set_instruction-instruction_handler
1183
 dw set_instruction-instruction_handler
1176
 db 'setnc',93h
1184
 db 'setnc',93h
1177
 dw set_instruction-instruction_handler
1185
 dw set_instruction-instruction_handler
1178
 db 'setne',95h
1186
 db 'setne',95h
1179
 dw set_instruction-instruction_handler
1187
 dw set_instruction-instruction_handler
1180
 db 'setng',9Eh
1188
 db 'setng',9Eh
1181
 dw set_instruction-instruction_handler
1189
 dw set_instruction-instruction_handler
1182
 db 'setnl',9Dh
1190
 db 'setnl',9Dh
1183
 dw set_instruction-instruction_handler
1191
 dw set_instruction-instruction_handler
1184
 db 'setno',91h
1192
 db 'setno',91h
1185
 dw set_instruction-instruction_handler
1193
 dw set_instruction-instruction_handler
1186
 db 'setnp',9Bh
1194
 db 'setnp',9Bh
1187
 dw set_instruction-instruction_handler
1195
 dw set_instruction-instruction_handler
1188
 db 'setns',99h
1196
 db 'setns',99h
1189
 dw set_instruction-instruction_handler
1197
 dw set_instruction-instruction_handler
1190
 db 'setnz',95h
1198
 db 'setnz',95h
1191
 dw set_instruction-instruction_handler
1199
 dw set_instruction-instruction_handler
1192
 db 'setpe',9Ah
1200
 db 'setpe',9Ah
1193
 dw set_instruction-instruction_handler
1201
 dw set_instruction-instruction_handler
1194
 db 'setpo',9Bh
1202
 db 'setpo',9Bh
1195
 dw set_instruction-instruction_handler
1203
 dw set_instruction-instruction_handler
1196
 db 'stack',0
1204
 db 'stack',0
1197
 dw stack_directive-instruction_handler
1205
 dw stack_directive-instruction_handler
1198
 db 'store',0
1206
 db 'store',0
1199
 dw store_directive-instruction_handler
1207
 dw store_directive-instruction_handler
1200
 db 'stosb',0AAh
1208
 db 'stosb',0AAh
1201
 dw simple_instruction-instruction_handler
1209
 dw simple_instruction-instruction_handler
1202
 db 'stosd',0ABh
1210
 db 'stosd',0ABh
1203
 dw simple_instruction_32bit-instruction_handler
1211
 dw simple_instruction_32bit-instruction_handler
1204
 db 'stosq',0ABh
1212
 db 'stosq',0ABh
1205
 dw simple_instruction_64bit-instruction_handler
1213
 dw simple_instruction_64bit-instruction_handler
1206
 db 'stosw',0ABh
1214
 db 'stosw',0ABh
1207
 dw simple_instruction_16bit-instruction_handler
1215
 dw simple_instruction_16bit-instruction_handler
1208
 db 'subpd',5Ch
1216
 db 'subpd',5Ch
1209
 dw sse_pd_instruction-instruction_handler
1217
 dw sse_pd_instruction-instruction_handler
1210
 db 'subps',5Ch
1218
 db 'subps',5Ch
1211
 dw sse_ps_instruction-instruction_handler
1219
 dw sse_ps_instruction-instruction_handler
1212
 db 'subsd',5Ch
1220
 db 'subsd',5Ch
1213
 dw sse_sd_instruction-instruction_handler
1221
 dw sse_sd_instruction-instruction_handler
1214
 db 'subss',5Ch
1222
 db 'subss',5Ch
1215
 dw sse_ss_instruction-instruction_handler
1223
 dw sse_ss_instruction-instruction_handler
1216
 db 'times',0
1224
 db 'times',0
1217
 dw times_directive-instruction_handler
1225
 dw times_directive-instruction_handler
1218
 db 'tzcnt',0BCh
1226
 db 'tzcnt',0BCh
1219
 dw popcnt_instruction-instruction_handler
1227
 dw popcnt_instruction-instruction_handler
1220
 db 'tzmsk',14h
1228
 db 'tzmsk',14h
1221
 dw tbm_instruction-instruction_handler
1229
 dw tbm_instruction-instruction_handler
1222
 db 'vdppd',41h
1230
 db 'vdppd',41h
1223
 dw avx_128bit_instruction_3a_imm8-instruction_handler
1231
 dw avx_128bit_instruction_3a_imm8-instruction_handler
1224
 db 'vdpps',40h
1232
 db 'vdpps',40h
1225
 dw avx_instruction_3a_imm8-instruction_handler
1233
 dw avx_instruction_3a_imm8-instruction_handler
1226
 db 'vmovd',0
1234
 db 'vmovd',0
1227
 dw avx_movd_instruction-instruction_handler
1235
 dw avx_movd_instruction-instruction_handler
1228
 db 'vmovq',0
1236
 db 'vmovq',0
1229
 dw avx_movq_instruction-instruction_handler
1237
 dw avx_movq_instruction-instruction_handler
1230
 db 'vmrun',0D8h
1238
 db 'vmrun',0D8h
1231
 dw simple_svm_instruction-instruction_handler
1239
 dw simple_svm_instruction-instruction_handler
1232
 db 'vmxon',6
1240
 db 'vmxon',6
1233
 dw vmxon_instruction-instruction_handler
1241
 dw vmxon_instruction-instruction_handler
1234
 db 'vorpd',56h
1242
 db 'vorpd',56h
1235
 dw avx_pd_instruction-instruction_handler
1243
 dw avx_pd_instruction-instruction_handler
1236
 db 'vorps',56h
1244
 db 'vorps',56h
1237
 dw avx_ps_instruction-instruction_handler
1245
 dw avx_ps_instruction-instruction_handler
1238
 db 'vpand',0DBh
1246
 db 'vpand',0DBh
1239
 dw avx_pd_instruction-instruction_handler
1247
 dw avx_pd_instruction-instruction_handler
1240
 db 'vpxor',0EFh
1248
 db 'vpxor',0EFh
1241
 dw avx_pd_instruction-instruction_handler
1249
 dw avx_pd_instruction-instruction_handler
1242
 db 'while',0
1250
 db 'while',0
1243
 dw while_directive-instruction_handler
1251
 dw while_directive-instruction_handler
1244
 db 'wrmsr',30h
1252
 db 'wrmsr',30h
1245
 dw simple_extended_instruction-instruction_handler
1253
 dw simple_extended_instruction-instruction_handler
1246
 db 'xlatb',0D7h
1254
 db 'xlatb',0D7h
1247
 dw simple_instruction-instruction_handler
1255
 dw simple_instruction-instruction_handler
1248
 db 'xorpd',57h
1256
 db 'xorpd',57h
1249
 dw sse_pd_instruction-instruction_handler
1257
 dw sse_pd_instruction-instruction_handler
1250
 db 'xorps',57h
1258
 db 'xorps',57h
1251
 dw sse_ps_instruction-instruction_handler
1259
 dw sse_ps_instruction-instruction_handler
1252
 db 'xsave',100b
1260
 db 'xsave',100b
1253
 dw fxsave_instruction-instruction_handler
1261
 dw fxsave_instruction-instruction_handler
1254
 db 'xtest',0D6h
1262
 db 'xtest',0D6h
1255
 dw simple_vmx_instruction-instruction_handler
1263
 dw simple_vmx_instruction-instruction_handler
1256
instructions_6:
1264
instructions_6:
1257
 db 'aesdec',0DEh
1265
 db 'aesdec',0DEh
1258
 dw sse4_instruction_38-instruction_handler
1266
 dw sse4_instruction_38-instruction_handler
1259
 db 'aesenc',0DCh
1267
 db 'aesenc',0DCh
1260
 dw sse4_instruction_38-instruction_handler
1268
 dw sse4_instruction_38-instruction_handler
1261
 db 'aesimc',0DBh
1269
 db 'aesimc',0DBh
1262
 dw sse4_instruction_38-instruction_handler
1270
 dw sse4_instruction_38-instruction_handler
1263
 db 'andnpd',55h
1271
 db 'andnpd',55h
1264
 dw sse_pd_instruction-instruction_handler
1272
 dw sse_pd_instruction-instruction_handler
1265
 db 'andnps',55h
1273
 db 'andnps',55h
1266
 dw sse_ps_instruction-instruction_handler
1274
 dw sse_ps_instruction-instruction_handler
1267
 db 'assert',0
1275
 db 'assert',0
1268
 dw assert_directive-instruction_handler
1276
 dw assert_directive-instruction_handler
1269
 db 'blcmsk',21h
1277
 db 'blcmsk',21h
1270
 dw tbm_instruction-instruction_handler
1278
 dw tbm_instruction-instruction_handler
1271
 db 'blsmsk',2
1279
 db 'blsmsk',2
1272
 dw bmi_instruction-instruction_handler
1280
 dw bmi_instruction-instruction_handler
1273
 db 'cmovae',43h
1281
 db 'cmovae',43h
1274
 dw bs_instruction-instruction_handler
1282
 dw bs_instruction-instruction_handler
1275
 db 'cmovbe',46h
1283
 db 'cmovbe',46h
1276
 dw bs_instruction-instruction_handler
1284
 dw bs_instruction-instruction_handler
1277
 db 'cmovge',4Dh
1285
 db 'cmovge',4Dh
1278
 dw bs_instruction-instruction_handler
1286
 dw bs_instruction-instruction_handler
1279
 db 'cmovle',4Eh
1287
 db 'cmovle',4Eh
1280
 dw bs_instruction-instruction_handler
1288
 dw bs_instruction-instruction_handler
1281
 db 'cmovna',46h
1289
 db 'cmovna',46h
1282
 dw bs_instruction-instruction_handler
1290
 dw bs_instruction-instruction_handler
1283
 db 'cmovnb',43h
1291
 db 'cmovnb',43h
1284
 dw bs_instruction-instruction_handler
1292
 dw bs_instruction-instruction_handler
1285
 db 'cmovnc',43h
1293
 db 'cmovnc',43h
1286
 dw bs_instruction-instruction_handler
1294
 dw bs_instruction-instruction_handler
1287
 db 'cmovne',45h
1295
 db 'cmovne',45h
1288
 dw bs_instruction-instruction_handler
1296
 dw bs_instruction-instruction_handler
1289
 db 'cmovng',4Eh
1297
 db 'cmovng',4Eh
1290
 dw bs_instruction-instruction_handler
1298
 dw bs_instruction-instruction_handler
1291
 db 'cmovnl',4Dh
1299
 db 'cmovnl',4Dh
1292
 dw bs_instruction-instruction_handler
1300
 dw bs_instruction-instruction_handler
1293
 db 'cmovno',41h
1301
 db 'cmovno',41h
1294
 dw bs_instruction-instruction_handler
1302
 dw bs_instruction-instruction_handler
1295
 db 'cmovnp',4Bh
1303
 db 'cmovnp',4Bh
1296
 dw bs_instruction-instruction_handler
1304
 dw bs_instruction-instruction_handler
1297
 db 'cmovns',49h
1305
 db 'cmovns',49h
1298
 dw bs_instruction-instruction_handler
1306
 dw bs_instruction-instruction_handler
1299
 db 'cmovnz',45h
1307
 db 'cmovnz',45h
1300
 dw bs_instruction-instruction_handler
1308
 dw bs_instruction-instruction_handler
1301
 db 'cmovpe',4Ah
1309
 db 'cmovpe',4Ah
1302
 dw bs_instruction-instruction_handler
1310
 dw bs_instruction-instruction_handler
1303
 db 'cmovpo',4Bh
1311
 db 'cmovpo',4Bh
1304
 dw bs_instruction-instruction_handler
1312
 dw bs_instruction-instruction_handler
1305
 db 'comisd',2Fh
1313
 db 'comisd',2Fh
1306
 dw comisd_instruction-instruction_handler
1314
 dw comisd_instruction-instruction_handler
1307
 db 'comiss',2Fh
1315
 db 'comiss',2Fh
1308
 dw comiss_instruction-instruction_handler
1316
 dw comiss_instruction-instruction_handler
1309
 db 'fcmovb',0C0h
1317
 db 'fcmovb',0C0h
1310
 dw fcmov_instruction-instruction_handler
1318
 dw fcmov_instruction-instruction_handler
1311
 db 'fcmove',0C8h
1319
 db 'fcmove',0C8h
1312
 dw fcmov_instruction-instruction_handler
1320
 dw fcmov_instruction-instruction_handler
1313
 db 'fcmovu',0D8h
1321
 db 'fcmovu',0D8h
1314
 dw fcmov_instruction-instruction_handler
1322
 dw fcmov_instruction-instruction_handler
1315
 db 'fcomip',0F0h
1323
 db 'fcomip',0F0h
1316
 dw fcomip_instruction-instruction_handler
1324
 dw fcomip_instruction-instruction_handler
1317
 db 'fcompp',0
1325
 db 'fcompp',0
1318
 dw fcompp_instruction-instruction_handler
1326
 dw fcompp_instruction-instruction_handler
1319
 db 'fdivrp',6
1327
 db 'fdivrp',6
1320
 dw faddp_instruction-instruction_handler
1328
 dw faddp_instruction-instruction_handler
1321
 db 'ffreep',0
1329
 db 'ffreep',0
1322
 dw ffreep_instruction-instruction_handler
1330
 dw ffreep_instruction-instruction_handler
1323
 db 'ficomp',3
1331
 db 'ficomp',3
1324
 dw fi_instruction-instruction_handler
1332
 dw fi_instruction-instruction_handler
1325
 db 'fidivr',7
1333
 db 'fidivr',7
1326
 dw fi_instruction-instruction_handler
1334
 dw fi_instruction-instruction_handler
1327
 db 'fisttp',1
1335
 db 'fisttp',1
1328
 dw fild_instruction-instruction_handler
1336
 dw fild_instruction-instruction_handler
1329
 db 'fisubr',5
1337
 db 'fisubr',5
1330
 dw fi_instruction-instruction_handler
1338
 dw fi_instruction-instruction_handler
1331
 db 'fldenv',4
1339
 db 'fldenv',4
1332
 dw fldenv_instruction-instruction_handler
1340
 dw fldenv_instruction-instruction_handler
1333
 db 'fldl2e',101010b
1341
 db 'fldl2e',101010b
1334
 dw simple_fpu_instruction-instruction_handler
1342
 dw simple_fpu_instruction-instruction_handler
1335
 db 'fldl2t',101001b
1343
 db 'fldl2t',101001b
1336
 dw simple_fpu_instruction-instruction_handler
1344
 dw simple_fpu_instruction-instruction_handler
1337
 db 'fldlg2',101100b
1345
 db 'fldlg2',101100b
1338
 dw simple_fpu_instruction-instruction_handler
1346
 dw simple_fpu_instruction-instruction_handler
1339
 db 'fldln2',101101b
1347
 db 'fldln2',101101b
1340
 dw simple_fpu_instruction-instruction_handler
1348
 dw simple_fpu_instruction-instruction_handler
1341
 db 'fnclex',0E2h
1349
 db 'fnclex',0E2h
1342
 dw fninit_instruction-instruction_handler
1350
 dw fninit_instruction-instruction_handler
1343
 db 'fndisi',0E1h
1351
 db 'fndisi',0E1h
1344
 dw fninit_instruction-instruction_handler
1352
 dw fninit_instruction-instruction_handler
1345
 db 'fninit',0E3h
1353
 db 'fninit',0E3h
1346
 dw fninit_instruction-instruction_handler
1354
 dw fninit_instruction-instruction_handler
1347
 db 'fnsave',6
1355
 db 'fnsave',6
1348
 dw fnsave_instruction-instruction_handler
1356
 dw fnsave_instruction-instruction_handler
1349
 db 'fnstcw',7
1357
 db 'fnstcw',7
1350
 dw fldcw_instruction-instruction_handler
1358
 dw fldcw_instruction-instruction_handler
1351
 db 'fnstsw',0
1359
 db 'fnstsw',0
1352
 dw fnstsw_instruction-instruction_handler
1360
 dw fnstsw_instruction-instruction_handler
1353
 db 'format',0
1361
 db 'format',0
1354
 dw format_directive-instruction_handler
1362
 dw format_directive-instruction_handler
1355
 db 'fpatan',110011b
1363
 db 'fpatan',110011b
1356
 dw simple_fpu_instruction-instruction_handler
1364
 dw simple_fpu_instruction-instruction_handler
1357
 db 'fprem1',110101b
1365
 db 'fprem1',110101b
1358
 dw simple_fpu_instruction-instruction_handler
1366
 dw simple_fpu_instruction-instruction_handler
1359
 db 'frstor',4
1367
 db 'frstor',4
1360
 dw fnsave_instruction-instruction_handler
1368
 dw fnsave_instruction-instruction_handler
1361
 db 'frstpm',0E5h
1369
 db 'frstpm',0E5h
1362
 dw fninit_instruction-instruction_handler
1370
 dw fninit_instruction-instruction_handler
1363
 db 'fsaved',6
1371
 db 'fsaved',6
1364
 dw fsave_instruction_32bit-instruction_handler
1372
 dw fsave_instruction_32bit-instruction_handler
1365
 db 'fsavew',6
1373
 db 'fsavew',6
1366
 dw fsave_instruction_16bit-instruction_handler
1374
 dw fsave_instruction_16bit-instruction_handler
1367
 db 'fscale',111101b
1375
 db 'fscale',111101b
1368
 dw simple_fpu_instruction-instruction_handler
1376
 dw simple_fpu_instruction-instruction_handler
1369
 db 'fsetpm',0E4h
1377
 db 'fsetpm',0E4h
1370
 dw fninit_instruction-instruction_handler
1378
 dw fninit_instruction-instruction_handler
1371
 db 'fstenv',6
1379
 db 'fstenv',6
1372
 dw fstenv_instruction-instruction_handler
1380
 dw fstenv_instruction-instruction_handler
1373
 db 'fsubrp',4
1381
 db 'fsubrp',4
1374
 dw faddp_instruction-instruction_handler
1382
 dw faddp_instruction-instruction_handler
1375
 db 'fucomi',0E8h
1383
 db 'fucomi',0E8h
1376
 dw fcomi_instruction-instruction_handler
1384
 dw fcomi_instruction-instruction_handler
1377
 db 'fucomp',5
1385
 db 'fucomp',5
1378
 dw ffree_instruction-instruction_handler
1386
 dw ffree_instruction-instruction_handler
1379
 db 'fxsave',0
1387
 db 'fxsave',0
1380
 dw fxsave_instruction-instruction_handler
1388
 dw fxsave_instruction-instruction_handler
1381
 db 'getsec',37h
1389
 db 'getsec',37h
1382
 dw simple_extended_instruction-instruction_handler
1390
 dw simple_extended_instruction-instruction_handler
1383
 db 'haddpd',07Ch
1391
 db 'haddpd',07Ch
1384
 dw sse_pd_instruction-instruction_handler
1392
 dw sse_pd_instruction-instruction_handler
1385
 db 'haddps',07Ch
1393
 db 'haddps',07Ch
1386
 dw cvtpd2dq_instruction-instruction_handler
1394
 dw cvtpd2dq_instruction-instruction_handler
1387
 db 'hsubpd',07Dh
1395
 db 'hsubpd',07Dh
1388
 dw sse_pd_instruction-instruction_handler
1396
 dw sse_pd_instruction-instruction_handler
1389
 db 'hsubps',07Dh
1397
 db 'hsubps',07Dh
1390
 dw cvtpd2dq_instruction-instruction_handler
1398
 dw cvtpd2dq_instruction-instruction_handler
1391
 db 'invept',80h
1399
 db 'invept',80h
1392
 dw vmx_inv_instruction-instruction_handler
1400
 dw vmx_inv_instruction-instruction_handler
1393
 db 'invlpg',0
1401
 db 'invlpg',0
1394
 dw invlpg_instruction-instruction_handler
1402
 dw invlpg_instruction-instruction_handler
1395
 db 'lfence',0E8h
1403
 db 'lfence',0E8h
1396
 dw fence_instruction-instruction_handler
1404
 dw fence_instruction-instruction_handler
1397
 db 'llwpcb',0
1405
 db 'llwpcb',0
1398
 dw llwpcb_instruction-instruction_handler
1406
 dw llwpcb_instruction-instruction_handler
1399
 db 'looped',0E1h
1407
 db 'looped',0E1h
1400
 dw loop_instruction_32bit-instruction_handler
1408
 dw loop_instruction_32bit-instruction_handler
1401
 db 'loopeq',0E1h
1409
 db 'loopeq',0E1h
1402
 dw loop_instruction_64bit-instruction_handler
1410
 dw loop_instruction_64bit-instruction_handler
1403
 db 'loopew',0E1h
1411
 db 'loopew',0E1h
1404
 dw loop_instruction_16bit-instruction_handler
1412
 dw loop_instruction_16bit-instruction_handler
1405
 db 'loopne',0E0h
1413
 db 'loopne',0E0h
1406
 dw loop_instruction-instruction_handler
1414
 dw loop_instruction-instruction_handler
1407
 db 'loopnz',0E0h
1415
 db 'loopnz',0E0h
1408
 dw loop_instruction-instruction_handler
1416
 dw loop_instruction-instruction_handler
1409
 db 'loopzd',0E1h
1417
 db 'loopzd',0E1h
1410
 dw loop_instruction_32bit-instruction_handler
1418
 dw loop_instruction_32bit-instruction_handler
1411
 db 'loopzq',0E1h
1419
 db 'loopzq',0E1h
1412
 dw loop_instruction_64bit-instruction_handler
1420
 dw loop_instruction_64bit-instruction_handler
1413
 db 'loopzw',0E1h
1421
 db 'loopzw',0E1h
1414
 dw loop_instruction_16bit-instruction_handler
1422
 dw loop_instruction_16bit-instruction_handler
1415
 db 'lwpins',0
1423
 db 'lwpins',0
1416
 dw lwpins_instruction-instruction_handler
1424
 dw lwpins_instruction-instruction_handler
1417
 db 'lwpval',1
1425
 db 'lwpval',1
1418
 dw lwpins_instruction-instruction_handler
1426
 dw lwpins_instruction-instruction_handler
1419
 db 'mfence',0F0h
1427
 db 'mfence',0F0h
1420
 dw fence_instruction-instruction_handler
1428
 dw fence_instruction-instruction_handler
1421
 db 'movapd',28h
1429
 db 'movapd',28h
1422
 dw movpd_instruction-instruction_handler
1430
 dw movpd_instruction-instruction_handler
1423
 db 'movaps',28h
1431
 db 'movaps',28h
1424
 dw movps_instruction-instruction_handler
1432
 dw movps_instruction-instruction_handler
1425
 db 'movdqa',66h
1433
 db 'movdqa',66h
1426
 dw movdq_instruction-instruction_handler
1434
 dw movdq_instruction-instruction_handler
1427
 db 'movdqu',0F3h
1435
 db 'movdqu',0F3h
1428
 dw movdq_instruction-instruction_handler
1436
 dw movdq_instruction-instruction_handler
1429
 db 'movhpd',16h
1437
 db 'movhpd',16h
1430
 dw movlpd_instruction-instruction_handler
1438
 dw movlpd_instruction-instruction_handler
1431
 db 'movhps',16h
1439
 db 'movhps',16h
1432
 dw movlps_instruction-instruction_handler
1440
 dw movlps_instruction-instruction_handler
1433
 db 'movlpd',12h
1441
 db 'movlpd',12h
1434
 dw movlpd_instruction-instruction_handler
1442
 dw movlpd_instruction-instruction_handler
1435
 db 'movlps',12h
1443
 db 'movlps',12h
1436
 dw movlps_instruction-instruction_handler
1444
 dw movlps_instruction-instruction_handler
1437
 db 'movnti',0C3h
1445
 db 'movnti',0C3h
1438
 dw movnti_instruction-instruction_handler
1446
 dw movnti_instruction-instruction_handler
1439
 db 'movntq',0E7h
1447
 db 'movntq',0E7h
1440
 dw movntq_instruction-instruction_handler
1448
 dw movntq_instruction-instruction_handler
1441
 db 'movsxd',63h
1449
 db 'movsxd',63h
1442
 dw movsxd_instruction-instruction_handler
1450
 dw movsxd_instruction-instruction_handler
1443
 db 'movupd',10h
1451
 db 'movupd',10h
1444
 dw movpd_instruction-instruction_handler
1452
 dw movpd_instruction-instruction_handler
1445
 db 'movups',10h
1453
 db 'movups',10h
1446
 dw movps_instruction-instruction_handler
1454
 dw movps_instruction-instruction_handler
1447
 db 'paddsb',0ECh
1455
 db 'paddsb',0ECh
1448
 dw basic_mmx_instruction-instruction_handler
1456
 dw basic_mmx_instruction-instruction_handler
1449
 db 'paddsw',0EDh
1457
 db 'paddsw',0EDh
1450
 dw basic_mmx_instruction-instruction_handler
1458
 dw basic_mmx_instruction-instruction_handler
1451
 db 'pextrb',14h
1459
 db 'pextrb',14h
1452
 dw pextrb_instruction-instruction_handler
1460
 dw pextrb_instruction-instruction_handler
1453
 db 'pextrd',16h
1461
 db 'pextrd',16h
1454
 dw pextrd_instruction-instruction_handler
1462
 dw pextrd_instruction-instruction_handler
1455
 db 'pextrq',16h
1463
 db 'pextrq',16h
1456
 dw pextrq_instruction-instruction_handler
1464
 dw pextrq_instruction-instruction_handler
1457
 db 'pextrw',15h
1465
 db 'pextrw',15h
1458
 dw pextrw_instruction-instruction_handler
1466
 dw pextrw_instruction-instruction_handler
1459
 db 'pfnacc',8Ah
1467
 db 'pfnacc',8Ah
1460
 dw amd3dnow_instruction-instruction_handler
1468
 dw amd3dnow_instruction-instruction_handler
1461
 db 'pfsubr',0AAh
1469
 db 'pfsubr',0AAh
1462
 dw amd3dnow_instruction-instruction_handler
1470
 dw amd3dnow_instruction-instruction_handler
1463
 db 'phaddd',2
1471
 db 'phaddd',2
1464
 dw ssse3_instruction-instruction_handler
1472
 dw ssse3_instruction-instruction_handler
1465
 db 'phaddw',1
1473
 db 'phaddw',1
1466
 dw ssse3_instruction-instruction_handler
1474
 dw ssse3_instruction-instruction_handler
1467
 db 'phsubd',6
1475
 db 'phsubd',6
1468
 dw ssse3_instruction-instruction_handler
1476
 dw ssse3_instruction-instruction_handler
1469
 db 'phsubw',5
1477
 db 'phsubw',5
1470
 dw ssse3_instruction-instruction_handler
1478
 dw ssse3_instruction-instruction_handler
1471
 db 'pinsrb',20h
1479
 db 'pinsrb',20h
1472
 dw pinsrb_instruction-instruction_handler
1480
 dw pinsrb_instruction-instruction_handler
1473
 db 'pinsrd',22h
1481
 db 'pinsrd',22h
1474
 dw pinsrd_instruction-instruction_handler
1482
 dw pinsrd_instruction-instruction_handler
1475
 db 'pinsrq',22h
1483
 db 'pinsrq',22h
1476
 dw pinsrq_instruction-instruction_handler
1484
 dw pinsrq_instruction-instruction_handler
1477
 db 'pinsrw',0C4h
1485
 db 'pinsrw',0C4h
1478
 dw pinsrw_instruction-instruction_handler
1486
 dw pinsrw_instruction-instruction_handler
1479
 db 'pmaxsb',3Ch
1487
 db 'pmaxsb',3Ch
1480
 dw sse4_instruction_38-instruction_handler
1488
 dw sse4_instruction_38-instruction_handler
1481
 db 'pmaxsd',3Dh
1489
 db 'pmaxsd',3Dh
1482
 dw sse4_instruction_38-instruction_handler
1490
 dw sse4_instruction_38-instruction_handler
1483
 db 'pmaxsw',0EEh
1491
 db 'pmaxsw',0EEh
1484
 dw basic_mmx_instruction-instruction_handler
1492
 dw basic_mmx_instruction-instruction_handler
1485
 db 'pmaxub',0DEh
1493
 db 'pmaxub',0DEh
1486
 dw basic_mmx_instruction-instruction_handler
1494
 dw basic_mmx_instruction-instruction_handler
1487
 db 'pmaxud',3Fh
1495
 db 'pmaxud',3Fh
1488
 dw sse4_instruction_38-instruction_handler
1496
 dw sse4_instruction_38-instruction_handler
1489
 db 'pmaxuw',3Eh
1497
 db 'pmaxuw',3Eh
1490
 dw sse4_instruction_38-instruction_handler
1498
 dw sse4_instruction_38-instruction_handler
1491
 db 'pminsb',38h
1499
 db 'pminsb',38h
1492
 dw sse4_instruction_38-instruction_handler
1500
 dw sse4_instruction_38-instruction_handler
1493
 db 'pminsd',39h
1501
 db 'pminsd',39h
1494
 dw sse4_instruction_38-instruction_handler
1502
 dw sse4_instruction_38-instruction_handler
1495
 db 'pminsw',0EAh
1503
 db 'pminsw',0EAh
1496
 dw basic_mmx_instruction-instruction_handler
1504
 dw basic_mmx_instruction-instruction_handler
1497
 db 'pminub',0DAh
1505
 db 'pminub',0DAh
1498
 dw basic_mmx_instruction-instruction_handler
1506
 dw basic_mmx_instruction-instruction_handler
1499
 db 'pminud',3Bh
1507
 db 'pminud',3Bh
1500
 dw sse4_instruction_38-instruction_handler
1508
 dw sse4_instruction_38-instruction_handler
1501
 db 'pminuw',3Ah
1509
 db 'pminuw',3Ah
1502
 dw sse4_instruction_38-instruction_handler
1510
 dw sse4_instruction_38-instruction_handler
1503
 db 'pmuldq',28h
1511
 db 'pmuldq',28h
1504
 dw sse4_instruction_38-instruction_handler
1512
 dw sse4_instruction_38-instruction_handler
1505
 db 'pmulhw',0E5h
1513
 db 'pmulhw',0E5h
1506
 dw basic_mmx_instruction-instruction_handler
1514
 dw basic_mmx_instruction-instruction_handler
1507
 db 'pmulld',40h
1515
 db 'pmulld',40h
1508
 dw sse4_instruction_38-instruction_handler
1516
 dw sse4_instruction_38-instruction_handler
1509
 db 'pmullw',0D5h
1517
 db 'pmullw',0D5h
1510
 dw basic_mmx_instruction-instruction_handler
1518
 dw basic_mmx_instruction-instruction_handler
1511
 db 'popcnt',0B8h
1519
 db 'popcnt',0B8h
1512
 dw popcnt_instruction-instruction_handler
1520
 dw popcnt_instruction-instruction_handler
1513
 db 'psadbw',0F6h
1521
 db 'psadbw',0F6h
1514
 dw basic_mmx_instruction-instruction_handler
1522
 dw basic_mmx_instruction-instruction_handler
1515
 db 'pshufb',0
1523
 db 'pshufb',0
1516
 dw ssse3_instruction-instruction_handler
1524
 dw ssse3_instruction-instruction_handler
1517
 db 'pshufd',66h
1525
 db 'pshufd',66h
1518
 dw pshufd_instruction-instruction_handler
1526
 dw pshufd_instruction-instruction_handler
1519
 db 'pshufw',0
1527
 db 'pshufw',0
1520
 dw pshufw_instruction-instruction_handler
1528
 dw pshufw_instruction-instruction_handler
1521
 db 'psignb',8
1529
 db 'psignb',8
1522
 dw ssse3_instruction-instruction_handler
1530
 dw ssse3_instruction-instruction_handler
1523
 db 'psignd',0Ah
1531
 db 'psignd',0Ah
1524
 dw ssse3_instruction-instruction_handler
1532
 dw ssse3_instruction-instruction_handler
1525
 db 'psignw',9
1533
 db 'psignw',9
1526
 dw ssse3_instruction-instruction_handler
1534
 dw ssse3_instruction-instruction_handler
1527
 db 'pslldq',111b
1535
 db 'pslldq',111b
1528
 dw pslldq_instruction-instruction_handler
1536
 dw pslldq_instruction-instruction_handler
1529
 db 'psrldq',011b
1537
 db 'psrldq',011b
1530
 dw pslldq_instruction-instruction_handler
1538
 dw pslldq_instruction-instruction_handler
1531
 db 'psubsb',0E8h
1539
 db 'psubsb',0E8h
1532
 dw basic_mmx_instruction-instruction_handler
1540
 dw basic_mmx_instruction-instruction_handler
1533
 db 'psubsw',0E9h
1541
 db 'psubsw',0E9h
1534
 dw basic_mmx_instruction-instruction_handler
1542
 dw basic_mmx_instruction-instruction_handler
1535
 db 'pswapd',0BBh
1543
 db 'pswapd',0BBh
1536
 dw amd3dnow_instruction-instruction_handler
1544
 dw amd3dnow_instruction-instruction_handler
1537
 db 'public',0
1545
 db 'public',0
1538
 dw public_directive-instruction_handler
1546
 dw public_directive-instruction_handler
1539
 db 'pushad',60h
1547
 db 'pushad',60h
1540
 dw simple_instruction_32bit_except64-instruction_handler
1548
 dw simple_instruction_32bit_except64-instruction_handler
1541
 db 'pushaw',60h
1549
 db 'pushaw',60h
1542
 dw simple_instruction_16bit_except64-instruction_handler
1550
 dw simple_instruction_16bit_except64-instruction_handler
1543
 db 'pushfd',9Ch
1551
 db 'pushfd',9Ch
1544
 dw simple_instruction_32bit_except64-instruction_handler
1552
 dw simple_instruction_32bit_except64-instruction_handler
1545
 db 'pushfq',9Ch
1553
 db 'pushfq',9Ch
1546
 dw simple_instruction_only64-instruction_handler
1554
 dw simple_instruction_only64-instruction_handler
1547
 db 'pushfw',9Ch
1555
 db 'pushfw',9Ch
1548
 dw simple_instruction_16bit-instruction_handler
1556
 dw simple_instruction_16bit-instruction_handler
1549
 db 'rdmsrq',32h
1557
 db 'rdmsrq',32h
1550
 dw simple_extended_instruction_64bit-instruction_handler
1558
 dw simple_extended_instruction_64bit-instruction_handler
1551
 db 'rdrand',110b
1559
 db 'rdrand',110b
1552
 dw rdrand_instruction-instruction_handler
1560
 dw rdrand_instruction-instruction_handler
1553
 db 'rdtscp',1
1561
 db 'rdseed',111b
-
 
1562
 dw rdrand_instruction-instruction_handler
-
 
1563
 db 'rdtscp',1
1554
 dw rdtscp_instruction-instruction_handler
1564
 dw rdtscp_instruction-instruction_handler
1555
 db 'repeat',0
1565
 db 'repeat',0
1556
 dw repeat_directive-instruction_handler
1566
 dw repeat_directive-instruction_handler
1557
 db 'setalc',0D6h
1567
 db 'setalc',0D6h
1558
 dw simple_instruction_except64-instruction_handler
1568
 dw simple_instruction_except64-instruction_handler
1559
 db 'setnae',92h
1569
 db 'setnae',92h
1560
 dw set_instruction-instruction_handler
1570
 dw set_instruction-instruction_handler
1561
 db 'setnbe',97h
1571
 db 'setnbe',97h
1562
 dw set_instruction-instruction_handler
1572
 dw set_instruction-instruction_handler
1563
 db 'setnge',9Ch
1573
 db 'setnge',9Ch
1564
 dw set_instruction-instruction_handler
1574
 dw set_instruction-instruction_handler
1565
 db 'setnle',9Fh
1575
 db 'setnle',9Fh
1566
 dw set_instruction-instruction_handler
1576
 dw set_instruction-instruction_handler
1567
 db 'sfence',0F8h
1577
 db 'sfence',0F8h
1568
 dw fence_instruction-instruction_handler
1578
 dw fence_instruction-instruction_handler
1569
 db 'shufpd',0C6h
1579
 db 'shufpd',0C6h
1570
 dw sse_pd_instruction_imm8-instruction_handler
1580
 dw sse_pd_instruction_imm8-instruction_handler
1571
 db 'shufps',0C6h
1581
 db 'shufps',0C6h
1572
 dw sse_ps_instruction_imm8-instruction_handler
1582
 dw sse_ps_instruction_imm8-instruction_handler
1573
 db 'skinit',0
1583
 db 'skinit',0
1574
 dw skinit_instruction-instruction_handler
1584
 dw skinit_instruction-instruction_handler
1575
 db 'slwpcb',1
1585
 db 'slwpcb',1
1576
 dw llwpcb_instruction-instruction_handler
1586
 dw llwpcb_instruction-instruction_handler
1577
 db 'sqrtpd',51h
1587
 db 'sqrtpd',51h
1578
 dw sse_pd_instruction-instruction_handler
1588
 dw sse_pd_instruction-instruction_handler
1579
 db 'sqrtps',51h
1589
 db 'sqrtps',51h
1580
 dw sse_ps_instruction-instruction_handler
1590
 dw sse_ps_instruction-instruction_handler
1581
 db 'sqrtsd',51h
1591
 db 'sqrtsd',51h
1582
 dw sse_sd_instruction-instruction_handler
1592
 dw sse_sd_instruction-instruction_handler
1583
 db 'sqrtss',51h
1593
 db 'sqrtss',51h
1584
 dw sse_ss_instruction-instruction_handler
1594
 dw sse_ss_instruction-instruction_handler
1585
 db 'swapgs',0
1595
 db 'swapgs',0
1586
 dw swapgs_instruction-instruction_handler
1596
 dw swapgs_instruction-instruction_handler
1587
 db 'sysret',07h
1597
 db 'sysret',07h
1588
 dw simple_extended_instruction-instruction_handler
1598
 dw simple_extended_instruction-instruction_handler
1589
 db 't1mskc',17h
1599
 db 't1mskc',17h
1590
 dw tbm_instruction-instruction_handler
1600
 dw tbm_instruction-instruction_handler
1591
 db 'vaddpd',58h
1601
 db 'vaddpd',58h
1592
 dw avx_pd_instruction-instruction_handler
1602
 dw avx_pd_instruction-instruction_handler
1593
 db 'vaddps',58h
1603
 db 'vaddps',58h
1594
 dw avx_ps_instruction-instruction_handler
1604
 dw avx_ps_instruction-instruction_handler
1595
 db 'vaddsd',58h
1605
 db 'vaddsd',58h
1596
 dw avx_sd_instruction-instruction_handler
1606
 dw avx_sd_instruction-instruction_handler
1597
 db 'vaddss',58h
1607
 db 'vaddss',58h
1598
 dw avx_ss_instruction-instruction_handler
1608
 dw avx_ss_instruction-instruction_handler
1599
 db 'vandpd',54h
1609
 db 'vandpd',54h
1600
 dw avx_pd_instruction-instruction_handler
1610
 dw avx_pd_instruction-instruction_handler
1601
 db 'vandps',54h
1611
 db 'vandps',54h
1602
 dw avx_ps_instruction-instruction_handler
1612
 dw avx_ps_instruction-instruction_handler
1603
 db 'vcmppd',-1
1613
 db 'vcmppd',-1
1604
 dw avx_cmp_pd_instruction-instruction_handler
1614
 dw avx_cmp_pd_instruction-instruction_handler
1605
 db 'vcmpps',-1
1615
 db 'vcmpps',-1
1606
 dw avx_cmp_ps_instruction-instruction_handler
1616
 dw avx_cmp_ps_instruction-instruction_handler
1607
 db 'vcmpsd',-1
1617
 db 'vcmpsd',-1
1608
 dw avx_cmp_sd_instruction-instruction_handler
1618
 dw avx_cmp_sd_instruction-instruction_handler
1609
 db 'vcmpss',-1
1619
 db 'vcmpss',-1
1610
 dw avx_cmp_ss_instruction-instruction_handler
1620
 dw avx_cmp_ss_instruction-instruction_handler
1611
 db 'vdivpd',5Eh
1621
 db 'vdivpd',5Eh
1612
 dw avx_pd_instruction-instruction_handler
1622
 dw avx_pd_instruction-instruction_handler
1613
 db 'vdivps',5Eh
1623
 db 'vdivps',5Eh
1614
 dw avx_ps_instruction-instruction_handler
1624
 dw avx_ps_instruction-instruction_handler
1615
 db 'vdivsd',5Eh
1625
 db 'vdivsd',5Eh
1616
 dw avx_sd_instruction-instruction_handler
1626
 dw avx_sd_instruction-instruction_handler
1617
 db 'vdivss',5Eh
1627
 db 'vdivss',5Eh
1618
 dw avx_ss_instruction-instruction_handler
1628
 dw avx_ss_instruction-instruction_handler
1619
 db 'vlddqu',0F0h
1629
 db 'vlddqu',0F0h
1620
 dw avx_lddqu_instruction-instruction_handler
1630
 dw avx_lddqu_instruction-instruction_handler
1621
 db 'vmaxpd',5Fh
1631
 db 'vmaxpd',5Fh
1622
 dw avx_pd_instruction-instruction_handler
1632
 dw avx_pd_instruction-instruction_handler
1623
 db 'vmaxps',5Fh
1633
 db 'vmaxps',5Fh
1624
 dw avx_ps_instruction-instruction_handler
1634
 dw avx_ps_instruction-instruction_handler
1625
 db 'vmaxsd',5Fh
1635
 db 'vmaxsd',5Fh
1626
 dw avx_sd_instruction-instruction_handler
1636
 dw avx_sd_instruction-instruction_handler
1627
 db 'vmaxss',5Fh
1637
 db 'vmaxss',5Fh
1628
 dw avx_ss_instruction-instruction_handler
1638
 dw avx_ss_instruction-instruction_handler
1629
 db 'vmcall',0C1h
1639
 db 'vmcall',0C1h
1630
 dw simple_vmx_instruction-instruction_handler
1640
 dw simple_vmx_instruction-instruction_handler
1631
 db 'vminpd',5Dh
1641
 db 'vminpd',5Dh
1632
 dw avx_pd_instruction-instruction_handler
1642
 dw avx_pd_instruction-instruction_handler
1633
 db 'vminps',5Dh
1643
 db 'vminps',5Dh
1634
 dw avx_ps_instruction-instruction_handler
1644
 dw avx_ps_instruction-instruction_handler
1635
 db 'vminsd',5Dh
1645
 db 'vminsd',5Dh
1636
 dw avx_sd_instruction-instruction_handler
1646
 dw avx_sd_instruction-instruction_handler
1637
 db 'vminss',5Dh
1647
 db 'vminss',5Dh
1638
 dw avx_ss_instruction-instruction_handler
1648
 dw avx_ss_instruction-instruction_handler
1639
 db 'vmload',0DAh
1649
 db 'vmload',0DAh
1640
 dw simple_svm_instruction-instruction_handler
1650
 dw simple_svm_instruction-instruction_handler
1641
 db 'vmovsd',0
1651
 db 'vmovsd',0
1642
 dw avx_movsd_instruction-instruction_handler
1652
 dw avx_movsd_instruction-instruction_handler
1643
 db 'vmovss',0
1653
 db 'vmovss',0
1644
 dw avx_movss_instruction-instruction_handler
1654
 dw avx_movss_instruction-instruction_handler
1645
 db 'vmread',0
1655
 db 'vmread',0
1646
 dw vmread_instruction-instruction_handler
1656
 dw vmread_instruction-instruction_handler
1647
 db 'vmsave',0DBh
1657
 db 'vmsave',0DBh
1648
 dw simple_svm_instruction-instruction_handler
1658
 dw simple_svm_instruction-instruction_handler
1649
 db 'vmulpd',59h
1659
 db 'vmulpd',59h
1650
 dw avx_pd_instruction-instruction_handler
1660
 dw avx_pd_instruction-instruction_handler
1651
 db 'vmulps',59h
1661
 db 'vmulps',59h
1652
 dw avx_ps_instruction-instruction_handler
1662
 dw avx_ps_instruction-instruction_handler
1653
 db 'vmulsd',59h
1663
 db 'vmulsd',59h
1654
 dw avx_sd_instruction-instruction_handler
1664
 dw avx_sd_instruction-instruction_handler
1655
 db 'vmulss',59h
1665
 db 'vmulss',59h
1656
 dw avx_ss_instruction-instruction_handler
1666
 dw avx_ss_instruction-instruction_handler
1657
 db 'vmxoff',0C4h
1667
 db 'vmxoff',0C4h
1658
 dw simple_vmx_instruction-instruction_handler
1668
 dw simple_vmx_instruction-instruction_handler
1659
 db 'vpabsb',1Ch
1669
 db 'vpabsb',1Ch
1660
 dw avx_single_source_instruction_38-instruction_handler
1670
 dw avx_single_source_instruction_38-instruction_handler
1661
 db 'vpabsd',1Eh
1671
 db 'vpabsd',1Eh
1662
 dw avx_single_source_instruction_38-instruction_handler
1672
 dw avx_single_source_instruction_38-instruction_handler
1663
 db 'vpabsw',1Dh
1673
 db 'vpabsw',1Dh
1664
 dw avx_single_source_instruction_38-instruction_handler
1674
 dw avx_single_source_instruction_38-instruction_handler
1665
 db 'vpaddb',0FCh
1675
 db 'vpaddb',0FCh
1666
 dw avx_pd_instruction-instruction_handler
1676
 dw avx_pd_instruction-instruction_handler
1667
 db 'vpaddd',0FEh
1677
 db 'vpaddd',0FEh
1668
 dw avx_pd_instruction-instruction_handler
1678
 dw avx_pd_instruction-instruction_handler
1669
 db 'vpaddq',0D4h
1679
 db 'vpaddq',0D4h
1670
 dw avx_pd_instruction-instruction_handler
1680
 dw avx_pd_instruction-instruction_handler
1671
 db 'vpaddw',0FDh
1681
 db 'vpaddw',0FDh
1672
 dw avx_pd_instruction-instruction_handler
1682
 dw avx_pd_instruction-instruction_handler
1673
 db 'vpandn',0DFh
1683
 db 'vpandn',0DFh
1674
 dw avx_pd_instruction-instruction_handler
1684
 dw avx_pd_instruction-instruction_handler
1675
 db 'vpavgb',0E0h
1685
 db 'vpavgb',0E0h
1676
 dw avx_pd_instruction-instruction_handler
1686
 dw avx_pd_instruction-instruction_handler
1677
 db 'vpavgw',0E3h
1687
 db 'vpavgw',0E3h
1678
 dw avx_pd_instruction-instruction_handler
1688
 dw avx_pd_instruction-instruction_handler
1679
 db 'vpcmov',0A2h
1689
 db 'vpcmov',0A2h
1680
 dw vpcmov_instruction-instruction_handler
1690
 dw vpcmov_instruction-instruction_handler
1681
 db 'vpcomb',-1
1691
 db 'vpcomb',-1
1682
 dw xop_pcom_b_instruction-instruction_handler
1692
 dw xop_pcom_b_instruction-instruction_handler
1683
 db 'vpcomd',-1
1693
 db 'vpcomd',-1
1684
 dw xop_pcom_d_instruction-instruction_handler
1694
 dw xop_pcom_d_instruction-instruction_handler
1685
 db 'vpcomq',-1
1695
 db 'vpcomq',-1
1686
 dw xop_pcom_q_instruction-instruction_handler
1696
 dw xop_pcom_q_instruction-instruction_handler
1687
 db 'vpcomw',-1
1697
 db 'vpcomw',-1
1688
 dw xop_pcom_w_instruction-instruction_handler
1698
 dw xop_pcom_w_instruction-instruction_handler
1689
 db 'vpermd',36h
1699
 db 'vpermd',36h
1690
 dw avx_permd_instruction-instruction_handler
1700
 dw avx_permd_instruction-instruction_handler
1691
 db 'vpermq',0
1701
 db 'vpermq',0
1692
 dw avx_permq_instruction-instruction_handler
1702
 dw avx_permq_instruction-instruction_handler
1693
 db 'vpperm',0A3h
1703
 db 'vpperm',0A3h
1694
 dw xop_128bit_instruction-instruction_handler
1704
 dw xop_128bit_instruction-instruction_handler
1695
 db 'vprotb',90h
1705
 db 'vprotb',90h
1696
 dw xop_shift_instruction-instruction_handler
1706
 dw xop_shift_instruction-instruction_handler
1697
 db 'vprotd',92h
1707
 db 'vprotd',92h
1698
 dw xop_shift_instruction-instruction_handler
1708
 dw xop_shift_instruction-instruction_handler
1699
 db 'vprotq',93h
1709
 db 'vprotq',93h
1700
 dw xop_shift_instruction-instruction_handler
1710
 dw xop_shift_instruction-instruction_handler
1701
 db 'vprotw',91h
1711
 db 'vprotw',91h
1702
 dw xop_shift_instruction-instruction_handler
1712
 dw xop_shift_instruction-instruction_handler
1703
 db 'vpshab',98h
1713
 db 'vpshab',98h
1704
 dw xop_shift_instruction-instruction_handler
1714
 dw xop_shift_instruction-instruction_handler
1705
 db 'vpshad',9Ah
1715
 db 'vpshad',9Ah
1706
 dw xop_shift_instruction-instruction_handler
1716
 dw xop_shift_instruction-instruction_handler
1707
 db 'vpshaq',9Bh
1717
 db 'vpshaq',9Bh
1708
 dw xop_shift_instruction-instruction_handler
1718
 dw xop_shift_instruction-instruction_handler
1709
 db 'vpshaw',99h
1719
 db 'vpshaw',99h
1710
 dw xop_shift_instruction-instruction_handler
1720
 dw xop_shift_instruction-instruction_handler
1711
 db 'vpshlb',94h
1721
 db 'vpshlb',94h
1712
 dw xop_shift_instruction-instruction_handler
1722
 dw xop_shift_instruction-instruction_handler
1713
 db 'vpshld',96h
1723
 db 'vpshld',96h
1714
 dw xop_shift_instruction-instruction_handler
1724
 dw xop_shift_instruction-instruction_handler
1715
 db 'vpshlq',97h
1725
 db 'vpshlq',97h
1716
 dw xop_shift_instruction-instruction_handler
1726
 dw xop_shift_instruction-instruction_handler
1717
 db 'vpshlw',95h
1727
 db 'vpshlw',95h
1718
 dw xop_shift_instruction-instruction_handler
1728
 dw xop_shift_instruction-instruction_handler
1719
 db 'vpslld',0F2h
1729
 db 'vpslld',0F2h
1720
 dw avx_bit_shift_instruction-instruction_handler
1730
 dw avx_bit_shift_instruction-instruction_handler
1721
 db 'vpsllq',0F3h
1731
 db 'vpsllq',0F3h
1722
 dw avx_bit_shift_instruction-instruction_handler
1732
 dw avx_bit_shift_instruction-instruction_handler
1723
 db 'vpsllw',0F1h
1733
 db 'vpsllw',0F1h
1724
 dw avx_bit_shift_instruction-instruction_handler
1734
 dw avx_bit_shift_instruction-instruction_handler
1725
 db 'vpsrad',0E2h
1735
 db 'vpsrad',0E2h
1726
 dw avx_bit_shift_instruction-instruction_handler
1736
 dw avx_bit_shift_instruction-instruction_handler
1727
 db 'vpsraw',0E1h
1737
 db 'vpsraw',0E1h
1728
 dw avx_bit_shift_instruction-instruction_handler
1738
 dw avx_bit_shift_instruction-instruction_handler
1729
 db 'vpsrld',0D2h
1739
 db 'vpsrld',0D2h
1730
 dw avx_bit_shift_instruction-instruction_handler
1740
 dw avx_bit_shift_instruction-instruction_handler
1731
 db 'vpsrlq',0D3h
1741
 db 'vpsrlq',0D3h
1732
 dw avx_bit_shift_instruction-instruction_handler
1742
 dw avx_bit_shift_instruction-instruction_handler
1733
 db 'vpsrlw',0D1h
1743
 db 'vpsrlw',0D1h
1734
 dw avx_bit_shift_instruction-instruction_handler
1744
 dw avx_bit_shift_instruction-instruction_handler
1735
 db 'vpsubb',0F8h
1745
 db 'vpsubb',0F8h
1736
 dw avx_pd_instruction-instruction_handler
1746
 dw avx_pd_instruction-instruction_handler
1737
 db 'vpsubd',0FAh
1747
 db 'vpsubd',0FAh
1738
 dw avx_pd_instruction-instruction_handler
1748
 dw avx_pd_instruction-instruction_handler
1739
 db 'vpsubq',0FBh
1749
 db 'vpsubq',0FBh
1740
 dw avx_pd_instruction-instruction_handler
1750
 dw avx_pd_instruction-instruction_handler
1741
 db 'vpsubw',0F9h
1751
 db 'vpsubw',0F9h
1742
 dw avx_pd_instruction-instruction_handler
1752
 dw avx_pd_instruction-instruction_handler
1743
 db 'vptest',17h
1753
 db 'vptest',17h
1744
 dw avx_single_source_instruction_38-instruction_handler
1754
 dw avx_single_source_instruction_38-instruction_handler
1745
 db 'vrcpps',53h
1755
 db 'vrcpps',53h
1746
 dw avx_single_source_ps_instruction-instruction_handler
1756
 dw avx_single_source_ps_instruction-instruction_handler
1747
 db 'vrcpss',53h
1757
 db 'vrcpss',53h
1748
 dw avx_ss_instruction-instruction_handler
1758
 dw avx_ss_instruction-instruction_handler
1749
 db 'vsubpd',5Ch
1759
 db 'vsubpd',5Ch
1750
 dw avx_pd_instruction-instruction_handler
1760
 dw avx_pd_instruction-instruction_handler
1751
 db 'vsubps',5Ch
1761
 db 'vsubps',5Ch
1752
 dw avx_ps_instruction-instruction_handler
1762
 dw avx_ps_instruction-instruction_handler
1753
 db 'vsubsd',5Ch
1763
 db 'vsubsd',5Ch
1754
 dw avx_sd_instruction-instruction_handler
1764
 dw avx_sd_instruction-instruction_handler
1755
 db 'vsubss',5Ch
1765
 db 'vsubss',5Ch
1756
 dw avx_ss_instruction-instruction_handler
1766
 dw avx_ss_instruction-instruction_handler
1757
 db 'vxorpd',57h
1767
 db 'vxorpd',57h
1758
 dw avx_pd_instruction-instruction_handler
1768
 dw avx_pd_instruction-instruction_handler
1759
 db 'vxorps',57h
1769
 db 'vxorps',57h
1760
 dw avx_ps_instruction-instruction_handler
1770
 dw avx_ps_instruction-instruction_handler
1761
 db 'wbinvd',9
1771
 db 'wbinvd',9
1762
 dw simple_extended_instruction-instruction_handler
1772
 dw simple_extended_instruction-instruction_handler
1763
 db 'wrmsrq',30h
1773
 db 'wrmsrq',30h
1764
 dw simple_extended_instruction_64bit-instruction_handler
1774
 dw simple_extended_instruction_64bit-instruction_handler
1765
 db 'xabort',0
1775
 db 'xabort',0
1766
 dw xabort_instruction-instruction_handler
1776
 dw xabort_instruction-instruction_handler
1767
 db 'xbegin',0
1777
 db 'xbegin',0
1768
 dw xbegin_instruction-instruction_handler
1778
 dw xbegin_instruction-instruction_handler
1769
 db 'xgetbv',0D0h
1779
 db 'xgetbv',0D0h
1770
 dw simple_vmx_instruction-instruction_handler
1780
 dw simple_vmx_instruction-instruction_handler
1771
 db 'xrstor',101b
1781
 db 'xrstor',101b
1772
 dw fxsave_instruction-instruction_handler
1782
 dw fxsave_instruction-instruction_handler
1773
 db 'xsetbv',0D1h
1783
 db 'xsetbv',0D1h
1774
 dw simple_vmx_instruction-instruction_handler
1784
 dw simple_vmx_instruction-instruction_handler
1775
instructions_7:
1785
instructions_7:
1776
 db 'blcfill',11h
1786
 db 'blcfill',11h
1777
 dw tbm_instruction-instruction_handler
1787
 dw tbm_instruction-instruction_handler
1778
 db 'blendpd',0Dh
1788
 db 'blendpd',0Dh
1779
 dw sse4_instruction_3a_imm8-instruction_handler
1789
 dw sse4_instruction_3a_imm8-instruction_handler
1780
 db 'blendps',0Ch
1790
 db 'blendps',0Ch
1781
 dw sse4_instruction_3a_imm8-instruction_handler
1791
 dw sse4_instruction_3a_imm8-instruction_handler
1782
 db 'blsfill',12h
1792
 db 'blsfill',12h
1783
 dw tbm_instruction-instruction_handler
1793
 dw tbm_instruction-instruction_handler
1784
 db 'clflush',111b
1794
 db 'clflush',111b
1785
 dw fxsave_instruction-instruction_handler
1795
 dw fxsave_instruction-instruction_handler
1786
 db 'cmovnae',42h
1796
 db 'cmovnae',42h
1787
 dw bs_instruction-instruction_handler
1797
 dw bs_instruction-instruction_handler
1788
 db 'cmovnbe',47h
1798
 db 'cmovnbe',47h
1789
 dw bs_instruction-instruction_handler
1799
 dw bs_instruction-instruction_handler
1790
 db 'cmovnge',4Ch
1800
 db 'cmovnge',4Ch
1791
 dw bs_instruction-instruction_handler
1801
 dw bs_instruction-instruction_handler
1792
 db 'cmovnle',4Fh
1802
 db 'cmovnle',4Fh
1793
 dw bs_instruction-instruction_handler
1803
 dw bs_instruction-instruction_handler
1794
 db 'cmpeqpd',0
1804
 db 'cmpeqpd',0
1795
 dw cmp_pd_instruction-instruction_handler
1805
 dw cmp_pd_instruction-instruction_handler
1796
 db 'cmpeqps',0
1806
 db 'cmpeqps',0
1797
 dw cmp_ps_instruction-instruction_handler
1807
 dw cmp_ps_instruction-instruction_handler
1798
 db 'cmpeqsd',0
1808
 db 'cmpeqsd',0
1799
 dw cmp_sd_instruction-instruction_handler
1809
 dw cmp_sd_instruction-instruction_handler
1800
 db 'cmpeqss',0
1810
 db 'cmpeqss',0
1801
 dw cmp_ss_instruction-instruction_handler
1811
 dw cmp_ss_instruction-instruction_handler
1802
 db 'cmplepd',2
1812
 db 'cmplepd',2
1803
 dw cmp_pd_instruction-instruction_handler
1813
 dw cmp_pd_instruction-instruction_handler
1804
 db 'cmpleps',2
1814
 db 'cmpleps',2
1805
 dw cmp_ps_instruction-instruction_handler
1815
 dw cmp_ps_instruction-instruction_handler
1806
 db 'cmplesd',2
1816
 db 'cmplesd',2
1807
 dw cmp_sd_instruction-instruction_handler
1817
 dw cmp_sd_instruction-instruction_handler
1808
 db 'cmpless',2
1818
 db 'cmpless',2
1809
 dw cmp_ss_instruction-instruction_handler
1819
 dw cmp_ss_instruction-instruction_handler
1810
 db 'cmpltpd',1
1820
 db 'cmpltpd',1
1811
 dw cmp_pd_instruction-instruction_handler
1821
 dw cmp_pd_instruction-instruction_handler
1812
 db 'cmpltps',1
1822
 db 'cmpltps',1
1813
 dw cmp_ps_instruction-instruction_handler
1823
 dw cmp_ps_instruction-instruction_handler
1814
 db 'cmpltsd',1
1824
 db 'cmpltsd',1
1815
 dw cmp_sd_instruction-instruction_handler
1825
 dw cmp_sd_instruction-instruction_handler
1816
 db 'cmpltss',1
1826
 db 'cmpltss',1
1817
 dw cmp_ss_instruction-instruction_handler
1827
 dw cmp_ss_instruction-instruction_handler
1818
 db 'cmpxchg',0B0h
1828
 db 'cmpxchg',0B0h
1819
 dw basic_486_instruction-instruction_handler
1829
 dw basic_486_instruction-instruction_handler
1820
 db 'display',0
1830
 db 'display',0
1821
 dw display_directive-instruction_handler
1831
 dw display_directive-instruction_handler
1822
 db 'fcmovbe',0D0h
1832
 db 'fcmovbe',0D0h
1823
 dw fcmov_instruction-instruction_handler
1833
 dw fcmov_instruction-instruction_handler
1824
 db 'fcmovnb',0C0h
1834
 db 'fcmovnb',0C0h
1825
 dw fcomi_instruction-instruction_handler
1835
 dw fcomi_instruction-instruction_handler
1826
 db 'fcmovne',0C8h
1836
 db 'fcmovne',0C8h
1827
 dw fcomi_instruction-instruction_handler
1837
 dw fcomi_instruction-instruction_handler
1828
 db 'fcmovnu',0D8h
1838
 db 'fcmovnu',0D8h
1829
 dw fcomi_instruction-instruction_handler
1839
 dw fcomi_instruction-instruction_handler
1830
 db 'fdecstp',110110b
1840
 db 'fdecstp',110110b
1831
 dw simple_fpu_instruction-instruction_handler
1841
 dw simple_fpu_instruction-instruction_handler
1832
 db 'fincstp',110111b
1842
 db 'fincstp',110111b
1833
 dw simple_fpu_instruction-instruction_handler
1843
 dw simple_fpu_instruction-instruction_handler
1834
 db 'fldenvd',4
1844
 db 'fldenvd',4
1835
 dw fldenv_instruction_32bit-instruction_handler
1845
 dw fldenv_instruction_32bit-instruction_handler
1836
 db 'fldenvw',4
1846
 db 'fldenvw',4
1837
 dw fldenv_instruction_16bit-instruction_handler
1847
 dw fldenv_instruction_16bit-instruction_handler
1838
 db 'fnsaved',6
1848
 db 'fnsaved',6
1839
 dw fnsave_instruction_32bit-instruction_handler
1849
 dw fnsave_instruction_32bit-instruction_handler
1840
 db 'fnsavew',6
1850
 db 'fnsavew',6
1841
 dw fnsave_instruction_16bit-instruction_handler
1851
 dw fnsave_instruction_16bit-instruction_handler
1842
 db 'fnstenv',6
1852
 db 'fnstenv',6
1843
 dw fldenv_instruction-instruction_handler
1853
 dw fldenv_instruction-instruction_handler
1844
 db 'frndint',111100b
1854
 db 'frndint',111100b
1845
 dw simple_fpu_instruction-instruction_handler
1855
 dw simple_fpu_instruction-instruction_handler
1846
 db 'frstord',4
1856
 db 'frstord',4
1847
 dw fnsave_instruction_32bit-instruction_handler
1857
 dw fnsave_instruction_32bit-instruction_handler
1848
 db 'frstorw',4
1858
 db 'frstorw',4
1849
 dw fnsave_instruction_16bit-instruction_handler
1859
 dw fnsave_instruction_16bit-instruction_handler
1850
 db 'fsincos',111011b
1860
 db 'fsincos',111011b
1851
 dw simple_fpu_instruction-instruction_handler
1861
 dw simple_fpu_instruction-instruction_handler
1852
 db 'fstenvd',6
1862
 db 'fstenvd',6
1853
 dw fstenv_instruction_32bit-instruction_handler
1863
 dw fstenv_instruction_32bit-instruction_handler
1854
 db 'fstenvw',6
1864
 db 'fstenvw',6
1855
 dw fstenv_instruction_16bit-instruction_handler
1865
 dw fstenv_instruction_16bit-instruction_handler
1856
 db 'fucomip',0E8h
1866
 db 'fucomip',0E8h
1857
 dw fcomip_instruction-instruction_handler
1867
 dw fcomip_instruction-instruction_handler
1858
 db 'fucompp',0
1868
 db 'fucompp',0
1859
 dw fucompp_instruction-instruction_handler
1869
 dw fucompp_instruction-instruction_handler
1860
 db 'fxrstor',1
1870
 db 'fxrstor',1
1861
 dw fxsave_instruction-instruction_handler
1871
 dw fxsave_instruction-instruction_handler
1862
 db 'fxtract',110100b
1872
 db 'fxtract',110100b
1863
 dw simple_fpu_instruction-instruction_handler
1873
 dw simple_fpu_instruction-instruction_handler
1864
 db 'fyl2xp1',111001b
1874
 db 'fyl2xp1',111001b
1865
 dw simple_fpu_instruction-instruction_handler
1875
 dw simple_fpu_instruction-instruction_handler
1866
 db 'insertq',0
1876
 db 'insertq',0
1867
 dw insertq_instruction-instruction_handler
1877
 dw insertq_instruction-instruction_handler
1868
 db 'invlpga',0DFh
1878
 db 'invlpga',0DFh
1869
 dw invlpga_instruction-instruction_handler
1879
 dw invlpga_instruction-instruction_handler
1870
 db 'invpcid',82h
1880
 db 'invpcid',82h
1871
 dw vmx_inv_instruction-instruction_handler
1881
 dw vmx_inv_instruction-instruction_handler
1872
 db 'invvpid',81h
1882
 db 'invvpid',81h
1873
 dw vmx_inv_instruction-instruction_handler
1883
 dw vmx_inv_instruction-instruction_handler
1874
 db 'ldmxcsr',10b
1884
 db 'ldmxcsr',10b
1875
 dw fxsave_instruction-instruction_handler
1885
 dw fxsave_instruction-instruction_handler
1876
 db 'loopned',0E0h
1886
 db 'loopned',0E0h
1877
 dw loop_instruction_32bit-instruction_handler
1887
 dw loop_instruction_32bit-instruction_handler
1878
 db 'loopneq',0E0h
1888
 db 'loopneq',0E0h
1879
 dw loop_instruction_64bit-instruction_handler
1889
 dw loop_instruction_64bit-instruction_handler
1880
 db 'loopnew',0E0h
1890
 db 'loopnew',0E0h
1881
 dw loop_instruction_16bit-instruction_handler
1891
 dw loop_instruction_16bit-instruction_handler
1882
 db 'loopnzd',0E0h
1892
 db 'loopnzd',0E0h
1883
 dw loop_instruction_32bit-instruction_handler
1893
 dw loop_instruction_32bit-instruction_handler
1884
 db 'loopnzq',0E0h
1894
 db 'loopnzq',0E0h
1885
 dw loop_instruction_64bit-instruction_handler
1895
 dw loop_instruction_64bit-instruction_handler
1886
 db 'loopnzw',0E0h
1896
 db 'loopnzw',0E0h
1887
 dw loop_instruction_16bit-instruction_handler
1897
 dw loop_instruction_16bit-instruction_handler
1888
 db 'monitor',0C8h
1898
 db 'monitor',0C8h
1889
 dw monitor_instruction-instruction_handler
1899
 dw monitor_instruction-instruction_handler
1890
 db 'movddup',12h
1900
 db 'movddup',12h
1891
 dw sse_sd_instruction-instruction_handler
1901
 dw sse_sd_instruction-instruction_handler
1892
 db 'movdq2q',0
1902
 db 'movdq2q',0
1893
 dw movdq2q_instruction-instruction_handler
1903
 dw movdq2q_instruction-instruction_handler
1894
 db 'movhlps',12h
1904
 db 'movhlps',12h
1895
 dw movhlps_instruction-instruction_handler
1905
 dw movhlps_instruction-instruction_handler
1896
 db 'movlhps',16h
1906
 db 'movlhps',16h
1897
 dw movhlps_instruction-instruction_handler
1907
 dw movhlps_instruction-instruction_handler
1898
 db 'movntdq',0E7h
1908
 db 'movntdq',0E7h
1899
 dw movntpd_instruction-instruction_handler
1909
 dw movntpd_instruction-instruction_handler
1900
 db 'movntpd',2Bh
1910
 db 'movntpd',2Bh
1901
 dw movntpd_instruction-instruction_handler
1911
 dw movntpd_instruction-instruction_handler
1902
 db 'movntps',2Bh
1912
 db 'movntps',2Bh
1903
 dw movntps_instruction-instruction_handler
1913
 dw movntps_instruction-instruction_handler
1904
 db 'movntsd',2Bh
1914
 db 'movntsd',2Bh
1905
 dw movntsd_instruction-instruction_handler
1915
 dw movntsd_instruction-instruction_handler
1906
 db 'movntss',2Bh
1916
 db 'movntss',2Bh
1907
 dw movntss_instruction-instruction_handler
1917
 dw movntss_instruction-instruction_handler
1908
 db 'movq2dq',0
1918
 db 'movq2dq',0
1909
 dw movq2dq_instruction-instruction_handler
1919
 dw movq2dq_instruction-instruction_handler
1910
 db 'mpsadbw',42h
1920
 db 'mpsadbw',42h
1911
 dw sse4_instruction_3a_imm8-instruction_handler
1921
 dw sse4_instruction_3a_imm8-instruction_handler
1912
 db 'paddusb',0DCh
1922
 db 'paddusb',0DCh
1913
 dw basic_mmx_instruction-instruction_handler
1923
 dw basic_mmx_instruction-instruction_handler
1914
 db 'paddusw',0DDh
1924
 db 'paddusw',0DDh
1915
 dw basic_mmx_instruction-instruction_handler
1925
 dw basic_mmx_instruction-instruction_handler
1916
 db 'palignr',0
1926
 db 'palignr',0
1917
 dw palignr_instruction-instruction_handler
1927
 dw palignr_instruction-instruction_handler
1918
 db 'pavgusb',0BFh
1928
 db 'pavgusb',0BFh
1919
 dw amd3dnow_instruction-instruction_handler
1929
 dw amd3dnow_instruction-instruction_handler
1920
 db 'pblendw',0Eh
1930
 db 'pblendw',0Eh
1921
 dw sse4_instruction_3a_imm8-instruction_handler
1931
 dw sse4_instruction_3a_imm8-instruction_handler
1922
 db 'pcmpeqb',74h
1932
 db 'pcmpeqb',74h
1923
 dw basic_mmx_instruction-instruction_handler
1933
 dw basic_mmx_instruction-instruction_handler
1924
 db 'pcmpeqd',76h
1934
 db 'pcmpeqd',76h
1925
 dw basic_mmx_instruction-instruction_handler
1935
 dw basic_mmx_instruction-instruction_handler
1926
 db 'pcmpeqq',29h
1936
 db 'pcmpeqq',29h
1927
 dw sse4_instruction_38-instruction_handler
1937
 dw sse4_instruction_38-instruction_handler
1928
 db 'pcmpeqw',75h
1938
 db 'pcmpeqw',75h
1929
 dw basic_mmx_instruction-instruction_handler
1939
 dw basic_mmx_instruction-instruction_handler
1930
 db 'pcmpgtb',64h
1940
 db 'pcmpgtb',64h
1931
 dw basic_mmx_instruction-instruction_handler
1941
 dw basic_mmx_instruction-instruction_handler
1932
 db 'pcmpgtd',66h
1942
 db 'pcmpgtd',66h
1933
 dw basic_mmx_instruction-instruction_handler
1943
 dw basic_mmx_instruction-instruction_handler
1934
 db 'pcmpgtq',37h
1944
 db 'pcmpgtq',37h
1935
 dw sse4_instruction_38-instruction_handler
1945
 dw sse4_instruction_38-instruction_handler
1936
 db 'pcmpgtw',65h
1946
 db 'pcmpgtw',65h
1937
 dw basic_mmx_instruction-instruction_handler
1947
 dw basic_mmx_instruction-instruction_handler
1938
 db 'pfcmpeq',0B0h
1948
 db 'pfcmpeq',0B0h
1939
 dw amd3dnow_instruction-instruction_handler
1949
 dw amd3dnow_instruction-instruction_handler
1940
 db 'pfcmpge',90h
1950
 db 'pfcmpge',90h
1941
 dw amd3dnow_instruction-instruction_handler
1951
 dw amd3dnow_instruction-instruction_handler
1942
 db 'pfcmpgt',0A0h
1952
 db 'pfcmpgt',0A0h
1943
 dw amd3dnow_instruction-instruction_handler
1953
 dw amd3dnow_instruction-instruction_handler
1944
 db 'pfpnacc',8Eh
1954
 db 'pfpnacc',8Eh
1945
 dw amd3dnow_instruction-instruction_handler
1955
 dw amd3dnow_instruction-instruction_handler
1946
 db 'pfrsqrt',97h
1956
 db 'pfrsqrt',97h
1947
 dw amd3dnow_instruction-instruction_handler
1957
 dw amd3dnow_instruction-instruction_handler
1948
 db 'phaddsw',3
1958
 db 'phaddsw',3
1949
 dw ssse3_instruction-instruction_handler
1959
 dw ssse3_instruction-instruction_handler
1950
 db 'phsubsw',7
1960
 db 'phsubsw',7
1951
 dw ssse3_instruction-instruction_handler
1961
 dw ssse3_instruction-instruction_handler
1952
 db 'pmaddwd',0F5h
1962
 db 'pmaddwd',0F5h
1953
 dw basic_mmx_instruction-instruction_handler
1963
 dw basic_mmx_instruction-instruction_handler
1954
 db 'pmulhrw',0B7h
1964
 db 'pmulhrw',0B7h
1955
 dw amd3dnow_instruction-instruction_handler
1965
 dw amd3dnow_instruction-instruction_handler
1956
 db 'pmulhuw',0E4h
1966
 db 'pmulhuw',0E4h
1957
 dw basic_mmx_instruction-instruction_handler
1967
 dw basic_mmx_instruction-instruction_handler
1958
 db 'pmuludq',0F4h
1968
 db 'pmuludq',0F4h
1959
 dw basic_mmx_instruction-instruction_handler
1969
 dw basic_mmx_instruction-instruction_handler
1960
 db 'pshufhw',0F3h
1970
 db 'pshufhw',0F3h
1961
 dw pshufd_instruction-instruction_handler
1971
 dw pshufd_instruction-instruction_handler
1962
 db 'pshuflw',0F2h
1972
 db 'pshuflw',0F2h
1963
 dw pshufd_instruction-instruction_handler
1973
 dw pshufd_instruction-instruction_handler
1964
 db 'psubusb',0D8h
1974
 db 'psubusb',0D8h
1965
 dw basic_mmx_instruction-instruction_handler
1975
 dw basic_mmx_instruction-instruction_handler
1966
 db 'psubusw',0D9h
1976
 db 'psubusw',0D9h
1967
 dw basic_mmx_instruction-instruction_handler
1977
 dw basic_mmx_instruction-instruction_handler
1968
 db 'roundpd',9
1978
 db 'roundpd',9
1969
 dw sse4_instruction_3a_imm8-instruction_handler
1979
 dw sse4_instruction_3a_imm8-instruction_handler
1970
 db 'roundps',8
1980
 db 'roundps',8
1971
 dw sse4_instruction_3a_imm8-instruction_handler
1981
 dw sse4_instruction_3a_imm8-instruction_handler
1972
 db 'roundsd',0Bh
1982
 db 'roundsd',0Bh
1973
 dw sse4_sd_instruction_3a_imm8-instruction_handler
1983
 dw sse4_sd_instruction_3a_imm8-instruction_handler
1974
 db 'roundss',0Ah
1984
 db 'roundss',0Ah
1975
 dw sse4_ss_instruction_3a_imm8-instruction_handler
1985
 dw sse4_ss_instruction_3a_imm8-instruction_handler
1976
 db 'rsqrtps',52h
1986
 db 'rsqrtps',52h
1977
 dw sse_ps_instruction-instruction_handler
1987
 dw sse_ps_instruction-instruction_handler
1978
 db 'rsqrtss',52h
1988
 db 'rsqrtss',52h
1979
 dw sse_ss_instruction-instruction_handler
1989
 dw sse_ss_instruction-instruction_handler
1980
 db 'section',0
1990
 db 'section',0
1981
 dw section_directive-instruction_handler
1991
 dw section_directive-instruction_handler
1982
 db 'segment',0
1992
 db 'segment',0
1983
 dw segment_directive-instruction_handler
1993
 dw segment_directive-instruction_handler
1984
 db 'stmxcsr',11b
1994
 db 'stmxcsr',11b
1985
 dw fxsave_instruction-instruction_handler
1995
 dw fxsave_instruction-instruction_handler
1986
 db 'syscall',05h
1996
 db 'syscall',05h
1987
 dw simple_extended_instruction-instruction_handler
1997
 dw simple_extended_instruction-instruction_handler
1988
 db 'sysexit',35h
1998
 db 'sysexit',35h
1989
 dw simple_extended_instruction-instruction_handler
1999
 dw simple_extended_instruction-instruction_handler
1990
 db 'sysretq',07h
2000
 db 'sysretq',07h
1991
 dw simple_extended_instruction_64bit-instruction_handler
2001
 dw simple_extended_instruction_64bit-instruction_handler
1992
 db 'ucomisd',2Eh
2002
 db 'ucomisd',2Eh
1993
 dw comisd_instruction-instruction_handler
2003
 dw comisd_instruction-instruction_handler
1994
 db 'ucomiss',2Eh
2004
 db 'ucomiss',2Eh
1995
 dw comiss_instruction-instruction_handler
2005
 dw comiss_instruction-instruction_handler
1996
 db 'vaesdec',0DEh
2006
 db 'vaesdec',0DEh
1997
 dw avx_128bit_instruction_38-instruction_handler
2007
 dw avx_128bit_instruction_38-instruction_handler
1998
 db 'vaesenc',0DCh
2008
 db 'vaesenc',0DCh
1999
 dw avx_128bit_instruction_38-instruction_handler
2009
 dw avx_128bit_instruction_38-instruction_handler
2000
 db 'vaesimc',0DBh
2010
 db 'vaesimc',0DBh
2001
 dw avx_single_source_128bit_instruction_38-instruction_handler
2011
 dw avx_single_source_128bit_instruction_38-instruction_handler
2002
 db 'vandnpd',55h
2012
 db 'vandnpd',55h
2003
 dw avx_pd_instruction-instruction_handler
2013
 dw avx_pd_instruction-instruction_handler
2004
 db 'vandnps',55h
2014
 db 'vandnps',55h
2005
 dw avx_ps_instruction-instruction_handler
2015
 dw avx_ps_instruction-instruction_handler
2006
 db 'vcomisd',2Fh
2016
 db 'vcomisd',2Fh
2007
 dw avx_comisd_instruction-instruction_handler
2017
 dw avx_comisd_instruction-instruction_handler
2008
 db 'vcomiss',2Fh
2018
 db 'vcomiss',2Fh
2009
 dw avx_comiss_instruction-instruction_handler
2019
 dw avx_comiss_instruction-instruction_handler
2010
 db 'vfrczpd',81h
2020
 db 'vfrczpd',81h
2011
 dw xop_single_source_instruction-instruction_handler
2021
 dw xop_single_source_instruction-instruction_handler
2012
 db 'vfrczps',80h
2022
 db 'vfrczps',80h
2013
 dw xop_single_source_instruction-instruction_handler
2023
 dw xop_single_source_instruction-instruction_handler
2014
 db 'vfrczsd',83h
2024
 db 'vfrczsd',83h
2015
 dw xop_single_source_sd_instruction-instruction_handler
2025
 dw xop_single_source_sd_instruction-instruction_handler
2016
 db 'vfrczss',82h
2026
 db 'vfrczss',82h
2017
 dw xop_single_source_ss_instruction-instruction_handler
2027
 dw xop_single_source_ss_instruction-instruction_handler
2018
 db 'vhaddpd',07Ch
2028
 db 'vhaddpd',07Ch
2019
 dw avx_pd_instruction-instruction_handler
2029
 dw avx_pd_instruction-instruction_handler
2020
 db 'vhaddps',07Ch
2030
 db 'vhaddps',07Ch
2021
 dw avx_haddps_instruction-instruction_handler
2031
 dw avx_haddps_instruction-instruction_handler
2022
 db 'vhsubpd',07Dh
2032
 db 'vhsubpd',07Dh
2023
 dw avx_pd_instruction-instruction_handler
2033
 dw avx_pd_instruction-instruction_handler
2024
 db 'vhsubps',07Dh
2034
 db 'vhsubps',07Dh
2025
 dw avx_haddps_instruction-instruction_handler
2035
 dw avx_haddps_instruction-instruction_handler
2026
 db 'virtual',0
2036
 db 'virtual',0
2027
 dw virtual_directive-instruction_handler
2037
 dw virtual_directive-instruction_handler
2028
 db 'vmclear',6
2038
 db 'vmclear',6
2029
 dw vmclear_instruction-instruction_handler
2039
 dw vmclear_instruction-instruction_handler
2030
 db 'vmmcall',0D9h
2040
 db 'vmmcall',0D9h
2031
 dw simple_vmx_instruction-instruction_handler
2041
 dw simple_vmx_instruction-instruction_handler
2032
 db 'vmovapd',28h
2042
 db 'vmovapd',28h
2033
 dw avx_movpd_instruction-instruction_handler
2043
 dw avx_movpd_instruction-instruction_handler
2034
 db 'vmovaps',28h
2044
 db 'vmovaps',28h
2035
 dw avx_movps_instruction-instruction_handler
2045
 dw avx_movps_instruction-instruction_handler
2036
 db 'vmovdqa',6Fh
2046
 db 'vmovdqa',6Fh
2037
 dw avx_movpd_instruction-instruction_handler
2047
 dw avx_movpd_instruction-instruction_handler
2038
 db 'vmovdqu',6Fh
2048
 db 'vmovdqu',6Fh
2039
 dw avx_movdqu_instruction-instruction_handler
2049
 dw avx_movdqu_instruction-instruction_handler
2040
 db 'vmovhpd',16h
2050
 db 'vmovhpd',16h
2041
 dw avx_movlpd_instruction-instruction_handler
2051
 dw avx_movlpd_instruction-instruction_handler
2042
 db 'vmovhps',16h
2052
 db 'vmovhps',16h
2043
 dw avx_movlps_instruction-instruction_handler
2053
 dw avx_movlps_instruction-instruction_handler
2044
 db 'vmovlpd',12h
2054
 db 'vmovlpd',12h
2045
 dw avx_movlpd_instruction-instruction_handler
2055
 dw avx_movlpd_instruction-instruction_handler
2046
 db 'vmovlps',12h
2056
 db 'vmovlps',12h
2047
 dw avx_movlps_instruction-instruction_handler
2057
 dw avx_movlps_instruction-instruction_handler
2048
 db 'vmovupd',10h
2058
 db 'vmovupd',10h
2049
 dw avx_movpd_instruction-instruction_handler
2059
 dw avx_movpd_instruction-instruction_handler
2050
 db 'vmovups',10h
2060
 db 'vmovups',10h
2051
 dw avx_movps_instruction-instruction_handler
2061
 dw avx_movps_instruction-instruction_handler
2052
 db 'vmptrld',6
2062
 db 'vmptrld',6
2053
 dw vmx_instruction-instruction_handler
2063
 dw vmx_instruction-instruction_handler
2054
 db 'vmptrst',7
2064
 db 'vmptrst',7
2055
 dw vmx_instruction-instruction_handler
2065
 dw vmx_instruction-instruction_handler
2056
 db 'vmwrite',0
2066
 db 'vmwrite',0
2057
 dw vmwrite_instruction-instruction_handler
2067
 dw vmwrite_instruction-instruction_handler
2058
 db 'vpaddsb',0ECh
2068
 db 'vpaddsb',0ECh
2059
 dw avx_pd_instruction-instruction_handler
2069
 dw avx_pd_instruction-instruction_handler
2060
 db 'vpaddsw',0EDh
2070
 db 'vpaddsw',0EDh
2061
 dw avx_pd_instruction-instruction_handler
2071
 dw avx_pd_instruction-instruction_handler
2062
 db 'vpcomub',-1
2072
 db 'vpcomub',-1
2063
 dw xop_pcom_ub_instruction-instruction_handler
2073
 dw xop_pcom_ub_instruction-instruction_handler
2064
 db 'vpcomud',-1
2074
 db 'vpcomud',-1
2065
 dw xop_pcom_ud_instruction-instruction_handler
2075
 dw xop_pcom_ud_instruction-instruction_handler
2066
 db 'vpcomuq',-1
2076
 db 'vpcomuq',-1
2067
 dw xop_pcom_uq_instruction-instruction_handler
2077
 dw xop_pcom_uq_instruction-instruction_handler
2068
 db 'vpcomuw',-1
2078
 db 'vpcomuw',-1
2069
 dw xop_pcom_uw_instruction-instruction_handler
2079
 dw xop_pcom_uw_instruction-instruction_handler
2070
 db 'vpermpd',1
2080
 db 'vpermpd',1
2071
 dw avx_permq_instruction-instruction_handler
2081
 dw avx_permq_instruction-instruction_handler
2072
 db 'vpermps',16h
2082
 db 'vpermps',16h
2073
 dw avx_permd_instruction-instruction_handler
2083
 dw avx_permd_instruction-instruction_handler
2074
 db 'vpextrb',14h
2084
 db 'vpextrb',14h
2075
 dw avx_pextrb_instruction-instruction_handler
2085
 dw avx_pextrb_instruction-instruction_handler
2076
 db 'vpextrd',16h
2086
 db 'vpextrd',16h
2077
 dw avx_pextrd_instruction-instruction_handler
2087
 dw avx_pextrd_instruction-instruction_handler
2078
 db 'vpextrq',16h
2088
 db 'vpextrq',16h
2079
 dw avx_pextrq_instruction-instruction_handler
2089
 dw avx_pextrq_instruction-instruction_handler
2080
 db 'vpextrw',15h
2090
 db 'vpextrw',15h
2081
 dw avx_pextrw_instruction-instruction_handler
2091
 dw avx_pextrw_instruction-instruction_handler
2082
 db 'vphaddd',2
2092
 db 'vphaddd',2
2083
 dw avx_instruction_38-instruction_handler
2093
 dw avx_instruction_38-instruction_handler
2084
 db 'vphaddw',1
2094
 db 'vphaddw',1
2085
 dw avx_instruction_38-instruction_handler
2095
 dw avx_instruction_38-instruction_handler
2086
 db 'vphsubd',6
2096
 db 'vphsubd',6
2087
 dw avx_instruction_38-instruction_handler
2097
 dw avx_instruction_38-instruction_handler
2088
 db 'vphsubw',5
2098
 db 'vphsubw',5
2089
 dw avx_instruction_38-instruction_handler
2099
 dw avx_instruction_38-instruction_handler
2090
 db 'vpinsrb',20h
2100
 db 'vpinsrb',20h
2091
 dw avx_pinsrb_instruction-instruction_handler
2101
 dw avx_pinsrb_instruction-instruction_handler
2092
 db 'vpinsrd',22h
2102
 db 'vpinsrd',22h
2093
 dw avx_pinsrd_instruction-instruction_handler
2103
 dw avx_pinsrd_instruction-instruction_handler
2094
 db 'vpinsrq',22h
2104
 db 'vpinsrq',22h
2095
 dw avx_pinsrq_instruction-instruction_handler
2105
 dw avx_pinsrq_instruction-instruction_handler
2096
 db 'vpinsrw',0C4h
2106
 db 'vpinsrw',0C4h
2097
 dw avx_pinsrw_instruction-instruction_handler
2107
 dw avx_pinsrw_instruction-instruction_handler
2098
 db 'vpmaxsb',3Ch
2108
 db 'vpmaxsb',3Ch
2099
 dw avx_instruction_38-instruction_handler
2109
 dw avx_instruction_38-instruction_handler
2100
 db 'vpmaxsd',3Dh
2110
 db 'vpmaxsd',3Dh
2101
 dw avx_instruction_38-instruction_handler
2111
 dw avx_instruction_38-instruction_handler
2102
 db 'vpmaxsw',0EEh
2112
 db 'vpmaxsw',0EEh
2103
 dw avx_pd_instruction-instruction_handler
2113
 dw avx_pd_instruction-instruction_handler
2104
 db 'vpmaxub',0DEh
2114
 db 'vpmaxub',0DEh
2105
 dw avx_pd_instruction-instruction_handler
2115
 dw avx_pd_instruction-instruction_handler
2106
 db 'vpmaxud',3Fh
2116
 db 'vpmaxud',3Fh
2107
 dw avx_instruction_38-instruction_handler
2117
 dw avx_instruction_38-instruction_handler
2108
 db 'vpmaxuw',3Eh
2118
 db 'vpmaxuw',3Eh
2109
 dw avx_instruction_38-instruction_handler
2119
 dw avx_instruction_38-instruction_handler
2110
 db 'vpminsb',38h
2120
 db 'vpminsb',38h
2111
 dw avx_instruction_38-instruction_handler
2121
 dw avx_instruction_38-instruction_handler
2112
 db 'vpminsd',39h
2122
 db 'vpminsd',39h
2113
 dw avx_instruction_38-instruction_handler
2123
 dw avx_instruction_38-instruction_handler
2114
 db 'vpminsw',0EAh
2124
 db 'vpminsw',0EAh
2115
 dw avx_pd_instruction-instruction_handler
2125
 dw avx_pd_instruction-instruction_handler
2116
 db 'vpminub',0DAh
2126
 db 'vpminub',0DAh
2117
 dw avx_pd_instruction-instruction_handler
2127
 dw avx_pd_instruction-instruction_handler
2118
 db 'vpminud',3Bh
2128
 db 'vpminud',3Bh
2119
 dw avx_instruction_38-instruction_handler
2129
 dw avx_instruction_38-instruction_handler
2120
 db 'vpminuw',3Ah
2130
 db 'vpminuw',3Ah
2121
 dw avx_instruction_38-instruction_handler
2131
 dw avx_instruction_38-instruction_handler
2122
 db 'vpmuldq',28h
2132
 db 'vpmuldq',28h
2123
 dw avx_instruction_38-instruction_handler
2133
 dw avx_instruction_38-instruction_handler
2124
 db 'vpmulhw',0E5h
2134
 db 'vpmulhw',0E5h
2125
 dw avx_pd_instruction-instruction_handler
2135
 dw avx_pd_instruction-instruction_handler
2126
 db 'vpmulld',40h
2136
 db 'vpmulld',40h
2127
 dw avx_instruction_38-instruction_handler
2137
 dw avx_instruction_38-instruction_handler
2128
 db 'vpmullw',0D5h
2138
 db 'vpmullw',0D5h
2129
 dw avx_pd_instruction-instruction_handler
2139
 dw avx_pd_instruction-instruction_handler
2130
 db 'vpsadbw',0F6h
2140
 db 'vpsadbw',0F6h
2131
 dw avx_pd_instruction-instruction_handler
2141
 dw avx_pd_instruction-instruction_handler
2132
 db 'vpshufb',0
2142
 db 'vpshufb',0
2133
 dw avx_instruction_38-instruction_handler
2143
 dw avx_instruction_38-instruction_handler
2134
 db 'vpshufd',66h
2144
 db 'vpshufd',66h
2135
 dw avx_pshufd_instruction-instruction_handler
2145
 dw avx_pshufd_instruction-instruction_handler
2136
 db 'vpsignb',8
2146
 db 'vpsignb',8
2137
 dw avx_instruction_38-instruction_handler
2147
 dw avx_instruction_38-instruction_handler
2138
 db 'vpsignd',0Ah
2148
 db 'vpsignd',0Ah
2139
 dw avx_instruction_38-instruction_handler
2149
 dw avx_instruction_38-instruction_handler
2140
 db 'vpsignw',9
2150
 db 'vpsignw',9
2141
 dw avx_instruction_38-instruction_handler
2151
 dw avx_instruction_38-instruction_handler
2142
 db 'vpslldq',111b
2152
 db 'vpslldq',111b
2143
 dw avx_pslldq_instruction-instruction_handler
2153
 dw avx_pslldq_instruction-instruction_handler
2144
 db 'vpsllvd',47h
2154
 db 'vpsllvd',47h
2145
 dw avx_instruction_38-instruction_handler
2155
 dw avx_instruction_38-instruction_handler
2146
 db 'vpsllvq',47h
2156
 db 'vpsllvq',47h
2147
 dw avx_instruction_38_w1-instruction_handler
2157
 dw avx_instruction_38_w1-instruction_handler
2148
 db 'vpsravd',46h
2158
 db 'vpsravd',46h
2149
 dw avx_instruction_38-instruction_handler
2159
 dw avx_instruction_38-instruction_handler
2150
 db 'vpsrldq',011b
2160
 db 'vpsrldq',011b
2151
 dw avx_pslldq_instruction-instruction_handler
2161
 dw avx_pslldq_instruction-instruction_handler
2152
 db 'vpsrlvd',45h
2162
 db 'vpsrlvd',45h
2153
 dw avx_instruction_38-instruction_handler
2163
 dw avx_instruction_38-instruction_handler
2154
 db 'vpsrlvq',45h
2164
 db 'vpsrlvq',45h
2155
 dw avx_instruction_38_w1-instruction_handler
2165
 dw avx_instruction_38_w1-instruction_handler
2156
 db 'vpsubsb',0E8h
2166
 db 'vpsubsb',0E8h
2157
 dw avx_pd_instruction-instruction_handler
2167
 dw avx_pd_instruction-instruction_handler
2158
 db 'vpsubsw',0E9h
2168
 db 'vpsubsw',0E9h
2159
 dw avx_pd_instruction-instruction_handler
2169
 dw avx_pd_instruction-instruction_handler
2160
 db 'vshufpd',0C6h
2170
 db 'vshufpd',0C6h
2161
 dw avx_pd_instruction_imm8-instruction_handler
2171
 dw avx_pd_instruction_imm8-instruction_handler
2162
 db 'vshufps',0C6h
2172
 db 'vshufps',0C6h
2163
 dw avx_ps_instruction_imm8-instruction_handler
2173
 dw avx_ps_instruction_imm8-instruction_handler
2164
 db 'vsqrtpd',51h
2174
 db 'vsqrtpd',51h
2165
 dw avx_single_source_pd_instruction-instruction_handler
2175
 dw avx_single_source_pd_instruction-instruction_handler
2166
 db 'vsqrtps',51h
2176
 db 'vsqrtps',51h
2167
 dw avx_single_source_ps_instruction-instruction_handler
2177
 dw avx_single_source_ps_instruction-instruction_handler
2168
 db 'vsqrtsd',51h
2178
 db 'vsqrtsd',51h
2169
 dw avx_sd_instruction-instruction_handler
2179
 dw avx_sd_instruction-instruction_handler
2170
 db 'vsqrtss',51h
2180
 db 'vsqrtss',51h
2171
 dw avx_ss_instruction-instruction_handler
2181
 dw avx_ss_instruction-instruction_handler
2172
 db 'vtestpd',0Fh
2182
 db 'vtestpd',0Fh
2173
 dw avx_single_source_instruction_38-instruction_handler
2183
 dw avx_single_source_instruction_38-instruction_handler
2174
 db 'vtestps',0Eh
2184
 db 'vtestps',0Eh
2175
 dw avx_single_source_instruction_38-instruction_handler
2185
 dw avx_single_source_instruction_38-instruction_handler
2176
 db 'xsave64',100b
2186
 db 'xsave64',100b
2177
 dw fxsave_instruction_64bit-instruction_handler
2187
 dw fxsave_instruction_64bit-instruction_handler
2178
instructions_8:
2188
instructions_8:
2179
 db 'addsubpd',0D0h
2189
 db 'addsubpd',0D0h
2180
 dw sse_pd_instruction-instruction_handler
2190
 dw sse_pd_instruction-instruction_handler
2181
 db 'addsubps',0D0h
2191
 db 'addsubps',0D0h
2182
 dw cvtpd2dq_instruction-instruction_handler
2192
 dw cvtpd2dq_instruction-instruction_handler
2183
 db 'blendvpd',15h
2193
 db 'blendvpd',15h
2184
 dw sse4_instruction_38_xmm0-instruction_handler
2194
 dw sse4_instruction_38_xmm0-instruction_handler
2185
 db 'blendvps',14h
2195
 db 'blendvps',14h
2186
 dw sse4_instruction_38_xmm0-instruction_handler
2196
 dw sse4_instruction_38_xmm0-instruction_handler
2187
 db 'cmpneqpd',4
2197
 db 'cmpneqpd',4
2188
 dw cmp_pd_instruction-instruction_handler
2198
 dw cmp_pd_instruction-instruction_handler
2189
 db 'cmpneqps',4
2199
 db 'cmpneqps',4
2190
 dw cmp_ps_instruction-instruction_handler
2200
 dw cmp_ps_instruction-instruction_handler
2191
 db 'cmpneqsd',4
2201
 db 'cmpneqsd',4
2192
 dw cmp_sd_instruction-instruction_handler
2202
 dw cmp_sd_instruction-instruction_handler
2193
 db 'cmpneqss',4
2203
 db 'cmpneqss',4
2194
 dw cmp_ss_instruction-instruction_handler
2204
 dw cmp_ss_instruction-instruction_handler
2195
 db 'cmpnlepd',6
2205
 db 'cmpnlepd',6
2196
 dw cmp_pd_instruction-instruction_handler
2206
 dw cmp_pd_instruction-instruction_handler
2197
 db 'cmpnleps',6
2207
 db 'cmpnleps',6
2198
 dw cmp_ps_instruction-instruction_handler
2208
 dw cmp_ps_instruction-instruction_handler
2199
 db 'cmpnlesd',6
2209
 db 'cmpnlesd',6
2200
 dw cmp_sd_instruction-instruction_handler
2210
 dw cmp_sd_instruction-instruction_handler
2201
 db 'cmpnless',6
2211
 db 'cmpnless',6
2202
 dw cmp_ss_instruction-instruction_handler
2212
 dw cmp_ss_instruction-instruction_handler
2203
 db 'cmpnltpd',5
2213
 db 'cmpnltpd',5
2204
 dw cmp_pd_instruction-instruction_handler
2214
 dw cmp_pd_instruction-instruction_handler
2205
 db 'cmpnltps',5
2215
 db 'cmpnltps',5
2206
 dw cmp_ps_instruction-instruction_handler
2216
 dw cmp_ps_instruction-instruction_handler
2207
 db 'cmpnltsd',5
2217
 db 'cmpnltsd',5
2208
 dw cmp_sd_instruction-instruction_handler
2218
 dw cmp_sd_instruction-instruction_handler
2209
 db 'cmpnltss',5
2219
 db 'cmpnltss',5
2210
 dw cmp_ss_instruction-instruction_handler
2220
 dw cmp_ss_instruction-instruction_handler
2211
 db 'cmpordpd',7
2221
 db 'cmpordpd',7
2212
 dw cmp_pd_instruction-instruction_handler
2222
 dw cmp_pd_instruction-instruction_handler
2213
 db 'cmpordps',7
2223
 db 'cmpordps',7
2214
 dw cmp_ps_instruction-instruction_handler
2224
 dw cmp_ps_instruction-instruction_handler
2215
 db 'cmpordsd',7
2225
 db 'cmpordsd',7
2216
 dw cmp_sd_instruction-instruction_handler
2226
 dw cmp_sd_instruction-instruction_handler
2217
 db 'cmpordss',7
2227
 db 'cmpordss',7
2218
 dw cmp_ss_instruction-instruction_handler
2228
 dw cmp_ss_instruction-instruction_handler
2219
 db 'cvtdq2pd',0E6h
2229
 db 'cvtdq2pd',0E6h
2220
 dw cvtdq2pd_instruction-instruction_handler
2230
 dw cvtdq2pd_instruction-instruction_handler
2221
 db 'cvtdq2ps',5Bh
2231
 db 'cvtdq2ps',5Bh
2222
 dw sse_ps_instruction-instruction_handler
2232
 dw sse_ps_instruction-instruction_handler
2223
 db 'cvtpd2dq',0E6h
2233
 db 'cvtpd2dq',0E6h
2224
 dw cvtpd2dq_instruction-instruction_handler
2234
 dw cvtpd2dq_instruction-instruction_handler
2225
 db 'cvtpd2pi',2Dh
2235
 db 'cvtpd2pi',2Dh
2226
 dw cvtpd2pi_instruction-instruction_handler
2236
 dw cvtpd2pi_instruction-instruction_handler
2227
 db 'cvtpd2ps',5Ah
2237
 db 'cvtpd2ps',5Ah
2228
 dw sse_pd_instruction-instruction_handler
2238
 dw sse_pd_instruction-instruction_handler
2229
 db 'cvtpi2pd',2Ah
2239
 db 'cvtpi2pd',2Ah
2230
 dw cvtpi2pd_instruction-instruction_handler
2240
 dw cvtpi2pd_instruction-instruction_handler
2231
 db 'cvtpi2ps',2Ah
2241
 db 'cvtpi2ps',2Ah
2232
 dw cvtpi2ps_instruction-instruction_handler
2242
 dw cvtpi2ps_instruction-instruction_handler
2233
 db 'cvtps2dq',5Bh
2243
 db 'cvtps2dq',5Bh
2234
 dw sse_pd_instruction-instruction_handler
2244
 dw sse_pd_instruction-instruction_handler
2235
 db 'cvtps2pd',5Ah
2245
 db 'cvtps2pd',5Ah
2236
 dw cvtps2pd_instruction-instruction_handler
2246
 dw cvtps2pd_instruction-instruction_handler
2237
 db 'cvtps2pi',2Dh
2247
 db 'cvtps2pi',2Dh
2238
 dw cvtps2pi_instruction-instruction_handler
2248
 dw cvtps2pi_instruction-instruction_handler
2239
 db 'cvtsd2si',2Dh
2249
 db 'cvtsd2si',2Dh
2240
 dw cvtsd2si_instruction-instruction_handler
2250
 dw cvtsd2si_instruction-instruction_handler
2241
 db 'cvtsd2ss',5Ah
2251
 db 'cvtsd2ss',5Ah
2242
 dw sse_sd_instruction-instruction_handler
2252
 dw sse_sd_instruction-instruction_handler
2243
 db 'cvtsi2sd',2Ah
2253
 db 'cvtsi2sd',2Ah
2244
 dw cvtsi2sd_instruction-instruction_handler
2254
 dw cvtsi2sd_instruction-instruction_handler
2245
 db 'cvtsi2ss',2Ah
2255
 db 'cvtsi2ss',2Ah
2246
 dw cvtsi2ss_instruction-instruction_handler
2256
 dw cvtsi2ss_instruction-instruction_handler
2247
 db 'cvtss2sd',5Ah
2257
 db 'cvtss2sd',5Ah
2248
 dw sse_ss_instruction-instruction_handler
2258
 dw sse_ss_instruction-instruction_handler
2249
 db 'cvtss2si',2Dh
2259
 db 'cvtss2si',2Dh
2250
 dw cvtss2si_instruction-instruction_handler
2260
 dw cvtss2si_instruction-instruction_handler
2251
 db 'fcmovnbe',0D0h
2261
 db 'fcmovnbe',0D0h
2252
 dw fcomi_instruction-instruction_handler
2262
 dw fcomi_instruction-instruction_handler
2253
 db 'fnstenvd',6
2263
 db 'fnstenvd',6
2254
 dw fldenv_instruction_32bit-instruction_handler
2264
 dw fldenv_instruction_32bit-instruction_handler
2255
 db 'fnstenvw',6
2265
 db 'fnstenvw',6
2256
 dw fldenv_instruction_16bit-instruction_handler
2266
 dw fldenv_instruction_16bit-instruction_handler
2257
 db 'fxsave64',0
2267
 db 'fxsave64',0
2258
 dw fxsave_instruction_64bit-instruction_handler
2268
 dw fxsave_instruction_64bit-instruction_handler
2259
 db 'insertps',0
2269
 db 'insertps',0
2260
 dw insertps_instruction-instruction_handler
2270
 dw insertps_instruction-instruction_handler
2261
 db 'maskmovq',0
2271
 db 'maskmovq',0
2262
 dw maskmovq_instruction-instruction_handler
2272
 dw maskmovq_instruction-instruction_handler
2263
 db 'movmskpd',0
2273
 db 'movmskpd',0
2264
 dw movmskpd_instruction-instruction_handler
2274
 dw movmskpd_instruction-instruction_handler
2265
 db 'movmskps',0
2275
 db 'movmskps',0
2266
 dw movmskps_instruction-instruction_handler
2276
 dw movmskps_instruction-instruction_handler
2267
 db 'movntdqa',2Ah
2277
 db 'movntdqa',2Ah
2268
 dw movntdqa_instruction-instruction_handler
2278
 dw movntdqa_instruction-instruction_handler
2269
 db 'movshdup',16h
2279
 db 'movshdup',16h
2270
 dw movshdup_instruction-instruction_handler
2280
 dw movshdup_instruction-instruction_handler
2271
 db 'movsldup',12h
2281
 db 'movsldup',12h
2272
 dw movshdup_instruction-instruction_handler
2282
 dw movshdup_instruction-instruction_handler
2273
 db 'packssdw',6Bh
2283
 db 'packssdw',6Bh
2274
 dw basic_mmx_instruction-instruction_handler
2284
 dw basic_mmx_instruction-instruction_handler
2275
 db 'packsswb',63h
2285
 db 'packsswb',63h
2276
 dw basic_mmx_instruction-instruction_handler
2286
 dw basic_mmx_instruction-instruction_handler
2277
 db 'packusdw',2Bh
2287
 db 'packusdw',2Bh
2278
 dw sse4_instruction_38-instruction_handler
2288
 dw sse4_instruction_38-instruction_handler
2279
 db 'packuswb',67h
2289
 db 'packuswb',67h
2280
 dw basic_mmx_instruction-instruction_handler
2290
 dw basic_mmx_instruction-instruction_handler
2281
 db 'pblendvb',10h
2291
 db 'pblendvb',10h
2282
 dw sse4_instruction_38_xmm0-instruction_handler
2292
 dw sse4_instruction_38_xmm0-instruction_handler
2283
 db 'pfrcpit1',0A6h
2293
 db 'pfrcpit1',0A6h
2284
 dw amd3dnow_instruction-instruction_handler
2294
 dw amd3dnow_instruction-instruction_handler
2285
 db 'pfrcpit2',0B6h
2295
 db 'pfrcpit2',0B6h
2286
 dw amd3dnow_instruction-instruction_handler
2296
 dw amd3dnow_instruction-instruction_handler
2287
 db 'pfrsqit1',0A7h
2297
 db 'pfrsqit1',0A7h
2288
 dw amd3dnow_instruction-instruction_handler
2298
 dw amd3dnow_instruction-instruction_handler
2289
 db 'pmovmskb',0D7h
2299
 db 'pmovmskb',0D7h
2290
 dw pmovmskb_instruction-instruction_handler
2300
 dw pmovmskb_instruction-instruction_handler
2291
 db 'pmovsxbd',21h
2301
 db 'pmovsxbd',21h
2292
 dw pmovsxbd_instruction-instruction_handler
2302
 dw pmovsxbd_instruction-instruction_handler
2293
 db 'pmovsxbq',22h
2303
 db 'pmovsxbq',22h
2294
 dw pmovsxbq_instruction-instruction_handler
2304
 dw pmovsxbq_instruction-instruction_handler
2295
 db 'pmovsxbw',20h
2305
 db 'pmovsxbw',20h
2296
 dw pmovsxbw_instruction-instruction_handler
2306
 dw pmovsxbw_instruction-instruction_handler
2297
 db 'pmovsxdq',25h
2307
 db 'pmovsxdq',25h
2298
 dw pmovsxdq_instruction-instruction_handler
2308
 dw pmovsxdq_instruction-instruction_handler
2299
 db 'pmovsxwd',23h
2309
 db 'pmovsxwd',23h
2300
 dw pmovsxwd_instruction-instruction_handler
2310
 dw pmovsxwd_instruction-instruction_handler
2301
 db 'pmovsxwq',24h
2311
 db 'pmovsxwq',24h
2302
 dw pmovsxwq_instruction-instruction_handler
2312
 dw pmovsxwq_instruction-instruction_handler
2303
 db 'pmovzxbd',31h
2313
 db 'pmovzxbd',31h
2304
 dw pmovsxbd_instruction-instruction_handler
2314
 dw pmovsxbd_instruction-instruction_handler
2305
 db 'pmovzxbq',32h
2315
 db 'pmovzxbq',32h
2306
 dw pmovsxbq_instruction-instruction_handler
2316
 dw pmovsxbq_instruction-instruction_handler
2307
 db 'pmovzxbw',30h
2317
 db 'pmovzxbw',30h
2308
 dw pmovsxbw_instruction-instruction_handler
2318
 dw pmovsxbw_instruction-instruction_handler
2309
 db 'pmovzxdq',35h
2319
 db 'pmovzxdq',35h
2310
 dw pmovsxdq_instruction-instruction_handler
2320
 dw pmovsxdq_instruction-instruction_handler
2311
 db 'pmovzxwd',33h
2321
 db 'pmovzxwd',33h
2312
 dw pmovsxwd_instruction-instruction_handler
2322
 dw pmovsxwd_instruction-instruction_handler
2313
 db 'pmovzxwq',34h
2323
 db 'pmovzxwq',34h
2314
 dw pmovsxwq_instruction-instruction_handler
2324
 dw pmovsxwq_instruction-instruction_handler
2315
 db 'pmulhrsw',0Bh
2325
 db 'pmulhrsw',0Bh
2316
 dw ssse3_instruction-instruction_handler
2326
 dw ssse3_instruction-instruction_handler
2317
 db 'prefetch',0
2327
 db 'prefetch',0
2318
 dw amd_prefetch_instruction-instruction_handler
2328
 dw amd_prefetch_instruction-instruction_handler
2319
 db 'rdfsbase',0
2329
 db 'rdfsbase',0
2320
 dw rdfsbase_instruction-instruction_handler
2330
 dw rdfsbase_instruction-instruction_handler
2321
 db 'rdgsbase',1
2331
 db 'rdgsbase',1
2322
 dw rdfsbase_instruction-instruction_handler
2332
 dw rdfsbase_instruction-instruction_handler
2323
 db 'sysenter',34h
2333
 db 'sysenter',34h
2324
 dw simple_extended_instruction-instruction_handler
2334
 dw simple_extended_instruction-instruction_handler
2325
 db 'sysexitq',35h
2335
 db 'sysexitq',35h
2326
 dw simple_extended_instruction_64bit-instruction_handler
2336
 dw simple_extended_instruction_64bit-instruction_handler
2327
 db 'unpckhpd',15h
2337
 db 'unpckhpd',15h
2328
 dw sse_pd_instruction-instruction_handler
2338
 dw sse_pd_instruction-instruction_handler
2329
 db 'unpckhps',15h
2339
 db 'unpckhps',15h
2330
 dw sse_ps_instruction-instruction_handler
2340
 dw sse_ps_instruction-instruction_handler
2331
 db 'unpcklpd',14h
2341
 db 'unpcklpd',14h
2332
 dw sse_pd_instruction-instruction_handler
2342
 dw sse_pd_instruction-instruction_handler
2333
 db 'unpcklps',14h
2343
 db 'unpcklps',14h
2334
 dw sse_ps_instruction-instruction_handler
2344
 dw sse_ps_instruction-instruction_handler
2335
 db 'vblendpd',0Dh
2345
 db 'vblendpd',0Dh
2336
 dw avx_instruction_3a_imm8-instruction_handler
2346
 dw avx_instruction_3a_imm8-instruction_handler
2337
 db 'vblendps',0Ch
2347
 db 'vblendps',0Ch
2338
 dw avx_instruction_3a_imm8-instruction_handler
2348
 dw avx_instruction_3a_imm8-instruction_handler
2339
 db 'vcmpeqpd',0
2349
 db 'vcmpeqpd',0
2340
 dw avx_cmp_pd_instruction-instruction_handler
2350
 dw avx_cmp_pd_instruction-instruction_handler
2341
 db 'vcmpeqps',0
2351
 db 'vcmpeqps',0
2342
 dw avx_cmp_ps_instruction-instruction_handler
2352
 dw avx_cmp_ps_instruction-instruction_handler
2343
 db 'vcmpeqsd',0
2353
 db 'vcmpeqsd',0
2344
 dw avx_cmp_sd_instruction-instruction_handler
2354
 dw avx_cmp_sd_instruction-instruction_handler
2345
 db 'vcmpeqss',0
2355
 db 'vcmpeqss',0
2346
 dw avx_cmp_ss_instruction-instruction_handler
2356
 dw avx_cmp_ss_instruction-instruction_handler
2347
 db 'vcmpgepd',0Dh
2357
 db 'vcmpgepd',0Dh
2348
 dw avx_cmp_pd_instruction-instruction_handler
2358
 dw avx_cmp_pd_instruction-instruction_handler
2349
 db 'vcmpgeps',0Dh
2359
 db 'vcmpgeps',0Dh
2350
 dw avx_cmp_ps_instruction-instruction_handler
2360
 dw avx_cmp_ps_instruction-instruction_handler
2351
 db 'vcmpgesd',0Dh
2361
 db 'vcmpgesd',0Dh
2352
 dw avx_cmp_sd_instruction-instruction_handler
2362
 dw avx_cmp_sd_instruction-instruction_handler
2353
 db 'vcmpgess',0Dh
2363
 db 'vcmpgess',0Dh
2354
 dw avx_cmp_ss_instruction-instruction_handler
2364
 dw avx_cmp_ss_instruction-instruction_handler
2355
 db 'vcmpgtpd',0Eh
2365
 db 'vcmpgtpd',0Eh
2356
 dw avx_cmp_pd_instruction-instruction_handler
2366
 dw avx_cmp_pd_instruction-instruction_handler
2357
 db 'vcmpgtps',0Eh
2367
 db 'vcmpgtps',0Eh
2358
 dw avx_cmp_ps_instruction-instruction_handler
2368
 dw avx_cmp_ps_instruction-instruction_handler
2359
 db 'vcmpgtsd',0Eh
2369
 db 'vcmpgtsd',0Eh
2360
 dw avx_cmp_sd_instruction-instruction_handler
2370
 dw avx_cmp_sd_instruction-instruction_handler
2361
 db 'vcmpgtss',0Eh
2371
 db 'vcmpgtss',0Eh
2362
 dw avx_cmp_ss_instruction-instruction_handler
2372
 dw avx_cmp_ss_instruction-instruction_handler
2363
 db 'vcmplepd',2
2373
 db 'vcmplepd',2
2364
 dw avx_cmp_pd_instruction-instruction_handler
2374
 dw avx_cmp_pd_instruction-instruction_handler
2365
 db 'vcmpleps',2
2375
 db 'vcmpleps',2
2366
 dw avx_cmp_ps_instruction-instruction_handler
2376
 dw avx_cmp_ps_instruction-instruction_handler
2367
 db 'vcmplesd',2
2377
 db 'vcmplesd',2
2368
 dw avx_cmp_sd_instruction-instruction_handler
2378
 dw avx_cmp_sd_instruction-instruction_handler
2369
 db 'vcmpless',2
2379
 db 'vcmpless',2
2370
 dw avx_cmp_ss_instruction-instruction_handler
2380
 dw avx_cmp_ss_instruction-instruction_handler
2371
 db 'vcmpltpd',1
2381
 db 'vcmpltpd',1
2372
 dw avx_cmp_pd_instruction-instruction_handler
2382
 dw avx_cmp_pd_instruction-instruction_handler
2373
 db 'vcmpltps',1
2383
 db 'vcmpltps',1
2374
 dw avx_cmp_ps_instruction-instruction_handler
2384
 dw avx_cmp_ps_instruction-instruction_handler
2375
 db 'vcmpltsd',1
2385
 db 'vcmpltsd',1
2376
 dw avx_cmp_sd_instruction-instruction_handler
2386
 dw avx_cmp_sd_instruction-instruction_handler
2377
 db 'vcmpltss',1
2387
 db 'vcmpltss',1
2378
 dw avx_cmp_ss_instruction-instruction_handler
2388
 dw avx_cmp_ss_instruction-instruction_handler
2379
 db 'vfmaddpd',69h
2389
 db 'vfmaddpd',69h
2380
 dw fma4_instruction_p-instruction_handler
2390
 dw fma4_instruction_p-instruction_handler
2381
 db 'vfmaddps',68h
2391
 db 'vfmaddps',68h
2382
 dw fma4_instruction_p-instruction_handler
2392
 dw fma4_instruction_p-instruction_handler
2383
 db 'vfmaddsd',6Bh
2393
 db 'vfmaddsd',6Bh
2384
 dw fma4_instruction_sd-instruction_handler
2394
 dw fma4_instruction_sd-instruction_handler
2385
 db 'vfmaddss',6Ah
2395
 db 'vfmaddss',6Ah
2386
 dw fma4_instruction_ss-instruction_handler
2396
 dw fma4_instruction_ss-instruction_handler
2387
 db 'vfmsubpd',6Dh
2397
 db 'vfmsubpd',6Dh
2388
 dw fma4_instruction_p-instruction_handler
2398
 dw fma4_instruction_p-instruction_handler
2389
 db 'vfmsubps',6Ch
2399
 db 'vfmsubps',6Ch
2390
 dw fma4_instruction_p-instruction_handler
2400
 dw fma4_instruction_p-instruction_handler
2391
 db 'vfmsubsd',6Fh
2401
 db 'vfmsubsd',6Fh
2392
 dw fma4_instruction_sd-instruction_handler
2402
 dw fma4_instruction_sd-instruction_handler
2393
 db 'vfmsubss',6Eh
2403
 db 'vfmsubss',6Eh
2394
 dw fma4_instruction_ss-instruction_handler
2404
 dw fma4_instruction_ss-instruction_handler
2395
 db 'vldmxcsr',10b
2405
 db 'vldmxcsr',10b
2396
 dw vldmxcsr_instruction-instruction_handler
2406
 dw vldmxcsr_instruction-instruction_handler
2397
 db 'vmlaunch',0C2h
2407
 db 'vmlaunch',0C2h
2398
 dw simple_vmx_instruction-instruction_handler
2408
 dw simple_vmx_instruction-instruction_handler
2399
 db 'vmovddup',12h
2409
 db 'vmovddup',12h
2400
 dw avx_movddup_instruction-instruction_handler
2410
 dw avx_movddup_instruction-instruction_handler
2401
 db 'vmovhlps',12h
2411
 db 'vmovhlps',12h
2402
 dw avx_movhlps_instruction-instruction_handler
2412
 dw avx_movhlps_instruction-instruction_handler
2403
 db 'vmovlhps',16h
2413
 db 'vmovlhps',16h
2404
 dw avx_movhlps_instruction-instruction_handler
2414
 dw avx_movhlps_instruction-instruction_handler
2405
 db 'vmovntdq',0E7h
2415
 db 'vmovntdq',0E7h
2406
 dw avx_movntpd_instruction-instruction_handler
2416
 dw avx_movntpd_instruction-instruction_handler
2407
 db 'vmovntpd',2Bh
2417
 db 'vmovntpd',2Bh
2408
 dw avx_movntpd_instruction-instruction_handler
2418
 dw avx_movntpd_instruction-instruction_handler
2409
 db 'vmovntps',2Bh
2419
 db 'vmovntps',2Bh
2410
 dw avx_movntps_instruction-instruction_handler
2420
 dw avx_movntps_instruction-instruction_handler
2411
 db 'vmpsadbw',42h
2421
 db 'vmpsadbw',42h
2412
 dw avx_instruction_3a_imm8-instruction_handler
2422
 dw avx_instruction_3a_imm8-instruction_handler
2413
 db 'vmresume',0C3h
2423
 db 'vmresume',0C3h
2414
 dw simple_vmx_instruction-instruction_handler
2424
 dw simple_vmx_instruction-instruction_handler
2415
 db 'vpaddusb',0DCh
2425
 db 'vpaddusb',0DCh
2416
 dw avx_pd_instruction-instruction_handler
2426
 dw avx_pd_instruction-instruction_handler
2417
 db 'vpaddusw',0DDh
2427
 db 'vpaddusw',0DDh
2418
 dw avx_pd_instruction-instruction_handler
2428
 dw avx_pd_instruction-instruction_handler
2419
 db 'vpalignr',0Fh
2429
 db 'vpalignr',0Fh
2420
 dw avx_instruction_3a_imm8-instruction_handler
2430
 dw avx_instruction_3a_imm8-instruction_handler
2421
 db 'vpblendd',2
2431
 db 'vpblendd',2
2422
 dw avx_instruction_3a_imm8-instruction_handler
2432
 dw avx_instruction_3a_imm8-instruction_handler
2423
 db 'vpblendw',0Eh
2433
 db 'vpblendw',0Eh
2424
 dw avx_instruction_3a_imm8-instruction_handler
2434
 dw avx_instruction_3a_imm8-instruction_handler
2425
 db 'vpcmpeqb',74h
2435
 db 'vpcmpeqb',74h
2426
 dw avx_pd_instruction-instruction_handler
2436
 dw avx_pd_instruction-instruction_handler
2427
 db 'vpcmpeqd',76h
2437
 db 'vpcmpeqd',76h
2428
 dw avx_pd_instruction-instruction_handler
2438
 dw avx_pd_instruction-instruction_handler
2429
 db 'vpcmpeqq',29h
2439
 db 'vpcmpeqq',29h
2430
 dw avx_instruction_38-instruction_handler
2440
 dw avx_instruction_38-instruction_handler
2431
 db 'vpcmpeqw',75h
2441
 db 'vpcmpeqw',75h
2432
 dw avx_pd_instruction-instruction_handler
2442
 dw avx_pd_instruction-instruction_handler
2433
 db 'vpcmpgtb',64h
2443
 db 'vpcmpgtb',64h
2434
 dw avx_pd_instruction-instruction_handler
2444
 dw avx_pd_instruction-instruction_handler
2435
 db 'vpcmpgtd',66h
2445
 db 'vpcmpgtd',66h
2436
 dw avx_pd_instruction-instruction_handler
2446
 dw avx_pd_instruction-instruction_handler
2437
 db 'vpcmpgtq',37h
2447
 db 'vpcmpgtq',37h
2438
 dw avx_instruction_38-instruction_handler
2448
 dw avx_instruction_38-instruction_handler
2439
 db 'vpcmpgtw',65h
2449
 db 'vpcmpgtw',65h
2440
 dw avx_pd_instruction-instruction_handler
2450
 dw avx_pd_instruction-instruction_handler
2441
 db 'vpcomeqb',4
2451
 db 'vpcomeqb',4
2442
 dw xop_pcom_b_instruction-instruction_handler
2452
 dw xop_pcom_b_instruction-instruction_handler
2443
 db 'vpcomeqd',4
2453
 db 'vpcomeqd',4
2444
 dw xop_pcom_d_instruction-instruction_handler
2454
 dw xop_pcom_d_instruction-instruction_handler
2445
 db 'vpcomeqq',4
2455
 db 'vpcomeqq',4
2446
 dw xop_pcom_q_instruction-instruction_handler
2456
 dw xop_pcom_q_instruction-instruction_handler
2447
 db 'vpcomeqw',4
2457
 db 'vpcomeqw',4
2448
 dw xop_pcom_w_instruction-instruction_handler
2458
 dw xop_pcom_w_instruction-instruction_handler
2449
 db 'vpcomgeb',3
2459
 db 'vpcomgeb',3
2450
 dw xop_pcom_b_instruction-instruction_handler
2460
 dw xop_pcom_b_instruction-instruction_handler
2451
 db 'vpcomged',3
2461
 db 'vpcomged',3
2452
 dw xop_pcom_d_instruction-instruction_handler
2462
 dw xop_pcom_d_instruction-instruction_handler
2453
 db 'vpcomgeq',3
2463
 db 'vpcomgeq',3
2454
 dw xop_pcom_q_instruction-instruction_handler
2464
 dw xop_pcom_q_instruction-instruction_handler
2455
 db 'vpcomgew',3
2465
 db 'vpcomgew',3
2456
 dw xop_pcom_w_instruction-instruction_handler
2466
 dw xop_pcom_w_instruction-instruction_handler
2457
 db 'vpcomgtb',2
2467
 db 'vpcomgtb',2
2458
 dw xop_pcom_b_instruction-instruction_handler
2468
 dw xop_pcom_b_instruction-instruction_handler
2459
 db 'vpcomgtd',2
2469
 db 'vpcomgtd',2
2460
 dw xop_pcom_d_instruction-instruction_handler
2470
 dw xop_pcom_d_instruction-instruction_handler
2461
 db 'vpcomgtq',2
2471
 db 'vpcomgtq',2
2462
 dw xop_pcom_q_instruction-instruction_handler
2472
 dw xop_pcom_q_instruction-instruction_handler
2463
 db 'vpcomgtw',2
2473
 db 'vpcomgtw',2
2464
 dw xop_pcom_w_instruction-instruction_handler
2474
 dw xop_pcom_w_instruction-instruction_handler
2465
 db 'vpcomleb',1
2475
 db 'vpcomleb',1
2466
 dw xop_pcom_b_instruction-instruction_handler
2476
 dw xop_pcom_b_instruction-instruction_handler
2467
 db 'vpcomled',1
2477
 db 'vpcomled',1
2468
 dw xop_pcom_d_instruction-instruction_handler
2478
 dw xop_pcom_d_instruction-instruction_handler
2469
 db 'vpcomleq',1
2479
 db 'vpcomleq',1
2470
 dw xop_pcom_q_instruction-instruction_handler
2480
 dw xop_pcom_q_instruction-instruction_handler
2471
 db 'vpcomlew',1
2481
 db 'vpcomlew',1
2472
 dw xop_pcom_w_instruction-instruction_handler
2482
 dw xop_pcom_w_instruction-instruction_handler
2473
 db 'vpcomltb',0
2483
 db 'vpcomltb',0
2474
 dw xop_pcom_b_instruction-instruction_handler
2484
 dw xop_pcom_b_instruction-instruction_handler
2475
 db 'vpcomltd',0
2485
 db 'vpcomltd',0
2476
 dw xop_pcom_d_instruction-instruction_handler
2486
 dw xop_pcom_d_instruction-instruction_handler
2477
 db 'vpcomltq',0
2487
 db 'vpcomltq',0
2478
 dw xop_pcom_q_instruction-instruction_handler
2488
 dw xop_pcom_q_instruction-instruction_handler
2479
 db 'vpcomltw',0
2489
 db 'vpcomltw',0
2480
 dw xop_pcom_w_instruction-instruction_handler
2490
 dw xop_pcom_w_instruction-instruction_handler
2481
 db 'vphaddbd',0C2h
2491
 db 'vphaddbd',0C2h
2482
 dw xop_single_source_128bit_instruction-instruction_handler
2492
 dw xop_single_source_128bit_instruction-instruction_handler
2483
 db 'vphaddbq',0C3h
2493
 db 'vphaddbq',0C3h
2484
 dw xop_single_source_128bit_instruction-instruction_handler
2494
 dw xop_single_source_128bit_instruction-instruction_handler
2485
 db 'vphaddbw',0C1h
2495
 db 'vphaddbw',0C1h
2486
 dw xop_single_source_128bit_instruction-instruction_handler
2496
 dw xop_single_source_128bit_instruction-instruction_handler
2487
 db 'vphadddq',0CBh
2497
 db 'vphadddq',0CBh
2488
 dw xop_single_source_128bit_instruction-instruction_handler
2498
 dw xop_single_source_128bit_instruction-instruction_handler
2489
 db 'vphaddsw',3
2499
 db 'vphaddsw',3
2490
 dw avx_instruction_38-instruction_handler
2500
 dw avx_instruction_38-instruction_handler
2491
 db 'vphaddwd',0C6h
2501
 db 'vphaddwd',0C6h
2492
 dw xop_single_source_128bit_instruction-instruction_handler
2502
 dw xop_single_source_128bit_instruction-instruction_handler
2493
 db 'vphaddwq',0C7h
2503
 db 'vphaddwq',0C7h
2494
 dw xop_single_source_128bit_instruction-instruction_handler
2504
 dw xop_single_source_128bit_instruction-instruction_handler
2495
 db 'vphsubbw',0E1h
2505
 db 'vphsubbw',0E1h
2496
 dw xop_single_source_128bit_instruction-instruction_handler
2506
 dw xop_single_source_128bit_instruction-instruction_handler
2497
 db 'vphsubdq',0E3h
2507
 db 'vphsubdq',0E3h
2498
 dw xop_single_source_128bit_instruction-instruction_handler
2508
 dw xop_single_source_128bit_instruction-instruction_handler
2499
 db 'vphsubsw',7
2509
 db 'vphsubsw',7
2500
 dw avx_instruction_38-instruction_handler
2510
 dw avx_instruction_38-instruction_handler
2501
 db 'vphsubwd',0E2h
2511
 db 'vphsubwd',0E2h
2502
 dw xop_single_source_128bit_instruction-instruction_handler
2512
 dw xop_single_source_128bit_instruction-instruction_handler
2503
 db 'vpmacsdd',9Eh
2513
 db 'vpmacsdd',9Eh
2504
 dw xop_triple_source_128bit_instruction-instruction_handler
2514
 dw xop_triple_source_128bit_instruction-instruction_handler
2505
 db 'vpmacswd',96h
2515
 db 'vpmacswd',96h
2506
 dw xop_triple_source_128bit_instruction-instruction_handler
2516
 dw xop_triple_source_128bit_instruction-instruction_handler
2507
 db 'vpmacsww',95h
2517
 db 'vpmacsww',95h
2508
 dw xop_triple_source_128bit_instruction-instruction_handler
2518
 dw xop_triple_source_128bit_instruction-instruction_handler
2509
 db 'vpmaddwd',0F5h
2519
 db 'vpmaddwd',0F5h
2510
 dw avx_pd_instruction-instruction_handler
2520
 dw avx_pd_instruction-instruction_handler
2511
 db 'vpmulhuw',0E4h
2521
 db 'vpmulhuw',0E4h
2512
 dw avx_pd_instruction-instruction_handler
2522
 dw avx_pd_instruction-instruction_handler
2513
 db 'vpmuludq',0F4h
2523
 db 'vpmuludq',0F4h
2514
 dw avx_pd_instruction-instruction_handler
2524
 dw avx_pd_instruction-instruction_handler
2515
 db 'vpshufhw',0F3h
2525
 db 'vpshufhw',0F3h
2516
 dw avx_pshufd_instruction-instruction_handler
2526
 dw avx_pshufd_instruction-instruction_handler
2517
 db 'vpshuflw',0F2h
2527
 db 'vpshuflw',0F2h
2518
 dw avx_pshufd_instruction-instruction_handler
2528
 dw avx_pshufd_instruction-instruction_handler
2519
 db 'vpsubusb',0D8h
2529
 db 'vpsubusb',0D8h
2520
 dw avx_pd_instruction-instruction_handler
2530
 dw avx_pd_instruction-instruction_handler
2521
 db 'vpsubusw',0D9h
2531
 db 'vpsubusw',0D9h
2522
 dw avx_pd_instruction-instruction_handler
2532
 dw avx_pd_instruction-instruction_handler
2523
 db 'vroundpd',9
2533
 db 'vroundpd',9
2524
 dw avx_single_source_instruction_3a_imm8-instruction_handler
2534
 dw avx_single_source_instruction_3a_imm8-instruction_handler
2525
 db 'vroundps',8
2535
 db 'vroundps',8
2526
 dw avx_single_source_instruction_3a_imm8-instruction_handler
2536
 dw avx_single_source_instruction_3a_imm8-instruction_handler
2527
 db 'vroundsd',0Bh
2537
 db 'vroundsd',0Bh
2528
 dw avx_sd_instruction_3a_imm8-instruction_handler
2538
 dw avx_sd_instruction_3a_imm8-instruction_handler
2529
 db 'vroundss',0Ah
2539
 db 'vroundss',0Ah
2530
 dw avx_ss_instruction_3a_imm8-instruction_handler
2540
 dw avx_ss_instruction_3a_imm8-instruction_handler
2531
 db 'vrsqrtps',52h
2541
 db 'vrsqrtps',52h
2532
 dw avx_single_source_ps_instruction-instruction_handler
2542
 dw avx_single_source_ps_instruction-instruction_handler
2533
 db 'vrsqrtss',52h
2543
 db 'vrsqrtss',52h
2534
 dw avx_ss_instruction-instruction_handler
2544
 dw avx_ss_instruction-instruction_handler
2535
 db 'vstmxcsr',11b
2545
 db 'vstmxcsr',11b
2536
 dw vldmxcsr_instruction-instruction_handler
2546
 dw vldmxcsr_instruction-instruction_handler
2537
 db 'vucomisd',2Eh
2547
 db 'vucomisd',2Eh
2538
 dw avx_comisd_instruction-instruction_handler
2548
 dw avx_comisd_instruction-instruction_handler
2539
 db 'vucomiss',2Eh
2549
 db 'vucomiss',2Eh
2540
 dw avx_comiss_instruction-instruction_handler
2550
 dw avx_comiss_instruction-instruction_handler
2541
 db 'vzeroall',77h
2551
 db 'vzeroall',77h
2542
 dw vzeroall_instruction-instruction_handler
2552
 dw vzeroall_instruction-instruction_handler
2543
 db 'wrfsbase',2
2553
 db 'wrfsbase',2
2544
 dw rdfsbase_instruction-instruction_handler
2554
 dw rdfsbase_instruction-instruction_handler
2545
 db 'wrgsbase',3
2555
 db 'wrgsbase',3
2546
 dw rdfsbase_instruction-instruction_handler
2556
 dw rdfsbase_instruction-instruction_handler
2547
 db 'xacquire',0F2h
2557
 db 'xacquire',0F2h
2548
 dw prefix_instruction-instruction_handler
2558
 dw prefix_instruction-instruction_handler
2549
 db 'xrelease',0F3h
2559
 db 'xrelease',0F3h
2550
 dw prefix_instruction-instruction_handler
2560
 dw prefix_instruction-instruction_handler
2551
 db 'xrstor64',101b
2561
 db 'xrstor64',101b
2552
 dw fxsave_instruction_64bit-instruction_handler
2562
 dw fxsave_instruction_64bit-instruction_handler
2553
 db 'xsaveopt',110b
2563
 db 'xsaveopt',110b
2554
 dw fxsave_instruction-instruction_handler
2564
 dw fxsave_instruction-instruction_handler
2555
instructions_9:
2565
instructions_9:
2556
 db 'cmpxchg8b',8
2566
 db 'cmpxchg8b',8
2557
 dw cmpxchgx_instruction-instruction_handler
2567
 dw cmpxchgx_instruction-instruction_handler
2558
 db 'cvttpd2dq',0E6h
2568
 db 'cvttpd2dq',0E6h
2559
 dw sse_pd_instruction-instruction_handler
2569
 dw sse_pd_instruction-instruction_handler
2560
 db 'cvttpd2pi',2Ch
2570
 db 'cvttpd2pi',2Ch
2561
 dw cvtpd2pi_instruction-instruction_handler
2571
 dw cvtpd2pi_instruction-instruction_handler
2562
 db 'cvttps2dq',5Bh
2572
 db 'cvttps2dq',5Bh
2563
 dw movshdup_instruction-instruction_handler
2573
 dw movshdup_instruction-instruction_handler
2564
 db 'cvttps2pi',2Ch
2574
 db 'cvttps2pi',2Ch
2565
 dw cvtps2pi_instruction-instruction_handler
2575
 dw cvtps2pi_instruction-instruction_handler
2566
 db 'cvttsd2si',2Ch
2576
 db 'cvttsd2si',2Ch
2567
 dw cvtsd2si_instruction-instruction_handler
2577
 dw cvtsd2si_instruction-instruction_handler
2568
 db 'cvttss2si',2Ch
2578
 db 'cvttss2si',2Ch
2569
 dw cvtss2si_instruction-instruction_handler
2579
 dw cvtss2si_instruction-instruction_handler
2570
 db 'extractps',0
2580
 db 'extractps',0
2571
 dw extractps_instruction-instruction_handler
2581
 dw extractps_instruction-instruction_handler
2572
 db 'fxrstor64',1
2582
 db 'fxrstor64',1
2573
 dw fxsave_instruction_64bit-instruction_handler
2583
 dw fxsave_instruction_64bit-instruction_handler
2574
 db 'pclmulqdq',-1
2584
 db 'pclmulqdq',-1
2575
 dw pclmulqdq_instruction-instruction_handler
2585
 dw pclmulqdq_instruction-instruction_handler
2576
 db 'pcmpestri',61h
2586
 db 'pcmpestri',61h
2577
 dw sse4_instruction_3a_imm8-instruction_handler
2587
 dw sse4_instruction_3a_imm8-instruction_handler
2578
 db 'pcmpestrm',60h
2588
 db 'pcmpestrm',60h
2579
 dw sse4_instruction_3a_imm8-instruction_handler
2589
 dw sse4_instruction_3a_imm8-instruction_handler
2580
 db 'pcmpistri',63h
2590
 db 'pcmpistri',63h
2581
 dw sse4_instruction_3a_imm8-instruction_handler
2591
 dw sse4_instruction_3a_imm8-instruction_handler
2582
 db 'pcmpistrm',62h
2592
 db 'pcmpistrm',62h
2583
 dw sse4_instruction_3a_imm8-instruction_handler
2593
 dw sse4_instruction_3a_imm8-instruction_handler
2584
 db 'pmaddubsw',4
2594
 db 'pmaddubsw',4
2585
 dw ssse3_instruction-instruction_handler
2595
 dw ssse3_instruction-instruction_handler
2586
 db 'prefetchw',1
2596
 db 'prefetchw',1
2587
 dw amd_prefetch_instruction-instruction_handler
2597
 dw amd_prefetch_instruction-instruction_handler
2588
 db 'punpckhbw',68h
2598
 db 'punpckhbw',68h
2589
 dw basic_mmx_instruction-instruction_handler
2599
 dw basic_mmx_instruction-instruction_handler
2590
 db 'punpckhdq',6Ah
2600
 db 'punpckhdq',6Ah
2591
 dw basic_mmx_instruction-instruction_handler
2601
 dw basic_mmx_instruction-instruction_handler
2592
 db 'punpckhwd',69h
2602
 db 'punpckhwd',69h
2593
 dw basic_mmx_instruction-instruction_handler
2603
 dw basic_mmx_instruction-instruction_handler
2594
 db 'punpcklbw',60h
2604
 db 'punpcklbw',60h
2595
 dw basic_mmx_instruction-instruction_handler
2605
 dw basic_mmx_instruction-instruction_handler
2596
 db 'punpckldq',62h
2606
 db 'punpckldq',62h
2597
 dw basic_mmx_instruction-instruction_handler
2607
 dw basic_mmx_instruction-instruction_handler
2598
 db 'punpcklwd',61h
2608
 db 'punpcklwd',61h
2599
 dw basic_mmx_instruction-instruction_handler
2609
 dw basic_mmx_instruction-instruction_handler
2600
 db 'vaddsubpd',0D0h
2610
 db 'vaddsubpd',0D0h
2601
 dw avx_pd_instruction-instruction_handler
2611
 dw avx_pd_instruction-instruction_handler
2602
 db 'vaddsubps',0D0h
2612
 db 'vaddsubps',0D0h
2603
 dw avx_haddps_instruction-instruction_handler
2613
 dw avx_haddps_instruction-instruction_handler
2604
 db 'vblendvpd',4Bh
2614
 db 'vblendvpd',4Bh
2605
 dw avx_triple_source_instruction_3a-instruction_handler
2615
 dw avx_triple_source_instruction_3a-instruction_handler
2606
 db 'vblendvps',4Ah
2616
 db 'vblendvps',4Ah
2607
 dw avx_triple_source_instruction_3a-instruction_handler
2617
 dw avx_triple_source_instruction_3a-instruction_handler
2608
 db 'vcmpneqpd',4
2618
 db 'vcmpneqpd',4
2609
 dw avx_cmp_pd_instruction-instruction_handler
2619
 dw avx_cmp_pd_instruction-instruction_handler
2610
 db 'vcmpneqps',4
2620
 db 'vcmpneqps',4
2611
 dw avx_cmp_ps_instruction-instruction_handler
2621
 dw avx_cmp_ps_instruction-instruction_handler
2612
 db 'vcmpneqsd',4
2622
 db 'vcmpneqsd',4
2613
 dw avx_cmp_sd_instruction-instruction_handler
2623
 dw avx_cmp_sd_instruction-instruction_handler
2614
 db 'vcmpneqss',4
2624
 db 'vcmpneqss',4
2615
 dw avx_cmp_ss_instruction-instruction_handler
2625
 dw avx_cmp_ss_instruction-instruction_handler
2616
 db 'vcmpngepd',9
2626
 db 'vcmpngepd',9
2617
 dw avx_cmp_pd_instruction-instruction_handler
2627
 dw avx_cmp_pd_instruction-instruction_handler
2618
 db 'vcmpngeps',9
2628
 db 'vcmpngeps',9
2619
 dw avx_cmp_ps_instruction-instruction_handler
2629
 dw avx_cmp_ps_instruction-instruction_handler
2620
 db 'vcmpngesd',9
2630
 db 'vcmpngesd',9
2621
 dw avx_cmp_sd_instruction-instruction_handler
2631
 dw avx_cmp_sd_instruction-instruction_handler
2622
 db 'vcmpngess',9
2632
 db 'vcmpngess',9
2623
 dw avx_cmp_ss_instruction-instruction_handler
2633
 dw avx_cmp_ss_instruction-instruction_handler
2624
 db 'vcmpngtpd',0Ah
2634
 db 'vcmpngtpd',0Ah
2625
 dw avx_cmp_pd_instruction-instruction_handler
2635
 dw avx_cmp_pd_instruction-instruction_handler
2626
 db 'vcmpngtps',0Ah
2636
 db 'vcmpngtps',0Ah
2627
 dw avx_cmp_ps_instruction-instruction_handler
2637
 dw avx_cmp_ps_instruction-instruction_handler
2628
 db 'vcmpngtsd',0Ah
2638
 db 'vcmpngtsd',0Ah
2629
 dw avx_cmp_sd_instruction-instruction_handler
2639
 dw avx_cmp_sd_instruction-instruction_handler
2630
 db 'vcmpngtss',0Ah
2640
 db 'vcmpngtss',0Ah
2631
 dw avx_cmp_ss_instruction-instruction_handler
2641
 dw avx_cmp_ss_instruction-instruction_handler
2632
 db 'vcmpnlepd',6
2642
 db 'vcmpnlepd',6
2633
 dw avx_cmp_pd_instruction-instruction_handler
2643
 dw avx_cmp_pd_instruction-instruction_handler
2634
 db 'vcmpnleps',6
2644
 db 'vcmpnleps',6
2635
 dw avx_cmp_ps_instruction-instruction_handler
2645
 dw avx_cmp_ps_instruction-instruction_handler
2636
 db 'vcmpnlesd',6
2646
 db 'vcmpnlesd',6
2637
 dw avx_cmp_sd_instruction-instruction_handler
2647
 dw avx_cmp_sd_instruction-instruction_handler
2638
 db 'vcmpnless',6
2648
 db 'vcmpnless',6
2639
 dw avx_cmp_ss_instruction-instruction_handler
2649
 dw avx_cmp_ss_instruction-instruction_handler
2640
 db 'vcmpnltpd',5
2650
 db 'vcmpnltpd',5
2641
 dw avx_cmp_pd_instruction-instruction_handler
2651
 dw avx_cmp_pd_instruction-instruction_handler
2642
 db 'vcmpnltps',5
2652
 db 'vcmpnltps',5
2643
 dw avx_cmp_ps_instruction-instruction_handler
2653
 dw avx_cmp_ps_instruction-instruction_handler
2644
 db 'vcmpnltsd',5
2654
 db 'vcmpnltsd',5
2645
 dw avx_cmp_sd_instruction-instruction_handler
2655
 dw avx_cmp_sd_instruction-instruction_handler
2646
 db 'vcmpnltss',5
2656
 db 'vcmpnltss',5
2647
 dw avx_cmp_ss_instruction-instruction_handler
2657
 dw avx_cmp_ss_instruction-instruction_handler
2648
 db 'vcmpordpd',7
2658
 db 'vcmpordpd',7
2649
 dw avx_cmp_pd_instruction-instruction_handler
2659
 dw avx_cmp_pd_instruction-instruction_handler
2650
 db 'vcmpordps',7
2660
 db 'vcmpordps',7
2651
 dw avx_cmp_ps_instruction-instruction_handler
2661
 dw avx_cmp_ps_instruction-instruction_handler
2652
 db 'vcmpordsd',7
2662
 db 'vcmpordsd',7
2653
 dw avx_cmp_sd_instruction-instruction_handler
2663
 dw avx_cmp_sd_instruction-instruction_handler
2654
 db 'vcmpordss',7
2664
 db 'vcmpordss',7
2655
 dw avx_cmp_ss_instruction-instruction_handler
2665
 dw avx_cmp_ss_instruction-instruction_handler
2656
 db 'vcvtdq2pd',0E6h
2666
 db 'vcvtdq2pd',0E6h
2657
 dw avx_cvtdq2pd_instruction-instruction_handler
2667
 dw avx_cvtdq2pd_instruction-instruction_handler
2658
 db 'vcvtdq2ps',5Bh
2668
 db 'vcvtdq2ps',5Bh
2659
 dw avx_single_source_ps_instruction-instruction_handler
2669
 dw avx_single_source_ps_instruction-instruction_handler
2660
 db 'vcvtpd2dq',0E6h
2670
 db 'vcvtpd2dq',0E6h
2661
 dw avx_cvtpd2dq_instruction-instruction_handler
2671
 dw avx_cvtpd2dq_instruction-instruction_handler
2662
 db 'vcvtpd2ps',5Ah
2672
 db 'vcvtpd2ps',5Ah
2663
 dw avx_cvtpd2ps_instruction-instruction_handler
2673
 dw avx_cvtpd2ps_instruction-instruction_handler
2664
 db 'vcvtph2ps',13h
2674
 db 'vcvtph2ps',13h
2665
 dw vcvtph2ps_instruction-instruction_handler
2675
 dw vcvtph2ps_instruction-instruction_handler
2666
 db 'vcvtps2dq',5Bh
2676
 db 'vcvtps2dq',5Bh
2667
 dw avx_single_source_pd_instruction-instruction_handler
2677
 dw avx_single_source_pd_instruction-instruction_handler
2668
 db 'vcvtps2pd',5Ah
2678
 db 'vcvtps2pd',5Ah
2669
 dw avx_cvtps2pd_instruction-instruction_handler
2679
 dw avx_cvtps2pd_instruction-instruction_handler
2670
 db 'vcvtps2ph',1Dh
2680
 db 'vcvtps2ph',1Dh
2671
 dw vcvtps2ph_instruction-instruction_handler
2681
 dw vcvtps2ph_instruction-instruction_handler
2672
 db 'vcvtsd2si',2Dh
2682
 db 'vcvtsd2si',2Dh
2673
 dw avx_cvtsd2si_instruction-instruction_handler
2683
 dw avx_cvtsd2si_instruction-instruction_handler
2674
 db 'vcvtsd2ss',5Ah
2684
 db 'vcvtsd2ss',5Ah
2675
 dw avx_sd_instruction-instruction_handler
2685
 dw avx_sd_instruction-instruction_handler
2676
 db 'vcvtsi2sd',2Ah
2686
 db 'vcvtsi2sd',2Ah
2677
 dw avx_cvtsi2sd_instruction-instruction_handler
2687
 dw avx_cvtsi2sd_instruction-instruction_handler
2678
 db 'vcvtsi2ss',2Ah
2688
 db 'vcvtsi2ss',2Ah
2679
 dw avx_cvtsi2ss_instruction-instruction_handler
2689
 dw avx_cvtsi2ss_instruction-instruction_handler
2680
 db 'vcvtss2sd',5Ah
2690
 db 'vcvtss2sd',5Ah
2681
 dw avx_ss_instruction-instruction_handler
2691
 dw avx_ss_instruction-instruction_handler
2682
 db 'vcvtss2si',2Dh
2692
 db 'vcvtss2si',2Dh
2683
 dw avx_cvtss2si_instruction-instruction_handler
2693
 dw avx_cvtss2si_instruction-instruction_handler
2684
 db 'vfnmaddpd',79h
2694
 db 'vfnmaddpd',79h
2685
 dw fma4_instruction_p-instruction_handler
2695
 dw fma4_instruction_p-instruction_handler
2686
 db 'vfnmaddps',78h
2696
 db 'vfnmaddps',78h
2687
 dw fma4_instruction_p-instruction_handler
2697
 dw fma4_instruction_p-instruction_handler
2688
 db 'vfnmaddsd',7Bh
2698
 db 'vfnmaddsd',7Bh
2689
 dw fma4_instruction_sd-instruction_handler
2699
 dw fma4_instruction_sd-instruction_handler
2690
 db 'vfnmaddss',7Ah
2700
 db 'vfnmaddss',7Ah
2691
 dw fma4_instruction_ss-instruction_handler
2701
 dw fma4_instruction_ss-instruction_handler
2692
 db 'vfnmsubpd',7Dh
2702
 db 'vfnmsubpd',7Dh
2693
 dw fma4_instruction_p-instruction_handler
2703
 dw fma4_instruction_p-instruction_handler
2694
 db 'vfnmsubps',7Ch
2704
 db 'vfnmsubps',7Ch
2695
 dw fma4_instruction_p-instruction_handler
2705
 dw fma4_instruction_p-instruction_handler
2696
 db 'vfnmsubsd',7Fh
2706
 db 'vfnmsubsd',7Fh
2697
 dw fma4_instruction_sd-instruction_handler
2707
 dw fma4_instruction_sd-instruction_handler
2698
 db 'vfnmsubss',7Eh
2708
 db 'vfnmsubss',7Eh
2699
 dw fma4_instruction_ss-instruction_handler
2709
 dw fma4_instruction_ss-instruction_handler
2700
 db 'vinsertps',0
2710
 db 'vinsertps',0
2701
 dw avx_insertps_instruction-instruction_handler
2711
 dw avx_insertps_instruction-instruction_handler
2702
 db 'vmovmskpd',0
2712
 db 'vmovmskpd',0
2703
 dw avx_movmskpd_instruction-instruction_handler
2713
 dw avx_movmskpd_instruction-instruction_handler
2704
 db 'vmovmskps',0
2714
 db 'vmovmskps',0
2705
 dw avx_movmskps_instruction-instruction_handler
2715
 dw avx_movmskps_instruction-instruction_handler
2706
 db 'vmovntdqa',2Ah
2716
 db 'vmovntdqa',2Ah
2707
 dw avx_movntdqa_instruction-instruction_handler
2717
 dw avx_movntdqa_instruction-instruction_handler
2708
 db 'vmovshdup',16h
2718
 db 'vmovshdup',16h
2709
 dw avx_movshdup_instruction-instruction_handler
2719
 dw avx_movshdup_instruction-instruction_handler
2710
 db 'vmovsldup',12h
2720
 db 'vmovsldup',12h
2711
 dw avx_movshdup_instruction-instruction_handler
2721
 dw avx_movshdup_instruction-instruction_handler
2712
 db 'vpackssdw',6Bh
2722
 db 'vpackssdw',6Bh
2713
 dw avx_pd_instruction-instruction_handler
2723
 dw avx_pd_instruction-instruction_handler
2714
 db 'vpacksswb',63h
2724
 db 'vpacksswb',63h
2715
 dw avx_pd_instruction-instruction_handler
2725
 dw avx_pd_instruction-instruction_handler
2716
 db 'vpackusdw',2Bh
2726
 db 'vpackusdw',2Bh
2717
 dw avx_instruction_38-instruction_handler
2727
 dw avx_instruction_38-instruction_handler
2718
 db 'vpackuswb',67h
2728
 db 'vpackuswb',67h
2719
 dw avx_pd_instruction-instruction_handler
2729
 dw avx_pd_instruction-instruction_handler
2720
 db 'vpblendvb',4Ch
2730
 db 'vpblendvb',4Ch
2721
 dw avx_triple_source_instruction_3a-instruction_handler
2731
 dw avx_triple_source_instruction_3a-instruction_handler
2722
 db 'vpcomequb',4
2732
 db 'vpcomequb',4
2723
 dw xop_pcom_ub_instruction-instruction_handler
2733
 dw xop_pcom_ub_instruction-instruction_handler
2724
 db 'vpcomequd',4
2734
 db 'vpcomequd',4
2725
 dw xop_pcom_ud_instruction-instruction_handler
2735
 dw xop_pcom_ud_instruction-instruction_handler
2726
 db 'vpcomequq',4
2736
 db 'vpcomequq',4
2727
 dw xop_pcom_uq_instruction-instruction_handler
2737
 dw xop_pcom_uq_instruction-instruction_handler
2728
 db 'vpcomequw',4
2738
 db 'vpcomequw',4
2729
 dw xop_pcom_uw_instruction-instruction_handler
2739
 dw xop_pcom_uw_instruction-instruction_handler
2730
 db 'vpcomgeub',3
2740
 db 'vpcomgeub',3
2731
 dw xop_pcom_ub_instruction-instruction_handler
2741
 dw xop_pcom_ub_instruction-instruction_handler
2732
 db 'vpcomgeud',3
2742
 db 'vpcomgeud',3
2733
 dw xop_pcom_ud_instruction-instruction_handler
2743
 dw xop_pcom_ud_instruction-instruction_handler
2734
 db 'vpcomgeuq',3
2744
 db 'vpcomgeuq',3
2735
 dw xop_pcom_uq_instruction-instruction_handler
2745
 dw xop_pcom_uq_instruction-instruction_handler
2736
 db 'vpcomgeuw',3
2746
 db 'vpcomgeuw',3
2737
 dw xop_pcom_uw_instruction-instruction_handler
2747
 dw xop_pcom_uw_instruction-instruction_handler
2738
 db 'vpcomgtub',2
2748
 db 'vpcomgtub',2
2739
 dw xop_pcom_ub_instruction-instruction_handler
2749
 dw xop_pcom_ub_instruction-instruction_handler
2740
 db 'vpcomgtud',2
2750
 db 'vpcomgtud',2
2741
 dw xop_pcom_ud_instruction-instruction_handler
2751
 dw xop_pcom_ud_instruction-instruction_handler
2742
 db 'vpcomgtuq',2
2752
 db 'vpcomgtuq',2
2743
 dw xop_pcom_uq_instruction-instruction_handler
2753
 dw xop_pcom_uq_instruction-instruction_handler
2744
 db 'vpcomgtuw',2
2754
 db 'vpcomgtuw',2
2745
 dw xop_pcom_uw_instruction-instruction_handler
2755
 dw xop_pcom_uw_instruction-instruction_handler
2746
 db 'vpcomleub',1
2756
 db 'vpcomleub',1
2747
 dw xop_pcom_ub_instruction-instruction_handler
2757
 dw xop_pcom_ub_instruction-instruction_handler
2748
 db 'vpcomleud',1
2758
 db 'vpcomleud',1
2749
 dw xop_pcom_ud_instruction-instruction_handler
2759
 dw xop_pcom_ud_instruction-instruction_handler
2750
 db 'vpcomleuq',1
2760
 db 'vpcomleuq',1
2751
 dw xop_pcom_uq_instruction-instruction_handler
2761
 dw xop_pcom_uq_instruction-instruction_handler
2752
 db 'vpcomleuw',1
2762
 db 'vpcomleuw',1
2753
 dw xop_pcom_uw_instruction-instruction_handler
2763
 dw xop_pcom_uw_instruction-instruction_handler
2754
 db 'vpcomltub',0
2764
 db 'vpcomltub',0
2755
 dw xop_pcom_ub_instruction-instruction_handler
2765
 dw xop_pcom_ub_instruction-instruction_handler
2756
 db 'vpcomltud',0
2766
 db 'vpcomltud',0
2757
 dw xop_pcom_ud_instruction-instruction_handler
2767
 dw xop_pcom_ud_instruction-instruction_handler
2758
 db 'vpcomltuq',0
2768
 db 'vpcomltuq',0
2759
 dw xop_pcom_uq_instruction-instruction_handler
2769
 dw xop_pcom_uq_instruction-instruction_handler
2760
 db 'vpcomltuw',0
2770
 db 'vpcomltuw',0
2761
 dw xop_pcom_uw_instruction-instruction_handler
2771
 dw xop_pcom_uw_instruction-instruction_handler
2762
 db 'vpcomneqb',5
2772
 db 'vpcomneqb',5
2763
 dw xop_pcom_b_instruction-instruction_handler
2773
 dw xop_pcom_b_instruction-instruction_handler
2764
 db 'vpcomneqd',5
2774
 db 'vpcomneqd',5
2765
 dw xop_pcom_d_instruction-instruction_handler
2775
 dw xop_pcom_d_instruction-instruction_handler
2766
 db 'vpcomneqq',5
2776
 db 'vpcomneqq',5
2767
 dw xop_pcom_q_instruction-instruction_handler
2777
 dw xop_pcom_q_instruction-instruction_handler
2768
 db 'vpcomneqw',5
2778
 db 'vpcomneqw',5
2769
 dw xop_pcom_w_instruction-instruction_handler
2779
 dw xop_pcom_w_instruction-instruction_handler
2770
 db 'vpermilpd',5
2780
 db 'vpermilpd',5
2771
 dw avx_permil_instruction-instruction_handler
2781
 dw avx_permil_instruction-instruction_handler
2772
 db 'vpermilps',4
2782
 db 'vpermilps',4
2773
 dw avx_permil_instruction-instruction_handler
2783
 dw avx_permil_instruction-instruction_handler
2774
 db 'vphaddubd',0D2h
2784
 db 'vphaddubd',0D2h
2775
 dw xop_single_source_128bit_instruction-instruction_handler
2785
 dw xop_single_source_128bit_instruction-instruction_handler
2776
 db 'vphaddubq',0D3h
2786
 db 'vphaddubq',0D3h
2777
 dw xop_single_source_128bit_instruction-instruction_handler
2787
 dw xop_single_source_128bit_instruction-instruction_handler
2778
 db 'vphaddubw',0D1h
2788
 db 'vphaddubw',0D1h
2779
 dw xop_single_source_128bit_instruction-instruction_handler
2789
 dw xop_single_source_128bit_instruction-instruction_handler
2780
 db 'vphaddudq',0DBh
2790
 db 'vphaddudq',0DBh
2781
 dw xop_single_source_128bit_instruction-instruction_handler
2791
 dw xop_single_source_128bit_instruction-instruction_handler
2782
 db 'vphadduwd',0D6h
2792
 db 'vphadduwd',0D6h
2783
 dw xop_single_source_128bit_instruction-instruction_handler
2793
 dw xop_single_source_128bit_instruction-instruction_handler
2784
 db 'vphadduwq',0D7h
2794
 db 'vphadduwq',0D7h
2785
 dw xop_single_source_128bit_instruction-instruction_handler
2795
 dw xop_single_source_128bit_instruction-instruction_handler
2786
 db 'vpmacsdqh',9Fh
2796
 db 'vpmacsdqh',9Fh
2787
 dw xop_triple_source_128bit_instruction-instruction_handler
2797
 dw xop_triple_source_128bit_instruction-instruction_handler
2788
 db 'vpmacsdql',97h
2798
 db 'vpmacsdql',97h
2789
 dw xop_triple_source_128bit_instruction-instruction_handler
2799
 dw xop_triple_source_128bit_instruction-instruction_handler
2790
 db 'vpmacssdd',8Eh
2800
 db 'vpmacssdd',8Eh
2791
 dw xop_triple_source_128bit_instruction-instruction_handler
2801
 dw xop_triple_source_128bit_instruction-instruction_handler
2792
 db 'vpmacsswd',86h
2802
 db 'vpmacsswd',86h
2793
 dw xop_triple_source_128bit_instruction-instruction_handler
2803
 dw xop_triple_source_128bit_instruction-instruction_handler
2794
 db 'vpmacssww',85h
2804
 db 'vpmacssww',85h
2795
 dw xop_triple_source_128bit_instruction-instruction_handler
2805
 dw xop_triple_source_128bit_instruction-instruction_handler
2796
 db 'vpmadcswd',0B6h
2806
 db 'vpmadcswd',0B6h
2797
 dw xop_triple_source_128bit_instruction-instruction_handler
2807
 dw xop_triple_source_128bit_instruction-instruction_handler
2798
 db 'vpmovmskb',0D7h
2808
 db 'vpmovmskb',0D7h
2799
 dw avx_pmovmskb_instruction-instruction_handler
2809
 dw avx_pmovmskb_instruction-instruction_handler
2800
 db 'vpmovsxbd',21h
2810
 db 'vpmovsxbd',21h
2801
 dw avx_pmovsxbd_instruction-instruction_handler
2811
 dw avx_pmovsxbd_instruction-instruction_handler
2802
 db 'vpmovsxbq',22h
2812
 db 'vpmovsxbq',22h
2803
 dw avx_pmovsxbq_instruction-instruction_handler
2813
 dw avx_pmovsxbq_instruction-instruction_handler
2804
 db 'vpmovsxbw',20h
2814
 db 'vpmovsxbw',20h
2805
 dw avx_pmovsxbw_instruction-instruction_handler
2815
 dw avx_pmovsxbw_instruction-instruction_handler
2806
 db 'vpmovsxdq',25h
2816
 db 'vpmovsxdq',25h
2807
 dw avx_pmovsxdq_instruction-instruction_handler
2817
 dw avx_pmovsxdq_instruction-instruction_handler
2808
 db 'vpmovsxwd',23h
2818
 db 'vpmovsxwd',23h
2809
 dw avx_pmovsxwd_instruction-instruction_handler
2819
 dw avx_pmovsxwd_instruction-instruction_handler
2810
 db 'vpmovsxwq',24h
2820
 db 'vpmovsxwq',24h
2811
 dw avx_pmovsxwq_instruction-instruction_handler
2821
 dw avx_pmovsxwq_instruction-instruction_handler
2812
 db 'vpmovzxbd',31h
2822
 db 'vpmovzxbd',31h
2813
 dw avx_pmovsxbd_instruction-instruction_handler
2823
 dw avx_pmovsxbd_instruction-instruction_handler
2814
 db 'vpmovzxbq',32h
2824
 db 'vpmovzxbq',32h
2815
 dw avx_pmovsxbq_instruction-instruction_handler
2825
 dw avx_pmovsxbq_instruction-instruction_handler
2816
 db 'vpmovzxbw',30h
2826
 db 'vpmovzxbw',30h
2817
 dw avx_pmovsxbw_instruction-instruction_handler
2827
 dw avx_pmovsxbw_instruction-instruction_handler
2818
 db 'vpmovzxdq',35h
2828
 db 'vpmovzxdq',35h
2819
 dw avx_pmovsxdq_instruction-instruction_handler
2829
 dw avx_pmovsxdq_instruction-instruction_handler
2820
 db 'vpmovzxwd',33h
2830
 db 'vpmovzxwd',33h
2821
 dw avx_pmovsxwd_instruction-instruction_handler
2831
 dw avx_pmovsxwd_instruction-instruction_handler
2822
 db 'vpmovzxwq',34h
2832
 db 'vpmovzxwq',34h
2823
 dw avx_pmovsxwq_instruction-instruction_handler
2833
 dw avx_pmovsxwq_instruction-instruction_handler
2824
 db 'vpmulhrsw',0Bh
2834
 db 'vpmulhrsw',0Bh
2825
 dw avx_instruction_38-instruction_handler
2835
 dw avx_instruction_38-instruction_handler
2826
 db 'vunpckhpd',15h
2836
 db 'vunpckhpd',15h
2827
 dw avx_pd_instruction-instruction_handler
2837
 dw avx_pd_instruction-instruction_handler
2828
 db 'vunpckhps',15h
2838
 db 'vunpckhps',15h
2829
 dw avx_ps_instruction-instruction_handler
2839
 dw avx_ps_instruction-instruction_handler
2830
 db 'vunpcklpd',14h
2840
 db 'vunpcklpd',14h
2831
 dw avx_pd_instruction-instruction_handler
2841
 dw avx_pd_instruction-instruction_handler
2832
 db 'vunpcklps',14h
2842
 db 'vunpcklps',14h
2833
 dw avx_ps_instruction-instruction_handler
2843
 dw avx_ps_instruction-instruction_handler
2834
instructions_10:
2844
instructions_10:
2835
 db 'aesdeclast',0DFh
2845
 db 'aesdeclast',0DFh
2836
 dw sse4_instruction_38-instruction_handler
2846
 dw sse4_instruction_38-instruction_handler
2837
 db 'aesenclast',0DDh
2847
 db 'aesenclast',0DDh
2838
 dw sse4_instruction_38-instruction_handler
2848
 dw sse4_instruction_38-instruction_handler
2839
 db 'cmpunordpd',3
2849
 db 'cmpunordpd',3
2840
 dw cmp_pd_instruction-instruction_handler
2850
 dw cmp_pd_instruction-instruction_handler
2841
 db 'cmpunordps',3
2851
 db 'cmpunordps',3
2842
 dw cmp_ps_instruction-instruction_handler
2852
 dw cmp_ps_instruction-instruction_handler
2843
 db 'cmpunordsd',3
2853
 db 'cmpunordsd',3
2844
 dw cmp_sd_instruction-instruction_handler
2854
 dw cmp_sd_instruction-instruction_handler
2845
 db 'cmpunordss',3
2855
 db 'cmpunordss',3
2846
 dw cmp_ss_instruction-instruction_handler
2856
 dw cmp_ss_instruction-instruction_handler
2847
 db 'cmpxchg16b',16
2857
 db 'cmpxchg16b',16
2848
 dw cmpxchgx_instruction-instruction_handler
2858
 dw cmpxchgx_instruction-instruction_handler
2849
 db 'loadall286',5
2859
 db 'loadall286',5
2850
 dw simple_extended_instruction-instruction_handler
2860
 dw simple_extended_instruction-instruction_handler
2851
 db 'loadall386',7
2861
 db 'loadall386',7
2852
 dw simple_extended_instruction-instruction_handler
2862
 dw simple_extended_instruction-instruction_handler
2853
 db 'maskmovdqu',0
2863
 db 'maskmovdqu',0
2854
 dw maskmovdqu_instruction-instruction_handler
2864
 dw maskmovdqu_instruction-instruction_handler
2855
 db 'phminposuw',41h
2865
 db 'phminposuw',41h
2856
 dw sse4_instruction_38-instruction_handler
2866
 dw sse4_instruction_38-instruction_handler
2857
 db 'prefetcht0',1
2867
 db 'prefetcht0',1
2858
 dw prefetch_instruction-instruction_handler
2868
 dw prefetch_instruction-instruction_handler
2859
 db 'prefetcht1',2
2869
 db 'prefetcht1',2
2860
 dw prefetch_instruction-instruction_handler
2870
 dw prefetch_instruction-instruction_handler
2861
 db 'prefetcht2',3
2871
 db 'prefetcht2',3
2862
 dw prefetch_instruction-instruction_handler
2872
 dw prefetch_instruction-instruction_handler
2863
 db 'punpckhqdq',6Dh
2873
 db 'punpckhqdq',6Dh
2864
 dw sse_pd_instruction-instruction_handler
2874
 dw sse_pd_instruction-instruction_handler
2865
 db 'punpcklqdq',6Ch
2875
 db 'punpcklqdq',6Ch
2866
 dw sse_pd_instruction-instruction_handler
2876
 dw sse_pd_instruction-instruction_handler
2867
 db 'vcmptruepd',0Fh
2877
 db 'vcmptruepd',0Fh
2868
 dw avx_cmp_pd_instruction-instruction_handler
2878
 dw avx_cmp_pd_instruction-instruction_handler
2869
 db 'vcmptrueps',0Fh
2879
 db 'vcmptrueps',0Fh
2870
 dw avx_cmp_ps_instruction-instruction_handler
2880
 dw avx_cmp_ps_instruction-instruction_handler
2871
 db 'vcmptruesd',0Fh
2881
 db 'vcmptruesd',0Fh
2872
 dw avx_cmp_sd_instruction-instruction_handler
2882
 dw avx_cmp_sd_instruction-instruction_handler
2873
 db 'vcmptruess',0Fh
2883
 db 'vcmptruess',0Fh
2874
 dw avx_cmp_ss_instruction-instruction_handler
2884
 dw avx_cmp_ss_instruction-instruction_handler
2875
 db 'vcvttpd2dq',0E6h
2885
 db 'vcvttpd2dq',0E6h
2876
 dw avx_cvtpd2ps_instruction-instruction_handler
2886
 dw avx_cvtpd2ps_instruction-instruction_handler
2877
 db 'vcvttps2dq',5Bh
2887
 db 'vcvttps2dq',5Bh
2878
 dw avx_cvttps2dq_instruction-instruction_handler
2888
 dw avx_cvttps2dq_instruction-instruction_handler
2879
 db 'vcvttsd2si',2Ch
2889
 db 'vcvttsd2si',2Ch
2880
 dw avx_cvtsd2si_instruction-instruction_handler
2890
 dw avx_cvtsd2si_instruction-instruction_handler
2881
 db 'vcvttss2si',2Ch
2891
 db 'vcvttss2si',2Ch
2882
 dw avx_cvtss2si_instruction-instruction_handler
2892
 dw avx_cvtss2si_instruction-instruction_handler
2883
 db 'vextractps',0
2893
 db 'vextractps',0
2884
 dw avx_extractps_instruction-instruction_handler
2894
 dw avx_extractps_instruction-instruction_handler
2885
 db 'vgatherdpd',92h
2895
 db 'vgatherdpd',92h
2886
 dw gather_instruction_pd-instruction_handler
2896
 dw gather_instruction_pd-instruction_handler
2887
 db 'vgatherdps',92h
2897
 db 'vgatherdps',92h
2888
 dw gather_instruction_ps-instruction_handler
2898
 dw gather_instruction_ps-instruction_handler
2889
 db 'vgatherqpd',93h
2899
 db 'vgatherqpd',93h
2890
 dw gather_instruction_pd-instruction_handler
2900
 dw gather_instruction_pd-instruction_handler
2891
 db 'vgatherqps',93h
2901
 db 'vgatherqps',93h
2892
 dw gather_instruction_ps-instruction_handler
2902
 dw gather_instruction_ps-instruction_handler
2893
 db 'vmaskmovpd',2Dh
2903
 db 'vmaskmovpd',2Dh
2894
 dw avx_maskmov_instruction-instruction_handler
2904
 dw avx_maskmov_instruction-instruction_handler
2895
 db 'vmaskmovps',2Ch
2905
 db 'vmaskmovps',2Ch
2896
 dw avx_maskmov_instruction-instruction_handler
2906
 dw avx_maskmov_instruction-instruction_handler
2897
 db 'vpclmulqdq',-1
2907
 db 'vpclmulqdq',-1
2898
 dw avx_pclmulqdq_instruction-instruction_handler
2908
 dw avx_pclmulqdq_instruction-instruction_handler
2899
 db 'vpcmpestri',61h
2909
 db 'vpcmpestri',61h
2900
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2910
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2901
 db 'vpcmpestrm',60h
2911
 db 'vpcmpestrm',60h
2902
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2912
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2903
 db 'vpcmpistri',63h
2913
 db 'vpcmpistri',63h
2904
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2914
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2905
 db 'vpcmpistrm',62h
2915
 db 'vpcmpistrm',62h
2906
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2916
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
2907
 db 'vpcomnequb',5
2917
 db 'vpcomnequb',5
2908
 dw xop_pcom_ub_instruction-instruction_handler
2918
 dw xop_pcom_ub_instruction-instruction_handler
2909
 db 'vpcomnequd',5
2919
 db 'vpcomnequd',5
2910
 dw xop_pcom_ud_instruction-instruction_handler
2920
 dw xop_pcom_ud_instruction-instruction_handler
2911
 db 'vpcomnequq',5
2921
 db 'vpcomnequq',5
2912
 dw xop_pcom_uq_instruction-instruction_handler
2922
 dw xop_pcom_uq_instruction-instruction_handler
2913
 db 'vpcomnequw',5
2923
 db 'vpcomnequw',5
2914
 dw xop_pcom_uw_instruction-instruction_handler
2924
 dw xop_pcom_uw_instruction-instruction_handler
2915
 db 'vpcomtrueb',7
2925
 db 'vpcomtrueb',7
2916
 dw xop_pcom_b_instruction-instruction_handler
2926
 dw xop_pcom_b_instruction-instruction_handler
2917
 db 'vpcomtrued',7
2927
 db 'vpcomtrued',7
2918
 dw xop_pcom_d_instruction-instruction_handler
2928
 dw xop_pcom_d_instruction-instruction_handler
2919
 db 'vpcomtrueq',7
2929
 db 'vpcomtrueq',7
2920
 dw xop_pcom_q_instruction-instruction_handler
2930
 dw xop_pcom_q_instruction-instruction_handler
2921
 db 'vpcomtruew',7
2931
 db 'vpcomtruew',7
2922
 dw xop_pcom_w_instruction-instruction_handler
2932
 dw xop_pcom_w_instruction-instruction_handler
2923
 db 'vperm2f128',6
2933
 db 'vperm2f128',6
2924
 dw avx_perm2f128_instruction-instruction_handler
2934
 dw avx_perm2f128_instruction-instruction_handler
2925
 db 'vperm2i128',46h
2935
 db 'vperm2i128',46h
2926
 dw avx_perm2f128_instruction-instruction_handler
2936
 dw avx_perm2f128_instruction-instruction_handler
2927
 db 'vpermil2pd',49h
2937
 db 'vpermil2pd',49h
2928
 dw vpermil2_instruction-instruction_handler
2938
 dw vpermil2_instruction-instruction_handler
2929
 db 'vpermil2ps',48h
2939
 db 'vpermil2ps',48h
2930
 dw vpermil2_instruction-instruction_handler
2940
 dw vpermil2_instruction-instruction_handler
2931
 db 'vpgatherdd',90h
2941
 db 'vpgatherdd',90h
2932
 dw gather_instruction_ps-instruction_handler
2942
 dw gather_instruction_ps-instruction_handler
2933
 db 'vpgatherdq',90h
2943
 db 'vpgatherdq',90h
2934
 dw gather_instruction_pd-instruction_handler
2944
 dw gather_instruction_pd-instruction_handler
2935
 db 'vpgatherqd',91h
2945
 db 'vpgatherqd',91h
2936
 dw gather_instruction_ps-instruction_handler
2946
 dw gather_instruction_ps-instruction_handler
2937
 db 'vpgatherqq',91h
2947
 db 'vpgatherqq',91h
2938
 dw gather_instruction_pd-instruction_handler
2948
 dw gather_instruction_pd-instruction_handler
2939
 db 'vpmacssdqh',8Fh
2949
 db 'vpmacssdqh',8Fh
2940
 dw xop_triple_source_128bit_instruction-instruction_handler
2950
 dw xop_triple_source_128bit_instruction-instruction_handler
2941
 db 'vpmacssdql',87h
2951
 db 'vpmacssdql',87h
2942
 dw xop_triple_source_128bit_instruction-instruction_handler
2952
 dw xop_triple_source_128bit_instruction-instruction_handler
2943
 db 'vpmadcsswd',0A6h
2953
 db 'vpmadcsswd',0A6h
2944
 dw xop_triple_source_128bit_instruction-instruction_handler
2954
 dw xop_triple_source_128bit_instruction-instruction_handler
2945
 db 'vpmaddubsw',4
2955
 db 'vpmaddubsw',4
2946
 dw avx_instruction_38-instruction_handler
2956
 dw avx_instruction_38-instruction_handler
2947
 db 'vpmaskmovd',8Ch
2957
 db 'vpmaskmovd',8Ch
2948
 dw avx_maskmov_instruction-instruction_handler
2958
 dw avx_maskmov_instruction-instruction_handler
2949
 db 'vpmaskmovq',8Ch
2959
 db 'vpmaskmovq',8Ch
2950
 dw avx_maskmov_w1_instruction-instruction_handler
2960
 dw avx_maskmov_w1_instruction-instruction_handler
2951
 db 'vpunpckhbw',68h
2961
 db 'vpunpckhbw',68h
2952
 dw avx_pd_instruction-instruction_handler
2962
 dw avx_pd_instruction-instruction_handler
2953
 db 'vpunpckhdq',6Ah
2963
 db 'vpunpckhdq',6Ah
2954
 dw avx_pd_instruction-instruction_handler
2964
 dw avx_pd_instruction-instruction_handler
2955
 db 'vpunpckhwd',69h
2965
 db 'vpunpckhwd',69h
2956
 dw avx_pd_instruction-instruction_handler
2966
 dw avx_pd_instruction-instruction_handler
2957
 db 'vpunpcklbw',60h
2967
 db 'vpunpcklbw',60h
2958
 dw avx_pd_instruction-instruction_handler
2968
 dw avx_pd_instruction-instruction_handler
2959
 db 'vpunpckldq',62h
2969
 db 'vpunpckldq',62h
2960
 dw avx_pd_instruction-instruction_handler
2970
 dw avx_pd_instruction-instruction_handler
2961
 db 'vpunpcklwd',61h
2971
 db 'vpunpcklwd',61h
2962
 dw avx_pd_instruction-instruction_handler
2972
 dw avx_pd_instruction-instruction_handler
2963
 db 'vzeroupper',77h
2973
 db 'vzeroupper',77h
2964
 dw vzeroupper_instruction-instruction_handler
2974
 dw vzeroupper_instruction-instruction_handler
2965
 db 'xsaveopt64',110b
2975
 db 'xsaveopt64',110b
2966
 dw fxsave_instruction_64bit-instruction_handler
2976
 dw fxsave_instruction_64bit-instruction_handler
2967
instructions_11:
2977
instructions_11:
2968
 db 'pclmulhqhdq',10001b
2978
 db 'pclmulhqhdq',10001b
2969
 dw pclmulqdq_instruction-instruction_handler
2979
 dw pclmulqdq_instruction-instruction_handler
2970
 db 'pclmullqhdq',10000b
2980
 db 'pclmullqhdq',10000b
2971
 dw pclmulqdq_instruction-instruction_handler
2981
 dw pclmulqdq_instruction-instruction_handler
2972
 db 'prefetchnta',0
2982
 db 'prefetchnta',0
2973
 dw prefetch_instruction-instruction_handler
2983
 dw prefetch_instruction-instruction_handler
2974
 db 'vaesdeclast',0DFh
2984
 db 'vaesdeclast',0DFh
2975
 dw avx_128bit_instruction_38-instruction_handler
2985
 dw avx_128bit_instruction_38-instruction_handler
2976
 db 'vaesenclast',0DDh
2986
 db 'vaesenclast',0DDh
2977
 dw avx_128bit_instruction_38-instruction_handler
2987
 dw avx_128bit_instruction_38-instruction_handler
2978
 db 'vcmpeq_ospd',10h
2988
 db 'vcmpeq_ospd',10h
2979
 dw avx_cmp_pd_instruction-instruction_handler
2989
 dw avx_cmp_pd_instruction-instruction_handler
2980
 db 'vcmpeq_osps',10h
2990
 db 'vcmpeq_osps',10h
2981
 dw avx_cmp_ps_instruction-instruction_handler
2991
 dw avx_cmp_ps_instruction-instruction_handler
2982
 db 'vcmpeq_ossd',10h
2992
 db 'vcmpeq_ossd',10h
2983
 dw avx_cmp_sd_instruction-instruction_handler
2993
 dw avx_cmp_sd_instruction-instruction_handler
2984
 db 'vcmpeq_osss',10h
2994
 db 'vcmpeq_osss',10h
2985
 dw avx_cmp_ss_instruction-instruction_handler
2995
 dw avx_cmp_ss_instruction-instruction_handler
2986
 db 'vcmpeq_uqpd',8
2996
 db 'vcmpeq_uqpd',8
2987
 dw avx_cmp_pd_instruction-instruction_handler
2997
 dw avx_cmp_pd_instruction-instruction_handler
2988
 db 'vcmpeq_uqps',8
2998
 db 'vcmpeq_uqps',8
2989
 dw avx_cmp_ps_instruction-instruction_handler
2999
 dw avx_cmp_ps_instruction-instruction_handler
2990
 db 'vcmpeq_uqsd',8
3000
 db 'vcmpeq_uqsd',8
2991
 dw avx_cmp_sd_instruction-instruction_handler
3001
 dw avx_cmp_sd_instruction-instruction_handler
2992
 db 'vcmpeq_uqss',8
3002
 db 'vcmpeq_uqss',8
2993
 dw avx_cmp_ss_instruction-instruction_handler
3003
 dw avx_cmp_ss_instruction-instruction_handler
2994
 db 'vcmpeq_uspd',18h
3004
 db 'vcmpeq_uspd',18h
2995
 dw avx_cmp_pd_instruction-instruction_handler
3005
 dw avx_cmp_pd_instruction-instruction_handler
2996
 db 'vcmpeq_usps',18h
3006
 db 'vcmpeq_usps',18h
2997
 dw avx_cmp_ps_instruction-instruction_handler
3007
 dw avx_cmp_ps_instruction-instruction_handler
2998
 db 'vcmpeq_ussd',18h
3008
 db 'vcmpeq_ussd',18h
2999
 dw avx_cmp_sd_instruction-instruction_handler
3009
 dw avx_cmp_sd_instruction-instruction_handler
3000
 db 'vcmpeq_usss',18h
3010
 db 'vcmpeq_usss',18h
3001
 dw avx_cmp_ss_instruction-instruction_handler
3011
 dw avx_cmp_ss_instruction-instruction_handler
3002
 db 'vcmpfalsepd',0Bh
3012
 db 'vcmpfalsepd',0Bh
3003
 dw avx_cmp_pd_instruction-instruction_handler
3013
 dw avx_cmp_pd_instruction-instruction_handler
3004
 db 'vcmpfalseps',0Bh
3014
 db 'vcmpfalseps',0Bh
3005
 dw avx_cmp_ps_instruction-instruction_handler
3015
 dw avx_cmp_ps_instruction-instruction_handler
3006
 db 'vcmpfalsesd',0Bh
3016
 db 'vcmpfalsesd',0Bh
3007
 dw avx_cmp_sd_instruction-instruction_handler
3017
 dw avx_cmp_sd_instruction-instruction_handler
3008
 db 'vcmpfalsess',0Bh
3018
 db 'vcmpfalsess',0Bh
3009
 dw avx_cmp_ss_instruction-instruction_handler
3019
 dw avx_cmp_ss_instruction-instruction_handler
3010
 db 'vcmpge_oqpd',1Dh
3020
 db 'vcmpge_oqpd',1Dh
3011
 dw avx_cmp_pd_instruction-instruction_handler
3021
 dw avx_cmp_pd_instruction-instruction_handler
3012
 db 'vcmpge_oqps',1Dh
3022
 db 'vcmpge_oqps',1Dh
3013
 dw avx_cmp_ps_instruction-instruction_handler
3023
 dw avx_cmp_ps_instruction-instruction_handler
3014
 db 'vcmpge_oqsd',1Dh
3024
 db 'vcmpge_oqsd',1Dh
3015
 dw avx_cmp_sd_instruction-instruction_handler
3025
 dw avx_cmp_sd_instruction-instruction_handler
3016
 db 'vcmpge_oqss',1Dh
3026
 db 'vcmpge_oqss',1Dh
3017
 dw avx_cmp_ss_instruction-instruction_handler
3027
 dw avx_cmp_ss_instruction-instruction_handler
3018
 db 'vcmpgt_oqpd',1Eh
3028
 db 'vcmpgt_oqpd',1Eh
3019
 dw avx_cmp_pd_instruction-instruction_handler
3029
 dw avx_cmp_pd_instruction-instruction_handler
3020
 db 'vcmpgt_oqps',1Eh
3030
 db 'vcmpgt_oqps',1Eh
3021
 dw avx_cmp_ps_instruction-instruction_handler
3031
 dw avx_cmp_ps_instruction-instruction_handler
3022
 db 'vcmpgt_oqsd',1Eh
3032
 db 'vcmpgt_oqsd',1Eh
3023
 dw avx_cmp_sd_instruction-instruction_handler
3033
 dw avx_cmp_sd_instruction-instruction_handler
3024
 db 'vcmpgt_oqss',1Eh
3034
 db 'vcmpgt_oqss',1Eh
3025
 dw avx_cmp_ss_instruction-instruction_handler
3035
 dw avx_cmp_ss_instruction-instruction_handler
3026
 db 'vcmple_oqpd',12h
3036
 db 'vcmple_oqpd',12h
3027
 dw avx_cmp_pd_instruction-instruction_handler
3037
 dw avx_cmp_pd_instruction-instruction_handler
3028
 db 'vcmple_oqps',12h
3038
 db 'vcmple_oqps',12h
3029
 dw avx_cmp_ps_instruction-instruction_handler
3039
 dw avx_cmp_ps_instruction-instruction_handler
3030
 db 'vcmple_oqsd',12h
3040
 db 'vcmple_oqsd',12h
3031
 dw avx_cmp_sd_instruction-instruction_handler
3041
 dw avx_cmp_sd_instruction-instruction_handler
3032
 db 'vcmple_oqss',12h
3042
 db 'vcmple_oqss',12h
3033
 dw avx_cmp_ss_instruction-instruction_handler
3043
 dw avx_cmp_ss_instruction-instruction_handler
3034
 db 'vcmplt_oqpd',11h
3044
 db 'vcmplt_oqpd',11h
3035
 dw avx_cmp_pd_instruction-instruction_handler
3045
 dw avx_cmp_pd_instruction-instruction_handler
3036
 db 'vcmplt_oqps',11h
3046
 db 'vcmplt_oqps',11h
3037
 dw avx_cmp_ps_instruction-instruction_handler
3047
 dw avx_cmp_ps_instruction-instruction_handler
3038
 db 'vcmplt_oqsd',11h
3048
 db 'vcmplt_oqsd',11h
3039
 dw avx_cmp_sd_instruction-instruction_handler
3049
 dw avx_cmp_sd_instruction-instruction_handler
3040
 db 'vcmplt_oqss',11h
3050
 db 'vcmplt_oqss',11h
3041
 dw avx_cmp_ss_instruction-instruction_handler
3051
 dw avx_cmp_ss_instruction-instruction_handler
3042
 db 'vcmpord_spd',17h
3052
 db 'vcmpord_spd',17h
3043
 dw avx_cmp_pd_instruction-instruction_handler
3053
 dw avx_cmp_pd_instruction-instruction_handler
3044
 db 'vcmpord_sps',17h
3054
 db 'vcmpord_sps',17h
3045
 dw avx_cmp_ps_instruction-instruction_handler
3055
 dw avx_cmp_ps_instruction-instruction_handler
3046
 db 'vcmpord_ssd',17h
3056
 db 'vcmpord_ssd',17h
3047
 dw avx_cmp_sd_instruction-instruction_handler
3057
 dw avx_cmp_sd_instruction-instruction_handler
3048
 db 'vcmpord_sss',17h
3058
 db 'vcmpord_sss',17h
3049
 dw avx_cmp_ss_instruction-instruction_handler
3059
 dw avx_cmp_ss_instruction-instruction_handler
3050
 db 'vcmpunordpd',3
3060
 db 'vcmpunordpd',3
3051
 dw avx_cmp_pd_instruction-instruction_handler
3061
 dw avx_cmp_pd_instruction-instruction_handler
3052
 db 'vcmpunordps',3
3062
 db 'vcmpunordps',3
3053
 dw avx_cmp_ps_instruction-instruction_handler
3063
 dw avx_cmp_ps_instruction-instruction_handler
3054
 db 'vcmpunordsd',3
3064
 db 'vcmpunordsd',3
3055
 dw avx_cmp_sd_instruction-instruction_handler
3065
 dw avx_cmp_sd_instruction-instruction_handler
3056
 db 'vcmpunordss',3
3066
 db 'vcmpunordss',3
3057
 dw avx_cmp_ss_instruction-instruction_handler
3067
 dw avx_cmp_ss_instruction-instruction_handler
3058
 db 'vfmadd132pd',98h
3068
 db 'vfmadd132pd',98h
3059
 dw fma_instruction_pd-instruction_handler
3069
 dw fma_instruction_pd-instruction_handler
3060
 db 'vfmadd132ps',98h
3070
 db 'vfmadd132ps',98h
3061
 dw fma_instruction_ps-instruction_handler
3071
 dw fma_instruction_ps-instruction_handler
3062
 db 'vfmadd132sd',99h
3072
 db 'vfmadd132sd',99h
3063
 dw fma_instruction_sd-instruction_handler
3073
 dw fma_instruction_sd-instruction_handler
3064
 db 'vfmadd132ss',99h
3074
 db 'vfmadd132ss',99h
3065
 dw fma_instruction_ss-instruction_handler
3075
 dw fma_instruction_ss-instruction_handler
3066
 db 'vfmadd213pd',0A8h
3076
 db 'vfmadd213pd',0A8h
3067
 dw fma_instruction_pd-instruction_handler
3077
 dw fma_instruction_pd-instruction_handler
3068
 db 'vfmadd213ps',0A8h
3078
 db 'vfmadd213ps',0A8h
3069
 dw fma_instruction_ps-instruction_handler
3079
 dw fma_instruction_ps-instruction_handler
3070
 db 'vfmadd213sd',0A9h
3080
 db 'vfmadd213sd',0A9h
3071
 dw fma_instruction_sd-instruction_handler
3081
 dw fma_instruction_sd-instruction_handler
3072
 db 'vfmadd213ss',0A9h
3082
 db 'vfmadd213ss',0A9h
3073
 dw fma_instruction_ss-instruction_handler
3083
 dw fma_instruction_ss-instruction_handler
3074
 db 'vfmadd231pd',0B8h
3084
 db 'vfmadd231pd',0B8h
3075
 dw fma_instruction_pd-instruction_handler
3085
 dw fma_instruction_pd-instruction_handler
3076
 db 'vfmadd231ps',0B8h
3086
 db 'vfmadd231ps',0B8h
3077
 dw fma_instruction_ps-instruction_handler
3087
 dw fma_instruction_ps-instruction_handler
3078
 db 'vfmadd231sd',0B9h
3088
 db 'vfmadd231sd',0B9h
3079
 dw fma_instruction_sd-instruction_handler
3089
 dw fma_instruction_sd-instruction_handler
3080
 db 'vfmadd231ss',0B9h
3090
 db 'vfmadd231ss',0B9h
3081
 dw fma_instruction_ss-instruction_handler
3091
 dw fma_instruction_ss-instruction_handler
3082
 db 'vfmaddsubpd',5Dh
3092
 db 'vfmaddsubpd',5Dh
3083
 dw fma4_instruction_p-instruction_handler
3093
 dw fma4_instruction_p-instruction_handler
3084
 db 'vfmaddsubps',5Ch
3094
 db 'vfmaddsubps',5Ch
3085
 dw fma4_instruction_p-instruction_handler
3095
 dw fma4_instruction_p-instruction_handler
3086
 db 'vfmsub132pd',9Ah
3096
 db 'vfmsub132pd',9Ah
3087
 dw fma_instruction_pd-instruction_handler
3097
 dw fma_instruction_pd-instruction_handler
3088
 db 'vfmsub132ps',9Ah
3098
 db 'vfmsub132ps',9Ah
3089
 dw fma_instruction_ps-instruction_handler
3099
 dw fma_instruction_ps-instruction_handler
3090
 db 'vfmsub132sd',9Bh
3100
 db 'vfmsub132sd',9Bh
3091
 dw fma_instruction_sd-instruction_handler
3101
 dw fma_instruction_sd-instruction_handler
3092
 db 'vfmsub132ss',9Bh
3102
 db 'vfmsub132ss',9Bh
3093
 dw fma_instruction_ss-instruction_handler
3103
 dw fma_instruction_ss-instruction_handler
3094
 db 'vfmsub213pd',0AAh
3104
 db 'vfmsub213pd',0AAh
3095
 dw fma_instruction_pd-instruction_handler
3105
 dw fma_instruction_pd-instruction_handler
3096
 db 'vfmsub213ps',0AAh
3106
 db 'vfmsub213ps',0AAh
3097
 dw fma_instruction_ps-instruction_handler
3107
 dw fma_instruction_ps-instruction_handler
3098
 db 'vfmsub213sd',0ABh
3108
 db 'vfmsub213sd',0ABh
3099
 dw fma_instruction_sd-instruction_handler
3109
 dw fma_instruction_sd-instruction_handler
3100
 db 'vfmsub213ss',0ABh
3110
 db 'vfmsub213ss',0ABh
3101
 dw fma_instruction_ss-instruction_handler
3111
 dw fma_instruction_ss-instruction_handler
3102
 db 'vfmsub231pd',0BAh
3112
 db 'vfmsub231pd',0BAh
3103
 dw fma_instruction_pd-instruction_handler
3113
 dw fma_instruction_pd-instruction_handler
3104
 db 'vfmsub231ps',0BAh
3114
 db 'vfmsub231ps',0BAh
3105
 dw fma_instruction_ps-instruction_handler
3115
 dw fma_instruction_ps-instruction_handler
3106
 db 'vfmsub231sd',0BBh
3116
 db 'vfmsub231sd',0BBh
3107
 dw fma_instruction_sd-instruction_handler
3117
 dw fma_instruction_sd-instruction_handler
3108
 db 'vfmsub231ss',0BBh
3118
 db 'vfmsub231ss',0BBh
3109
 dw fma_instruction_ss-instruction_handler
3119
 dw fma_instruction_ss-instruction_handler
3110
 db 'vfmsubaddpd',5Fh
3120
 db 'vfmsubaddpd',5Fh
3111
 dw fma4_instruction_p-instruction_handler
3121
 dw fma4_instruction_p-instruction_handler
3112
 db 'vfmsubaddps',5Eh
3122
 db 'vfmsubaddps',5Eh
3113
 dw fma4_instruction_p-instruction_handler
3123
 dw fma4_instruction_p-instruction_handler
3114
 db 'vinsertf128',18h
3124
 db 'vinsertf128',18h
3115
 dw avx_insertf128_instruction-instruction_handler
3125
 dw avx_insertf128_instruction-instruction_handler
3116
 db 'vinserti128',38h
3126
 db 'vinserti128',38h
3117
 dw avx_insertf128_instruction-instruction_handler
3127
 dw avx_insertf128_instruction-instruction_handler
3118
 db 'vmaskmovdqu',0
3128
 db 'vmaskmovdqu',0
3119
 dw avx_maskmovdqu_instruction-instruction_handler
3129
 dw avx_maskmovdqu_instruction-instruction_handler
3120
 db 'vpcomfalseb',6
3130
 db 'vpcomfalseb',6
3121
 dw xop_pcom_b_instruction-instruction_handler
3131
 dw xop_pcom_b_instruction-instruction_handler
3122
 db 'vpcomfalsed',6
3132
 db 'vpcomfalsed',6
3123
 dw xop_pcom_d_instruction-instruction_handler
3133
 dw xop_pcom_d_instruction-instruction_handler
3124
 db 'vpcomfalseq',6
3134
 db 'vpcomfalseq',6
3125
 dw xop_pcom_q_instruction-instruction_handler
3135
 dw xop_pcom_q_instruction-instruction_handler
3126
 db 'vpcomfalsew',6
3136
 db 'vpcomfalsew',6
3127
 dw xop_pcom_w_instruction-instruction_handler
3137
 dw xop_pcom_w_instruction-instruction_handler
3128
 db 'vpcomtrueub',7
3138
 db 'vpcomtrueub',7
3129
 dw xop_pcom_ub_instruction-instruction_handler
3139
 dw xop_pcom_ub_instruction-instruction_handler
3130
 db 'vpcomtrueud',7
3140
 db 'vpcomtrueud',7
3131
 dw xop_pcom_ud_instruction-instruction_handler
3141
 dw xop_pcom_ud_instruction-instruction_handler
3132
 db 'vpcomtrueuq',7
3142
 db 'vpcomtrueuq',7
3133
 dw xop_pcom_uq_instruction-instruction_handler
3143
 dw xop_pcom_uq_instruction-instruction_handler
3134
 db 'vpcomtrueuw',7
3144
 db 'vpcomtrueuw',7
3135
 dw xop_pcom_uw_instruction-instruction_handler
3145
 dw xop_pcom_uw_instruction-instruction_handler
3136
 db 'vphminposuw',41h
3146
 db 'vphminposuw',41h
3137
 dw avx_single_source_instruction_38-instruction_handler
3147
 dw avx_single_source_instruction_38-instruction_handler
3138
 db 'vpunpckhqdq',6Dh
3148
 db 'vpunpckhqdq',6Dh
3139
 dw avx_pd_instruction-instruction_handler
3149
 dw avx_pd_instruction-instruction_handler
3140
 db 'vpunpcklqdq',6Ch
3150
 db 'vpunpcklqdq',6Ch
3141
 dw avx_pd_instruction-instruction_handler
3151
 dw avx_pd_instruction-instruction_handler
3142
instructions_12:
3152
instructions_12:
3143
 db 'pclmulhqhqdq',10001b
3153
 db 'pclmulhqhqdq',10001b
3144
 dw pclmulqdq_instruction-instruction_handler
3154
 dw pclmulqdq_instruction-instruction_handler
3145
 db 'pclmulhqlqdq',1
3155
 db 'pclmulhqlqdq',1
3146
 dw pclmulqdq_instruction-instruction_handler
3156
 dw pclmulqdq_instruction-instruction_handler
3147
 db 'pclmullqhqdq',10000b
3157
 db 'pclmullqhqdq',10000b
3148
 dw pclmulqdq_instruction-instruction_handler
3158
 dw pclmulqdq_instruction-instruction_handler
3149
 db 'pclmullqlqdq',0
3159
 db 'pclmullqlqdq',0
3150
 dw pclmulqdq_instruction-instruction_handler
3160
 dw pclmulqdq_instruction-instruction_handler
3151
 db 'vbroadcastsd',19h
3161
 db 'vbroadcastsd',19h
3152
 dw avx_broadcastsd_instruction-instruction_handler
3162
 dw avx_broadcastsd_instruction-instruction_handler
3153
 db 'vbroadcastss',18h
3163
 db 'vbroadcastss',18h
3154
 dw avx_broadcastss_instruction-instruction_handler
3164
 dw avx_broadcastss_instruction-instruction_handler
3155
 db 'vcmpneq_oqpd',0Ch
3165
 db 'vcmpneq_oqpd',0Ch
3156
 dw avx_cmp_pd_instruction-instruction_handler
3166
 dw avx_cmp_pd_instruction-instruction_handler
3157
 db 'vcmpneq_oqps',0Ch
3167
 db 'vcmpneq_oqps',0Ch
3158
 dw avx_cmp_ps_instruction-instruction_handler
3168
 dw avx_cmp_ps_instruction-instruction_handler
3159
 db 'vcmpneq_oqsd',0Ch
3169
 db 'vcmpneq_oqsd',0Ch
3160
 dw avx_cmp_sd_instruction-instruction_handler
3170
 dw avx_cmp_sd_instruction-instruction_handler
3161
 db 'vcmpneq_oqss',0Ch
3171
 db 'vcmpneq_oqss',0Ch
3162
 dw avx_cmp_ss_instruction-instruction_handler
3172
 dw avx_cmp_ss_instruction-instruction_handler
3163
 db 'vcmpneq_ospd',1Ch
3173
 db 'vcmpneq_ospd',1Ch
3164
 dw avx_cmp_pd_instruction-instruction_handler
3174
 dw avx_cmp_pd_instruction-instruction_handler
3165
 db 'vcmpneq_osps',1Ch
3175
 db 'vcmpneq_osps',1Ch
3166
 dw avx_cmp_ps_instruction-instruction_handler
3176
 dw avx_cmp_ps_instruction-instruction_handler
3167
 db 'vcmpneq_ossd',1Ch
3177
 db 'vcmpneq_ossd',1Ch
3168
 dw avx_cmp_sd_instruction-instruction_handler
3178
 dw avx_cmp_sd_instruction-instruction_handler
3169
 db 'vcmpneq_osss',1Ch
3179
 db 'vcmpneq_osss',1Ch
3170
 dw avx_cmp_ss_instruction-instruction_handler
3180
 dw avx_cmp_ss_instruction-instruction_handler
3171
 db 'vcmpneq_uspd',14h
3181
 db 'vcmpneq_uspd',14h
3172
 dw avx_cmp_pd_instruction-instruction_handler
3182
 dw avx_cmp_pd_instruction-instruction_handler
3173
 db 'vcmpneq_usps',14h
3183
 db 'vcmpneq_usps',14h
3174
 dw avx_cmp_ps_instruction-instruction_handler
3184
 dw avx_cmp_ps_instruction-instruction_handler
3175
 db 'vcmpneq_ussd',14h
3185
 db 'vcmpneq_ussd',14h
3176
 dw avx_cmp_sd_instruction-instruction_handler
3186
 dw avx_cmp_sd_instruction-instruction_handler
3177
 db 'vcmpneq_usss',14h
3187
 db 'vcmpneq_usss',14h
3178
 dw avx_cmp_ss_instruction-instruction_handler
3188
 dw avx_cmp_ss_instruction-instruction_handler
3179
 db 'vcmpnge_uqpd',19h
3189
 db 'vcmpnge_uqpd',19h
3180
 dw avx_cmp_pd_instruction-instruction_handler
3190
 dw avx_cmp_pd_instruction-instruction_handler
3181
 db 'vcmpnge_uqps',19h
3191
 db 'vcmpnge_uqps',19h
3182
 dw avx_cmp_ps_instruction-instruction_handler
3192
 dw avx_cmp_ps_instruction-instruction_handler
3183
 db 'vcmpnge_uqsd',19h
3193
 db 'vcmpnge_uqsd',19h
3184
 dw avx_cmp_sd_instruction-instruction_handler
3194
 dw avx_cmp_sd_instruction-instruction_handler
3185
 db 'vcmpnge_uqss',19h
3195
 db 'vcmpnge_uqss',19h
3186
 dw avx_cmp_ss_instruction-instruction_handler
3196
 dw avx_cmp_ss_instruction-instruction_handler
3187
 db 'vcmpngt_uqpd',1Ah
3197
 db 'vcmpngt_uqpd',1Ah
3188
 dw avx_cmp_pd_instruction-instruction_handler
3198
 dw avx_cmp_pd_instruction-instruction_handler
3189
 db 'vcmpngt_uqps',1Ah
3199
 db 'vcmpngt_uqps',1Ah
3190
 dw avx_cmp_ps_instruction-instruction_handler
3200
 dw avx_cmp_ps_instruction-instruction_handler
3191
 db 'vcmpngt_uqsd',1Ah
3201
 db 'vcmpngt_uqsd',1Ah
3192
 dw avx_cmp_sd_instruction-instruction_handler
3202
 dw avx_cmp_sd_instruction-instruction_handler
3193
 db 'vcmpngt_uqss',1Ah
3203
 db 'vcmpngt_uqss',1Ah
3194
 dw avx_cmp_ss_instruction-instruction_handler
3204
 dw avx_cmp_ss_instruction-instruction_handler
3195
 db 'vcmpnle_uqpd',16h
3205
 db 'vcmpnle_uqpd',16h
3196
 dw avx_cmp_pd_instruction-instruction_handler
3206
 dw avx_cmp_pd_instruction-instruction_handler
3197
 db 'vcmpnle_uqps',16h
3207
 db 'vcmpnle_uqps',16h
3198
 dw avx_cmp_ps_instruction-instruction_handler
3208
 dw avx_cmp_ps_instruction-instruction_handler
3199
 db 'vcmpnle_uqsd',16h
3209
 db 'vcmpnle_uqsd',16h
3200
 dw avx_cmp_sd_instruction-instruction_handler
3210
 dw avx_cmp_sd_instruction-instruction_handler
3201
 db 'vcmpnle_uqss',16h
3211
 db 'vcmpnle_uqss',16h
3202
 dw avx_cmp_ss_instruction-instruction_handler
3212
 dw avx_cmp_ss_instruction-instruction_handler
3203
 db 'vcmpnlt_uqpd',15h
3213
 db 'vcmpnlt_uqpd',15h
3204
 dw avx_cmp_pd_instruction-instruction_handler
3214
 dw avx_cmp_pd_instruction-instruction_handler
3205
 db 'vcmpnlt_uqps',15h
3215
 db 'vcmpnlt_uqps',15h
3206
 dw avx_cmp_ps_instruction-instruction_handler
3216
 dw avx_cmp_ps_instruction-instruction_handler
3207
 db 'vcmpnlt_uqsd',15h
3217
 db 'vcmpnlt_uqsd',15h
3208
 dw avx_cmp_sd_instruction-instruction_handler
3218
 dw avx_cmp_sd_instruction-instruction_handler
3209
 db 'vcmpnlt_uqss',15h
3219
 db 'vcmpnlt_uqss',15h
3210
 dw avx_cmp_ss_instruction-instruction_handler
3220
 dw avx_cmp_ss_instruction-instruction_handler
3211
 db 'vextractf128',19h
3221
 db 'vextractf128',19h
3212
 dw avx_extractf128_instruction-instruction_handler
3222
 dw avx_extractf128_instruction-instruction_handler
3213
 db 'vextracti128',39h
3223
 db 'vextracti128',39h
3214
 dw avx_extractf128_instruction-instruction_handler
3224
 dw avx_extractf128_instruction-instruction_handler
3215
 db 'vfnmadd132pd',9Ch
3225
 db 'vfnmadd132pd',9Ch
3216
 dw fma_instruction_pd-instruction_handler
3226
 dw fma_instruction_pd-instruction_handler
3217
 db 'vfnmadd132ps',9Ch
3227
 db 'vfnmadd132ps',9Ch
3218
 dw fma_instruction_ps-instruction_handler
3228
 dw fma_instruction_ps-instruction_handler
3219
 db 'vfnmadd132sd',9Dh
3229
 db 'vfnmadd132sd',9Dh
3220
 dw fma_instruction_sd-instruction_handler
3230
 dw fma_instruction_sd-instruction_handler
3221
 db 'vfnmadd132ss',9Dh
3231
 db 'vfnmadd132ss',9Dh
3222
 dw fma_instruction_ss-instruction_handler
3232
 dw fma_instruction_ss-instruction_handler
3223
 db 'vfnmadd213pd',0ACh
3233
 db 'vfnmadd213pd',0ACh
3224
 dw fma_instruction_pd-instruction_handler
3234
 dw fma_instruction_pd-instruction_handler
3225
 db 'vfnmadd213ps',0ACh
3235
 db 'vfnmadd213ps',0ACh
3226
 dw fma_instruction_ps-instruction_handler
3236
 dw fma_instruction_ps-instruction_handler
3227
 db 'vfnmadd213sd',0ADh
3237
 db 'vfnmadd213sd',0ADh
3228
 dw fma_instruction_sd-instruction_handler
3238
 dw fma_instruction_sd-instruction_handler
3229
 db 'vfnmadd213ss',0ADh
3239
 db 'vfnmadd213ss',0ADh
3230
 dw fma_instruction_ss-instruction_handler
3240
 dw fma_instruction_ss-instruction_handler
3231
 db 'vfnmadd231pd',0BCh
3241
 db 'vfnmadd231pd',0BCh
3232
 dw fma_instruction_pd-instruction_handler
3242
 dw fma_instruction_pd-instruction_handler
3233
 db 'vfnmadd231ps',0BCh
3243
 db 'vfnmadd231ps',0BCh
3234
 dw fma_instruction_ps-instruction_handler
3244
 dw fma_instruction_ps-instruction_handler
3235
 db 'vfnmadd231sd',0BDh
3245
 db 'vfnmadd231sd',0BDh
3236
 dw fma_instruction_sd-instruction_handler
3246
 dw fma_instruction_sd-instruction_handler
3237
 db 'vfnmadd231ss',0BDh
3247
 db 'vfnmadd231ss',0BDh
3238
 dw fma_instruction_ss-instruction_handler
3248
 dw fma_instruction_ss-instruction_handler
3239
 db 'vfnmsub132pd',9Eh
3249
 db 'vfnmsub132pd',9Eh
3240
 dw fma_instruction_pd-instruction_handler
3250
 dw fma_instruction_pd-instruction_handler
3241
 db 'vfnmsub132ps',9Eh
3251
 db 'vfnmsub132ps',9Eh
3242
 dw fma_instruction_ps-instruction_handler
3252
 dw fma_instruction_ps-instruction_handler
3243
 db 'vfnmsub132sd',9Fh
3253
 db 'vfnmsub132sd',9Fh
3244
 dw fma_instruction_sd-instruction_handler
3254
 dw fma_instruction_sd-instruction_handler
3245
 db 'vfnmsub132ss',9Fh
3255
 db 'vfnmsub132ss',9Fh
3246
 dw fma_instruction_ss-instruction_handler
3256
 dw fma_instruction_ss-instruction_handler
3247
 db 'vfnmsub213pd',0AEh
3257
 db 'vfnmsub213pd',0AEh
3248
 dw fma_instruction_pd-instruction_handler
3258
 dw fma_instruction_pd-instruction_handler
3249
 db 'vfnmsub213ps',0AEh
3259
 db 'vfnmsub213ps',0AEh
3250
 dw fma_instruction_ps-instruction_handler
3260
 dw fma_instruction_ps-instruction_handler
3251
 db 'vfnmsub213sd',0AFh
3261
 db 'vfnmsub213sd',0AFh
3252
 dw fma_instruction_sd-instruction_handler
3262
 dw fma_instruction_sd-instruction_handler
3253
 db 'vfnmsub213ss',0AFh
3263
 db 'vfnmsub213ss',0AFh
3254
 dw fma_instruction_ss-instruction_handler
3264
 dw fma_instruction_ss-instruction_handler
3255
 db 'vfnmsub231pd',0BEh
3265
 db 'vfnmsub231pd',0BEh
3256
 dw fma_instruction_pd-instruction_handler
3266
 dw fma_instruction_pd-instruction_handler
3257
 db 'vfnmsub231ps',0BEh
3267
 db 'vfnmsub231ps',0BEh
3258
 dw fma_instruction_ps-instruction_handler
3268
 dw fma_instruction_ps-instruction_handler
3259
 db 'vfnmsub231sd',0BFh
3269
 db 'vfnmsub231sd',0BFh
3260
 dw fma_instruction_sd-instruction_handler
3270
 dw fma_instruction_sd-instruction_handler
3261
 db 'vfnmsub231ss',0BFh
3271
 db 'vfnmsub231ss',0BFh
3262
 dw fma_instruction_ss-instruction_handler
3272
 dw fma_instruction_ss-instruction_handler
3263
 db 'vpbroadcastb',78h
3273
 db 'vpbroadcastb',78h
3264
 dw avx_pbroadcastb_instruction-instruction_handler
3274
 dw avx_pbroadcastb_instruction-instruction_handler
3265
 db 'vpbroadcastd',58h
3275
 db 'vpbroadcastd',58h
3266
 dw avx_pbroadcastd_instruction-instruction_handler
3276
 dw avx_pbroadcastd_instruction-instruction_handler
3267
 db 'vpbroadcastq',59h
3277
 db 'vpbroadcastq',59h
3268
 dw avx_pbroadcastq_instruction-instruction_handler
3278
 dw avx_pbroadcastq_instruction-instruction_handler
3269
 db 'vpbroadcastw',79h
3279
 db 'vpbroadcastw',79h
3270
 dw avx_pbroadcastw_instruction-instruction_handler
3280
 dw avx_pbroadcastw_instruction-instruction_handler
3271
 db 'vpclmulhqhdq',10001b
3281
 db 'vpclmulhqhdq',10001b
3272
 dw avx_pclmulqdq_instruction-instruction_handler
3282
 dw avx_pclmulqdq_instruction-instruction_handler
3273
 db 'vpclmullqhdq',10000b
3283
 db 'vpclmullqhdq',10000b
3274
 dw avx_pclmulqdq_instruction-instruction_handler
3284
 dw avx_pclmulqdq_instruction-instruction_handler
3275
 db 'vpcomfalseub',6
3285
 db 'vpcomfalseub',6
3276
 dw xop_pcom_ub_instruction-instruction_handler
3286
 dw xop_pcom_ub_instruction-instruction_handler
3277
 db 'vpcomfalseud',6
3287
 db 'vpcomfalseud',6
3278
 dw xop_pcom_ud_instruction-instruction_handler
3288
 dw xop_pcom_ud_instruction-instruction_handler
3279
 db 'vpcomfalseuq',6
3289
 db 'vpcomfalseuq',6
3280
 dw xop_pcom_uq_instruction-instruction_handler
3290
 dw xop_pcom_uq_instruction-instruction_handler
3281
 db 'vpcomfalseuw',6
3291
 db 'vpcomfalseuw',6
3282
 dw xop_pcom_uw_instruction-instruction_handler
3292
 dw xop_pcom_uw_instruction-instruction_handler
3283
 db 'vpermilmo2pd',10b
3293
 db 'vpermilmo2pd',10b
3284
 dw vpermil_2pd_instruction-instruction_handler
3294
 dw vpermil_2pd_instruction-instruction_handler
3285
 db 'vpermilmo2ps',10b
3295
 db 'vpermilmo2ps',10b
3286
 dw vpermil_2ps_instruction-instruction_handler
3296
 dw vpermil_2ps_instruction-instruction_handler
3287
 db 'vpermilmz2pd',11b
3297
 db 'vpermilmz2pd',11b
3288
 dw vpermil_2pd_instruction-instruction_handler
3298
 dw vpermil_2pd_instruction-instruction_handler
3289
 db 'vpermilmz2ps',11b
3299
 db 'vpermilmz2ps',11b
3290
 dw vpermil_2ps_instruction-instruction_handler
3300
 dw vpermil_2ps_instruction-instruction_handler
3291
 db 'vpermiltd2pd',0
3301
 db 'vpermiltd2pd',0
3292
 dw vpermil_2pd_instruction-instruction_handler
3302
 dw vpermil_2pd_instruction-instruction_handler
3293
 db 'vpermiltd2ps',0
3303
 db 'vpermiltd2ps',0
3294
 dw vpermil_2ps_instruction-instruction_handler
3304
 dw vpermil_2ps_instruction-instruction_handler
3295
instructions_13:
3305
instructions_13:
3296
 db 'vcmptrue_uspd',1Fh
3306
 db 'vcmptrue_uspd',1Fh
3297
 dw avx_cmp_pd_instruction-instruction_handler
3307
 dw avx_cmp_pd_instruction-instruction_handler
3298
 db 'vcmptrue_usps',1Fh
3308
 db 'vcmptrue_usps',1Fh
3299
 dw avx_cmp_ps_instruction-instruction_handler
3309
 dw avx_cmp_ps_instruction-instruction_handler
3300
 db 'vcmptrue_ussd',1Fh
3310
 db 'vcmptrue_ussd',1Fh
3301
 dw avx_cmp_sd_instruction-instruction_handler
3311
 dw avx_cmp_sd_instruction-instruction_handler
3302
 db 'vcmptrue_usss',1Fh
3312
 db 'vcmptrue_usss',1Fh
3303
 dw avx_cmp_ss_instruction-instruction_handler
3313
 dw avx_cmp_ss_instruction-instruction_handler
3304
 db 'vcmpunord_spd',13h
3314
 db 'vcmpunord_spd',13h
3305
 dw avx_cmp_pd_instruction-instruction_handler
3315
 dw avx_cmp_pd_instruction-instruction_handler
3306
 db 'vcmpunord_sps',13h
3316
 db 'vcmpunord_sps',13h
3307
 dw avx_cmp_ps_instruction-instruction_handler
3317
 dw avx_cmp_ps_instruction-instruction_handler
3308
 db 'vcmpunord_ssd',13h
3318
 db 'vcmpunord_ssd',13h
3309
 dw avx_cmp_sd_instruction-instruction_handler
3319
 dw avx_cmp_sd_instruction-instruction_handler
3310
 db 'vcmpunord_sss',13h
3320
 db 'vcmpunord_sss',13h
3311
 dw avx_cmp_ss_instruction-instruction_handler
3321
 dw avx_cmp_ss_instruction-instruction_handler
3312
 db 'vpclmulhqlqdq',1
3322
 db 'vpclmulhqlqdq',1
3313
 dw avx_pclmulqdq_instruction-instruction_handler
3323
 dw avx_pclmulqdq_instruction-instruction_handler
3314
 db 'vpclmullqlqdq',0
3324
 db 'vpclmullqlqdq',0
3315
 dw avx_pclmulqdq_instruction-instruction_handler
3325
 dw avx_pclmulqdq_instruction-instruction_handler
3316
instructions_14:
3326
instructions_14:
3317
 db 'vbroadcastf128',1Ah
3327
 db 'vbroadcastf128',1Ah
3318
 dw avx_broadcastf128_instruction-instruction_handler
3328
 dw avx_broadcastf128_instruction-instruction_handler
3319
 db 'vbroadcasti128',5Ah
3329
 db 'vbroadcasti128',5Ah
3320
 dw avx_broadcastf128_instruction-instruction_handler
3330
 dw avx_broadcastf128_instruction-instruction_handler
3321
 db 'vcmpfalse_ospd',1Bh
3331
 db 'vcmpfalse_ospd',1Bh
3322
 dw avx_cmp_pd_instruction-instruction_handler
3332
 dw avx_cmp_pd_instruction-instruction_handler
3323
 db 'vcmpfalse_osps',1Bh
3333
 db 'vcmpfalse_osps',1Bh
3324
 dw avx_cmp_ps_instruction-instruction_handler
3334
 dw avx_cmp_ps_instruction-instruction_handler
3325
 db 'vcmpfalse_ossd',1Bh
3335
 db 'vcmpfalse_ossd',1Bh
3326
 dw avx_cmp_sd_instruction-instruction_handler
3336
 dw avx_cmp_sd_instruction-instruction_handler
3327
 db 'vcmpfalse_osss',1Bh
3337
 db 'vcmpfalse_osss',1Bh
3328
 dw avx_cmp_ss_instruction-instruction_handler
3338
 dw avx_cmp_ss_instruction-instruction_handler
3329
 db 'vfmaddsub132pd',96h
3339
 db 'vfmaddsub132pd',96h
3330
 dw fma_instruction_pd-instruction_handler
3340
 dw fma_instruction_pd-instruction_handler
3331
 db 'vfmaddsub132ps',96h
3341
 db 'vfmaddsub132ps',96h
3332
 dw fma_instruction_ps-instruction_handler
3342
 dw fma_instruction_ps-instruction_handler
3333
 db 'vfmaddsub213pd',0A6h
3343
 db 'vfmaddsub213pd',0A6h
3334
 dw fma_instruction_pd-instruction_handler
3344
 dw fma_instruction_pd-instruction_handler
3335
 db 'vfmaddsub213ps',0A6h
3345
 db 'vfmaddsub213ps',0A6h
3336
 dw fma_instruction_ps-instruction_handler
3346
 dw fma_instruction_ps-instruction_handler
3337
 db 'vfmaddsub231pd',0B6h
3347
 db 'vfmaddsub231pd',0B6h
3338
 dw fma_instruction_pd-instruction_handler
3348
 dw fma_instruction_pd-instruction_handler
3339
 db 'vfmaddsub231ps',0B6h
3349
 db 'vfmaddsub231ps',0B6h
3340
 dw fma_instruction_ps-instruction_handler
3350
 dw fma_instruction_ps-instruction_handler
3341
 db 'vfmsubadd132pd',97h
3351
 db 'vfmsubadd132pd',97h
3342
 dw fma_instruction_pd-instruction_handler
3352
 dw fma_instruction_pd-instruction_handler
3343
 db 'vfmsubadd132ps',97h
3353
 db 'vfmsubadd132ps',97h
3344
 dw fma_instruction_ps-instruction_handler
3354
 dw fma_instruction_ps-instruction_handler
3345
 db 'vfmsubadd213pd',0A7h
3355
 db 'vfmsubadd213pd',0A7h
3346
 dw fma_instruction_pd-instruction_handler
3356
 dw fma_instruction_pd-instruction_handler
3347
 db 'vfmsubadd213ps',0A7h
3357
 db 'vfmsubadd213ps',0A7h
3348
 dw fma_instruction_ps-instruction_handler
3358
 dw fma_instruction_ps-instruction_handler
3349
 db 'vfmsubadd231pd',0B7h
3359
 db 'vfmsubadd231pd',0B7h
3350
 dw fma_instruction_pd-instruction_handler
3360
 dw fma_instruction_pd-instruction_handler
3351
 db 'vfmsubadd231ps',0B7h
3361
 db 'vfmsubadd231ps',0B7h
3352
 dw fma_instruction_ps-instruction_handler
3362
 dw fma_instruction_ps-instruction_handler
3353
instructions_15:
3363
instructions_15:
3354
 db 'aeskeygenassist',0DFh
3364
 db 'aeskeygenassist',0DFh
3355
 dw sse4_instruction_3a_imm8-instruction_handler
3365
 dw sse4_instruction_3a_imm8-instruction_handler
3356
instructions_16:
3366
instructions_16:
3357
 db 'vaeskeygenassist',0DFh
3367
 db 'vaeskeygenassist',0DFh
3358
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
3368
 dw avx_single_source_128bit_instruction_3a_imm8-instruction_handler
3359
instructions_end:
3369
instructions_end:
3360
 
3370
 
3361
data_directives:
3371
data_directives:
3362
 dw data_directives_2-data_directives,(data_directives_3-data_directives_2)/(2+3)
3372
 dw data_directives_2-data_directives,(data_directives_3-data_directives_2)/(2+3)
3363
 dw data_directives_3-data_directives,(data_directives_4-data_directives_3)/(3+3)
3373
 dw data_directives_3-data_directives,(data_directives_4-data_directives_3)/(3+3)
3364
 dw data_directives_4-data_directives,(data_directives_end-data_directives_4)/(4+3)
3374
 dw data_directives_4-data_directives,(data_directives_end-data_directives_4)/(4+3)
3365
 
3375
 
3366
data_directives_2:
3376
data_directives_2:
3367
 db 'db',1
3377
 db 'db',1
3368
 dw data_bytes-instruction_handler
3378
 dw data_bytes-instruction_handler
3369
 db 'dd',4
3379
 db 'dd',4
3370
 dw data_dwords-instruction_handler
3380
 dw data_dwords-instruction_handler
3371
 db 'df',6
3381
 db 'df',6
3372
 dw data_pwords-instruction_handler
3382
 dw data_pwords-instruction_handler
3373
 db 'dp',6
3383
 db 'dp',6
3374
 dw data_pwords-instruction_handler
3384
 dw data_pwords-instruction_handler
3375
 db 'dq',8
3385
 db 'dq',8
3376
 dw data_qwords-instruction_handler
3386
 dw data_qwords-instruction_handler
3377
 db 'dt',10
3387
 db 'dt',10
3378
 dw data_twords-instruction_handler
3388
 dw data_twords-instruction_handler
3379
 db 'du',2
3389
 db 'du',2
3380
 dw data_unicode-instruction_handler
3390
 dw data_unicode-instruction_handler
3381
 db 'dw',2
3391
 db 'dw',2
3382
 dw data_words-instruction_handler
3392
 dw data_words-instruction_handler
3383
 db 'rb',1
3393
 db 'rb',1
3384
 dw reserve_bytes-instruction_handler
3394
 dw reserve_bytes-instruction_handler
3385
 db 'rd',4
3395
 db 'rd',4
3386
 dw reserve_dwords-instruction_handler
3396
 dw reserve_dwords-instruction_handler
3387
 db 'rf',6
3397
 db 'rf',6
3388
 dw reserve_pwords-instruction_handler
3398
 dw reserve_pwords-instruction_handler
3389
 db 'rp',6
3399
 db 'rp',6
3390
 dw reserve_pwords-instruction_handler
3400
 dw reserve_pwords-instruction_handler
3391
 db 'rq',8
3401
 db 'rq',8
3392
 dw reserve_qwords-instruction_handler
3402
 dw reserve_qwords-instruction_handler
3393
 db 'rt',10
3403
 db 'rt',10
3394
 dw reserve_twords-instruction_handler
3404
 dw reserve_twords-instruction_handler
3395
 db 'rw',2
3405
 db 'rw',2
3396
 dw reserve_words-instruction_handler
3406
 dw reserve_words-instruction_handler
3397
data_directives_3:
3407
data_directives_3:
3398
data_directives_4:
3408
data_directives_4:
3399
 db 'file',1
3409
 db 'file',1
3400
 dw data_file-instruction_handler
3410
 dw data_file-instruction_handler
3401
data_directives_end:
3411
data_directives_end: