1 | /* $Id: IEMAllInstructionsCommon.cpp.h 98910 2023-03-11 01:59:59Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IEM - Instruction Decoding and Emulation, Common Bits.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 |
|
---|
29 | /*********************************************************************************************************************************
|
---|
30 | * Defined Constants And Macros *
|
---|
31 | *********************************************************************************************************************************/
|
---|
32 | /** Repeats a_fn four times. For decoding tables. */
|
---|
33 | #define IEMOP_X4(a_fn) a_fn, a_fn, a_fn, a_fn
|
---|
34 |
|
---|
35 |
|
---|
36 | /*********************************************************************************************************************************
|
---|
37 | * Global Variables *
|
---|
38 | *********************************************************************************************************************************/
|
---|
39 | #ifndef TST_IEM_CHECK_MC
|
---|
40 | /** Function table for the ADD instruction. */
|
---|
41 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_add =
|
---|
42 | {
|
---|
43 | iemAImpl_add_u8, iemAImpl_add_u8_locked,
|
---|
44 | iemAImpl_add_u16, iemAImpl_add_u16_locked,
|
---|
45 | iemAImpl_add_u32, iemAImpl_add_u32_locked,
|
---|
46 | iemAImpl_add_u64, iemAImpl_add_u64_locked
|
---|
47 | };
|
---|
48 |
|
---|
49 | /** Function table for the ADC instruction. */
|
---|
50 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_adc =
|
---|
51 | {
|
---|
52 | iemAImpl_adc_u8, iemAImpl_adc_u8_locked,
|
---|
53 | iemAImpl_adc_u16, iemAImpl_adc_u16_locked,
|
---|
54 | iemAImpl_adc_u32, iemAImpl_adc_u32_locked,
|
---|
55 | iemAImpl_adc_u64, iemAImpl_adc_u64_locked
|
---|
56 | };
|
---|
57 |
|
---|
58 | /** Function table for the SUB instruction. */
|
---|
59 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_sub =
|
---|
60 | {
|
---|
61 | iemAImpl_sub_u8, iemAImpl_sub_u8_locked,
|
---|
62 | iemAImpl_sub_u16, iemAImpl_sub_u16_locked,
|
---|
63 | iemAImpl_sub_u32, iemAImpl_sub_u32_locked,
|
---|
64 | iemAImpl_sub_u64, iemAImpl_sub_u64_locked
|
---|
65 | };
|
---|
66 |
|
---|
67 | /** Function table for the SBB instruction. */
|
---|
68 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_sbb =
|
---|
69 | {
|
---|
70 | iemAImpl_sbb_u8, iemAImpl_sbb_u8_locked,
|
---|
71 | iemAImpl_sbb_u16, iemAImpl_sbb_u16_locked,
|
---|
72 | iemAImpl_sbb_u32, iemAImpl_sbb_u32_locked,
|
---|
73 | iemAImpl_sbb_u64, iemAImpl_sbb_u64_locked
|
---|
74 | };
|
---|
75 |
|
---|
76 | /** Function table for the OR instruction. */
|
---|
77 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_or =
|
---|
78 | {
|
---|
79 | iemAImpl_or_u8, iemAImpl_or_u8_locked,
|
---|
80 | iemAImpl_or_u16, iemAImpl_or_u16_locked,
|
---|
81 | iemAImpl_or_u32, iemAImpl_or_u32_locked,
|
---|
82 | iemAImpl_or_u64, iemAImpl_or_u64_locked
|
---|
83 | };
|
---|
84 |
|
---|
85 | /** Function table for the XOR instruction. */
|
---|
86 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_xor =
|
---|
87 | {
|
---|
88 | iemAImpl_xor_u8, iemAImpl_xor_u8_locked,
|
---|
89 | iemAImpl_xor_u16, iemAImpl_xor_u16_locked,
|
---|
90 | iemAImpl_xor_u32, iemAImpl_xor_u32_locked,
|
---|
91 | iemAImpl_xor_u64, iemAImpl_xor_u64_locked
|
---|
92 | };
|
---|
93 |
|
---|
94 | /** Function table for the AND instruction. */
|
---|
95 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_and =
|
---|
96 | {
|
---|
97 | iemAImpl_and_u8, iemAImpl_and_u8_locked,
|
---|
98 | iemAImpl_and_u16, iemAImpl_and_u16_locked,
|
---|
99 | iemAImpl_and_u32, iemAImpl_and_u32_locked,
|
---|
100 | iemAImpl_and_u64, iemAImpl_and_u64_locked
|
---|
101 | };
|
---|
102 |
|
---|
103 | /** Function table for the CMP instruction.
|
---|
104 | * @remarks Making operand order ASSUMPTIONS.
|
---|
105 | */
|
---|
106 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_cmp =
|
---|
107 | {
|
---|
108 | iemAImpl_cmp_u8, NULL,
|
---|
109 | iemAImpl_cmp_u16, NULL,
|
---|
110 | iemAImpl_cmp_u32, NULL,
|
---|
111 | iemAImpl_cmp_u64, NULL
|
---|
112 | };
|
---|
113 |
|
---|
114 | /** Function table for the TEST instruction.
|
---|
115 | * @remarks Making operand order ASSUMPTIONS.
|
---|
116 | */
|
---|
117 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_test =
|
---|
118 | {
|
---|
119 | iemAImpl_test_u8, NULL,
|
---|
120 | iemAImpl_test_u16, NULL,
|
---|
121 | iemAImpl_test_u32, NULL,
|
---|
122 | iemAImpl_test_u64, NULL
|
---|
123 | };
|
---|
124 |
|
---|
125 |
|
---|
126 | /** Function table for the BT instruction. */
|
---|
127 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bt =
|
---|
128 | {
|
---|
129 | NULL, NULL,
|
---|
130 | iemAImpl_bt_u16, NULL,
|
---|
131 | iemAImpl_bt_u32, NULL,
|
---|
132 | iemAImpl_bt_u64, NULL
|
---|
133 | };
|
---|
134 |
|
---|
135 | /** Function table for the BTC instruction. */
|
---|
136 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_btc =
|
---|
137 | {
|
---|
138 | NULL, NULL,
|
---|
139 | iemAImpl_btc_u16, iemAImpl_btc_u16_locked,
|
---|
140 | iemAImpl_btc_u32, iemAImpl_btc_u32_locked,
|
---|
141 | iemAImpl_btc_u64, iemAImpl_btc_u64_locked
|
---|
142 | };
|
---|
143 |
|
---|
144 | /** Function table for the BTR instruction. */
|
---|
145 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_btr =
|
---|
146 | {
|
---|
147 | NULL, NULL,
|
---|
148 | iemAImpl_btr_u16, iemAImpl_btr_u16_locked,
|
---|
149 | iemAImpl_btr_u32, iemAImpl_btr_u32_locked,
|
---|
150 | iemAImpl_btr_u64, iemAImpl_btr_u64_locked
|
---|
151 | };
|
---|
152 |
|
---|
153 | /** Function table for the BTS instruction. */
|
---|
154 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bts =
|
---|
155 | {
|
---|
156 | NULL, NULL,
|
---|
157 | iemAImpl_bts_u16, iemAImpl_bts_u16_locked,
|
---|
158 | iemAImpl_bts_u32, iemAImpl_bts_u32_locked,
|
---|
159 | iemAImpl_bts_u64, iemAImpl_bts_u64_locked
|
---|
160 | };
|
---|
161 |
|
---|
162 | /** Function table for the BSF instruction. */
|
---|
163 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bsf =
|
---|
164 | {
|
---|
165 | NULL, NULL,
|
---|
166 | iemAImpl_bsf_u16, NULL,
|
---|
167 | iemAImpl_bsf_u32, NULL,
|
---|
168 | iemAImpl_bsf_u64, NULL
|
---|
169 | };
|
---|
170 |
|
---|
171 | /** Function table for the BSF instruction, AMD EFLAGS variant. */
|
---|
172 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bsf_amd =
|
---|
173 | {
|
---|
174 | NULL, NULL,
|
---|
175 | iemAImpl_bsf_u16_amd, NULL,
|
---|
176 | iemAImpl_bsf_u32_amd, NULL,
|
---|
177 | iemAImpl_bsf_u64_amd, NULL
|
---|
178 | };
|
---|
179 |
|
---|
180 | /** Function table for the BSF instruction, Intel EFLAGS variant. */
|
---|
181 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bsf_intel =
|
---|
182 | {
|
---|
183 | NULL, NULL,
|
---|
184 | iemAImpl_bsf_u16_intel, NULL,
|
---|
185 | iemAImpl_bsf_u32_intel, NULL,
|
---|
186 | iemAImpl_bsf_u64_intel, NULL
|
---|
187 | };
|
---|
188 |
|
---|
189 | /** EFLAGS variation selection table for the BSF instruction. */
|
---|
190 | IEM_STATIC const IEMOPBINSIZES * const g_iemAImpl_bsf_eflags[] =
|
---|
191 | {
|
---|
192 | &g_iemAImpl_bsf,
|
---|
193 | &g_iemAImpl_bsf_intel,
|
---|
194 | &g_iemAImpl_bsf_amd,
|
---|
195 | &g_iemAImpl_bsf,
|
---|
196 | };
|
---|
197 |
|
---|
198 | /** Function table for the BSR instruction. */
|
---|
199 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bsr =
|
---|
200 | {
|
---|
201 | NULL, NULL,
|
---|
202 | iemAImpl_bsr_u16, NULL,
|
---|
203 | iemAImpl_bsr_u32, NULL,
|
---|
204 | iemAImpl_bsr_u64, NULL
|
---|
205 | };
|
---|
206 |
|
---|
207 | /** Function table for the BSR instruction, AMD EFLAGS variant. */
|
---|
208 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bsr_amd =
|
---|
209 | {
|
---|
210 | NULL, NULL,
|
---|
211 | iemAImpl_bsr_u16_amd, NULL,
|
---|
212 | iemAImpl_bsr_u32_amd, NULL,
|
---|
213 | iemAImpl_bsr_u64_amd, NULL
|
---|
214 | };
|
---|
215 |
|
---|
216 | /** Function table for the BSR instruction, Intel EFLAGS variant. */
|
---|
217 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_bsr_intel =
|
---|
218 | {
|
---|
219 | NULL, NULL,
|
---|
220 | iemAImpl_bsr_u16_intel, NULL,
|
---|
221 | iemAImpl_bsr_u32_intel, NULL,
|
---|
222 | iemAImpl_bsr_u64_intel, NULL
|
---|
223 | };
|
---|
224 |
|
---|
225 | /** EFLAGS variation selection table for the BSR instruction. */
|
---|
226 | IEM_STATIC const IEMOPBINSIZES * const g_iemAImpl_bsr_eflags[] =
|
---|
227 | {
|
---|
228 | &g_iemAImpl_bsr,
|
---|
229 | &g_iemAImpl_bsr_intel,
|
---|
230 | &g_iemAImpl_bsr_amd,
|
---|
231 | &g_iemAImpl_bsr,
|
---|
232 | };
|
---|
233 |
|
---|
234 | /** Function table for the IMUL instruction. */
|
---|
235 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_imul_two =
|
---|
236 | {
|
---|
237 | NULL, NULL,
|
---|
238 | iemAImpl_imul_two_u16, NULL,
|
---|
239 | iemAImpl_imul_two_u32, NULL,
|
---|
240 | iemAImpl_imul_two_u64, NULL
|
---|
241 | };
|
---|
242 |
|
---|
243 | /** Function table for the IMUL instruction, AMD EFLAGS variant. */
|
---|
244 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_imul_two_amd =
|
---|
245 | {
|
---|
246 | NULL, NULL,
|
---|
247 | iemAImpl_imul_two_u16_amd, NULL,
|
---|
248 | iemAImpl_imul_two_u32_amd, NULL,
|
---|
249 | iemAImpl_imul_two_u64_amd, NULL
|
---|
250 | };
|
---|
251 |
|
---|
252 | /** Function table for the IMUL instruction, Intel EFLAGS variant. */
|
---|
253 | IEM_STATIC const IEMOPBINSIZES g_iemAImpl_imul_two_intel =
|
---|
254 | {
|
---|
255 | NULL, NULL,
|
---|
256 | iemAImpl_imul_two_u16_intel, NULL,
|
---|
257 | iemAImpl_imul_two_u32_intel, NULL,
|
---|
258 | iemAImpl_imul_two_u64_intel, NULL
|
---|
259 | };
|
---|
260 |
|
---|
261 | /** EFLAGS variation selection table for the IMUL instruction. */
|
---|
262 | IEM_STATIC const IEMOPBINSIZES * const g_iemAImpl_imul_two_eflags[] =
|
---|
263 | {
|
---|
264 | &g_iemAImpl_imul_two,
|
---|
265 | &g_iemAImpl_imul_two_intel,
|
---|
266 | &g_iemAImpl_imul_two_amd,
|
---|
267 | &g_iemAImpl_imul_two,
|
---|
268 | };
|
---|
269 |
|
---|
270 | /** EFLAGS variation selection table for the 16-bit IMUL instruction. */
|
---|
271 | IEM_STATIC PFNIEMAIMPLBINU16 const g_iemAImpl_imul_two_u16_eflags[] =
|
---|
272 | {
|
---|
273 | iemAImpl_imul_two_u16,
|
---|
274 | iemAImpl_imul_two_u16_intel,
|
---|
275 | iemAImpl_imul_two_u16_amd,
|
---|
276 | iemAImpl_imul_two_u16,
|
---|
277 | };
|
---|
278 |
|
---|
279 | /** EFLAGS variation selection table for the 32-bit IMUL instruction. */
|
---|
280 | IEM_STATIC PFNIEMAIMPLBINU32 const g_iemAImpl_imul_two_u32_eflags[] =
|
---|
281 | {
|
---|
282 | iemAImpl_imul_two_u32,
|
---|
283 | iemAImpl_imul_two_u32_intel,
|
---|
284 | iemAImpl_imul_two_u32_amd,
|
---|
285 | iemAImpl_imul_two_u32,
|
---|
286 | };
|
---|
287 |
|
---|
288 | /** EFLAGS variation selection table for the 64-bit IMUL instruction. */
|
---|
289 | IEM_STATIC PFNIEMAIMPLBINU64 const g_iemAImpl_imul_two_u64_eflags[] =
|
---|
290 | {
|
---|
291 | iemAImpl_imul_two_u64,
|
---|
292 | iemAImpl_imul_two_u64_intel,
|
---|
293 | iemAImpl_imul_two_u64_amd,
|
---|
294 | iemAImpl_imul_two_u64,
|
---|
295 | };
|
---|
296 |
|
---|
297 | /** Group 1 /r lookup table. */
|
---|
298 | IEM_STATIC const PCIEMOPBINSIZES g_apIemImplGrp1[8] =
|
---|
299 | {
|
---|
300 | &g_iemAImpl_add,
|
---|
301 | &g_iemAImpl_or,
|
---|
302 | &g_iemAImpl_adc,
|
---|
303 | &g_iemAImpl_sbb,
|
---|
304 | &g_iemAImpl_and,
|
---|
305 | &g_iemAImpl_sub,
|
---|
306 | &g_iemAImpl_xor,
|
---|
307 | &g_iemAImpl_cmp
|
---|
308 | };
|
---|
309 |
|
---|
310 | /** Function table for the INC instruction. */
|
---|
311 | IEM_STATIC const IEMOPUNARYSIZES g_iemAImpl_inc =
|
---|
312 | {
|
---|
313 | iemAImpl_inc_u8, iemAImpl_inc_u8_locked,
|
---|
314 | iemAImpl_inc_u16, iemAImpl_inc_u16_locked,
|
---|
315 | iemAImpl_inc_u32, iemAImpl_inc_u32_locked,
|
---|
316 | iemAImpl_inc_u64, iemAImpl_inc_u64_locked
|
---|
317 | };
|
---|
318 |
|
---|
319 | /** Function table for the DEC instruction. */
|
---|
320 | IEM_STATIC const IEMOPUNARYSIZES g_iemAImpl_dec =
|
---|
321 | {
|
---|
322 | iemAImpl_dec_u8, iemAImpl_dec_u8_locked,
|
---|
323 | iemAImpl_dec_u16, iemAImpl_dec_u16_locked,
|
---|
324 | iemAImpl_dec_u32, iemAImpl_dec_u32_locked,
|
---|
325 | iemAImpl_dec_u64, iemAImpl_dec_u64_locked
|
---|
326 | };
|
---|
327 |
|
---|
328 | /** Function table for the NEG instruction. */
|
---|
329 | IEM_STATIC const IEMOPUNARYSIZES g_iemAImpl_neg =
|
---|
330 | {
|
---|
331 | iemAImpl_neg_u8, iemAImpl_neg_u8_locked,
|
---|
332 | iemAImpl_neg_u16, iemAImpl_neg_u16_locked,
|
---|
333 | iemAImpl_neg_u32, iemAImpl_neg_u32_locked,
|
---|
334 | iemAImpl_neg_u64, iemAImpl_neg_u64_locked
|
---|
335 | };
|
---|
336 |
|
---|
337 | /** Function table for the NOT instruction. */
|
---|
338 | IEM_STATIC const IEMOPUNARYSIZES g_iemAImpl_not =
|
---|
339 | {
|
---|
340 | iemAImpl_not_u8, iemAImpl_not_u8_locked,
|
---|
341 | iemAImpl_not_u16, iemAImpl_not_u16_locked,
|
---|
342 | iemAImpl_not_u32, iemAImpl_not_u32_locked,
|
---|
343 | iemAImpl_not_u64, iemAImpl_not_u64_locked
|
---|
344 | };
|
---|
345 |
|
---|
346 |
|
---|
347 | /** Function table for the ROL instruction. */
|
---|
348 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rol =
|
---|
349 | {
|
---|
350 | iemAImpl_rol_u8,
|
---|
351 | iemAImpl_rol_u16,
|
---|
352 | iemAImpl_rol_u32,
|
---|
353 | iemAImpl_rol_u64
|
---|
354 | };
|
---|
355 |
|
---|
356 | /** Function table for the ROL instruction, AMD EFLAGS variant. */
|
---|
357 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rol_amd =
|
---|
358 | {
|
---|
359 | iemAImpl_rol_u8_amd,
|
---|
360 | iemAImpl_rol_u16_amd,
|
---|
361 | iemAImpl_rol_u32_amd,
|
---|
362 | iemAImpl_rol_u64_amd
|
---|
363 | };
|
---|
364 |
|
---|
365 | /** Function table for the ROL instruction, Intel EFLAGS variant. */
|
---|
366 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rol_intel =
|
---|
367 | {
|
---|
368 | iemAImpl_rol_u8_intel,
|
---|
369 | iemAImpl_rol_u16_intel,
|
---|
370 | iemAImpl_rol_u32_intel,
|
---|
371 | iemAImpl_rol_u64_intel
|
---|
372 | };
|
---|
373 |
|
---|
374 | /** EFLAGS variation selection table for the ROL instruction. */
|
---|
375 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_rol_eflags[] =
|
---|
376 | {
|
---|
377 | &g_iemAImpl_rol,
|
---|
378 | &g_iemAImpl_rol_intel,
|
---|
379 | &g_iemAImpl_rol_amd,
|
---|
380 | &g_iemAImpl_rol,
|
---|
381 | };
|
---|
382 |
|
---|
383 |
|
---|
384 | /** Function table for the ROR instruction. */
|
---|
385 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_ror =
|
---|
386 | {
|
---|
387 | iemAImpl_ror_u8,
|
---|
388 | iemAImpl_ror_u16,
|
---|
389 | iemAImpl_ror_u32,
|
---|
390 | iemAImpl_ror_u64
|
---|
391 | };
|
---|
392 |
|
---|
393 | /** Function table for the ROR instruction, AMD EFLAGS variant. */
|
---|
394 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_ror_amd =
|
---|
395 | {
|
---|
396 | iemAImpl_ror_u8_amd,
|
---|
397 | iemAImpl_ror_u16_amd,
|
---|
398 | iemAImpl_ror_u32_amd,
|
---|
399 | iemAImpl_ror_u64_amd
|
---|
400 | };
|
---|
401 |
|
---|
402 | /** Function table for the ROR instruction, Intel EFLAGS variant. */
|
---|
403 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_ror_intel =
|
---|
404 | {
|
---|
405 | iemAImpl_ror_u8_intel,
|
---|
406 | iemAImpl_ror_u16_intel,
|
---|
407 | iemAImpl_ror_u32_intel,
|
---|
408 | iemAImpl_ror_u64_intel
|
---|
409 | };
|
---|
410 |
|
---|
411 | /** EFLAGS variation selection table for the ROR instruction. */
|
---|
412 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_ror_eflags[] =
|
---|
413 | {
|
---|
414 | &g_iemAImpl_ror,
|
---|
415 | &g_iemAImpl_ror_intel,
|
---|
416 | &g_iemAImpl_ror_amd,
|
---|
417 | &g_iemAImpl_ror,
|
---|
418 | };
|
---|
419 |
|
---|
420 |
|
---|
421 | /** Function table for the RCL instruction. */
|
---|
422 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rcl =
|
---|
423 | {
|
---|
424 | iemAImpl_rcl_u8,
|
---|
425 | iemAImpl_rcl_u16,
|
---|
426 | iemAImpl_rcl_u32,
|
---|
427 | iemAImpl_rcl_u64
|
---|
428 | };
|
---|
429 |
|
---|
430 | /** Function table for the RCL instruction, AMD EFLAGS variant. */
|
---|
431 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rcl_amd =
|
---|
432 | {
|
---|
433 | iemAImpl_rcl_u8_amd,
|
---|
434 | iemAImpl_rcl_u16_amd,
|
---|
435 | iemAImpl_rcl_u32_amd,
|
---|
436 | iemAImpl_rcl_u64_amd
|
---|
437 | };
|
---|
438 |
|
---|
439 | /** Function table for the RCL instruction, Intel EFLAGS variant. */
|
---|
440 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rcl_intel =
|
---|
441 | {
|
---|
442 | iemAImpl_rcl_u8_intel,
|
---|
443 | iemAImpl_rcl_u16_intel,
|
---|
444 | iemAImpl_rcl_u32_intel,
|
---|
445 | iemAImpl_rcl_u64_intel
|
---|
446 | };
|
---|
447 |
|
---|
448 | /** EFLAGS variation selection table for the RCL instruction. */
|
---|
449 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_rcl_eflags[] =
|
---|
450 | {
|
---|
451 | &g_iemAImpl_rcl,
|
---|
452 | &g_iemAImpl_rcl_intel,
|
---|
453 | &g_iemAImpl_rcl_amd,
|
---|
454 | &g_iemAImpl_rcl,
|
---|
455 | };
|
---|
456 |
|
---|
457 |
|
---|
458 | /** Function table for the RCR instruction. */
|
---|
459 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rcr =
|
---|
460 | {
|
---|
461 | iemAImpl_rcr_u8,
|
---|
462 | iemAImpl_rcr_u16,
|
---|
463 | iemAImpl_rcr_u32,
|
---|
464 | iemAImpl_rcr_u64
|
---|
465 | };
|
---|
466 |
|
---|
467 | /** Function table for the RCR instruction, AMD EFLAGS variant. */
|
---|
468 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rcr_amd =
|
---|
469 | {
|
---|
470 | iemAImpl_rcr_u8_amd,
|
---|
471 | iemAImpl_rcr_u16_amd,
|
---|
472 | iemAImpl_rcr_u32_amd,
|
---|
473 | iemAImpl_rcr_u64_amd
|
---|
474 | };
|
---|
475 |
|
---|
476 | /** Function table for the RCR instruction, Intel EFLAGS variant. */
|
---|
477 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_rcr_intel =
|
---|
478 | {
|
---|
479 | iemAImpl_rcr_u8_intel,
|
---|
480 | iemAImpl_rcr_u16_intel,
|
---|
481 | iemAImpl_rcr_u32_intel,
|
---|
482 | iemAImpl_rcr_u64_intel
|
---|
483 | };
|
---|
484 |
|
---|
485 | /** EFLAGS variation selection table for the RCR instruction. */
|
---|
486 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_rcr_eflags[] =
|
---|
487 | {
|
---|
488 | &g_iemAImpl_rcr,
|
---|
489 | &g_iemAImpl_rcr_intel,
|
---|
490 | &g_iemAImpl_rcr_amd,
|
---|
491 | &g_iemAImpl_rcr,
|
---|
492 | };
|
---|
493 |
|
---|
494 |
|
---|
495 | /** Function table for the SHL instruction. */
|
---|
496 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_shl =
|
---|
497 | {
|
---|
498 | iemAImpl_shl_u8,
|
---|
499 | iemAImpl_shl_u16,
|
---|
500 | iemAImpl_shl_u32,
|
---|
501 | iemAImpl_shl_u64
|
---|
502 | };
|
---|
503 |
|
---|
504 | /** Function table for the SHL instruction, AMD EFLAGS variant. */
|
---|
505 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_shl_amd =
|
---|
506 | {
|
---|
507 | iemAImpl_shl_u8_amd,
|
---|
508 | iemAImpl_shl_u16_amd,
|
---|
509 | iemAImpl_shl_u32_amd,
|
---|
510 | iemAImpl_shl_u64_amd
|
---|
511 | };
|
---|
512 |
|
---|
513 | /** Function table for the SHL instruction, Intel EFLAGS variant. */
|
---|
514 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_shl_intel =
|
---|
515 | {
|
---|
516 | iemAImpl_shl_u8_intel,
|
---|
517 | iemAImpl_shl_u16_intel,
|
---|
518 | iemAImpl_shl_u32_intel,
|
---|
519 | iemAImpl_shl_u64_intel
|
---|
520 | };
|
---|
521 |
|
---|
522 | /** EFLAGS variation selection table for the SHL instruction. */
|
---|
523 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_shl_eflags[] =
|
---|
524 | {
|
---|
525 | &g_iemAImpl_shl,
|
---|
526 | &g_iemAImpl_shl_intel,
|
---|
527 | &g_iemAImpl_shl_amd,
|
---|
528 | &g_iemAImpl_shl,
|
---|
529 | };
|
---|
530 |
|
---|
531 |
|
---|
532 | /** Function table for the SHR instruction. */
|
---|
533 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_shr =
|
---|
534 | {
|
---|
535 | iemAImpl_shr_u8,
|
---|
536 | iemAImpl_shr_u16,
|
---|
537 | iemAImpl_shr_u32,
|
---|
538 | iemAImpl_shr_u64
|
---|
539 | };
|
---|
540 |
|
---|
541 | /** Function table for the SHR instruction, AMD EFLAGS variant. */
|
---|
542 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_shr_amd =
|
---|
543 | {
|
---|
544 | iemAImpl_shr_u8_amd,
|
---|
545 | iemAImpl_shr_u16_amd,
|
---|
546 | iemAImpl_shr_u32_amd,
|
---|
547 | iemAImpl_shr_u64_amd
|
---|
548 | };
|
---|
549 |
|
---|
550 | /** Function table for the SHR instruction, Intel EFLAGS variant. */
|
---|
551 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_shr_intel =
|
---|
552 | {
|
---|
553 | iemAImpl_shr_u8_intel,
|
---|
554 | iemAImpl_shr_u16_intel,
|
---|
555 | iemAImpl_shr_u32_intel,
|
---|
556 | iemAImpl_shr_u64_intel
|
---|
557 | };
|
---|
558 |
|
---|
559 | /** EFLAGS variation selection table for the SHR instruction. */
|
---|
560 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_shr_eflags[] =
|
---|
561 | {
|
---|
562 | &g_iemAImpl_shr,
|
---|
563 | &g_iemAImpl_shr_intel,
|
---|
564 | &g_iemAImpl_shr_amd,
|
---|
565 | &g_iemAImpl_shr,
|
---|
566 | };
|
---|
567 |
|
---|
568 |
|
---|
569 | /** Function table for the SAR instruction. */
|
---|
570 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_sar =
|
---|
571 | {
|
---|
572 | iemAImpl_sar_u8,
|
---|
573 | iemAImpl_sar_u16,
|
---|
574 | iemAImpl_sar_u32,
|
---|
575 | iemAImpl_sar_u64
|
---|
576 | };
|
---|
577 |
|
---|
578 | /** Function table for the SAR instruction, AMD EFLAGS variant. */
|
---|
579 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_sar_amd =
|
---|
580 | {
|
---|
581 | iemAImpl_sar_u8_amd,
|
---|
582 | iemAImpl_sar_u16_amd,
|
---|
583 | iemAImpl_sar_u32_amd,
|
---|
584 | iemAImpl_sar_u64_amd
|
---|
585 | };
|
---|
586 |
|
---|
587 | /** Function table for the SAR instruction, Intel EFLAGS variant. */
|
---|
588 | IEM_STATIC const IEMOPSHIFTSIZES g_iemAImpl_sar_intel =
|
---|
589 | {
|
---|
590 | iemAImpl_sar_u8_intel,
|
---|
591 | iemAImpl_sar_u16_intel,
|
---|
592 | iemAImpl_sar_u32_intel,
|
---|
593 | iemAImpl_sar_u64_intel
|
---|
594 | };
|
---|
595 |
|
---|
596 | /** EFLAGS variation selection table for the SAR instruction. */
|
---|
597 | IEM_STATIC const IEMOPSHIFTSIZES * const g_iemAImpl_sar_eflags[] =
|
---|
598 | {
|
---|
599 | &g_iemAImpl_sar,
|
---|
600 | &g_iemAImpl_sar_intel,
|
---|
601 | &g_iemAImpl_sar_amd,
|
---|
602 | &g_iemAImpl_sar,
|
---|
603 | };
|
---|
604 |
|
---|
605 |
|
---|
606 | /** Function table for the MUL instruction. */
|
---|
607 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_mul =
|
---|
608 | {
|
---|
609 | iemAImpl_mul_u8,
|
---|
610 | iemAImpl_mul_u16,
|
---|
611 | iemAImpl_mul_u32,
|
---|
612 | iemAImpl_mul_u64
|
---|
613 | };
|
---|
614 |
|
---|
615 | /** Function table for the MUL instruction, AMD EFLAGS variation. */
|
---|
616 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_mul_amd =
|
---|
617 | {
|
---|
618 | iemAImpl_mul_u8_amd,
|
---|
619 | iemAImpl_mul_u16_amd,
|
---|
620 | iemAImpl_mul_u32_amd,
|
---|
621 | iemAImpl_mul_u64_amd
|
---|
622 | };
|
---|
623 |
|
---|
624 | /** Function table for the MUL instruction, Intel EFLAGS variation. */
|
---|
625 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_mul_intel =
|
---|
626 | {
|
---|
627 | iemAImpl_mul_u8_intel,
|
---|
628 | iemAImpl_mul_u16_intel,
|
---|
629 | iemAImpl_mul_u32_intel,
|
---|
630 | iemAImpl_mul_u64_intel
|
---|
631 | };
|
---|
632 |
|
---|
633 | /** EFLAGS variation selection table for the MUL instruction. */
|
---|
634 | IEM_STATIC const IEMOPMULDIVSIZES * const g_iemAImpl_mul_eflags[] =
|
---|
635 | {
|
---|
636 | &g_iemAImpl_mul,
|
---|
637 | &g_iemAImpl_mul_intel,
|
---|
638 | &g_iemAImpl_mul_amd,
|
---|
639 | &g_iemAImpl_mul,
|
---|
640 | };
|
---|
641 |
|
---|
642 | /** EFLAGS variation selection table for the 8-bit MUL instruction. */
|
---|
643 | IEM_STATIC PFNIEMAIMPLMULDIVU8 const g_iemAImpl_mul_u8_eflags[] =
|
---|
644 | {
|
---|
645 | iemAImpl_mul_u8,
|
---|
646 | iemAImpl_mul_u8_intel,
|
---|
647 | iemAImpl_mul_u8_amd,
|
---|
648 | iemAImpl_mul_u8
|
---|
649 | };
|
---|
650 |
|
---|
651 |
|
---|
652 | /** Function table for the IMUL instruction working implicitly on rAX. */
|
---|
653 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_imul =
|
---|
654 | {
|
---|
655 | iemAImpl_imul_u8,
|
---|
656 | iemAImpl_imul_u16,
|
---|
657 | iemAImpl_imul_u32,
|
---|
658 | iemAImpl_imul_u64
|
---|
659 | };
|
---|
660 |
|
---|
661 | /** Function table for the IMUL instruction working implicitly on rAX, AMD EFLAGS variation. */
|
---|
662 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_imul_amd =
|
---|
663 | {
|
---|
664 | iemAImpl_imul_u8_amd,
|
---|
665 | iemAImpl_imul_u16_amd,
|
---|
666 | iemAImpl_imul_u32_amd,
|
---|
667 | iemAImpl_imul_u64_amd
|
---|
668 | };
|
---|
669 |
|
---|
670 | /** Function table for the IMUL instruction working implicitly on rAX, Intel EFLAGS variation. */
|
---|
671 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_imul_intel =
|
---|
672 | {
|
---|
673 | iemAImpl_imul_u8_intel,
|
---|
674 | iemAImpl_imul_u16_intel,
|
---|
675 | iemAImpl_imul_u32_intel,
|
---|
676 | iemAImpl_imul_u64_intel
|
---|
677 | };
|
---|
678 |
|
---|
679 | /** EFLAGS variation selection table for the IMUL instruction. */
|
---|
680 | IEM_STATIC const IEMOPMULDIVSIZES * const g_iemAImpl_imul_eflags[] =
|
---|
681 | {
|
---|
682 | &g_iemAImpl_imul,
|
---|
683 | &g_iemAImpl_imul_intel,
|
---|
684 | &g_iemAImpl_imul_amd,
|
---|
685 | &g_iemAImpl_imul,
|
---|
686 | };
|
---|
687 |
|
---|
688 | /** EFLAGS variation selection table for the 8-bit IMUL instruction. */
|
---|
689 | IEM_STATIC PFNIEMAIMPLMULDIVU8 const g_iemAImpl_imul_u8_eflags[] =
|
---|
690 | {
|
---|
691 | iemAImpl_imul_u8,
|
---|
692 | iemAImpl_imul_u8_intel,
|
---|
693 | iemAImpl_imul_u8_amd,
|
---|
694 | iemAImpl_imul_u8
|
---|
695 | };
|
---|
696 |
|
---|
697 |
|
---|
698 | /** Function table for the DIV instruction. */
|
---|
699 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_div =
|
---|
700 | {
|
---|
701 | iemAImpl_div_u8,
|
---|
702 | iemAImpl_div_u16,
|
---|
703 | iemAImpl_div_u32,
|
---|
704 | iemAImpl_div_u64
|
---|
705 | };
|
---|
706 |
|
---|
707 | /** Function table for the DIV instruction, AMD EFLAGS variation. */
|
---|
708 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_div_amd =
|
---|
709 | {
|
---|
710 | iemAImpl_div_u8_amd,
|
---|
711 | iemAImpl_div_u16_amd,
|
---|
712 | iemAImpl_div_u32_amd,
|
---|
713 | iemAImpl_div_u64_amd
|
---|
714 | };
|
---|
715 |
|
---|
716 | /** Function table for the DIV instruction, Intel EFLAGS variation. */
|
---|
717 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_div_intel =
|
---|
718 | {
|
---|
719 | iemAImpl_div_u8_intel,
|
---|
720 | iemAImpl_div_u16_intel,
|
---|
721 | iemAImpl_div_u32_intel,
|
---|
722 | iemAImpl_div_u64_intel
|
---|
723 | };
|
---|
724 |
|
---|
725 | /** EFLAGS variation selection table for the DIV instruction. */
|
---|
726 | IEM_STATIC const IEMOPMULDIVSIZES * const g_iemAImpl_div_eflags[] =
|
---|
727 | {
|
---|
728 | &g_iemAImpl_div,
|
---|
729 | &g_iemAImpl_div_intel,
|
---|
730 | &g_iemAImpl_div_amd,
|
---|
731 | &g_iemAImpl_div,
|
---|
732 | };
|
---|
733 |
|
---|
734 | /** EFLAGS variation selection table for the 8-bit DIV instruction. */
|
---|
735 | IEM_STATIC PFNIEMAIMPLMULDIVU8 const g_iemAImpl_div_u8_eflags[] =
|
---|
736 | {
|
---|
737 | iemAImpl_div_u8,
|
---|
738 | iemAImpl_div_u8_intel,
|
---|
739 | iemAImpl_div_u8_amd,
|
---|
740 | iemAImpl_div_u8
|
---|
741 | };
|
---|
742 |
|
---|
743 |
|
---|
744 | /** Function table for the IDIV instruction. */
|
---|
745 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_idiv =
|
---|
746 | {
|
---|
747 | iemAImpl_idiv_u8,
|
---|
748 | iemAImpl_idiv_u16,
|
---|
749 | iemAImpl_idiv_u32,
|
---|
750 | iemAImpl_idiv_u64
|
---|
751 | };
|
---|
752 |
|
---|
753 | /** Function table for the IDIV instruction, AMD EFLAGS variation. */
|
---|
754 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_idiv_amd =
|
---|
755 | {
|
---|
756 | iemAImpl_idiv_u8_amd,
|
---|
757 | iemAImpl_idiv_u16_amd,
|
---|
758 | iemAImpl_idiv_u32_amd,
|
---|
759 | iemAImpl_idiv_u64_amd
|
---|
760 | };
|
---|
761 |
|
---|
762 | /** Function table for the IDIV instruction, Intel EFLAGS variation. */
|
---|
763 | IEM_STATIC const IEMOPMULDIVSIZES g_iemAImpl_idiv_intel =
|
---|
764 | {
|
---|
765 | iemAImpl_idiv_u8_intel,
|
---|
766 | iemAImpl_idiv_u16_intel,
|
---|
767 | iemAImpl_idiv_u32_intel,
|
---|
768 | iemAImpl_idiv_u64_intel
|
---|
769 | };
|
---|
770 |
|
---|
771 | /** EFLAGS variation selection table for the IDIV instruction. */
|
---|
772 | IEM_STATIC const IEMOPMULDIVSIZES * const g_iemAImpl_idiv_eflags[] =
|
---|
773 | {
|
---|
774 | &g_iemAImpl_idiv,
|
---|
775 | &g_iemAImpl_idiv_intel,
|
---|
776 | &g_iemAImpl_idiv_amd,
|
---|
777 | &g_iemAImpl_idiv,
|
---|
778 | };
|
---|
779 |
|
---|
780 | /** EFLAGS variation selection table for the 8-bit IDIV instruction. */
|
---|
781 | IEM_STATIC PFNIEMAIMPLMULDIVU8 const g_iemAImpl_idiv_u8_eflags[] =
|
---|
782 | {
|
---|
783 | iemAImpl_idiv_u8,
|
---|
784 | iemAImpl_idiv_u8_intel,
|
---|
785 | iemAImpl_idiv_u8_amd,
|
---|
786 | iemAImpl_idiv_u8
|
---|
787 | };
|
---|
788 |
|
---|
789 |
|
---|
790 | /** Function table for the SHLD instruction. */
|
---|
791 | IEM_STATIC const IEMOPSHIFTDBLSIZES g_iemAImpl_shld =
|
---|
792 | {
|
---|
793 | iemAImpl_shld_u16,
|
---|
794 | iemAImpl_shld_u32,
|
---|
795 | iemAImpl_shld_u64,
|
---|
796 | };
|
---|
797 |
|
---|
798 | /** Function table for the SHLD instruction, AMD EFLAGS variation. */
|
---|
799 | IEM_STATIC const IEMOPSHIFTDBLSIZES g_iemAImpl_shld_amd =
|
---|
800 | {
|
---|
801 | iemAImpl_shld_u16_amd,
|
---|
802 | iemAImpl_shld_u32_amd,
|
---|
803 | iemAImpl_shld_u64_amd
|
---|
804 | };
|
---|
805 |
|
---|
806 | /** Function table for the SHLD instruction, Intel EFLAGS variation. */
|
---|
807 | IEM_STATIC const IEMOPSHIFTDBLSIZES g_iemAImpl_shld_intel =
|
---|
808 | {
|
---|
809 | iemAImpl_shld_u16_intel,
|
---|
810 | iemAImpl_shld_u32_intel,
|
---|
811 | iemAImpl_shld_u64_intel
|
---|
812 | };
|
---|
813 |
|
---|
814 | /** EFLAGS variation selection table for the SHLD instruction. */
|
---|
815 | IEM_STATIC const IEMOPSHIFTDBLSIZES * const g_iemAImpl_shld_eflags[] =
|
---|
816 | {
|
---|
817 | &g_iemAImpl_shld,
|
---|
818 | &g_iemAImpl_shld_intel,
|
---|
819 | &g_iemAImpl_shld_amd,
|
---|
820 | &g_iemAImpl_shld
|
---|
821 | };
|
---|
822 |
|
---|
823 | /** Function table for the SHRD instruction. */
|
---|
824 | IEM_STATIC const IEMOPSHIFTDBLSIZES g_iemAImpl_shrd =
|
---|
825 | {
|
---|
826 | iemAImpl_shrd_u16,
|
---|
827 | iemAImpl_shrd_u32,
|
---|
828 | iemAImpl_shrd_u64
|
---|
829 | };
|
---|
830 |
|
---|
831 | /** Function table for the SHRD instruction, AMD EFLAGS variation. */
|
---|
832 | IEM_STATIC const IEMOPSHIFTDBLSIZES g_iemAImpl_shrd_amd =
|
---|
833 | {
|
---|
834 | iemAImpl_shrd_u16_amd,
|
---|
835 | iemAImpl_shrd_u32_amd,
|
---|
836 | iemAImpl_shrd_u64_amd
|
---|
837 | };
|
---|
838 |
|
---|
839 | /** Function table for the SHRD instruction, Intel EFLAGS variation. */
|
---|
840 | IEM_STATIC const IEMOPSHIFTDBLSIZES g_iemAImpl_shrd_intel =
|
---|
841 | {
|
---|
842 | iemAImpl_shrd_u16_intel,
|
---|
843 | iemAImpl_shrd_u32_intel,
|
---|
844 | iemAImpl_shrd_u64_intel
|
---|
845 | };
|
---|
846 |
|
---|
847 | /** EFLAGS variation selection table for the SHRD instruction. */
|
---|
848 | IEM_STATIC const IEMOPSHIFTDBLSIZES * const g_iemAImpl_shrd_eflags[] =
|
---|
849 | {
|
---|
850 | &g_iemAImpl_shrd,
|
---|
851 | &g_iemAImpl_shrd_intel,
|
---|
852 | &g_iemAImpl_shrd_amd,
|
---|
853 | &g_iemAImpl_shrd
|
---|
854 | };
|
---|
855 |
|
---|
856 |
|
---|
857 | # ifndef IEM_WITHOUT_ASSEMBLY
|
---|
858 | /** Function table for the VPXOR instruction */
|
---|
859 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpand = { iemAImpl_vpand_u128, iemAImpl_vpand_u256 };
|
---|
860 | /** Function table for the VPXORN instruction */
|
---|
861 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpandn = { iemAImpl_vpandn_u128, iemAImpl_vpandn_u256 };
|
---|
862 | /** Function table for the VPOR instruction */
|
---|
863 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpor = { iemAImpl_vpor_u128, iemAImpl_vpor_u256 };
|
---|
864 | /** Function table for the VPXOR instruction */
|
---|
865 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpxor = { iemAImpl_vpxor_u128, iemAImpl_vpxor_u256 };
|
---|
866 | # endif
|
---|
867 |
|
---|
868 | /** Function table for the VPAND instruction, software fallback. */
|
---|
869 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpand_fallback = { iemAImpl_vpand_u128_fallback, iemAImpl_vpand_u256_fallback };
|
---|
870 | /** Function table for the VPANDN instruction, software fallback. */
|
---|
871 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpandn_fallback= { iemAImpl_vpandn_u128_fallback, iemAImpl_vpandn_u256_fallback };
|
---|
872 | /** Function table for the VPOR instruction, software fallback. */
|
---|
873 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpor_fallback = { iemAImpl_vpor_u128_fallback, iemAImpl_vpor_u256_fallback };
|
---|
874 | /** Function table for the VPXOR instruction, software fallback. */
|
---|
875 | IEM_STATIC const IEMOPMEDIAF3 g_iemAImpl_vpxor_fallback = { iemAImpl_vpxor_u128_fallback, iemAImpl_vpxor_u256_fallback };
|
---|
876 |
|
---|
877 | #endif /* !TST_IEM_CHECK_MC */
|
---|
878 |
|
---|
879 |
|
---|
880 | /**
|
---|
881 | * Common worker for instructions like ADD, AND, OR, ++ with a byte
|
---|
882 | * memory/register as the destination.
|
---|
883 | *
|
---|
884 | * @param pImpl Pointer to the instruction implementation (assembly).
|
---|
885 | */
|
---|
886 | FNIEMOP_DEF_1(iemOpHlpBinaryOperator_rm_r8, PCIEMOPBINSIZES, pImpl)
|
---|
887 | {
|
---|
888 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm);
|
---|
889 |
|
---|
890 | /*
|
---|
891 | * If rm is denoting a register, no more instruction bytes.
|
---|
892 | */
|
---|
893 | if (IEM_IS_MODRM_REG_MODE(bRm))
|
---|
894 | {
|
---|
895 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
896 |
|
---|
897 | IEM_MC_BEGIN(3, 0);
|
---|
898 | IEM_MC_ARG(uint8_t *, pu8Dst, 0);
|
---|
899 | IEM_MC_ARG(uint8_t, u8Src, 1);
|
---|
900 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
901 |
|
---|
902 | IEM_MC_FETCH_GREG_U8(u8Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
903 | IEM_MC_REF_GREG_U8(pu8Dst, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
904 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
905 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU8, pu8Dst, u8Src, pEFlags);
|
---|
906 |
|
---|
907 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
908 | IEM_MC_END();
|
---|
909 | }
|
---|
910 | else
|
---|
911 | {
|
---|
912 | /*
|
---|
913 | * We're accessing memory.
|
---|
914 | * Note! We're putting the eflags on the stack here so we can commit them
|
---|
915 | * after the memory.
|
---|
916 | */
|
---|
917 | uint32_t const fAccess = pImpl->pfnLockedU8 ? IEM_ACCESS_DATA_RW : IEM_ACCESS_DATA_R; /* CMP,TEST */
|
---|
918 | IEM_MC_BEGIN(3, 2);
|
---|
919 | IEM_MC_ARG(uint8_t *, pu8Dst, 0);
|
---|
920 | IEM_MC_ARG(uint8_t, u8Src, 1);
|
---|
921 | IEM_MC_ARG_LOCAL_EFLAGS(pEFlags, EFlags, 2);
|
---|
922 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
923 |
|
---|
924 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
925 | if (!pImpl->pfnLockedU8)
|
---|
926 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
927 | IEM_MC_MEM_MAP(pu8Dst, fAccess, pVCpu->iem.s.iEffSeg, GCPtrEffDst, 0 /*arg*/);
|
---|
928 | IEM_MC_FETCH_GREG_U8(u8Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
929 | IEM_MC_FETCH_EFLAGS(EFlags);
|
---|
930 | if (!(pVCpu->iem.s.fPrefixes & IEM_OP_PRF_LOCK))
|
---|
931 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU8, pu8Dst, u8Src, pEFlags);
|
---|
932 | else
|
---|
933 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnLockedU8, pu8Dst, u8Src, pEFlags);
|
---|
934 |
|
---|
935 | IEM_MC_MEM_COMMIT_AND_UNMAP(pu8Dst, fAccess);
|
---|
936 | IEM_MC_COMMIT_EFLAGS(EFlags);
|
---|
937 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
938 | IEM_MC_END();
|
---|
939 | }
|
---|
940 | }
|
---|
941 |
|
---|
942 |
|
---|
943 | /**
|
---|
944 | * Common worker for word/dword/qword instructions like ADD, AND, OR, ++ with
|
---|
945 | * memory/register as the destination.
|
---|
946 | *
|
---|
947 | * @param pImpl Pointer to the instruction implementation (assembly).
|
---|
948 | */
|
---|
949 | FNIEMOP_DEF_1(iemOpHlpBinaryOperator_rm_rv, PCIEMOPBINSIZES, pImpl)
|
---|
950 | {
|
---|
951 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm);
|
---|
952 |
|
---|
953 | /*
|
---|
954 | * If rm is denoting a register, no more instruction bytes.
|
---|
955 | */
|
---|
956 | if (IEM_IS_MODRM_REG_MODE(bRm))
|
---|
957 | {
|
---|
958 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
959 |
|
---|
960 | switch (pVCpu->iem.s.enmEffOpSize)
|
---|
961 | {
|
---|
962 | case IEMMODE_16BIT:
|
---|
963 | IEM_MC_BEGIN(3, 0);
|
---|
964 | IEM_MC_ARG(uint16_t *, pu16Dst, 0);
|
---|
965 | IEM_MC_ARG(uint16_t, u16Src, 1);
|
---|
966 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
967 |
|
---|
968 | IEM_MC_FETCH_GREG_U16(u16Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
969 | IEM_MC_REF_GREG_U16(pu16Dst, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
970 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
971 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU16, pu16Dst, u16Src, pEFlags);
|
---|
972 |
|
---|
973 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
974 | IEM_MC_END();
|
---|
975 | break;
|
---|
976 |
|
---|
977 | case IEMMODE_32BIT:
|
---|
978 | IEM_MC_BEGIN(3, 0);
|
---|
979 | IEM_MC_ARG(uint32_t *, pu32Dst, 0);
|
---|
980 | IEM_MC_ARG(uint32_t, u32Src, 1);
|
---|
981 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
982 |
|
---|
983 | IEM_MC_FETCH_GREG_U32(u32Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
984 | IEM_MC_REF_GREG_U32(pu32Dst, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
985 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
986 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU32, pu32Dst, u32Src, pEFlags);
|
---|
987 |
|
---|
988 | if (pImpl != &g_iemAImpl_test && pImpl != &g_iemAImpl_cmp)
|
---|
989 | IEM_MC_CLEAR_HIGH_GREG_U64_BY_REF(pu32Dst);
|
---|
990 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
991 | IEM_MC_END();
|
---|
992 | break;
|
---|
993 |
|
---|
994 | case IEMMODE_64BIT:
|
---|
995 | IEM_MC_BEGIN(3, 0);
|
---|
996 | IEM_MC_ARG(uint64_t *, pu64Dst, 0);
|
---|
997 | IEM_MC_ARG(uint64_t, u64Src, 1);
|
---|
998 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
999 |
|
---|
1000 | IEM_MC_FETCH_GREG_U64(u64Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1001 | IEM_MC_REF_GREG_U64(pu64Dst, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
1002 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1003 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU64, pu64Dst, u64Src, pEFlags);
|
---|
1004 |
|
---|
1005 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1006 | IEM_MC_END();
|
---|
1007 | break;
|
---|
1008 |
|
---|
1009 | IEM_NOT_REACHED_DEFAULT_CASE_RET();
|
---|
1010 | }
|
---|
1011 | }
|
---|
1012 | else
|
---|
1013 | {
|
---|
1014 | /*
|
---|
1015 | * We're accessing memory.
|
---|
1016 | * Note! We're putting the eflags on the stack here so we can commit them
|
---|
1017 | * after the memory.
|
---|
1018 | */
|
---|
1019 | uint32_t const fAccess = pImpl->pfnLockedU8 ? IEM_ACCESS_DATA_RW : IEM_ACCESS_DATA_R /* CMP,TEST */;
|
---|
1020 | switch (pVCpu->iem.s.enmEffOpSize)
|
---|
1021 | {
|
---|
1022 | case IEMMODE_16BIT:
|
---|
1023 | IEM_MC_BEGIN(3, 2);
|
---|
1024 | IEM_MC_ARG(uint16_t *, pu16Dst, 0);
|
---|
1025 | IEM_MC_ARG(uint16_t, u16Src, 1);
|
---|
1026 | IEM_MC_ARG_LOCAL_EFLAGS(pEFlags, EFlags, 2);
|
---|
1027 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1028 |
|
---|
1029 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1030 | if (!pImpl->pfnLockedU16)
|
---|
1031 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1032 | IEM_MC_MEM_MAP(pu16Dst, fAccess, pVCpu->iem.s.iEffSeg, GCPtrEffDst, 0 /*arg*/);
|
---|
1033 | IEM_MC_FETCH_GREG_U16(u16Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1034 | IEM_MC_FETCH_EFLAGS(EFlags);
|
---|
1035 | if (!(pVCpu->iem.s.fPrefixes & IEM_OP_PRF_LOCK))
|
---|
1036 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU16, pu16Dst, u16Src, pEFlags);
|
---|
1037 | else
|
---|
1038 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnLockedU16, pu16Dst, u16Src, pEFlags);
|
---|
1039 |
|
---|
1040 | IEM_MC_MEM_COMMIT_AND_UNMAP(pu16Dst, fAccess);
|
---|
1041 | IEM_MC_COMMIT_EFLAGS(EFlags);
|
---|
1042 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1043 | IEM_MC_END();
|
---|
1044 | break;
|
---|
1045 |
|
---|
1046 | case IEMMODE_32BIT:
|
---|
1047 | IEM_MC_BEGIN(3, 2);
|
---|
1048 | IEM_MC_ARG(uint32_t *, pu32Dst, 0);
|
---|
1049 | IEM_MC_ARG(uint32_t, u32Src, 1);
|
---|
1050 | IEM_MC_ARG_LOCAL_EFLAGS(pEFlags, EFlags, 2);
|
---|
1051 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1052 |
|
---|
1053 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1054 | if (!pImpl->pfnLockedU32)
|
---|
1055 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1056 | IEM_MC_MEM_MAP(pu32Dst, fAccess, pVCpu->iem.s.iEffSeg, GCPtrEffDst, 0 /*arg*/);
|
---|
1057 | IEM_MC_FETCH_GREG_U32(u32Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1058 | IEM_MC_FETCH_EFLAGS(EFlags);
|
---|
1059 | if (!(pVCpu->iem.s.fPrefixes & IEM_OP_PRF_LOCK))
|
---|
1060 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU32, pu32Dst, u32Src, pEFlags);
|
---|
1061 | else
|
---|
1062 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnLockedU32, pu32Dst, u32Src, pEFlags);
|
---|
1063 |
|
---|
1064 | IEM_MC_MEM_COMMIT_AND_UNMAP(pu32Dst, fAccess);
|
---|
1065 | IEM_MC_COMMIT_EFLAGS(EFlags);
|
---|
1066 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1067 | IEM_MC_END();
|
---|
1068 | break;
|
---|
1069 |
|
---|
1070 | case IEMMODE_64BIT:
|
---|
1071 | IEM_MC_BEGIN(3, 2);
|
---|
1072 | IEM_MC_ARG(uint64_t *, pu64Dst, 0);
|
---|
1073 | IEM_MC_ARG(uint64_t, u64Src, 1);
|
---|
1074 | IEM_MC_ARG_LOCAL_EFLAGS(pEFlags, EFlags, 2);
|
---|
1075 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1076 |
|
---|
1077 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1078 | if (!pImpl->pfnLockedU64)
|
---|
1079 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1080 | IEM_MC_MEM_MAP(pu64Dst, fAccess, pVCpu->iem.s.iEffSeg, GCPtrEffDst, 0 /*arg*/);
|
---|
1081 | IEM_MC_FETCH_GREG_U64(u64Src, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1082 | IEM_MC_FETCH_EFLAGS(EFlags);
|
---|
1083 | if (!(pVCpu->iem.s.fPrefixes & IEM_OP_PRF_LOCK))
|
---|
1084 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU64, pu64Dst, u64Src, pEFlags);
|
---|
1085 | else
|
---|
1086 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnLockedU64, pu64Dst, u64Src, pEFlags);
|
---|
1087 |
|
---|
1088 | IEM_MC_MEM_COMMIT_AND_UNMAP(pu64Dst, fAccess);
|
---|
1089 | IEM_MC_COMMIT_EFLAGS(EFlags);
|
---|
1090 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1091 | IEM_MC_END();
|
---|
1092 | break;
|
---|
1093 |
|
---|
1094 | IEM_NOT_REACHED_DEFAULT_CASE_RET();
|
---|
1095 | }
|
---|
1096 | }
|
---|
1097 | }
|
---|
1098 |
|
---|
1099 |
|
---|
1100 | /**
|
---|
1101 | * Common worker for byte instructions like ADD, AND, OR, ++ with a register as
|
---|
1102 | * the destination.
|
---|
1103 | *
|
---|
1104 | * @param pImpl Pointer to the instruction implementation (assembly).
|
---|
1105 | */
|
---|
1106 | FNIEMOP_DEF_1(iemOpHlpBinaryOperator_r8_rm, PCIEMOPBINSIZES, pImpl)
|
---|
1107 | {
|
---|
1108 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm);
|
---|
1109 |
|
---|
1110 | /*
|
---|
1111 | * If rm is denoting a register, no more instruction bytes.
|
---|
1112 | */
|
---|
1113 | if (IEM_IS_MODRM_REG_MODE(bRm))
|
---|
1114 | {
|
---|
1115 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1116 | IEM_MC_BEGIN(3, 0);
|
---|
1117 | IEM_MC_ARG(uint8_t *, pu8Dst, 0);
|
---|
1118 | IEM_MC_ARG(uint8_t, u8Src, 1);
|
---|
1119 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1120 |
|
---|
1121 | IEM_MC_FETCH_GREG_U8(u8Src, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
1122 | IEM_MC_REF_GREG_U8(pu8Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1123 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1124 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU8, pu8Dst, u8Src, pEFlags);
|
---|
1125 |
|
---|
1126 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1127 | IEM_MC_END();
|
---|
1128 | }
|
---|
1129 | else
|
---|
1130 | {
|
---|
1131 | /*
|
---|
1132 | * We're accessing memory.
|
---|
1133 | */
|
---|
1134 | IEM_MC_BEGIN(3, 1);
|
---|
1135 | IEM_MC_ARG(uint8_t *, pu8Dst, 0);
|
---|
1136 | IEM_MC_ARG(uint8_t, u8Src, 1);
|
---|
1137 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1138 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1139 |
|
---|
1140 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1141 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1142 | IEM_MC_FETCH_MEM_U8(u8Src, pVCpu->iem.s.iEffSeg, GCPtrEffDst);
|
---|
1143 | IEM_MC_REF_GREG_U8(pu8Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1144 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1145 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU8, pu8Dst, u8Src, pEFlags);
|
---|
1146 |
|
---|
1147 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1148 | IEM_MC_END();
|
---|
1149 | }
|
---|
1150 | }
|
---|
1151 |
|
---|
1152 |
|
---|
1153 | /**
|
---|
1154 | * Common worker for word/dword/qword instructions like ADD, AND, OR, ++ with a
|
---|
1155 | * register as the destination.
|
---|
1156 | *
|
---|
1157 | * @param pImpl Pointer to the instruction implementation (assembly).
|
---|
1158 | */
|
---|
1159 | FNIEMOP_DEF_1(iemOpHlpBinaryOperator_rv_rm, PCIEMOPBINSIZES, pImpl)
|
---|
1160 | {
|
---|
1161 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm);
|
---|
1162 |
|
---|
1163 | /*
|
---|
1164 | * If rm is denoting a register, no more instruction bytes.
|
---|
1165 | */
|
---|
1166 | if (IEM_IS_MODRM_REG_MODE(bRm))
|
---|
1167 | {
|
---|
1168 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1169 | switch (pVCpu->iem.s.enmEffOpSize)
|
---|
1170 | {
|
---|
1171 | case IEMMODE_16BIT:
|
---|
1172 | IEM_MC_BEGIN(3, 0);
|
---|
1173 | IEM_MC_ARG(uint16_t *, pu16Dst, 0);
|
---|
1174 | IEM_MC_ARG(uint16_t, u16Src, 1);
|
---|
1175 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1176 |
|
---|
1177 | IEM_MC_FETCH_GREG_U16(u16Src, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
1178 | IEM_MC_REF_GREG_U16(pu16Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1179 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1180 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU16, pu16Dst, u16Src, pEFlags);
|
---|
1181 |
|
---|
1182 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1183 | IEM_MC_END();
|
---|
1184 | break;
|
---|
1185 |
|
---|
1186 | case IEMMODE_32BIT:
|
---|
1187 | IEM_MC_BEGIN(3, 0);
|
---|
1188 | IEM_MC_ARG(uint32_t *, pu32Dst, 0);
|
---|
1189 | IEM_MC_ARG(uint32_t, u32Src, 1);
|
---|
1190 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1191 |
|
---|
1192 | IEM_MC_FETCH_GREG_U32(u32Src, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
1193 | IEM_MC_REF_GREG_U32(pu32Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1194 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1195 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU32, pu32Dst, u32Src, pEFlags);
|
---|
1196 |
|
---|
1197 | if (pImpl != &g_iemAImpl_cmp) /* Not used with TEST. */
|
---|
1198 | IEM_MC_CLEAR_HIGH_GREG_U64_BY_REF(pu32Dst);
|
---|
1199 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1200 | IEM_MC_END();
|
---|
1201 | break;
|
---|
1202 |
|
---|
1203 | case IEMMODE_64BIT:
|
---|
1204 | IEM_MC_BEGIN(3, 0);
|
---|
1205 | IEM_MC_ARG(uint64_t *, pu64Dst, 0);
|
---|
1206 | IEM_MC_ARG(uint64_t, u64Src, 1);
|
---|
1207 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1208 |
|
---|
1209 | IEM_MC_FETCH_GREG_U64(u64Src, IEM_GET_MODRM_RM(pVCpu, bRm));
|
---|
1210 | IEM_MC_REF_GREG_U64(pu64Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1211 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1212 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU64, pu64Dst, u64Src, pEFlags);
|
---|
1213 |
|
---|
1214 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1215 | IEM_MC_END();
|
---|
1216 | break;
|
---|
1217 |
|
---|
1218 | IEM_NOT_REACHED_DEFAULT_CASE_RET();
|
---|
1219 | }
|
---|
1220 | }
|
---|
1221 | else
|
---|
1222 | {
|
---|
1223 | /*
|
---|
1224 | * We're accessing memory.
|
---|
1225 | */
|
---|
1226 | switch (pVCpu->iem.s.enmEffOpSize)
|
---|
1227 | {
|
---|
1228 | case IEMMODE_16BIT:
|
---|
1229 | IEM_MC_BEGIN(3, 1);
|
---|
1230 | IEM_MC_ARG(uint16_t *, pu16Dst, 0);
|
---|
1231 | IEM_MC_ARG(uint16_t, u16Src, 1);
|
---|
1232 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1233 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1234 |
|
---|
1235 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1236 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1237 | IEM_MC_FETCH_MEM_U16(u16Src, pVCpu->iem.s.iEffSeg, GCPtrEffDst);
|
---|
1238 | IEM_MC_REF_GREG_U16(pu16Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1239 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1240 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU16, pu16Dst, u16Src, pEFlags);
|
---|
1241 |
|
---|
1242 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1243 | IEM_MC_END();
|
---|
1244 | break;
|
---|
1245 |
|
---|
1246 | case IEMMODE_32BIT:
|
---|
1247 | IEM_MC_BEGIN(3, 1);
|
---|
1248 | IEM_MC_ARG(uint32_t *, pu32Dst, 0);
|
---|
1249 | IEM_MC_ARG(uint32_t, u32Src, 1);
|
---|
1250 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1251 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1252 |
|
---|
1253 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1254 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1255 | IEM_MC_FETCH_MEM_U32(u32Src, pVCpu->iem.s.iEffSeg, GCPtrEffDst);
|
---|
1256 | IEM_MC_REF_GREG_U32(pu32Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1257 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1258 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU32, pu32Dst, u32Src, pEFlags);
|
---|
1259 |
|
---|
1260 | if (pImpl != &g_iemAImpl_cmp)
|
---|
1261 | IEM_MC_CLEAR_HIGH_GREG_U64_BY_REF(pu32Dst);
|
---|
1262 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1263 | IEM_MC_END();
|
---|
1264 | break;
|
---|
1265 |
|
---|
1266 | case IEMMODE_64BIT:
|
---|
1267 | IEM_MC_BEGIN(3, 1);
|
---|
1268 | IEM_MC_ARG(uint64_t *, pu64Dst, 0);
|
---|
1269 | IEM_MC_ARG(uint64_t, u64Src, 1);
|
---|
1270 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1271 | IEM_MC_LOCAL(RTGCPTR, GCPtrEffDst);
|
---|
1272 |
|
---|
1273 | IEM_MC_CALC_RM_EFF_ADDR(GCPtrEffDst, bRm, 0);
|
---|
1274 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1275 | IEM_MC_FETCH_MEM_U64(u64Src, pVCpu->iem.s.iEffSeg, GCPtrEffDst);
|
---|
1276 | IEM_MC_REF_GREG_U64(pu64Dst, IEM_GET_MODRM_REG(pVCpu, bRm));
|
---|
1277 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1278 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU64, pu64Dst, u64Src, pEFlags);
|
---|
1279 |
|
---|
1280 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1281 | IEM_MC_END();
|
---|
1282 | break;
|
---|
1283 |
|
---|
1284 | IEM_NOT_REACHED_DEFAULT_CASE_RET();
|
---|
1285 | }
|
---|
1286 | }
|
---|
1287 | }
|
---|
1288 |
|
---|
1289 |
|
---|
1290 | /**
|
---|
1291 | * Common worker for instructions like ADD, AND, OR, ++ with working on AL with
|
---|
1292 | * a byte immediate.
|
---|
1293 | *
|
---|
1294 | * @param pImpl Pointer to the instruction implementation (assembly).
|
---|
1295 | */
|
---|
1296 | FNIEMOP_DEF_1(iemOpHlpBinaryOperator_AL_Ib, PCIEMOPBINSIZES, pImpl)
|
---|
1297 | {
|
---|
1298 | uint8_t u8Imm; IEM_OPCODE_GET_NEXT_U8(&u8Imm);
|
---|
1299 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1300 |
|
---|
1301 | IEM_MC_BEGIN(3, 0);
|
---|
1302 | IEM_MC_ARG(uint8_t *, pu8Dst, 0);
|
---|
1303 | IEM_MC_ARG_CONST(uint8_t, u8Src,/*=*/ u8Imm, 1);
|
---|
1304 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1305 |
|
---|
1306 | IEM_MC_REF_GREG_U8(pu8Dst, X86_GREG_xAX);
|
---|
1307 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1308 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU8, pu8Dst, u8Src, pEFlags);
|
---|
1309 |
|
---|
1310 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1311 | IEM_MC_END();
|
---|
1312 | }
|
---|
1313 |
|
---|
1314 |
|
---|
1315 | /**
|
---|
1316 | * Common worker for instructions like ADD, AND, OR, ++ with working on
|
---|
1317 | * AX/EAX/RAX with a word/dword immediate.
|
---|
1318 | *
|
---|
1319 | * @param pImpl Pointer to the instruction implementation (assembly).
|
---|
1320 | */
|
---|
1321 | FNIEMOP_DEF_1(iemOpHlpBinaryOperator_rAX_Iz, PCIEMOPBINSIZES, pImpl)
|
---|
1322 | {
|
---|
1323 | switch (pVCpu->iem.s.enmEffOpSize)
|
---|
1324 | {
|
---|
1325 | case IEMMODE_16BIT:
|
---|
1326 | {
|
---|
1327 | uint16_t u16Imm; IEM_OPCODE_GET_NEXT_U16(&u16Imm);
|
---|
1328 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1329 |
|
---|
1330 | IEM_MC_BEGIN(3, 0);
|
---|
1331 | IEM_MC_ARG(uint16_t *, pu16Dst, 0);
|
---|
1332 | IEM_MC_ARG_CONST(uint16_t, u16Src,/*=*/ u16Imm, 1);
|
---|
1333 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1334 |
|
---|
1335 | IEM_MC_REF_GREG_U16(pu16Dst, X86_GREG_xAX);
|
---|
1336 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1337 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU16, pu16Dst, u16Src, pEFlags);
|
---|
1338 |
|
---|
1339 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1340 | IEM_MC_END();
|
---|
1341 | }
|
---|
1342 |
|
---|
1343 | case IEMMODE_32BIT:
|
---|
1344 | {
|
---|
1345 | uint32_t u32Imm; IEM_OPCODE_GET_NEXT_U32(&u32Imm);
|
---|
1346 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1347 |
|
---|
1348 | IEM_MC_BEGIN(3, 0);
|
---|
1349 | IEM_MC_ARG(uint32_t *, pu32Dst, 0);
|
---|
1350 | IEM_MC_ARG_CONST(uint32_t, u32Src,/*=*/ u32Imm, 1);
|
---|
1351 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1352 |
|
---|
1353 | IEM_MC_REF_GREG_U32(pu32Dst, X86_GREG_xAX);
|
---|
1354 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1355 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU32, pu32Dst, u32Src, pEFlags);
|
---|
1356 |
|
---|
1357 | if ((pImpl != &g_iemAImpl_test) && (pImpl != &g_iemAImpl_cmp))
|
---|
1358 | IEM_MC_CLEAR_HIGH_GREG_U64_BY_REF(pu32Dst);
|
---|
1359 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1360 | IEM_MC_END();
|
---|
1361 | }
|
---|
1362 |
|
---|
1363 | case IEMMODE_64BIT:
|
---|
1364 | {
|
---|
1365 | uint64_t u64Imm; IEM_OPCODE_GET_NEXT_S32_SX_U64(&u64Imm);
|
---|
1366 | IEMOP_HLP_DONE_DECODING_NO_LOCK_PREFIX();
|
---|
1367 |
|
---|
1368 | IEM_MC_BEGIN(3, 0);
|
---|
1369 | IEM_MC_ARG(uint64_t *, pu64Dst, 0);
|
---|
1370 | IEM_MC_ARG_CONST(uint64_t, u64Src,/*=*/ u64Imm, 1);
|
---|
1371 | IEM_MC_ARG(uint32_t *, pEFlags, 2);
|
---|
1372 |
|
---|
1373 | IEM_MC_REF_GREG_U64(pu64Dst, X86_GREG_xAX);
|
---|
1374 | IEM_MC_REF_EFLAGS(pEFlags);
|
---|
1375 | IEM_MC_CALL_VOID_AIMPL_3(pImpl->pfnNormalU64, pu64Dst, u64Src, pEFlags);
|
---|
1376 |
|
---|
1377 | IEM_MC_ADVANCE_RIP_AND_FINISH();
|
---|
1378 | IEM_MC_END();
|
---|
1379 | }
|
---|
1380 |
|
---|
1381 | IEM_NOT_REACHED_DEFAULT_CASE_RET();
|
---|
1382 | }
|
---|
1383 | }
|
---|
1384 |
|
---|
1385 |
|
---|
1386 | /** Opcodes 0xf1, 0xd6. */
|
---|
1387 | FNIEMOP_DEF(iemOp_Invalid)
|
---|
1388 | {
|
---|
1389 | IEMOP_MNEMONIC(Invalid, "Invalid");
|
---|
1390 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1391 | }
|
---|
1392 |
|
---|
1393 |
|
---|
1394 | /** Invalid with RM byte . */
|
---|
1395 | FNIEMOPRM_DEF(iemOp_InvalidWithRM)
|
---|
1396 | {
|
---|
1397 | RT_NOREF_PV(bRm);
|
---|
1398 | IEMOP_MNEMONIC(InvalidWithRm, "InvalidWithRM");
|
---|
1399 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1400 | }
|
---|
1401 |
|
---|
1402 |
|
---|
1403 | /** Invalid with RM byte where intel decodes any additional address encoding
|
---|
1404 | * bytes. */
|
---|
1405 | FNIEMOPRM_DEF(iemOp_InvalidWithRMNeedDecode)
|
---|
1406 | {
|
---|
1407 | IEMOP_MNEMONIC(InvalidWithRMNeedDecode, "InvalidWithRMNeedDecode");
|
---|
1408 | if (pVCpu->iem.s.enmCpuVendor == CPUMCPUVENDOR_INTEL)
|
---|
1409 | {
|
---|
1410 | #ifndef TST_IEM_CHECK_MC
|
---|
1411 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1412 | {
|
---|
1413 | RTGCPTR GCPtrEff;
|
---|
1414 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1415 | if (rcStrict != VINF_SUCCESS)
|
---|
1416 | return rcStrict;
|
---|
1417 | }
|
---|
1418 | #endif
|
---|
1419 | }
|
---|
1420 | IEMOP_HLP_DONE_DECODING();
|
---|
1421 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1422 | }
|
---|
1423 |
|
---|
1424 |
|
---|
1425 | /** Invalid with RM byte where both AMD and Intel decodes any additional
|
---|
1426 | * address encoding bytes. */
|
---|
1427 | FNIEMOPRM_DEF(iemOp_InvalidWithRMAllNeeded)
|
---|
1428 | {
|
---|
1429 | IEMOP_MNEMONIC(InvalidWithRMAllNeeded, "InvalidWithRMAllNeeded");
|
---|
1430 | #ifndef TST_IEM_CHECK_MC
|
---|
1431 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1432 | {
|
---|
1433 | RTGCPTR GCPtrEff;
|
---|
1434 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1435 | if (rcStrict != VINF_SUCCESS)
|
---|
1436 | return rcStrict;
|
---|
1437 | }
|
---|
1438 | #endif
|
---|
1439 | IEMOP_HLP_DONE_DECODING();
|
---|
1440 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1441 | }
|
---|
1442 |
|
---|
1443 |
|
---|
1444 | /** Invalid with RM byte where intel requires 8-byte immediate.
|
---|
1445 | * Intel will also need SIB and displacement if bRm indicates memory. */
|
---|
1446 | FNIEMOPRM_DEF(iemOp_InvalidWithRMNeedImm8)
|
---|
1447 | {
|
---|
1448 | IEMOP_MNEMONIC(InvalidWithRMNeedImm8, "InvalidWithRMNeedImm8");
|
---|
1449 | if (pVCpu->iem.s.enmCpuVendor == CPUMCPUVENDOR_INTEL)
|
---|
1450 | {
|
---|
1451 | #ifndef TST_IEM_CHECK_MC
|
---|
1452 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1453 | {
|
---|
1454 | RTGCPTR GCPtrEff;
|
---|
1455 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1456 | if (rcStrict != VINF_SUCCESS)
|
---|
1457 | return rcStrict;
|
---|
1458 | }
|
---|
1459 | #endif
|
---|
1460 | uint8_t bImm8; IEM_OPCODE_GET_NEXT_U8(&bImm8); RT_NOREF(bRm);
|
---|
1461 | }
|
---|
1462 | IEMOP_HLP_DONE_DECODING();
|
---|
1463 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1464 | }
|
---|
1465 |
|
---|
1466 |
|
---|
1467 | /** Invalid with RM byte where intel requires 8-byte immediate.
|
---|
1468 | * Both AMD and Intel also needs SIB and displacement according to bRm. */
|
---|
1469 | FNIEMOPRM_DEF(iemOp_InvalidWithRMAllNeedImm8)
|
---|
1470 | {
|
---|
1471 | IEMOP_MNEMONIC(InvalidWithRMAllNeedImm8, "InvalidWithRMAllNeedImm8");
|
---|
1472 | #ifndef TST_IEM_CHECK_MC
|
---|
1473 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1474 | {
|
---|
1475 | RTGCPTR GCPtrEff;
|
---|
1476 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1477 | if (rcStrict != VINF_SUCCESS)
|
---|
1478 | return rcStrict;
|
---|
1479 | }
|
---|
1480 | #endif
|
---|
1481 | uint8_t bImm8; IEM_OPCODE_GET_NEXT_U8(&bImm8); RT_NOREF(bRm);
|
---|
1482 | IEMOP_HLP_DONE_DECODING();
|
---|
1483 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1484 | }
|
---|
1485 |
|
---|
1486 |
|
---|
1487 | /** Invalid opcode where intel requires Mod R/M sequence. */
|
---|
1488 | FNIEMOP_DEF(iemOp_InvalidNeedRM)
|
---|
1489 | {
|
---|
1490 | IEMOP_MNEMONIC(InvalidNeedRM, "InvalidNeedRM");
|
---|
1491 | if (pVCpu->iem.s.enmCpuVendor == CPUMCPUVENDOR_INTEL)
|
---|
1492 | {
|
---|
1493 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); RT_NOREF(bRm);
|
---|
1494 | #ifndef TST_IEM_CHECK_MC
|
---|
1495 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1496 | {
|
---|
1497 | RTGCPTR GCPtrEff;
|
---|
1498 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1499 | if (rcStrict != VINF_SUCCESS)
|
---|
1500 | return rcStrict;
|
---|
1501 | }
|
---|
1502 | #endif
|
---|
1503 | }
|
---|
1504 | IEMOP_HLP_DONE_DECODING();
|
---|
1505 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1506 | }
|
---|
1507 |
|
---|
1508 |
|
---|
1509 | /** Invalid opcode where both AMD and Intel requires Mod R/M sequence. */
|
---|
1510 | FNIEMOP_DEF(iemOp_InvalidAllNeedRM)
|
---|
1511 | {
|
---|
1512 | IEMOP_MNEMONIC(InvalidAllNeedRM, "InvalidAllNeedRM");
|
---|
1513 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); RT_NOREF(bRm);
|
---|
1514 | #ifndef TST_IEM_CHECK_MC
|
---|
1515 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1516 | {
|
---|
1517 | RTGCPTR GCPtrEff;
|
---|
1518 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1519 | if (rcStrict != VINF_SUCCESS)
|
---|
1520 | return rcStrict;
|
---|
1521 | }
|
---|
1522 | #endif
|
---|
1523 | IEMOP_HLP_DONE_DECODING();
|
---|
1524 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1525 | }
|
---|
1526 |
|
---|
1527 |
|
---|
1528 | /** Invalid opcode where intel requires Mod R/M sequence and 8-byte
|
---|
1529 | * immediate. */
|
---|
1530 | FNIEMOP_DEF(iemOp_InvalidNeedRMImm8)
|
---|
1531 | {
|
---|
1532 | IEMOP_MNEMONIC(InvalidNeedRMImm8, "InvalidNeedRMImm8");
|
---|
1533 | if (pVCpu->iem.s.enmCpuVendor == CPUMCPUVENDOR_INTEL)
|
---|
1534 | {
|
---|
1535 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); RT_NOREF(bRm);
|
---|
1536 | #ifndef TST_IEM_CHECK_MC
|
---|
1537 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1538 | {
|
---|
1539 | RTGCPTR GCPtrEff;
|
---|
1540 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1541 | if (rcStrict != VINF_SUCCESS)
|
---|
1542 | return rcStrict;
|
---|
1543 | }
|
---|
1544 | #endif
|
---|
1545 | uint8_t bImm; IEM_OPCODE_GET_NEXT_U8(&bImm); RT_NOREF(bImm);
|
---|
1546 | }
|
---|
1547 | IEMOP_HLP_DONE_DECODING();
|
---|
1548 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1549 | }
|
---|
1550 |
|
---|
1551 |
|
---|
1552 | /** Invalid opcode where intel requires a 3rd escape byte and a Mod R/M
|
---|
1553 | * sequence. */
|
---|
1554 | FNIEMOP_DEF(iemOp_InvalidNeed3ByteEscRM)
|
---|
1555 | {
|
---|
1556 | IEMOP_MNEMONIC(InvalidNeed3ByteEscRM, "InvalidNeed3ByteEscRM");
|
---|
1557 | if (pVCpu->iem.s.enmCpuVendor == CPUMCPUVENDOR_INTEL)
|
---|
1558 | {
|
---|
1559 | uint8_t b3rd; IEM_OPCODE_GET_NEXT_U8(&b3rd); RT_NOREF(b3rd);
|
---|
1560 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); RT_NOREF(bRm);
|
---|
1561 | #ifndef TST_IEM_CHECK_MC
|
---|
1562 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1563 | {
|
---|
1564 | RTGCPTR GCPtrEff;
|
---|
1565 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 0, &GCPtrEff);
|
---|
1566 | if (rcStrict != VINF_SUCCESS)
|
---|
1567 | return rcStrict;
|
---|
1568 | }
|
---|
1569 | #endif
|
---|
1570 | }
|
---|
1571 | IEMOP_HLP_DONE_DECODING();
|
---|
1572 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1573 | }
|
---|
1574 |
|
---|
1575 |
|
---|
1576 | /** Invalid opcode where intel requires a 3rd escape byte, Mod R/M sequence, and
|
---|
1577 | * a 8-byte immediate. */
|
---|
1578 | FNIEMOP_DEF(iemOp_InvalidNeed3ByteEscRMImm8)
|
---|
1579 | {
|
---|
1580 | IEMOP_MNEMONIC(InvalidNeed3ByteEscRMImm8, "InvalidNeed3ByteEscRMImm8");
|
---|
1581 | if (pVCpu->iem.s.enmCpuVendor == CPUMCPUVENDOR_INTEL)
|
---|
1582 | {
|
---|
1583 | uint8_t b3rd; IEM_OPCODE_GET_NEXT_U8(&b3rd); RT_NOREF(b3rd);
|
---|
1584 | uint8_t bRm; IEM_OPCODE_GET_NEXT_U8(&bRm); RT_NOREF(bRm);
|
---|
1585 | #ifndef TST_IEM_CHECK_MC
|
---|
1586 | if (IEM_IS_MODRM_MEM_MODE(bRm))
|
---|
1587 | {
|
---|
1588 | RTGCPTR GCPtrEff;
|
---|
1589 | VBOXSTRICTRC rcStrict = iemOpHlpCalcRmEffAddr(pVCpu, bRm, 1, &GCPtrEff);
|
---|
1590 | if (rcStrict != VINF_SUCCESS)
|
---|
1591 | return rcStrict;
|
---|
1592 | }
|
---|
1593 | #endif
|
---|
1594 | uint8_t bImm; IEM_OPCODE_GET_NEXT_U8(&bImm); RT_NOREF(bImm);
|
---|
1595 | IEMOP_HLP_DONE_DECODING();
|
---|
1596 | }
|
---|
1597 | return IEMOP_RAISE_INVALID_OPCODE();
|
---|
1598 | }
|
---|
1599 |
|
---|