1 | /* $Id: IEMInternal.h 47444 2013-07-29 00:37:31Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IEM - Internal header file.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2012 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #ifndef ___IEMInternal_h
|
---|
19 | #define ___IEMInternal_h
|
---|
20 |
|
---|
21 | #include <VBox/vmm/cpum.h>
|
---|
22 | #include <VBox/vmm/iem.h>
|
---|
23 | #include <VBox/vmm/stam.h>
|
---|
24 | #include <VBox/param.h>
|
---|
25 |
|
---|
26 |
|
---|
27 | RT_C_DECLS_BEGIN
|
---|
28 |
|
---|
29 |
|
---|
30 | /** @defgroup grp_iem_int Internals
|
---|
31 | * @ingroup grp_iem
|
---|
32 | * @internal
|
---|
33 | * @{
|
---|
34 | */
|
---|
35 |
|
---|
36 | /** @def IEM_VERIFICATION_MODE_FULL
|
---|
37 | * Shorthand for:
|
---|
38 | * defined(IEM_VERIFICATION_MODE) && !defined(IEM_VERIFICATION_MODE_MINIMAL)
|
---|
39 | */
|
---|
40 | #if defined(IEM_VERIFICATION_MODE) && !defined(IEM_VERIFICATION_MODE_MINIMAL) && !defined(IEM_VERIFICATION_MODE_FULL)
|
---|
41 | # define IEM_VERIFICATION_MODE_FULL
|
---|
42 | #endif
|
---|
43 |
|
---|
44 |
|
---|
45 | /** Finish and move to types.h */
|
---|
46 | typedef union
|
---|
47 | {
|
---|
48 | uint32_t u32;
|
---|
49 | } RTFLOAT32U;
|
---|
50 | typedef RTFLOAT32U *PRTFLOAT32U;
|
---|
51 | typedef RTFLOAT32U const *PCRTFLOAT32U;
|
---|
52 |
|
---|
53 |
|
---|
54 | /**
|
---|
55 | * Extended operand mode that includes a representation of 8-bit.
|
---|
56 | *
|
---|
57 | * This is used for packing down modes when invoking some C instruction
|
---|
58 | * implementations.
|
---|
59 | */
|
---|
60 | typedef enum IEMMODEX
|
---|
61 | {
|
---|
62 | IEMMODEX_16BIT = IEMMODE_16BIT,
|
---|
63 | IEMMODEX_32BIT = IEMMODE_32BIT,
|
---|
64 | IEMMODEX_64BIT = IEMMODE_64BIT,
|
---|
65 | IEMMODEX_8BIT
|
---|
66 | } IEMMODEX;
|
---|
67 | AssertCompileSize(IEMMODEX, 4);
|
---|
68 |
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * Branch types.
|
---|
72 | */
|
---|
73 | typedef enum IEMBRANCH
|
---|
74 | {
|
---|
75 | IEMBRANCH_JUMP = 1,
|
---|
76 | IEMBRANCH_CALL,
|
---|
77 | IEMBRANCH_TRAP,
|
---|
78 | IEMBRANCH_SOFTWARE_INT,
|
---|
79 | IEMBRANCH_HARDWARE_INT
|
---|
80 | } IEMBRANCH;
|
---|
81 | AssertCompileSize(IEMBRANCH, 4);
|
---|
82 |
|
---|
83 |
|
---|
84 | /**
|
---|
85 | * A FPU result.
|
---|
86 | */
|
---|
87 | typedef struct IEMFPURESULT
|
---|
88 | {
|
---|
89 | /** The output value. */
|
---|
90 | RTFLOAT80U r80Result;
|
---|
91 | /** The output status. */
|
---|
92 | uint16_t FSW;
|
---|
93 | } IEMFPURESULT;
|
---|
94 | AssertCompileMemberOffset(IEMFPURESULT, FSW, 10);
|
---|
95 | /** Pointer to a FPU result. */
|
---|
96 | typedef IEMFPURESULT *PIEMFPURESULT;
|
---|
97 | /** Pointer to a const FPU result. */
|
---|
98 | typedef IEMFPURESULT const *PCIEMFPURESULT;
|
---|
99 |
|
---|
100 |
|
---|
101 | /**
|
---|
102 | * A FPU result consisting of two output values and FSW.
|
---|
103 | */
|
---|
104 | typedef struct IEMFPURESULTTWO
|
---|
105 | {
|
---|
106 | /** The first output value. */
|
---|
107 | RTFLOAT80U r80Result1;
|
---|
108 | /** The output status. */
|
---|
109 | uint16_t FSW;
|
---|
110 | /** The second output value. */
|
---|
111 | RTFLOAT80U r80Result2;
|
---|
112 | } IEMFPURESULTTWO;
|
---|
113 | AssertCompileMemberOffset(IEMFPURESULTTWO, FSW, 10);
|
---|
114 | AssertCompileMemberOffset(IEMFPURESULTTWO, r80Result2, 12);
|
---|
115 | /** Pointer to a FPU result consisting of two output values and FSW. */
|
---|
116 | typedef IEMFPURESULTTWO *PIEMFPURESULTTWO;
|
---|
117 | /** Pointer to a const FPU result consisting of two output values and FSW. */
|
---|
118 | typedef IEMFPURESULTTWO const *PCIEMFPURESULTTWO;
|
---|
119 |
|
---|
120 |
|
---|
121 | #ifdef IEM_VERIFICATION_MODE_FULL
|
---|
122 |
|
---|
123 | /**
|
---|
124 | * Verification event type.
|
---|
125 | */
|
---|
126 | typedef enum IEMVERIFYEVENT
|
---|
127 | {
|
---|
128 | IEMVERIFYEVENT_INVALID = 0,
|
---|
129 | IEMVERIFYEVENT_IOPORT_READ,
|
---|
130 | IEMVERIFYEVENT_IOPORT_WRITE,
|
---|
131 | IEMVERIFYEVENT_RAM_WRITE,
|
---|
132 | IEMVERIFYEVENT_RAM_READ
|
---|
133 | } IEMVERIFYEVENT;
|
---|
134 |
|
---|
135 | /** Checks if the event type is a RAM read or write. */
|
---|
136 | # define IEMVERIFYEVENT_IS_RAM(a_enmType) ((a_enmType) == IEMVERIFYEVENT_RAM_WRITE || (a_enmType) == IEMVERIFYEVENT_RAM_READ)
|
---|
137 |
|
---|
138 | /**
|
---|
139 | * Verification event record.
|
---|
140 | */
|
---|
141 | typedef struct IEMVERIFYEVTREC
|
---|
142 | {
|
---|
143 | /** Pointer to the next record in the list. */
|
---|
144 | struct IEMVERIFYEVTREC *pNext;
|
---|
145 | /** The event type. */
|
---|
146 | IEMVERIFYEVENT enmEvent;
|
---|
147 | /** The event data. */
|
---|
148 | union
|
---|
149 | {
|
---|
150 | /** IEMVERIFYEVENT_IOPORT_READ */
|
---|
151 | struct
|
---|
152 | {
|
---|
153 | RTIOPORT Port;
|
---|
154 | uint32_t cbValue;
|
---|
155 | } IOPortRead;
|
---|
156 |
|
---|
157 | /** IEMVERIFYEVENT_IOPORT_WRITE */
|
---|
158 | struct
|
---|
159 | {
|
---|
160 | RTIOPORT Port;
|
---|
161 | uint32_t cbValue;
|
---|
162 | uint32_t u32Value;
|
---|
163 | } IOPortWrite;
|
---|
164 |
|
---|
165 | /** IEMVERIFYEVENT_RAM_READ */
|
---|
166 | struct
|
---|
167 | {
|
---|
168 | RTGCPHYS GCPhys;
|
---|
169 | uint32_t cb;
|
---|
170 | } RamRead;
|
---|
171 |
|
---|
172 | /** IEMVERIFYEVENT_RAM_WRITE */
|
---|
173 | struct
|
---|
174 | {
|
---|
175 | RTGCPHYS GCPhys;
|
---|
176 | uint32_t cb;
|
---|
177 | uint8_t ab[512];
|
---|
178 | } RamWrite;
|
---|
179 | } u;
|
---|
180 | } IEMVERIFYEVTREC;
|
---|
181 | /** Pointer to an IEM event verification records. */
|
---|
182 | typedef IEMVERIFYEVTREC *PIEMVERIFYEVTREC;
|
---|
183 |
|
---|
184 | #endif /* IEM_VERIFICATION_MODE_FULL */
|
---|
185 |
|
---|
186 |
|
---|
187 | /**
|
---|
188 | * The per-CPU IEM state.
|
---|
189 | */
|
---|
190 | typedef struct IEMCPU
|
---|
191 | {
|
---|
192 | /** Pointer to the CPU context - ring-3 contex. */
|
---|
193 | R3PTRTYPE(PCPUMCTX) pCtxR3;
|
---|
194 | /** Pointer to the CPU context - ring-0 contex. */
|
---|
195 | R0PTRTYPE(PCPUMCTX) pCtxR0;
|
---|
196 | /** Pointer to the CPU context - raw-mode contex. */
|
---|
197 | RCPTRTYPE(PCPUMCTX) pCtxRC;
|
---|
198 |
|
---|
199 | /** Offset of the VMCPU structure relative to this structure (negative). */
|
---|
200 | int32_t offVMCpu;
|
---|
201 | /** Offset of the VM structure relative to this structure (negative). */
|
---|
202 | int32_t offVM;
|
---|
203 |
|
---|
204 | /** Whether to bypass access handlers or not. */
|
---|
205 | bool fBypassHandlers;
|
---|
206 | /** Indicates that we're interpreting patch code - RC only! */
|
---|
207 | bool fInPatchCode;
|
---|
208 | /** Explicit alignment padding. */
|
---|
209 | bool afAlignment0[2];
|
---|
210 |
|
---|
211 | /** The flags of the current exception / interrupt. */
|
---|
212 | uint32_t fCurXcpt;
|
---|
213 | /** The current exception / interrupt. */
|
---|
214 | uint8_t uCurXcpt;
|
---|
215 | /** Exception / interrupt recursion depth. */
|
---|
216 | int8_t cXcptRecursions;
|
---|
217 | /** Explicit alignment padding. */
|
---|
218 | bool afAlignment1[1];
|
---|
219 | /** The CPL. */
|
---|
220 | uint8_t uCpl;
|
---|
221 | /** The current CPU execution mode (CS). */
|
---|
222 | IEMMODE enmCpuMode;
|
---|
223 | /** Info status code that needs to be propagated to the IEM caller.
|
---|
224 | * This cannot be passed internally, as it would complicate all success
|
---|
225 | * checks within the interpreter making the code larger and almost impossible
|
---|
226 | * to get right. Instead, we'll store status codes to pass on here. Each
|
---|
227 | * source of these codes will perform appropriate sanity checks. */
|
---|
228 | int32_t rcPassUp;
|
---|
229 |
|
---|
230 | /** @name Statistics
|
---|
231 | * @{ */
|
---|
232 | /** The number of instructions we've executed. */
|
---|
233 | uint32_t cInstructions;
|
---|
234 | /** The number of potential exits. */
|
---|
235 | uint32_t cPotentialExits;
|
---|
236 | /** The number of bytes data or stack written (mostly for IEMExecOneEx).
|
---|
237 | * This may contain uncommitted writes. */
|
---|
238 | uint32_t cbWritten;
|
---|
239 | /** Counts the VERR_IEM_INSTR_NOT_IMPLEMENTED returns. */
|
---|
240 | uint32_t cRetInstrNotImplemented;
|
---|
241 | /** Counts the VERR_IEM_ASPECT_NOT_IMPLEMENTED returns. */
|
---|
242 | uint32_t cRetAspectNotImplemented;
|
---|
243 | /** Counts informational statuses returned (other than VINF_SUCCESS). */
|
---|
244 | uint32_t cRetInfStatuses;
|
---|
245 | /** Counts other error statuses returned. */
|
---|
246 | uint32_t cRetErrStatuses;
|
---|
247 | /** Number of times rcPassUp has been used. */
|
---|
248 | uint32_t cRetPassUpStatus;
|
---|
249 | #ifdef IEM_VERIFICATION_MODE_FULL
|
---|
250 | /** The Number of I/O port reads that has been performed. */
|
---|
251 | uint32_t cIOReads;
|
---|
252 | /** The Number of I/O port writes that has been performed. */
|
---|
253 | uint32_t cIOWrites;
|
---|
254 | /** Set if no comparison to REM is currently performed.
|
---|
255 | * This is used to skip past really slow bits. */
|
---|
256 | bool fNoRem;
|
---|
257 | /** Indicates that RAX and RDX differences should be ignored since RDTSC
|
---|
258 | * and RDTSCP are timing sensitive. */
|
---|
259 | bool fIgnoreRaxRdx;
|
---|
260 | /** Indicates that a MOVS instruction with overlapping source and destination
|
---|
261 | * was executed, causing the memory write records to be incorrrect. */
|
---|
262 | bool fOverlappingMovs;
|
---|
263 | /** This is used to communicate a CPL changed caused by IEMInjectTrap that
|
---|
264 | * CPUM doesn't yet reflect. */
|
---|
265 | uint8_t uInjectCpl;
|
---|
266 | bool afAlignment2[4];
|
---|
267 | /** Mask of undefined eflags.
|
---|
268 | * The verifier will any difference in these flags. */
|
---|
269 | uint32_t fUndefinedEFlags;
|
---|
270 | /** The CS of the instruction being interpreted. */
|
---|
271 | RTSEL uOldCs;
|
---|
272 | /** The RIP of the instruction being interpreted. */
|
---|
273 | uint64_t uOldRip;
|
---|
274 | /** The physical address corresponding to abOpcodes[0]. */
|
---|
275 | RTGCPHYS GCPhysOpcodes;
|
---|
276 | #endif
|
---|
277 | /** @} */
|
---|
278 |
|
---|
279 | /** @name Decoder state.
|
---|
280 | * @{ */
|
---|
281 |
|
---|
282 | /** The default addressing mode . */
|
---|
283 | IEMMODE enmDefAddrMode;
|
---|
284 | /** The effective addressing mode . */
|
---|
285 | IEMMODE enmEffAddrMode;
|
---|
286 | /** The default operand mode . */
|
---|
287 | IEMMODE enmDefOpSize;
|
---|
288 | /** The effective operand mode . */
|
---|
289 | IEMMODE enmEffOpSize;
|
---|
290 |
|
---|
291 | /** The prefix mask (IEM_OP_PRF_XXX). */
|
---|
292 | uint32_t fPrefixes;
|
---|
293 | /** The extra REX ModR/M register field bit (REX.R << 3). */
|
---|
294 | uint8_t uRexReg;
|
---|
295 | /** The extra REX ModR/M r/m field, SIB base and opcode reg bit
|
---|
296 | * (REX.B << 3). */
|
---|
297 | uint8_t uRexB;
|
---|
298 | /** The extra REX SIB index field bit (REX.X << 3). */
|
---|
299 | uint8_t uRexIndex;
|
---|
300 | /** The effective segment register (X86_SREG_XXX). */
|
---|
301 | uint8_t iEffSeg;
|
---|
302 |
|
---|
303 | /** The current offset into abOpcodes. */
|
---|
304 | uint8_t offOpcode;
|
---|
305 | /** The size of what has currently been fetched into abOpcodes. */
|
---|
306 | uint8_t cbOpcode;
|
---|
307 | /** The opcode bytes. */
|
---|
308 | uint8_t abOpcode[15];
|
---|
309 | /** Offset into abOpcodes where the FPU instruction starts.
|
---|
310 | * Only set by the FPU escape opcodes (0xd8-0xdf) and used later on when the
|
---|
311 | * instruction result is committed. */
|
---|
312 | uint8_t offFpuOpcode;
|
---|
313 |
|
---|
314 | /** @}*/
|
---|
315 |
|
---|
316 | /** Alignment padding for aMemMappings. */
|
---|
317 | uint8_t abAlignment2[4];
|
---|
318 |
|
---|
319 | /** The number of active guest memory mappings. */
|
---|
320 | uint8_t cActiveMappings;
|
---|
321 | /** The next unused mapping index. */
|
---|
322 | uint8_t iNextMapping;
|
---|
323 | /** Records for tracking guest memory mappings. */
|
---|
324 | struct
|
---|
325 | {
|
---|
326 | /** The address of the mapped bytes. */
|
---|
327 | void *pv;
|
---|
328 | #if defined(IN_RC) && HC_ARCH_BITS == 64
|
---|
329 | uint32_t u32Alignment3; /**< Alignment padding. */
|
---|
330 | #endif
|
---|
331 | /** The access flags (IEM_ACCESS_XXX).
|
---|
332 | * IEM_ACCESS_INVALID if the entry is unused. */
|
---|
333 | uint32_t fAccess;
|
---|
334 | #if HC_ARCH_BITS == 64
|
---|
335 | uint32_t u32Alignment4; /**< Alignment padding. */
|
---|
336 | #endif
|
---|
337 | } aMemMappings[3];
|
---|
338 |
|
---|
339 | /** Locking records for the mapped memory. */
|
---|
340 | union
|
---|
341 | {
|
---|
342 | PGMPAGEMAPLOCK Lock;
|
---|
343 | uint64_t au64Padding[2];
|
---|
344 | } aMemMappingLocks[3];
|
---|
345 |
|
---|
346 | /** Bounce buffer info.
|
---|
347 | * This runs in parallel to aMemMappings. */
|
---|
348 | struct
|
---|
349 | {
|
---|
350 | /** The physical address of the first byte. */
|
---|
351 | RTGCPHYS GCPhysFirst;
|
---|
352 | /** The physical address of the second page. */
|
---|
353 | RTGCPHYS GCPhysSecond;
|
---|
354 | /** The number of bytes in the first page. */
|
---|
355 | uint16_t cbFirst;
|
---|
356 | /** The number of bytes in the second page. */
|
---|
357 | uint16_t cbSecond;
|
---|
358 | /** Whether it's unassigned memory. */
|
---|
359 | bool fUnassigned;
|
---|
360 | /** Explicit alignment padding. */
|
---|
361 | bool afAlignment5[3];
|
---|
362 | } aMemBbMappings[3];
|
---|
363 |
|
---|
364 | /** Bounce buffer storage.
|
---|
365 | * This runs in parallel to aMemMappings and aMemBbMappings. */
|
---|
366 | struct
|
---|
367 | {
|
---|
368 | uint8_t ab[512];
|
---|
369 | } aBounceBuffers[3];
|
---|
370 |
|
---|
371 | /** @name Target CPU information.
|
---|
372 | * @{ */
|
---|
373 | /** EDX value of CPUID(1).
|
---|
374 | * @remarks Some bits are subject to change and must be queried dynamically. */
|
---|
375 | uint32_t fCpuIdStdFeaturesEdx;
|
---|
376 | /** ECX value of CPUID(1).
|
---|
377 | * @remarks Some bits are subject to change and must be queried dynamically. */
|
---|
378 | uint32_t fCpuIdStdFeaturesEcx;
|
---|
379 | /** The CPU vendor. */
|
---|
380 | CPUMCPUVENDOR enmCpuVendor;
|
---|
381 | /** @} */
|
---|
382 |
|
---|
383 | /** @name Host CPU information.
|
---|
384 | * @{ */
|
---|
385 | /** EDX value of CPUID(1). */
|
---|
386 | uint32_t fHostCpuIdStdFeaturesEdx;
|
---|
387 | /** ECX value of CPUID(1). */
|
---|
388 | uint32_t fHostCpuIdStdFeaturesEcx;
|
---|
389 | /** The CPU vendor. */
|
---|
390 | CPUMCPUVENDOR enmHostCpuVendor;
|
---|
391 | /** @} */
|
---|
392 |
|
---|
393 | #ifdef IEM_VERIFICATION_MODE_FULL
|
---|
394 | /** The event verification records for what IEM did (LIFO). */
|
---|
395 | R3PTRTYPE(PIEMVERIFYEVTREC) pIemEvtRecHead;
|
---|
396 | /** Insertion point for pIemEvtRecHead. */
|
---|
397 | R3PTRTYPE(PIEMVERIFYEVTREC *) ppIemEvtRecNext;
|
---|
398 | /** The event verification records for what the other party did (FIFO). */
|
---|
399 | R3PTRTYPE(PIEMVERIFYEVTREC) pOtherEvtRecHead;
|
---|
400 | /** Insertion point for pOtherEvtRecHead. */
|
---|
401 | R3PTRTYPE(PIEMVERIFYEVTREC *) ppOtherEvtRecNext;
|
---|
402 | /** List of free event records. */
|
---|
403 | R3PTRTYPE(PIEMVERIFYEVTREC) pFreeEvtRec;
|
---|
404 | #endif
|
---|
405 | } IEMCPU;
|
---|
406 | /** Pointer to the per-CPU IEM state. */
|
---|
407 | typedef IEMCPU *PIEMCPU;
|
---|
408 | /** Pointer to the const per-CPU IEM state. */
|
---|
409 | typedef IEMCPU const *PCIEMCPU;
|
---|
410 |
|
---|
411 | /** Converts a IEMCPU pointer to a VMCPU pointer.
|
---|
412 | * @returns VMCPU pointer.
|
---|
413 | * @param a_pIemCpu The IEM per CPU instance data.
|
---|
414 | */
|
---|
415 | #define IEMCPU_TO_VMCPU(a_pIemCpu) ((PVMCPU)( (uintptr_t)(a_pIemCpu) + a_pIemCpu->offVMCpu ))
|
---|
416 |
|
---|
417 | /** Converts a IEMCPU pointer to a VM pointer.
|
---|
418 | * @returns VM pointer.
|
---|
419 | * @param a_pIemCpu The IEM per CPU instance data.
|
---|
420 | */
|
---|
421 | #define IEMCPU_TO_VM(a_pIemCpu) ((PVM)( (uintptr_t)(a_pIemCpu) + a_pIemCpu->offVM ))
|
---|
422 |
|
---|
423 | /** @name IEM_ACCESS_XXX - Access details.
|
---|
424 | * @{ */
|
---|
425 | #define IEM_ACCESS_INVALID UINT32_C(0x000000ff)
|
---|
426 | #define IEM_ACCESS_TYPE_READ UINT32_C(0x00000001)
|
---|
427 | #define IEM_ACCESS_TYPE_WRITE UINT32_C(0x00000002)
|
---|
428 | #define IEM_ACCESS_TYPE_EXEC UINT32_C(0x00000004)
|
---|
429 | #define IEM_ACCESS_TYPE_MASK UINT32_C(0x00000007)
|
---|
430 | #define IEM_ACCESS_WHAT_CODE UINT32_C(0x00000010)
|
---|
431 | #define IEM_ACCESS_WHAT_DATA UINT32_C(0x00000020)
|
---|
432 | #define IEM_ACCESS_WHAT_STACK UINT32_C(0x00000030)
|
---|
433 | #define IEM_ACCESS_WHAT_SYS UINT32_C(0x00000040)
|
---|
434 | #define IEM_ACCESS_WHAT_MASK UINT32_C(0x00000070)
|
---|
435 | /** The writes are partial, so if initialize the bounce buffer with the
|
---|
436 | * orignal RAM content. */
|
---|
437 | #define IEM_ACCESS_PARTIAL_WRITE UINT32_C(0x00000100)
|
---|
438 | /** Used in aMemMappings to indicate that the entry is bounce buffered. */
|
---|
439 | #define IEM_ACCESS_BOUNCE_BUFFERED UINT32_C(0x00000200)
|
---|
440 | /** Read+write data alias. */
|
---|
441 | #define IEM_ACCESS_DATA_RW (IEM_ACCESS_TYPE_READ | IEM_ACCESS_TYPE_WRITE | IEM_ACCESS_WHAT_DATA)
|
---|
442 | /** Write data alias. */
|
---|
443 | #define IEM_ACCESS_DATA_W (IEM_ACCESS_TYPE_WRITE | IEM_ACCESS_WHAT_DATA)
|
---|
444 | /** Read data alias. */
|
---|
445 | #define IEM_ACCESS_DATA_R (IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_DATA)
|
---|
446 | /** Instruction fetch alias. */
|
---|
447 | #define IEM_ACCESS_INSTRUCTION (IEM_ACCESS_TYPE_EXEC | IEM_ACCESS_WHAT_CODE)
|
---|
448 | /** Stack write alias. */
|
---|
449 | #define IEM_ACCESS_STACK_W (IEM_ACCESS_TYPE_WRITE | IEM_ACCESS_WHAT_STACK)
|
---|
450 | /** Stack read alias. */
|
---|
451 | #define IEM_ACCESS_STACK_R (IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_STACK)
|
---|
452 | /** Stack read+write alias. */
|
---|
453 | #define IEM_ACCESS_STACK_RW (IEM_ACCESS_TYPE_READ | IEM_ACCESS_TYPE_WRITE | IEM_ACCESS_WHAT_STACK)
|
---|
454 | /** Read system table alias. */
|
---|
455 | #define IEM_ACCESS_SYS_R (IEM_ACCESS_TYPE_READ | IEM_ACCESS_WHAT_SYS)
|
---|
456 | /** Read+write system table alias. */
|
---|
457 | #define IEM_ACCESS_SYS_RW (IEM_ACCESS_TYPE_READ | IEM_ACCESS_TYPE_WRITE | IEM_ACCESS_WHAT_SYS)
|
---|
458 | /** @} */
|
---|
459 |
|
---|
460 | /** @name Prefix constants (IEMCPU::fPrefixes)
|
---|
461 | * @{ */
|
---|
462 | #define IEM_OP_PRF_SEG_CS RT_BIT_32(0) /**< CS segment prefix (0x2e). */
|
---|
463 | #define IEM_OP_PRF_SEG_SS RT_BIT_32(1) /**< SS segment prefix (0x36). */
|
---|
464 | #define IEM_OP_PRF_SEG_DS RT_BIT_32(2) /**< DS segment prefix (0x3e). */
|
---|
465 | #define IEM_OP_PRF_SEG_ES RT_BIT_32(3) /**< ES segment prefix (0x26). */
|
---|
466 | #define IEM_OP_PRF_SEG_FS RT_BIT_32(4) /**< FS segment prefix (0x64). */
|
---|
467 | #define IEM_OP_PRF_SEG_GS RT_BIT_32(5) /**< GS segment prefix (0x65). */
|
---|
468 | #define IEM_OP_PRF_SEG_MASK UINT32_C(0x3f)
|
---|
469 |
|
---|
470 | #define IEM_OP_PRF_SIZE_OP RT_BIT_32(8) /**< Operand size prefix (0x66). */
|
---|
471 | #define IEM_OP_PRF_SIZE_REX_W RT_BIT_32(9) /**< REX.W prefix (0x48-0x4f). */
|
---|
472 | #define IEM_OP_PRF_SIZE_ADDR RT_BIT_32(10) /**< Address size prefix (0x67). */
|
---|
473 |
|
---|
474 | #define IEM_OP_PRF_LOCK RT_BIT_32(16) /**< Lock prefix (0xf0). */
|
---|
475 | #define IEM_OP_PRF_REPNZ RT_BIT_32(17) /**< Repeat-not-zero prefix (0xf2). */
|
---|
476 | #define IEM_OP_PRF_REPZ RT_BIT_32(18) /**< Repeat-if-zero prefix (0xf3). */
|
---|
477 |
|
---|
478 | #define IEM_OP_PRF_REX RT_BIT_32(24) /**< Any REX prefix (0x40-0x4f). */
|
---|
479 | #define IEM_OP_PRF_REX_R RT_BIT_32(25) /**< REX.R prefix (0x44,0x45,0x46,0x47,0x4c,0x4d,0x4e,0x4f). */
|
---|
480 | #define IEM_OP_PRF_REX_B RT_BIT_32(26) /**< REX.B prefix (0x41,0x43,0x45,0x47,0x49,0x4b,0x4d,0x4f). */
|
---|
481 | #define IEM_OP_PRF_REX_X RT_BIT_32(27) /**< REX.X prefix (0x42,0x43,0x46,0x47,0x4a,0x4b,0x4e,0x4f). */
|
---|
482 | /** Mask with all the REX prefix flags.
|
---|
483 | * This is generally for use when needing to undo the REX prefixes when they
|
---|
484 | * are followed legacy prefixes and therefore does not immediately preceed
|
---|
485 | * the first opcode byte.
|
---|
486 | * For testing whether any REX prefix is present, use IEM_OP_PRF_REX instead. */
|
---|
487 | #define IEM_OP_PRF_REX_MASK (IEM_OP_PRF_REX | IEM_OP_PRF_REX_R | IEM_OP_PRF_REX_B | IEM_OP_PRF_REX_X | IEM_OP_PRF_SIZE_REX_W )
|
---|
488 | /** @} */
|
---|
489 |
|
---|
490 | /** @name Opcode forms
|
---|
491 | * @{ */
|
---|
492 | /** ModR/M: reg, r/m */
|
---|
493 | #define IEMOPFORM_RM 0
|
---|
494 | /** ModR/M: reg, r/m (register) */
|
---|
495 | #define IEMOPFORM_RM_REG (IEMOPFORM_RM | IEMOPFORM_MOD3)
|
---|
496 | /** ModR/M: reg, r/m (memory) */
|
---|
497 | #define IEMOPFORM_RM_MEM (IEMOPFORM_RM | IEMOPFORM_NOT_MOD3)
|
---|
498 | /** ModR/M: r/m, reg */
|
---|
499 | #define IEMOPFORM_MR 1
|
---|
500 | /** ModR/M: r/m (register), reg */
|
---|
501 | #define IEMOPFORM_MR_REG (IEMOPFORM_MR | IEMOPFORM_MOD3)
|
---|
502 | /** ModR/M: r/m (memory), reg */
|
---|
503 | #define IEMOPFORM_MR_MEM (IEMOPFORM_MR | IEMOPFORM_NOT_MOD3)
|
---|
504 | /** ModR/M: r/m only */
|
---|
505 | #define IEMOPFORM_M 2
|
---|
506 | /** ModR/M: r/m only (register). */
|
---|
507 | #define IEMOPFORM_M_REG (IEMOPFORM_M | IEMOPFORM_MOD3)
|
---|
508 | /** ModR/M: r/m only (memory). */
|
---|
509 | #define IEMOPFORM_M_MEM (IEMOPFORM_M | IEMOPFORM_NOT_MOD3)
|
---|
510 | /** ModR/M: reg only */
|
---|
511 | #define IEMOPFORM_R 3
|
---|
512 |
|
---|
513 | /** The r/m is a register. */
|
---|
514 | #define IEMOPFORM_MOD3 RT_BIT_32(8)
|
---|
515 | /** The r/m is a memory access. */
|
---|
516 | #define IEMOPFORM_NOT_MOD3 RT_BIT_32(9)
|
---|
517 | /** @} */
|
---|
518 |
|
---|
519 | /**
|
---|
520 | * Tests if verification mode is enabled.
|
---|
521 | *
|
---|
522 | * This expands to @c false when IEM_VERIFICATION_MODE is not defined and
|
---|
523 | * should therefore cause the compiler to eliminate the verification branch
|
---|
524 | * of an if statement. */
|
---|
525 | #ifdef IEM_VERIFICATION_MODE_FULL
|
---|
526 | # define IEM_VERIFICATION_ENABLED(a_pIemCpu) (!(a_pIemCpu)->fNoRem)
|
---|
527 | #elif defined(IEM_VERIFICATION_MODE_MINIMAL)
|
---|
528 | # define IEM_VERIFICATION_ENABLED(a_pIemCpu) (true)
|
---|
529 | #else
|
---|
530 | # define IEM_VERIFICATION_ENABLED(a_pIemCpu) (false)
|
---|
531 | #endif
|
---|
532 |
|
---|
533 | /**
|
---|
534 | * Tests if full verification mode is enabled.
|
---|
535 | *
|
---|
536 | * This expands to @c false when IEM_VERIFICATION_MODE is not defined and
|
---|
537 | * should therefore cause the compiler to eliminate the verification branch
|
---|
538 | * of an if statement. */
|
---|
539 | #ifdef IEM_VERIFICATION_MODE_FULL
|
---|
540 | # define IEM_FULL_VERIFICATION_ENABLED(a_pIemCpu) (!(a_pIemCpu)->fNoRem)
|
---|
541 | #else
|
---|
542 | # define IEM_FULL_VERIFICATION_ENABLED(a_pIemCpu) (false)
|
---|
543 | #endif
|
---|
544 |
|
---|
545 | /** @def IEM_VERIFICATION_MODE
|
---|
546 | * Indicates that one of the verfication modes are enabled.
|
---|
547 | */
|
---|
548 | #if (defined(IEM_VERIFICATION_MODE_FULL) || defined(IEM_VERIFICATION_MODE_MINIMAL)) && !defined(IEM_VERIFICATION_MODE)
|
---|
549 | # define IEM_VERIFICATION_MODE
|
---|
550 | #endif
|
---|
551 |
|
---|
552 | /**
|
---|
553 | * Indicates to the verifier that the given flag set is undefined.
|
---|
554 | *
|
---|
555 | * Can be invoked again to add more flags.
|
---|
556 | *
|
---|
557 | * This is a NOOP if the verifier isn't compiled in.
|
---|
558 | */
|
---|
559 | #ifdef IEM_VERIFICATION_MODE_FULL
|
---|
560 | # define IEMOP_VERIFICATION_UNDEFINED_EFLAGS(a_fEfl) do { pIemCpu->fUndefinedEFlags |= (a_fEfl); } while (0)
|
---|
561 | #else
|
---|
562 | # define IEMOP_VERIFICATION_UNDEFINED_EFLAGS(a_fEfl) do { } while (0)
|
---|
563 | #endif
|
---|
564 |
|
---|
565 |
|
---|
566 | /** @def IEM_DECL_IMPL_TYPE
|
---|
567 | * For typedef'ing an instruction implementation function.
|
---|
568 | *
|
---|
569 | * @param a_RetType The return type.
|
---|
570 | * @param a_Name The name of the type.
|
---|
571 | * @param a_ArgList The argument list enclosed in parentheses.
|
---|
572 | */
|
---|
573 |
|
---|
574 | /** @def IEM_DECL_IMPL_DEF
|
---|
575 | * For defining an instruction implementation function.
|
---|
576 | *
|
---|
577 | * @param a_RetType The return type.
|
---|
578 | * @param a_Name The name of the type.
|
---|
579 | * @param a_ArgList The argument list enclosed in parentheses.
|
---|
580 | */
|
---|
581 |
|
---|
582 | #if defined(__GNUC__) && defined(RT_ARCH_X86)
|
---|
583 | # define IEM_DECL_IMPL_TYPE(a_RetType, a_Name, a_ArgList) \
|
---|
584 | __attribute__((__fastcall__)) a_RetType (a_Name) a_ArgList
|
---|
585 | # define IEM_DECL_IMPL_DEF(a_RetType, a_Name, a_ArgList) \
|
---|
586 | __attribute__((__fastcall__, __nothrow__)) a_RetType a_Name a_ArgList
|
---|
587 |
|
---|
588 | #elif defined(_MSC_VER) && defined(RT_ARCH_X86)
|
---|
589 | # define IEM_DECL_IMPL_TYPE(a_RetType, a_Name, a_ArgList) \
|
---|
590 | a_RetType (__fastcall a_Name) a_ArgList
|
---|
591 | # define IEM_DECL_IMPL_DEF(a_RetType, a_Name, a_ArgList) \
|
---|
592 | a_RetType __fastcall a_Name a_ArgList
|
---|
593 |
|
---|
594 | #else
|
---|
595 | # define IEM_DECL_IMPL_TYPE(a_RetType, a_Name, a_ArgList) \
|
---|
596 | a_RetType (VBOXCALL a_Name) a_ArgList
|
---|
597 | # define IEM_DECL_IMPL_DEF(a_RetType, a_Name, a_ArgList) \
|
---|
598 | a_RetType VBOXCALL a_Name a_ArgList
|
---|
599 |
|
---|
600 | #endif
|
---|
601 |
|
---|
602 | /** @name Arithmetic assignment operations on bytes (binary).
|
---|
603 | * @{ */
|
---|
604 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLBINU8, (uint8_t *pu8Dst, uint8_t u8Src, uint32_t *pEFlags));
|
---|
605 | typedef FNIEMAIMPLBINU8 *PFNIEMAIMPLBINU8;
|
---|
606 | FNIEMAIMPLBINU8 iemAImpl_add_u8, iemAImpl_add_u8_locked;
|
---|
607 | FNIEMAIMPLBINU8 iemAImpl_adc_u8, iemAImpl_adc_u8_locked;
|
---|
608 | FNIEMAIMPLBINU8 iemAImpl_sub_u8, iemAImpl_sub_u8_locked;
|
---|
609 | FNIEMAIMPLBINU8 iemAImpl_sbb_u8, iemAImpl_sbb_u8_locked;
|
---|
610 | FNIEMAIMPLBINU8 iemAImpl_or_u8, iemAImpl_or_u8_locked;
|
---|
611 | FNIEMAIMPLBINU8 iemAImpl_xor_u8, iemAImpl_xor_u8_locked;
|
---|
612 | FNIEMAIMPLBINU8 iemAImpl_and_u8, iemAImpl_and_u8_locked;
|
---|
613 | /** @} */
|
---|
614 |
|
---|
615 | /** @name Arithmetic assignment operations on words (binary).
|
---|
616 | * @{ */
|
---|
617 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLBINU16, (uint16_t *pu16Dst, uint16_t u16Src, uint32_t *pEFlags));
|
---|
618 | typedef FNIEMAIMPLBINU16 *PFNIEMAIMPLBINU16;
|
---|
619 | FNIEMAIMPLBINU16 iemAImpl_add_u16, iemAImpl_add_u16_locked;
|
---|
620 | FNIEMAIMPLBINU16 iemAImpl_adc_u16, iemAImpl_adc_u16_locked;
|
---|
621 | FNIEMAIMPLBINU16 iemAImpl_sub_u16, iemAImpl_sub_u16_locked;
|
---|
622 | FNIEMAIMPLBINU16 iemAImpl_sbb_u16, iemAImpl_sbb_u16_locked;
|
---|
623 | FNIEMAIMPLBINU16 iemAImpl_or_u16, iemAImpl_or_u16_locked;
|
---|
624 | FNIEMAIMPLBINU16 iemAImpl_xor_u16, iemAImpl_xor_u16_locked;
|
---|
625 | FNIEMAIMPLBINU16 iemAImpl_and_u16, iemAImpl_and_u16_locked;
|
---|
626 | /** @} */
|
---|
627 |
|
---|
628 | /** @name Arithmetic assignment operations on double words (binary).
|
---|
629 | * @{ */
|
---|
630 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLBINU32, (uint32_t *pu32Dst, uint32_t u32Src, uint32_t *pEFlags));
|
---|
631 | typedef FNIEMAIMPLBINU32 *PFNIEMAIMPLBINU32;
|
---|
632 | FNIEMAIMPLBINU32 iemAImpl_add_u32, iemAImpl_add_u32_locked;
|
---|
633 | FNIEMAIMPLBINU32 iemAImpl_adc_u32, iemAImpl_adc_u32_locked;
|
---|
634 | FNIEMAIMPLBINU32 iemAImpl_sub_u32, iemAImpl_sub_u32_locked;
|
---|
635 | FNIEMAIMPLBINU32 iemAImpl_sbb_u32, iemAImpl_sbb_u32_locked;
|
---|
636 | FNIEMAIMPLBINU32 iemAImpl_or_u32, iemAImpl_or_u32_locked;
|
---|
637 | FNIEMAIMPLBINU32 iemAImpl_xor_u32, iemAImpl_xor_u32_locked;
|
---|
638 | FNIEMAIMPLBINU32 iemAImpl_and_u32, iemAImpl_and_u32_locked;
|
---|
639 | /** @} */
|
---|
640 |
|
---|
641 | /** @name Arithmetic assignment operations on quad words (binary).
|
---|
642 | * @{ */
|
---|
643 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLBINU64, (uint64_t *pu64Dst, uint64_t u64Src, uint32_t *pEFlags));
|
---|
644 | typedef FNIEMAIMPLBINU64 *PFNIEMAIMPLBINU64;
|
---|
645 | FNIEMAIMPLBINU64 iemAImpl_add_u64, iemAImpl_add_u64_locked;
|
---|
646 | FNIEMAIMPLBINU64 iemAImpl_adc_u64, iemAImpl_adc_u64_locked;
|
---|
647 | FNIEMAIMPLBINU64 iemAImpl_sub_u64, iemAImpl_sub_u64_locked;
|
---|
648 | FNIEMAIMPLBINU64 iemAImpl_sbb_u64, iemAImpl_sbb_u64_locked;
|
---|
649 | FNIEMAIMPLBINU64 iemAImpl_or_u64, iemAImpl_or_u64_locked;
|
---|
650 | FNIEMAIMPLBINU64 iemAImpl_xor_u64, iemAImpl_xor_u64_locked;
|
---|
651 | FNIEMAIMPLBINU64 iemAImpl_and_u64, iemAImpl_and_u64_locked;
|
---|
652 | /** @} */
|
---|
653 |
|
---|
654 | /** @name Compare operations (thrown in with the binary ops).
|
---|
655 | * @{ */
|
---|
656 | FNIEMAIMPLBINU8 iemAImpl_cmp_u8;
|
---|
657 | FNIEMAIMPLBINU16 iemAImpl_cmp_u16;
|
---|
658 | FNIEMAIMPLBINU32 iemAImpl_cmp_u32;
|
---|
659 | FNIEMAIMPLBINU64 iemAImpl_cmp_u64;
|
---|
660 | /** @} */
|
---|
661 |
|
---|
662 | /** @name Test operations (thrown in with the binary ops).
|
---|
663 | * @{ */
|
---|
664 | FNIEMAIMPLBINU8 iemAImpl_test_u8;
|
---|
665 | FNIEMAIMPLBINU16 iemAImpl_test_u16;
|
---|
666 | FNIEMAIMPLBINU32 iemAImpl_test_u32;
|
---|
667 | FNIEMAIMPLBINU64 iemAImpl_test_u64;
|
---|
668 | /** @} */
|
---|
669 |
|
---|
670 | /** @name Bit operations operations (thrown in with the binary ops).
|
---|
671 | * @{ */
|
---|
672 | FNIEMAIMPLBINU16 iemAImpl_bt_u16, iemAImpl_bt_u16_locked;
|
---|
673 | FNIEMAIMPLBINU32 iemAImpl_bt_u32, iemAImpl_bt_u32_locked;
|
---|
674 | FNIEMAIMPLBINU64 iemAImpl_bt_u64, iemAImpl_bt_u64_locked;
|
---|
675 | FNIEMAIMPLBINU16 iemAImpl_btc_u16, iemAImpl_btc_u16_locked;
|
---|
676 | FNIEMAIMPLBINU32 iemAImpl_btc_u32, iemAImpl_btc_u32_locked;
|
---|
677 | FNIEMAIMPLBINU64 iemAImpl_btc_u64, iemAImpl_btc_u64_locked;
|
---|
678 | FNIEMAIMPLBINU16 iemAImpl_btr_u16, iemAImpl_btr_u16_locked;
|
---|
679 | FNIEMAIMPLBINU32 iemAImpl_btr_u32, iemAImpl_btr_u32_locked;
|
---|
680 | FNIEMAIMPLBINU64 iemAImpl_btr_u64, iemAImpl_btr_u64_locked;
|
---|
681 | FNIEMAIMPLBINU16 iemAImpl_bts_u16, iemAImpl_bts_u16_locked;
|
---|
682 | FNIEMAIMPLBINU32 iemAImpl_bts_u32, iemAImpl_bts_u32_locked;
|
---|
683 | FNIEMAIMPLBINU64 iemAImpl_bts_u64, iemAImpl_bts_u64_locked;
|
---|
684 | /** @} */
|
---|
685 |
|
---|
686 | /** @name Exchange memory with register operations.
|
---|
687 | * @{ */
|
---|
688 | IEM_DECL_IMPL_DEF(void, iemAImpl_xchg_u8, (uint8_t *pu8Mem, uint8_t *pu8Reg));
|
---|
689 | IEM_DECL_IMPL_DEF(void, iemAImpl_xchg_u16,(uint16_t *pu16Mem, uint16_t *pu16Reg));
|
---|
690 | IEM_DECL_IMPL_DEF(void, iemAImpl_xchg_u32,(uint32_t *pu32Mem, uint32_t *pu32Reg));
|
---|
691 | IEM_DECL_IMPL_DEF(void, iemAImpl_xchg_u64,(uint64_t *pu64Mem, uint64_t *pu64Reg));
|
---|
692 | /** @} */
|
---|
693 |
|
---|
694 | /** @name Exchange and add operations.
|
---|
695 | * @{ */
|
---|
696 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u8, (uint8_t *pu8Dst, uint8_t *pu8Reg, uint32_t *pEFlags));
|
---|
697 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u16,(uint16_t *pu16Dst, uint16_t *pu16Reg, uint32_t *pEFlags));
|
---|
698 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u32,(uint32_t *pu32Dst, uint32_t *pu32Reg, uint32_t *pEFlags));
|
---|
699 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u64,(uint64_t *pu64Dst, uint64_t *pu64Reg, uint32_t *pEFlags));
|
---|
700 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u8_locked, (uint8_t *pu8Dst, uint8_t *pu8Reg, uint32_t *pEFlags));
|
---|
701 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u16_locked,(uint16_t *pu16Dst, uint16_t *pu16Reg, uint32_t *pEFlags));
|
---|
702 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u32_locked,(uint32_t *pu32Dst, uint32_t *pu32Reg, uint32_t *pEFlags));
|
---|
703 | IEM_DECL_IMPL_DEF(void, iemAImpl_xadd_u64_locked,(uint64_t *pu64Dst, uint64_t *pu64Reg, uint32_t *pEFlags));
|
---|
704 | /** @} */
|
---|
705 |
|
---|
706 | /** @name Compare and exchange.
|
---|
707 | * @{ */
|
---|
708 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u8, (uint8_t *pu8Dst, uint8_t *puAl, uint8_t uSrcReg, uint32_t *pEFlags));
|
---|
709 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u8_locked, (uint8_t *pu8Dst, uint8_t *puAl, uint8_t uSrcReg, uint32_t *pEFlags));
|
---|
710 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u16, (uint16_t *pu16Dst, uint16_t *puAx, uint16_t uSrcReg, uint32_t *pEFlags));
|
---|
711 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u16_locked,(uint16_t *pu16Dst, uint16_t *puAx, uint16_t uSrcReg, uint32_t *pEFlags));
|
---|
712 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u32, (uint32_t *pu32Dst, uint32_t *puEax, uint32_t uSrcReg, uint32_t *pEFlags));
|
---|
713 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u32_locked,(uint32_t *pu32Dst, uint32_t *puEax, uint32_t uSrcReg, uint32_t *pEFlags));
|
---|
714 | #ifdef RT_ARCH_X86
|
---|
715 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u64, (uint64_t *pu64Dst, uint64_t *puRax, uint64_t *puSrcReg, uint32_t *pEFlags));
|
---|
716 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u64_locked,(uint64_t *pu64Dst, uint64_t *puRax, uint64_t *puSrcReg, uint32_t *pEFlags));
|
---|
717 | #else
|
---|
718 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u64, (uint64_t *pu64Dst, uint64_t *puRax, uint64_t uSrcReg, uint32_t *pEFlags));
|
---|
719 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg_u64_locked,(uint64_t *pu64Dst, uint64_t *puRax, uint64_t uSrcReg, uint32_t *pEFlags));
|
---|
720 | #endif
|
---|
721 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg8b,(uint64_t *pu64Dst, PRTUINT64U pu64EaxEdx, PRTUINT64U pu64EbxEcx,
|
---|
722 | uint32_t *pEFlags));
|
---|
723 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg8b_locked,(uint64_t *pu64Dst, PRTUINT64U pu64EaxEdx, PRTUINT64U pu64EbxEcx,
|
---|
724 | uint32_t *pEFlags));
|
---|
725 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg16b,(PRTUINT128U *pu128Dst, PRTUINT128U pu64RaxRdx, PRTUINT128U pu64RbxRcx,
|
---|
726 | uint32_t *pEFlags));
|
---|
727 | IEM_DECL_IMPL_DEF(void, iemAImpl_cmpxchg16b_locked,(PRTUINT128U *pu128Dst, PRTUINT128U pu64RaxRdx, PRTUINT128U pu64RbxRcx,
|
---|
728 | uint32_t *pEFlags));
|
---|
729 | /** @} */
|
---|
730 |
|
---|
731 | /** @name Memory ordering
|
---|
732 | * @{ */
|
---|
733 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEMFENCE,(void));
|
---|
734 | typedef FNIEMAIMPLMEMFENCE *PFNIEMAIMPLMEMFENCE;
|
---|
735 | IEM_DECL_IMPL_DEF(void, iemAImpl_mfence,(void));
|
---|
736 | IEM_DECL_IMPL_DEF(void, iemAImpl_sfence,(void));
|
---|
737 | IEM_DECL_IMPL_DEF(void, iemAImpl_lfence,(void));
|
---|
738 | IEM_DECL_IMPL_DEF(void, iemAImpl_alt_mem_fence,(void));
|
---|
739 | /** @} */
|
---|
740 |
|
---|
741 | /** @name Double precision shifts
|
---|
742 | * @{ */
|
---|
743 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTDBLU16,(uint16_t *pu16Dst, uint16_t u16Src, uint8_t cShift, uint32_t *pEFlags));
|
---|
744 | typedef FNIEMAIMPLSHIFTDBLU16 *PFNIEMAIMPLSHIFTDBLU16;
|
---|
745 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTDBLU32,(uint32_t *pu32Dst, uint32_t u32Src, uint8_t cShift, uint32_t *pEFlags));
|
---|
746 | typedef FNIEMAIMPLSHIFTDBLU32 *PFNIEMAIMPLSHIFTDBLU32;
|
---|
747 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTDBLU64,(uint64_t *pu64Dst, uint64_t u64Src, uint8_t cShift, uint32_t *pEFlags));
|
---|
748 | typedef FNIEMAIMPLSHIFTDBLU64 *PFNIEMAIMPLSHIFTDBLU64;
|
---|
749 | FNIEMAIMPLSHIFTDBLU16 iemAImpl_shld_u16;
|
---|
750 | FNIEMAIMPLSHIFTDBLU32 iemAImpl_shld_u32;
|
---|
751 | FNIEMAIMPLSHIFTDBLU64 iemAImpl_shld_u64;
|
---|
752 | FNIEMAIMPLSHIFTDBLU16 iemAImpl_shrd_u16;
|
---|
753 | FNIEMAIMPLSHIFTDBLU32 iemAImpl_shrd_u32;
|
---|
754 | FNIEMAIMPLSHIFTDBLU64 iemAImpl_shrd_u64;
|
---|
755 | /** @} */
|
---|
756 |
|
---|
757 |
|
---|
758 | /** @name Bit search operations (thrown in with the binary ops).
|
---|
759 | * @{ */
|
---|
760 | FNIEMAIMPLBINU16 iemAImpl_bsf_u16;
|
---|
761 | FNIEMAIMPLBINU32 iemAImpl_bsf_u32;
|
---|
762 | FNIEMAIMPLBINU64 iemAImpl_bsf_u64;
|
---|
763 | FNIEMAIMPLBINU16 iemAImpl_bsr_u16;
|
---|
764 | FNIEMAIMPLBINU32 iemAImpl_bsr_u32;
|
---|
765 | FNIEMAIMPLBINU64 iemAImpl_bsr_u64;
|
---|
766 | /** @} */
|
---|
767 |
|
---|
768 | /** @name Signed multiplication operations (thrown in with the binary ops).
|
---|
769 | * @{ */
|
---|
770 | FNIEMAIMPLBINU16 iemAImpl_imul_two_u16;
|
---|
771 | FNIEMAIMPLBINU32 iemAImpl_imul_two_u32;
|
---|
772 | FNIEMAIMPLBINU64 iemAImpl_imul_two_u64;
|
---|
773 | /** @} */
|
---|
774 |
|
---|
775 | /** @name Arithmetic assignment operations on bytes (unary).
|
---|
776 | * @{ */
|
---|
777 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLUNARYU8, (uint8_t *pu8Dst, uint32_t *pEFlags));
|
---|
778 | typedef FNIEMAIMPLUNARYU8 *PFNIEMAIMPLUNARYU8;
|
---|
779 | FNIEMAIMPLUNARYU8 iemAImpl_inc_u8, iemAImpl_inc_u8_locked;
|
---|
780 | FNIEMAIMPLUNARYU8 iemAImpl_dec_u8, iemAImpl_dec_u8_locked;
|
---|
781 | FNIEMAIMPLUNARYU8 iemAImpl_not_u8, iemAImpl_not_u8_locked;
|
---|
782 | FNIEMAIMPLUNARYU8 iemAImpl_neg_u8, iemAImpl_neg_u8_locked;
|
---|
783 | /** @} */
|
---|
784 |
|
---|
785 | /** @name Arithmetic assignment operations on words (unary).
|
---|
786 | * @{ */
|
---|
787 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLUNARYU16, (uint16_t *pu16Dst, uint32_t *pEFlags));
|
---|
788 | typedef FNIEMAIMPLUNARYU16 *PFNIEMAIMPLUNARYU16;
|
---|
789 | FNIEMAIMPLUNARYU16 iemAImpl_inc_u16, iemAImpl_inc_u16_locked;
|
---|
790 | FNIEMAIMPLUNARYU16 iemAImpl_dec_u16, iemAImpl_dec_u16_locked;
|
---|
791 | FNIEMAIMPLUNARYU16 iemAImpl_not_u16, iemAImpl_not_u16_locked;
|
---|
792 | FNIEMAIMPLUNARYU16 iemAImpl_neg_u16, iemAImpl_neg_u16_locked;
|
---|
793 | /** @} */
|
---|
794 |
|
---|
795 | /** @name Arithmetic assignment operations on double words (unary).
|
---|
796 | * @{ */
|
---|
797 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLUNARYU32, (uint32_t *pu32Dst, uint32_t *pEFlags));
|
---|
798 | typedef FNIEMAIMPLUNARYU32 *PFNIEMAIMPLUNARYU32;
|
---|
799 | FNIEMAIMPLUNARYU32 iemAImpl_inc_u32, iemAImpl_inc_u32_locked;
|
---|
800 | FNIEMAIMPLUNARYU32 iemAImpl_dec_u32, iemAImpl_dec_u32_locked;
|
---|
801 | FNIEMAIMPLUNARYU32 iemAImpl_not_u32, iemAImpl_not_u32_locked;
|
---|
802 | FNIEMAIMPLUNARYU32 iemAImpl_neg_u32, iemAImpl_neg_u32_locked;
|
---|
803 | /** @} */
|
---|
804 |
|
---|
805 | /** @name Arithmetic assignment operations on quad words (unary).
|
---|
806 | * @{ */
|
---|
807 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLUNARYU64, (uint64_t *pu64Dst, uint32_t *pEFlags));
|
---|
808 | typedef FNIEMAIMPLUNARYU64 *PFNIEMAIMPLUNARYU64;
|
---|
809 | FNIEMAIMPLUNARYU64 iemAImpl_inc_u64, iemAImpl_inc_u64_locked;
|
---|
810 | FNIEMAIMPLUNARYU64 iemAImpl_dec_u64, iemAImpl_dec_u64_locked;
|
---|
811 | FNIEMAIMPLUNARYU64 iemAImpl_not_u64, iemAImpl_not_u64_locked;
|
---|
812 | FNIEMAIMPLUNARYU64 iemAImpl_neg_u64, iemAImpl_neg_u64_locked;
|
---|
813 | /** @} */
|
---|
814 |
|
---|
815 |
|
---|
816 | /** @name Shift operations on bytes (Group 2).
|
---|
817 | * @{ */
|
---|
818 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTU8,(uint8_t *pu8Dst, uint8_t cShift, uint32_t *pEFlags));
|
---|
819 | typedef FNIEMAIMPLSHIFTU8 *PFNIEMAIMPLSHIFTU8;
|
---|
820 | FNIEMAIMPLSHIFTU8 iemAImpl_rol_u8;
|
---|
821 | FNIEMAIMPLSHIFTU8 iemAImpl_ror_u8;
|
---|
822 | FNIEMAIMPLSHIFTU8 iemAImpl_rcl_u8;
|
---|
823 | FNIEMAIMPLSHIFTU8 iemAImpl_rcr_u8;
|
---|
824 | FNIEMAIMPLSHIFTU8 iemAImpl_shl_u8;
|
---|
825 | FNIEMAIMPLSHIFTU8 iemAImpl_shr_u8;
|
---|
826 | FNIEMAIMPLSHIFTU8 iemAImpl_sar_u8;
|
---|
827 | /** @} */
|
---|
828 |
|
---|
829 | /** @name Shift operations on words (Group 2).
|
---|
830 | * @{ */
|
---|
831 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTU16,(uint16_t *pu16Dst, uint8_t cShift, uint32_t *pEFlags));
|
---|
832 | typedef FNIEMAIMPLSHIFTU16 *PFNIEMAIMPLSHIFTU16;
|
---|
833 | FNIEMAIMPLSHIFTU16 iemAImpl_rol_u16;
|
---|
834 | FNIEMAIMPLSHIFTU16 iemAImpl_ror_u16;
|
---|
835 | FNIEMAIMPLSHIFTU16 iemAImpl_rcl_u16;
|
---|
836 | FNIEMAIMPLSHIFTU16 iemAImpl_rcr_u16;
|
---|
837 | FNIEMAIMPLSHIFTU16 iemAImpl_shl_u16;
|
---|
838 | FNIEMAIMPLSHIFTU16 iemAImpl_shr_u16;
|
---|
839 | FNIEMAIMPLSHIFTU16 iemAImpl_sar_u16;
|
---|
840 | /** @} */
|
---|
841 |
|
---|
842 | /** @name Shift operations on double words (Group 2).
|
---|
843 | * @{ */
|
---|
844 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTU32,(uint32_t *pu32Dst, uint8_t cShift, uint32_t *pEFlags));
|
---|
845 | typedef FNIEMAIMPLSHIFTU32 *PFNIEMAIMPLSHIFTU32;
|
---|
846 | FNIEMAIMPLSHIFTU32 iemAImpl_rol_u32;
|
---|
847 | FNIEMAIMPLSHIFTU32 iemAImpl_ror_u32;
|
---|
848 | FNIEMAIMPLSHIFTU32 iemAImpl_rcl_u32;
|
---|
849 | FNIEMAIMPLSHIFTU32 iemAImpl_rcr_u32;
|
---|
850 | FNIEMAIMPLSHIFTU32 iemAImpl_shl_u32;
|
---|
851 | FNIEMAIMPLSHIFTU32 iemAImpl_shr_u32;
|
---|
852 | FNIEMAIMPLSHIFTU32 iemAImpl_sar_u32;
|
---|
853 | /** @} */
|
---|
854 |
|
---|
855 | /** @name Shift operations on words (Group 2).
|
---|
856 | * @{ */
|
---|
857 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLSHIFTU64,(uint64_t *pu64Dst, uint8_t cShift, uint32_t *pEFlags));
|
---|
858 | typedef FNIEMAIMPLSHIFTU64 *PFNIEMAIMPLSHIFTU64;
|
---|
859 | FNIEMAIMPLSHIFTU64 iemAImpl_rol_u64;
|
---|
860 | FNIEMAIMPLSHIFTU64 iemAImpl_ror_u64;
|
---|
861 | FNIEMAIMPLSHIFTU64 iemAImpl_rcl_u64;
|
---|
862 | FNIEMAIMPLSHIFTU64 iemAImpl_rcr_u64;
|
---|
863 | FNIEMAIMPLSHIFTU64 iemAImpl_shl_u64;
|
---|
864 | FNIEMAIMPLSHIFTU64 iemAImpl_shr_u64;
|
---|
865 | FNIEMAIMPLSHIFTU64 iemAImpl_sar_u64;
|
---|
866 | /** @} */
|
---|
867 |
|
---|
868 | /** @name Multiplication and division operations.
|
---|
869 | * @{ */
|
---|
870 | typedef IEM_DECL_IMPL_TYPE(int, FNIEMAIMPLMULDIVU8,(uint16_t *pu16AX, uint8_t u8FactorDivisor, uint32_t *pEFlags));
|
---|
871 | typedef FNIEMAIMPLMULDIVU8 *PFNIEMAIMPLMULDIVU8;
|
---|
872 | FNIEMAIMPLMULDIVU8 iemAImpl_mul_u8, iemAImpl_imul_u8;
|
---|
873 | FNIEMAIMPLMULDIVU8 iemAImpl_div_u8, iemAImpl_idiv_u8;
|
---|
874 |
|
---|
875 | typedef IEM_DECL_IMPL_TYPE(int, FNIEMAIMPLMULDIVU16,(uint16_t *pu16AX, uint16_t *pu16DX, uint16_t u16FactorDivisor, uint32_t *pEFlags));
|
---|
876 | typedef FNIEMAIMPLMULDIVU16 *PFNIEMAIMPLMULDIVU16;
|
---|
877 | FNIEMAIMPLMULDIVU16 iemAImpl_mul_u16, iemAImpl_imul_u16;
|
---|
878 | FNIEMAIMPLMULDIVU16 iemAImpl_div_u16, iemAImpl_idiv_u16;
|
---|
879 |
|
---|
880 | typedef IEM_DECL_IMPL_TYPE(int, FNIEMAIMPLMULDIVU32,(uint32_t *pu32EAX, uint32_t *pu32EDX, uint32_t u32FactorDivisor, uint32_t *pEFlags));
|
---|
881 | typedef FNIEMAIMPLMULDIVU32 *PFNIEMAIMPLMULDIVU32;
|
---|
882 | FNIEMAIMPLMULDIVU32 iemAImpl_mul_u32, iemAImpl_imul_u32;
|
---|
883 | FNIEMAIMPLMULDIVU32 iemAImpl_div_u32, iemAImpl_idiv_u32;
|
---|
884 |
|
---|
885 | typedef IEM_DECL_IMPL_TYPE(int, FNIEMAIMPLMULDIVU64,(uint64_t *pu64RAX, uint64_t *pu64RDX, uint64_t u64FactorDivisor, uint32_t *pEFlags));
|
---|
886 | typedef FNIEMAIMPLMULDIVU64 *PFNIEMAIMPLMULDIVU64;
|
---|
887 | FNIEMAIMPLMULDIVU64 iemAImpl_mul_u64, iemAImpl_imul_u64;
|
---|
888 | FNIEMAIMPLMULDIVU64 iemAImpl_div_u64, iemAImpl_idiv_u64;
|
---|
889 | /** @} */
|
---|
890 |
|
---|
891 | /** @name Byte Swap.
|
---|
892 | * @{ */
|
---|
893 | IEM_DECL_IMPL_TYPE(void, iemAImpl_bswap_u16,(uint32_t *pu32Dst)); /* Yes, 32-bit register access. */
|
---|
894 | IEM_DECL_IMPL_TYPE(void, iemAImpl_bswap_u32,(uint32_t *pu32Dst));
|
---|
895 | IEM_DECL_IMPL_TYPE(void, iemAImpl_bswap_u64,(uint64_t *pu64Dst));
|
---|
896 | /** @} */
|
---|
897 |
|
---|
898 |
|
---|
899 | /** @name FPU operations taking a 32-bit float argument
|
---|
900 | * @{ */
|
---|
901 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR32FSW,(PCX86FXSTATE pFpuState, uint16_t *pFSW,
|
---|
902 | PCRTFLOAT80U pr80Val1, PCRTFLOAT32U pr32Val2));
|
---|
903 | typedef FNIEMAIMPLFPUR32FSW *PFNIEMAIMPLFPUR32FSW;
|
---|
904 |
|
---|
905 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR32,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes,
|
---|
906 | PCRTFLOAT80U pr80Val1, PCRTFLOAT32U pr32Val2));
|
---|
907 | typedef FNIEMAIMPLFPUR32 *PFNIEMAIMPLFPUR32;
|
---|
908 |
|
---|
909 | FNIEMAIMPLFPUR32FSW iemAImpl_fcom_r80_by_r32;
|
---|
910 | FNIEMAIMPLFPUR32 iemAImpl_fadd_r80_by_r32;
|
---|
911 | FNIEMAIMPLFPUR32 iemAImpl_fmul_r80_by_r32;
|
---|
912 | FNIEMAIMPLFPUR32 iemAImpl_fsub_r80_by_r32;
|
---|
913 | FNIEMAIMPLFPUR32 iemAImpl_fsubr_r80_by_r32;
|
---|
914 | FNIEMAIMPLFPUR32 iemAImpl_fdiv_r80_by_r32;
|
---|
915 | FNIEMAIMPLFPUR32 iemAImpl_fdivr_r80_by_r32;
|
---|
916 |
|
---|
917 | IEM_DECL_IMPL_DEF(void, iemAImpl_fld_r32_to_r80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, PCRTFLOAT32U pr32Val));
|
---|
918 | IEM_DECL_IMPL_DEF(void, iemAImpl_fst_r80_to_r32,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
919 | PRTFLOAT32U pr32Val, PCRTFLOAT80U pr80Val));
|
---|
920 | /** @} */
|
---|
921 |
|
---|
922 | /** @name FPU operations taking a 64-bit float argument
|
---|
923 | * @{ */
|
---|
924 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR64,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes,
|
---|
925 | PCRTFLOAT80U pr80Val1, PCRTFLOAT64U pr64Val2));
|
---|
926 | typedef FNIEMAIMPLFPUR64 *PFNIEMAIMPLFPUR64;
|
---|
927 |
|
---|
928 | FNIEMAIMPLFPUR64 iemAImpl_fadd_r80_by_r64;
|
---|
929 | FNIEMAIMPLFPUR64 iemAImpl_fmul_r80_by_r64;
|
---|
930 | FNIEMAIMPLFPUR64 iemAImpl_fsub_r80_by_r64;
|
---|
931 | FNIEMAIMPLFPUR64 iemAImpl_fsubr_r80_by_r64;
|
---|
932 | FNIEMAIMPLFPUR64 iemAImpl_fdiv_r80_by_r64;
|
---|
933 | FNIEMAIMPLFPUR64 iemAImpl_fdivr_r80_by_r64;
|
---|
934 |
|
---|
935 | IEM_DECL_IMPL_DEF(void, iemAImpl_fcom_r80_by_r64,(PCX86FXSTATE pFpuState, uint16_t *pFSW,
|
---|
936 | PCRTFLOAT80U pr80Val1, PCRTFLOAT64U pr64Val2));
|
---|
937 | IEM_DECL_IMPL_DEF(void, iemAImpl_fld_r64_to_r80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, PCRTFLOAT64U pr64Val));
|
---|
938 | IEM_DECL_IMPL_DEF(void, iemAImpl_fst_r80_to_r64,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
939 | PRTFLOAT64U pr32Val, PCRTFLOAT80U pr80Val));
|
---|
940 | /** @} */
|
---|
941 |
|
---|
942 | /** @name FPU operations taking a 80-bit float argument
|
---|
943 | * @{ */
|
---|
944 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes,
|
---|
945 | PCRTFLOAT80U pr80Val1, PCRTFLOAT80U pr80Val2));
|
---|
946 | typedef FNIEMAIMPLFPUR80 *PFNIEMAIMPLFPUR80;
|
---|
947 | FNIEMAIMPLFPUR80 iemAImpl_fadd_r80_by_r80;
|
---|
948 | FNIEMAIMPLFPUR80 iemAImpl_fmul_r80_by_r80;
|
---|
949 | FNIEMAIMPLFPUR80 iemAImpl_fsub_r80_by_r80;
|
---|
950 | FNIEMAIMPLFPUR80 iemAImpl_fsubr_r80_by_r80;
|
---|
951 | FNIEMAIMPLFPUR80 iemAImpl_fdiv_r80_by_r80;
|
---|
952 | FNIEMAIMPLFPUR80 iemAImpl_fdivr_r80_by_r80;
|
---|
953 | FNIEMAIMPLFPUR80 iemAImpl_fprem_r80_by_r80;
|
---|
954 | FNIEMAIMPLFPUR80 iemAImpl_fprem1_r80_by_r80;
|
---|
955 | FNIEMAIMPLFPUR80 iemAImpl_fscale_r80_by_r80;
|
---|
956 |
|
---|
957 | FNIEMAIMPLFPUR80 iemAImpl_fpatan_r80_by_r80;
|
---|
958 | FNIEMAIMPLFPUR80 iemAImpl_fyl2xp1_r80_by_r80;
|
---|
959 |
|
---|
960 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR80FSW,(PCX86FXSTATE pFpuState, uint16_t *pFSW,
|
---|
961 | PCRTFLOAT80U pr80Val1, PCRTFLOAT80U pr80Val2));
|
---|
962 | typedef FNIEMAIMPLFPUR80FSW *PFNIEMAIMPLFPUR80FSW;
|
---|
963 | FNIEMAIMPLFPUR80FSW iemAImpl_fcom_r80_by_r80;
|
---|
964 | FNIEMAIMPLFPUR80FSW iemAImpl_fucom_r80_by_r80;
|
---|
965 |
|
---|
966 | typedef IEM_DECL_IMPL_TYPE(uint32_t, FNIEMAIMPLFPUR80EFL,(PCX86FXSTATE pFpuState, uint16_t *pu16Fsw,
|
---|
967 | PCRTFLOAT80U pr80Val1, PCRTFLOAT80U pr80Val2));
|
---|
968 | typedef FNIEMAIMPLFPUR80EFL *PFNIEMAIMPLFPUR80EFL;
|
---|
969 | FNIEMAIMPLFPUR80EFL iemAImpl_fcomi_r80_by_r80;
|
---|
970 | FNIEMAIMPLFPUR80EFL iemAImpl_fucomi_r80_by_r80;
|
---|
971 |
|
---|
972 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR80UNARY,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, PCRTFLOAT80U pr80Val));
|
---|
973 | typedef FNIEMAIMPLFPUR80UNARY *PFNIEMAIMPLFPUR80UNARY;
|
---|
974 | FNIEMAIMPLFPUR80UNARY iemAImpl_fabs_r80;
|
---|
975 | FNIEMAIMPLFPUR80UNARY iemAImpl_fchs_r80;
|
---|
976 | FNIEMAIMPLFPUR80UNARY iemAImpl_f2xm1_r80;
|
---|
977 | FNIEMAIMPLFPUR80UNARY iemAImpl_fyl2x_r80;
|
---|
978 | FNIEMAIMPLFPUR80UNARY iemAImpl_fsqrt_r80;
|
---|
979 | FNIEMAIMPLFPUR80UNARY iemAImpl_frndint_r80;
|
---|
980 | FNIEMAIMPLFPUR80UNARY iemAImpl_fsin_r80;
|
---|
981 | FNIEMAIMPLFPUR80UNARY iemAImpl_fcos_r80;
|
---|
982 |
|
---|
983 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR80UNARYFSW,(PCX86FXSTATE pFpuState, uint16_t *pu16Fsw, PCRTFLOAT80U pr80Val));
|
---|
984 | typedef FNIEMAIMPLFPUR80UNARYFSW *PFNIEMAIMPLFPUR80UNARYFSW;
|
---|
985 | FNIEMAIMPLFPUR80UNARYFSW iemAImpl_ftst_r80;
|
---|
986 | FNIEMAIMPLFPUR80UNARYFSW iemAImpl_fxam_r80;
|
---|
987 |
|
---|
988 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR80LDCONST,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes));
|
---|
989 | typedef FNIEMAIMPLFPUR80LDCONST *PFNIEMAIMPLFPUR80LDCONST;
|
---|
990 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fld1;
|
---|
991 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fldl2t;
|
---|
992 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fldl2e;
|
---|
993 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fldpi;
|
---|
994 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fldlg2;
|
---|
995 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fldln2;
|
---|
996 | FNIEMAIMPLFPUR80LDCONST iemAImpl_fldz;
|
---|
997 |
|
---|
998 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUR80UNARYTWO,(PCX86FXSTATE pFpuState, PIEMFPURESULTTWO pFpuResTwo,
|
---|
999 | PCRTFLOAT80U pr80Val));
|
---|
1000 | typedef FNIEMAIMPLFPUR80UNARYTWO *PFNIEMAIMPLFPUR80UNARYTWO;
|
---|
1001 | FNIEMAIMPLFPUR80UNARYTWO iemAImpl_fptan_r80_r80;
|
---|
1002 | FNIEMAIMPLFPUR80UNARYTWO iemAImpl_fxtract_r80_r80;
|
---|
1003 | FNIEMAIMPLFPUR80UNARYTWO iemAImpl_fsincos_r80_r80;
|
---|
1004 |
|
---|
1005 | IEM_DECL_IMPL_DEF(void, iemAImpl_fld_r80_from_r80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, PCRTFLOAT80U pr80Val));
|
---|
1006 | IEM_DECL_IMPL_DEF(void, iemAImpl_fst_r80_to_r80,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1007 | PRTFLOAT80U pr80Dst, PCRTFLOAT80U pr80Src));
|
---|
1008 |
|
---|
1009 | /** @} */
|
---|
1010 |
|
---|
1011 | /** @name FPU operations taking a 16-bit signed integer argument
|
---|
1012 | * @{ */
|
---|
1013 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUI16,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes,
|
---|
1014 | PCRTFLOAT80U pr80Val1, int16_t const *pi16Val2));
|
---|
1015 | typedef FNIEMAIMPLFPUI16 *PFNIEMAIMPLFPUI16;
|
---|
1016 |
|
---|
1017 | FNIEMAIMPLFPUI16 iemAImpl_fiadd_r80_by_i16;
|
---|
1018 | FNIEMAIMPLFPUI16 iemAImpl_fimul_r80_by_i16;
|
---|
1019 | FNIEMAIMPLFPUI16 iemAImpl_fisub_r80_by_i16;
|
---|
1020 | FNIEMAIMPLFPUI16 iemAImpl_fisubr_r80_by_i16;
|
---|
1021 | FNIEMAIMPLFPUI16 iemAImpl_fidiv_r80_by_i16;
|
---|
1022 | FNIEMAIMPLFPUI16 iemAImpl_fidivr_r80_by_i16;
|
---|
1023 |
|
---|
1024 | IEM_DECL_IMPL_DEF(void, iemAImpl_ficom_r80_by_i16,(PCX86FXSTATE pFpuState, uint16_t *pu16Fsw,
|
---|
1025 | PCRTFLOAT80U pr80Val1, int16_t const *pi16Val2));
|
---|
1026 |
|
---|
1027 | IEM_DECL_IMPL_DEF(void, iemAImpl_fild_i16_to_r80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, int16_t const *pi16Val));
|
---|
1028 | IEM_DECL_IMPL_DEF(void, iemAImpl_fist_r80_to_i16,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1029 | int16_t *pi16Val, PCRTFLOAT80U pr80Val));
|
---|
1030 | IEM_DECL_IMPL_DEF(void, iemAImpl_fistt_r80_to_i16,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1031 | int16_t *pi16Val, PCRTFLOAT80U pr80Val));
|
---|
1032 | /** @} */
|
---|
1033 |
|
---|
1034 | /** @name FPU operations taking a 32-bit signed integer argument
|
---|
1035 | * @{ */
|
---|
1036 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUI32,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes,
|
---|
1037 | PCRTFLOAT80U pr80Val1, int32_t const *pi32Val2));
|
---|
1038 | typedef FNIEMAIMPLFPUI32 *PFNIEMAIMPLFPUI32;
|
---|
1039 |
|
---|
1040 | FNIEMAIMPLFPUI32 iemAImpl_fiadd_r80_by_i32;
|
---|
1041 | FNIEMAIMPLFPUI32 iemAImpl_fimul_r80_by_i32;
|
---|
1042 | FNIEMAIMPLFPUI32 iemAImpl_fisub_r80_by_i32;
|
---|
1043 | FNIEMAIMPLFPUI32 iemAImpl_fisubr_r80_by_i32;
|
---|
1044 | FNIEMAIMPLFPUI32 iemAImpl_fidiv_r80_by_i32;
|
---|
1045 | FNIEMAIMPLFPUI32 iemAImpl_fidivr_r80_by_i32;
|
---|
1046 |
|
---|
1047 | IEM_DECL_IMPL_DEF(void, iemAImpl_ficom_r80_by_i32,(PCX86FXSTATE pFpuState, uint16_t *pu16Fsw,
|
---|
1048 | PCRTFLOAT80U pr80Val1, int32_t const *pi32Val2));
|
---|
1049 |
|
---|
1050 | IEM_DECL_IMPL_DEF(void, iemAImpl_fild_i32_to_r80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, int32_t const *pi32Val));
|
---|
1051 | IEM_DECL_IMPL_DEF(void, iemAImpl_fist_r80_to_i32,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1052 | int32_t *pi32Val, PCRTFLOAT80U pr80Val));
|
---|
1053 | IEM_DECL_IMPL_DEF(void, iemAImpl_fistt_r80_to_i32,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1054 | int32_t *pi32Val, PCRTFLOAT80U pr80Val));
|
---|
1055 | /** @} */
|
---|
1056 |
|
---|
1057 | /** @name FPU operations taking a 64-bit signed integer argument
|
---|
1058 | * @{ */
|
---|
1059 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLFPUI64,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes,
|
---|
1060 | PCRTFLOAT80U pr80Val1, int64_t const *pi64Val2));
|
---|
1061 | typedef FNIEMAIMPLFPUI64 *PFNIEMAIMPLFPUI64;
|
---|
1062 |
|
---|
1063 | FNIEMAIMPLFPUI64 iemAImpl_fiadd_r80_by_i64;
|
---|
1064 | FNIEMAIMPLFPUI64 iemAImpl_fimul_r80_by_i64;
|
---|
1065 | FNIEMAIMPLFPUI64 iemAImpl_fisub_r80_by_i64;
|
---|
1066 | FNIEMAIMPLFPUI64 iemAImpl_fisubr_r80_by_i64;
|
---|
1067 | FNIEMAIMPLFPUI64 iemAImpl_fidiv_r80_by_i64;
|
---|
1068 | FNIEMAIMPLFPUI64 iemAImpl_fidivr_r80_by_i64;
|
---|
1069 |
|
---|
1070 | IEM_DECL_IMPL_DEF(void, iemAImpl_ficom_r80_by_i64,(PCX86FXSTATE pFpuState, uint16_t *pu16Fsw,
|
---|
1071 | PCRTFLOAT80U pr80Val1, int64_t const *pi64Val2));
|
---|
1072 |
|
---|
1073 | IEM_DECL_IMPL_DEF(void, iemAImpl_fild_i64_to_r80,(PCX86FXSTATE pFpuState, PIEMFPURESULT pFpuRes, int64_t const *pi64Val));
|
---|
1074 | IEM_DECL_IMPL_DEF(void, iemAImpl_fist_r80_to_i64,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1075 | int64_t *pi64Val, PCRTFLOAT80U pr80Val));
|
---|
1076 | IEM_DECL_IMPL_DEF(void, iemAImpl_fistt_r80_to_i64,(PCX86FXSTATE pFpuState, uint16_t *pu16FSW,
|
---|
1077 | int64_t *pi32Val, PCRTFLOAT80U pr80Val));
|
---|
1078 | /** @} */
|
---|
1079 |
|
---|
1080 |
|
---|
1081 | /** Temporary type representing a 256-bit vector register. */
|
---|
1082 | typedef struct {uint64_t au64[4]; } IEMVMM256;
|
---|
1083 | /** Temporary type pointing to a 256-bit vector register. */
|
---|
1084 | typedef IEMVMM256 *PIEMVMM256;
|
---|
1085 | /** Temporary type pointing to a const 256-bit vector register. */
|
---|
1086 | typedef IEMVMM256 *PCIEMVMM256;
|
---|
1087 |
|
---|
1088 |
|
---|
1089 | /** @name Media (SSE/MMX/AVX) operations: full1 + full2 -> full1.
|
---|
1090 | * @{ */
|
---|
1091 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAF2U64,(PCX86FXSTATE pFpuState, uint64_t *pu64Dst, uint64_t const *pu64Src));
|
---|
1092 | typedef FNIEMAIMPLMEDIAF2U64 *PFNIEMAIMPLMEDIAF2U64;
|
---|
1093 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAF2U128,(PCX86FXSTATE pFpuState, uint128_t *pu128Dst, uint128_t const *pu128Src));
|
---|
1094 | typedef FNIEMAIMPLMEDIAF2U128 *PFNIEMAIMPLMEDIAF2U128;
|
---|
1095 | FNIEMAIMPLMEDIAF2U64 iemAImpl_pxor_u64, iemAImpl_pcmpeqb_u64, iemAImpl_pcmpeqw_u64, iemAImpl_pcmpeqd_u64;
|
---|
1096 | FNIEMAIMPLMEDIAF2U128 iemAImpl_pxor_u128, iemAImpl_pcmpeqb_u128, iemAImpl_pcmpeqw_u128, iemAImpl_pcmpeqd_u128;
|
---|
1097 | /** @} */
|
---|
1098 |
|
---|
1099 | /** @name Media (SSE/MMX/AVX) operations: lowhalf1 + lowhalf1 -> full1.
|
---|
1100 | * @{ */
|
---|
1101 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAF1L1U64,(PCX86FXSTATE pFpuState, uint64_t *pu64Dst, uint32_t const *pu32Src));
|
---|
1102 | typedef FNIEMAIMPLMEDIAF1L1U64 *PFNIEMAIMPLMEDIAF1L1U64;
|
---|
1103 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAF1L1U128,(PCX86FXSTATE pFpuState, uint128_t *pu128Dst, uint64_t const *pu64Src));
|
---|
1104 | typedef FNIEMAIMPLMEDIAF1L1U128 *PFNIEMAIMPLMEDIAF1L1U128;
|
---|
1105 | FNIEMAIMPLMEDIAF1L1U64 iemAImpl_punpcklbw_u64, iemAImpl_punpcklwd_u64, iemAImpl_punpckldq_u64;
|
---|
1106 | FNIEMAIMPLMEDIAF1L1U128 iemAImpl_punpcklbw_u128, iemAImpl_punpcklwd_u128, iemAImpl_punpckldq_u128, iemAImpl_punpcklqdq_u128;
|
---|
1107 | /** @} */
|
---|
1108 |
|
---|
1109 | /** @name Media (SSE/MMX/AVX) operations: hihalf1 + hihalf2 -> full1.
|
---|
1110 | * @{ */
|
---|
1111 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAF1H1U64,(PCX86FXSTATE pFpuState, uint64_t *pu64Dst, uint64_t const *pu64Src));
|
---|
1112 | typedef FNIEMAIMPLMEDIAF2U64 *PFNIEMAIMPLMEDIAF1H1U64;
|
---|
1113 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAF1H1U128,(PCX86FXSTATE pFpuState, uint128_t *pu128Dst, uint128_t const *pu128Src));
|
---|
1114 | typedef FNIEMAIMPLMEDIAF2U128 *PFNIEMAIMPLMEDIAF1H1U128;
|
---|
1115 | FNIEMAIMPLMEDIAF1H1U64 iemAImpl_punpckhbw_u64, iemAImpl_punpckhwd_u64, iemAImpl_punpckhdq_u64;
|
---|
1116 | FNIEMAIMPLMEDIAF1H1U128 iemAImpl_punpckhbw_u128, iemAImpl_punpckhwd_u128, iemAImpl_punpckhdq_u128, iemAImpl_punpckhqdq_u128;
|
---|
1117 | /** @} */
|
---|
1118 |
|
---|
1119 | /** @name Media (SSE/MMX/AVX) operation: Packed Shuffle Stuff (evil)
|
---|
1120 | * @{ */
|
---|
1121 | typedef IEM_DECL_IMPL_TYPE(void, FNIEMAIMPLMEDIAPSHUF,(PCX86FXSTATE pFpuState, uint128_t *pu128Dst,
|
---|
1122 | uint128_t const *pu128Src, uint8_t bEvil));
|
---|
1123 | typedef FNIEMAIMPLMEDIAPSHUF *PFNIEMAIMPLMEDIAPSHUF;
|
---|
1124 | FNIEMAIMPLMEDIAPSHUF iemAImpl_pshufhw, iemAImpl_pshuflw, iemAImpl_pshufd;
|
---|
1125 | IEM_DECL_IMPL_DEF(void, iemAImpl_pshufw,(PCX86FXSTATE pFpuState, uint64_t *pu64Dst, uint64_t const *pu64Src, uint8_t bEvil));
|
---|
1126 | /** @} */
|
---|
1127 |
|
---|
1128 | /** @name Media (SSE/MMX/AVX) operation: Move Byte Mask
|
---|
1129 | * @{ */
|
---|
1130 | IEM_DECL_IMPL_DEF(void, iemAImpl_pmovmskb_u64,(PCX86FXSTATE pFpuState, uint64_t *pu64Dst, uint64_t const *pu64Src));
|
---|
1131 | IEM_DECL_IMPL_DEF(void, iemAImpl_pmovmskb_u128,(PCX86FXSTATE pFpuState, uint64_t *pu64Dst, uint128_t const *pu128Src));
|
---|
1132 | /** @} */
|
---|
1133 |
|
---|
1134 |
|
---|
1135 |
|
---|
1136 | /** @name Function tables.
|
---|
1137 | * @{
|
---|
1138 | */
|
---|
1139 |
|
---|
1140 | /**
|
---|
1141 | * Function table for a binary operator providing implementation based on
|
---|
1142 | * operand size.
|
---|
1143 | */
|
---|
1144 | typedef struct IEMOPBINSIZES
|
---|
1145 | {
|
---|
1146 | PFNIEMAIMPLBINU8 pfnNormalU8, pfnLockedU8;
|
---|
1147 | PFNIEMAIMPLBINU16 pfnNormalU16, pfnLockedU16;
|
---|
1148 | PFNIEMAIMPLBINU32 pfnNormalU32, pfnLockedU32;
|
---|
1149 | PFNIEMAIMPLBINU64 pfnNormalU64, pfnLockedU64;
|
---|
1150 | } IEMOPBINSIZES;
|
---|
1151 | /** Pointer to a binary operator function table. */
|
---|
1152 | typedef IEMOPBINSIZES const *PCIEMOPBINSIZES;
|
---|
1153 |
|
---|
1154 |
|
---|
1155 | /**
|
---|
1156 | * Function table for a unary operator providing implementation based on
|
---|
1157 | * operand size.
|
---|
1158 | */
|
---|
1159 | typedef struct IEMOPUNARYSIZES
|
---|
1160 | {
|
---|
1161 | PFNIEMAIMPLUNARYU8 pfnNormalU8, pfnLockedU8;
|
---|
1162 | PFNIEMAIMPLUNARYU16 pfnNormalU16, pfnLockedU16;
|
---|
1163 | PFNIEMAIMPLUNARYU32 pfnNormalU32, pfnLockedU32;
|
---|
1164 | PFNIEMAIMPLUNARYU64 pfnNormalU64, pfnLockedU64;
|
---|
1165 | } IEMOPUNARYSIZES;
|
---|
1166 | /** Pointer to a unary operator function table. */
|
---|
1167 | typedef IEMOPUNARYSIZES const *PCIEMOPUNARYSIZES;
|
---|
1168 |
|
---|
1169 |
|
---|
1170 | /**
|
---|
1171 | * Function table for a shift operator providing implementation based on
|
---|
1172 | * operand size.
|
---|
1173 | */
|
---|
1174 | typedef struct IEMOPSHIFTSIZES
|
---|
1175 | {
|
---|
1176 | PFNIEMAIMPLSHIFTU8 pfnNormalU8;
|
---|
1177 | PFNIEMAIMPLSHIFTU16 pfnNormalU16;
|
---|
1178 | PFNIEMAIMPLSHIFTU32 pfnNormalU32;
|
---|
1179 | PFNIEMAIMPLSHIFTU64 pfnNormalU64;
|
---|
1180 | } IEMOPSHIFTSIZES;
|
---|
1181 | /** Pointer to a shift operator function table. */
|
---|
1182 | typedef IEMOPSHIFTSIZES const *PCIEMOPSHIFTSIZES;
|
---|
1183 |
|
---|
1184 |
|
---|
1185 | /**
|
---|
1186 | * Function table for a multiplication or division operation.
|
---|
1187 | */
|
---|
1188 | typedef struct IEMOPMULDIVSIZES
|
---|
1189 | {
|
---|
1190 | PFNIEMAIMPLMULDIVU8 pfnU8;
|
---|
1191 | PFNIEMAIMPLMULDIVU16 pfnU16;
|
---|
1192 | PFNIEMAIMPLMULDIVU32 pfnU32;
|
---|
1193 | PFNIEMAIMPLMULDIVU64 pfnU64;
|
---|
1194 | } IEMOPMULDIVSIZES;
|
---|
1195 | /** Pointer to a multiplication or division operation function table. */
|
---|
1196 | typedef IEMOPMULDIVSIZES const *PCIEMOPMULDIVSIZES;
|
---|
1197 |
|
---|
1198 |
|
---|
1199 | /**
|
---|
1200 | * Function table for a double precision shift operator providing implementation
|
---|
1201 | * based on operand size.
|
---|
1202 | */
|
---|
1203 | typedef struct IEMOPSHIFTDBLSIZES
|
---|
1204 | {
|
---|
1205 | PFNIEMAIMPLSHIFTDBLU16 pfnNormalU16;
|
---|
1206 | PFNIEMAIMPLSHIFTDBLU32 pfnNormalU32;
|
---|
1207 | PFNIEMAIMPLSHIFTDBLU64 pfnNormalU64;
|
---|
1208 | } IEMOPSHIFTDBLSIZES;
|
---|
1209 | /** Pointer to a double precision shift function table. */
|
---|
1210 | typedef IEMOPSHIFTDBLSIZES const *PCIEMOPSHIFTDBLSIZES;
|
---|
1211 |
|
---|
1212 |
|
---|
1213 | /**
|
---|
1214 | * Function table for media instruction taking two full sized media registers,
|
---|
1215 | * optionally the 2nd being a memory reference (only modifying the first op.)
|
---|
1216 | */
|
---|
1217 | typedef struct IEMOPMEDIAF2
|
---|
1218 | {
|
---|
1219 | PFNIEMAIMPLMEDIAF2U64 pfnU64;
|
---|
1220 | PFNIEMAIMPLMEDIAF2U128 pfnU128;
|
---|
1221 | } IEMOPMEDIAF2;
|
---|
1222 | /** Pointer to a media operation function table for full sized ops. */
|
---|
1223 | typedef IEMOPMEDIAF2 const *PCIEMOPMEDIAF2;
|
---|
1224 |
|
---|
1225 | /**
|
---|
1226 | * Function table for media instruction taking taking one full and one lower
|
---|
1227 | * half media register.
|
---|
1228 | */
|
---|
1229 | typedef struct IEMOPMEDIAF1L1
|
---|
1230 | {
|
---|
1231 | PFNIEMAIMPLMEDIAF1L1U64 pfnU64;
|
---|
1232 | PFNIEMAIMPLMEDIAF1L1U128 pfnU128;
|
---|
1233 | } IEMOPMEDIAF1L1;
|
---|
1234 | /** Pointer to a media operation function table for lowhalf+lowhalf -> full. */
|
---|
1235 | typedef IEMOPMEDIAF1L1 const *PCIEMOPMEDIAF1L1;
|
---|
1236 |
|
---|
1237 | /**
|
---|
1238 | * Function table for media instruction taking taking one full and one high half
|
---|
1239 | * media register.
|
---|
1240 | */
|
---|
1241 | typedef struct IEMOPMEDIAF1H1
|
---|
1242 | {
|
---|
1243 | PFNIEMAIMPLMEDIAF1H1U64 pfnU64;
|
---|
1244 | PFNIEMAIMPLMEDIAF1H1U128 pfnU128;
|
---|
1245 | } IEMOPMEDIAF1H1;
|
---|
1246 | /** Pointer to a media operation function table for hihalf+hihalf -> full. */
|
---|
1247 | typedef IEMOPMEDIAF1H1 const *PCIEMOPMEDIAF1H1;
|
---|
1248 |
|
---|
1249 |
|
---|
1250 | /** @} */
|
---|
1251 |
|
---|
1252 |
|
---|
1253 | /** @name C instruction implementations for anything slightly complicated.
|
---|
1254 | * @{ */
|
---|
1255 |
|
---|
1256 | /**
|
---|
1257 | * For typedef'ing or declaring a C instruction implementation function taking
|
---|
1258 | * no extra arguments.
|
---|
1259 | *
|
---|
1260 | * @param a_Name The name of the type.
|
---|
1261 | */
|
---|
1262 | # define IEM_CIMPL_DECL_TYPE_0(a_Name) \
|
---|
1263 | IEM_DECL_IMPL_TYPE(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr))
|
---|
1264 | /**
|
---|
1265 | * For defining a C instruction implementation function taking no extra
|
---|
1266 | * arguments.
|
---|
1267 | *
|
---|
1268 | * @param a_Name The name of the function
|
---|
1269 | */
|
---|
1270 | # define IEM_CIMPL_DEF_0(a_Name) \
|
---|
1271 | IEM_DECL_IMPL_DEF(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr))
|
---|
1272 | /**
|
---|
1273 | * For calling a C instruction implementation function taking no extra
|
---|
1274 | * arguments.
|
---|
1275 | *
|
---|
1276 | * This special call macro adds default arguments to the call and allow us to
|
---|
1277 | * change these later.
|
---|
1278 | *
|
---|
1279 | * @param a_fn The name of the function.
|
---|
1280 | */
|
---|
1281 | # define IEM_CIMPL_CALL_0(a_fn) a_fn(pIemCpu, cbInstr)
|
---|
1282 |
|
---|
1283 | /**
|
---|
1284 | * For typedef'ing or declaring a C instruction implementation function taking
|
---|
1285 | * one extra argument.
|
---|
1286 | *
|
---|
1287 | * @param a_Name The name of the type.
|
---|
1288 | * @param a_Type0 The argument type.
|
---|
1289 | * @param a_Arg0 The argument name.
|
---|
1290 | */
|
---|
1291 | # define IEM_CIMPL_DECL_TYPE_1(a_Name, a_Type0, a_Arg0) \
|
---|
1292 | IEM_DECL_IMPL_TYPE(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0))
|
---|
1293 | /**
|
---|
1294 | * For defining a C instruction implementation function taking one extra
|
---|
1295 | * argument.
|
---|
1296 | *
|
---|
1297 | * @param a_Name The name of the function
|
---|
1298 | * @param a_Type0 The argument type.
|
---|
1299 | * @param a_Arg0 The argument name.
|
---|
1300 | */
|
---|
1301 | # define IEM_CIMPL_DEF_1(a_Name, a_Type0, a_Arg0) \
|
---|
1302 | IEM_DECL_IMPL_DEF(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0))
|
---|
1303 | /**
|
---|
1304 | * For calling a C instruction implementation function taking one extra
|
---|
1305 | * argument.
|
---|
1306 | *
|
---|
1307 | * This special call macro adds default arguments to the call and allow us to
|
---|
1308 | * change these later.
|
---|
1309 | *
|
---|
1310 | * @param a_fn The name of the function.
|
---|
1311 | * @param a0 The name of the 1st argument.
|
---|
1312 | */
|
---|
1313 | # define IEM_CIMPL_CALL_1(a_fn, a0) a_fn(pIemCpu, cbInstr, (a0))
|
---|
1314 |
|
---|
1315 | /**
|
---|
1316 | * For typedef'ing or declaring a C instruction implementation function taking
|
---|
1317 | * two extra arguments.
|
---|
1318 | *
|
---|
1319 | * @param a_Name The name of the type.
|
---|
1320 | * @param a_Type0 The type of the 1st argument
|
---|
1321 | * @param a_Arg0 The name of the 1st argument.
|
---|
1322 | * @param a_Type1 The type of the 2nd argument.
|
---|
1323 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1324 | */
|
---|
1325 | # define IEM_CIMPL_DECL_TYPE_2(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1) \
|
---|
1326 | IEM_DECL_IMPL_TYPE(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0, a_Type1 a_Arg1))
|
---|
1327 | /**
|
---|
1328 | * For defining a C instruction implementation function taking two extra
|
---|
1329 | * arguments.
|
---|
1330 | *
|
---|
1331 | * @param a_Name The name of the function.
|
---|
1332 | * @param a_Type0 The type of the 1st argument
|
---|
1333 | * @param a_Arg0 The name of the 1st argument.
|
---|
1334 | * @param a_Type1 The type of the 2nd argument.
|
---|
1335 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1336 | */
|
---|
1337 | # define IEM_CIMPL_DEF_2(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1) \
|
---|
1338 | IEM_DECL_IMPL_DEF(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0, a_Type1 a_Arg1))
|
---|
1339 | /**
|
---|
1340 | * For calling a C instruction implementation function taking two extra
|
---|
1341 | * arguments.
|
---|
1342 | *
|
---|
1343 | * This special call macro adds default arguments to the call and allow us to
|
---|
1344 | * change these later.
|
---|
1345 | *
|
---|
1346 | * @param a_fn The name of the function.
|
---|
1347 | * @param a0 The name of the 1st argument.
|
---|
1348 | * @param a1 The name of the 2nd argument.
|
---|
1349 | */
|
---|
1350 | # define IEM_CIMPL_CALL_2(a_fn, a0, a1) a_fn(pIemCpu, cbInstr, (a0), (a1))
|
---|
1351 |
|
---|
1352 | /**
|
---|
1353 | * For typedef'ing or declaring a C instruction implementation function taking
|
---|
1354 | * three extra arguments.
|
---|
1355 | *
|
---|
1356 | * @param a_Name The name of the type.
|
---|
1357 | * @param a_Type0 The type of the 1st argument
|
---|
1358 | * @param a_Arg0 The name of the 1st argument.
|
---|
1359 | * @param a_Type1 The type of the 2nd argument.
|
---|
1360 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1361 | * @param a_Type2 The type of the 3rd argument.
|
---|
1362 | * @param a_Arg2 The name of the 3rd argument.
|
---|
1363 | */
|
---|
1364 | # define IEM_CIMPL_DECL_TYPE_3(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1, a_Type2, a_Arg2) \
|
---|
1365 | IEM_DECL_IMPL_TYPE(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0, a_Type1 a_Arg1, a_Type2 a_Arg2))
|
---|
1366 | /**
|
---|
1367 | * For defining a C instruction implementation function taking three extra
|
---|
1368 | * arguments.
|
---|
1369 | *
|
---|
1370 | * @param a_Name The name of the function.
|
---|
1371 | * @param a_Type0 The type of the 1st argument
|
---|
1372 | * @param a_Arg0 The name of the 1st argument.
|
---|
1373 | * @param a_Type1 The type of the 2nd argument.
|
---|
1374 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1375 | * @param a_Type2 The type of the 3rd argument.
|
---|
1376 | * @param a_Arg2 The name of the 3rd argument.
|
---|
1377 | */
|
---|
1378 | # define IEM_CIMPL_DEF_3(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1, a_Type2, a_Arg2) \
|
---|
1379 | IEM_DECL_IMPL_DEF(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0, a_Type1 a_Arg1, a_Type2 a_Arg2))
|
---|
1380 | /**
|
---|
1381 | * For calling a C instruction implementation function taking three extra
|
---|
1382 | * arguments.
|
---|
1383 | *
|
---|
1384 | * This special call macro adds default arguments to the call and allow us to
|
---|
1385 | * change these later.
|
---|
1386 | *
|
---|
1387 | * @param a_fn The name of the function.
|
---|
1388 | * @param a0 The name of the 1st argument.
|
---|
1389 | * @param a1 The name of the 2nd argument.
|
---|
1390 | * @param a2 The name of the 3rd argument.
|
---|
1391 | */
|
---|
1392 | # define IEM_CIMPL_CALL_3(a_fn, a0, a1, a2) a_fn(pIemCpu, cbInstr, (a0), (a1), (a2))
|
---|
1393 |
|
---|
1394 |
|
---|
1395 | /**
|
---|
1396 | * For typedef'ing or declaring a C instruction implementation function taking
|
---|
1397 | * four extra arguments.
|
---|
1398 | *
|
---|
1399 | * @param a_Name The name of the type.
|
---|
1400 | * @param a_Type0 The type of the 1st argument
|
---|
1401 | * @param a_Arg0 The name of the 1st argument.
|
---|
1402 | * @param a_Type1 The type of the 2nd argument.
|
---|
1403 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1404 | * @param a_Type2 The type of the 3rd argument.
|
---|
1405 | * @param a_Arg2 The name of the 3rd argument.
|
---|
1406 | * @param a_Type3 The type of the 4th argument.
|
---|
1407 | * @param a_Arg3 The name of the 4th argument.
|
---|
1408 | */
|
---|
1409 | # define IEM_CIMPL_DECL_TYPE_4(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1, a_Type2, a_Arg2, a_Type3, a_Arg3) \
|
---|
1410 | IEM_DECL_IMPL_TYPE(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0, a_Type1 a_Arg1, a_Type2 a_Arg2, a_Type3 a_Arg3))
|
---|
1411 | /**
|
---|
1412 | * For defining a C instruction implementation function taking four extra
|
---|
1413 | * arguments.
|
---|
1414 | *
|
---|
1415 | * @param a_Name The name of the function.
|
---|
1416 | * @param a_Type0 The type of the 1st argument
|
---|
1417 | * @param a_Arg0 The name of the 1st argument.
|
---|
1418 | * @param a_Type1 The type of the 2nd argument.
|
---|
1419 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1420 | * @param a_Type2 The type of the 3rd argument.
|
---|
1421 | * @param a_Arg2 The name of the 3rd argument.
|
---|
1422 | * @param a_Type3 The type of the 4th argument.
|
---|
1423 | * @param a_Arg3 The name of the 4th argument.
|
---|
1424 | */
|
---|
1425 | # define IEM_CIMPL_DEF_4(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1, a_Type2, a_Arg2, a_Type3, a_Arg3) \
|
---|
1426 | IEM_DECL_IMPL_DEF(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, a_Type0 a_Arg0, a_Type1 a_Arg1, \
|
---|
1427 | a_Type2 a_Arg2, a_Type3 a_Arg3))
|
---|
1428 | /**
|
---|
1429 | * For calling a C instruction implementation function taking four extra
|
---|
1430 | * arguments.
|
---|
1431 | *
|
---|
1432 | * This special call macro adds default arguments to the call and allow us to
|
---|
1433 | * change these later.
|
---|
1434 | *
|
---|
1435 | * @param a_fn The name of the function.
|
---|
1436 | * @param a0 The name of the 1st argument.
|
---|
1437 | * @param a1 The name of the 2nd argument.
|
---|
1438 | * @param a2 The name of the 3rd argument.
|
---|
1439 | * @param a3 The name of the 4th argument.
|
---|
1440 | */
|
---|
1441 | # define IEM_CIMPL_CALL_4(a_fn, a0, a1, a2, a3) a_fn(pIemCpu, cbInstr, (a0), (a1), (a2), (a3))
|
---|
1442 |
|
---|
1443 |
|
---|
1444 | /**
|
---|
1445 | * For typedef'ing or declaring a C instruction implementation function taking
|
---|
1446 | * five extra arguments.
|
---|
1447 | *
|
---|
1448 | * @param a_Name The name of the type.
|
---|
1449 | * @param a_Type0 The type of the 1st argument
|
---|
1450 | * @param a_Arg0 The name of the 1st argument.
|
---|
1451 | * @param a_Type1 The type of the 2nd argument.
|
---|
1452 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1453 | * @param a_Type2 The type of the 3rd argument.
|
---|
1454 | * @param a_Arg2 The name of the 3rd argument.
|
---|
1455 | * @param a_Type3 The type of the 4th argument.
|
---|
1456 | * @param a_Arg3 The name of the 4th argument.
|
---|
1457 | * @param a_Type4 The type of the 5th argument.
|
---|
1458 | * @param a_Arg4 The name of the 5th argument.
|
---|
1459 | */
|
---|
1460 | # define IEM_CIMPL_DECL_TYPE_5(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1, a_Type2, a_Arg2, a_Type3, a_Arg3, a_Type4, a_Arg4) \
|
---|
1461 | IEM_DECL_IMPL_TYPE(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, \
|
---|
1462 | a_Type0 a_Arg0, a_Type1 a_Arg1, a_Type2 a_Arg2, \
|
---|
1463 | a_Type3 a_Arg3, a_Type4 a_Arg4))
|
---|
1464 | /**
|
---|
1465 | * For defining a C instruction implementation function taking five extra
|
---|
1466 | * arguments.
|
---|
1467 | *
|
---|
1468 | * @param a_Name The name of the function.
|
---|
1469 | * @param a_Type0 The type of the 1st argument
|
---|
1470 | * @param a_Arg0 The name of the 1st argument.
|
---|
1471 | * @param a_Type1 The type of the 2nd argument.
|
---|
1472 | * @param a_Arg1 The name of the 2nd argument.
|
---|
1473 | * @param a_Type2 The type of the 3rd argument.
|
---|
1474 | * @param a_Arg2 The name of the 3rd argument.
|
---|
1475 | * @param a_Type3 The type of the 4th argument.
|
---|
1476 | * @param a_Arg3 The name of the 4th argument.
|
---|
1477 | * @param a_Type4 The type of the 5th argument.
|
---|
1478 | * @param a_Arg4 The name of the 5th argument.
|
---|
1479 | */
|
---|
1480 | # define IEM_CIMPL_DEF_5(a_Name, a_Type0, a_Arg0, a_Type1, a_Arg1, a_Type2, a_Arg2, a_Type3, a_Arg3, a_Type4, a_Arg4) \
|
---|
1481 | IEM_DECL_IMPL_DEF(VBOXSTRICTRC, a_Name, (PIEMCPU pIemCpu, uint8_t cbInstr, \
|
---|
1482 | a_Type0 a_Arg0, a_Type1 a_Arg1, a_Type2 a_Arg2, \
|
---|
1483 | a_Type3 a_Arg3, a_Type4 a_Arg4))
|
---|
1484 | /**
|
---|
1485 | * For calling a C instruction implementation function taking five extra
|
---|
1486 | * arguments.
|
---|
1487 | *
|
---|
1488 | * This special call macro adds default arguments to the call and allow us to
|
---|
1489 | * change these later.
|
---|
1490 | *
|
---|
1491 | * @param a_fn The name of the function.
|
---|
1492 | * @param a0 The name of the 1st argument.
|
---|
1493 | * @param a1 The name of the 2nd argument.
|
---|
1494 | * @param a2 The name of the 3rd argument.
|
---|
1495 | * @param a3 The name of the 4th argument.
|
---|
1496 | * @param a4 The name of the 5th argument.
|
---|
1497 | */
|
---|
1498 | # define IEM_CIMPL_CALL_5(a_fn, a0, a1, a2, a3, a4) a_fn(pIemCpu, cbInstr, (a0), (a1), (a2), (a3), (a4))
|
---|
1499 |
|
---|
1500 | /** @} */
|
---|
1501 |
|
---|
1502 |
|
---|
1503 | /** @} */
|
---|
1504 |
|
---|
1505 | RT_C_DECLS_END
|
---|
1506 |
|
---|
1507 | #endif
|
---|
1508 |
|
---|