1 | /* $Id: tstIEMCheckMc.cpp 38077 2011-07-19 17:15:29Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IEM Testcase - Check the "Microcode".
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011 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 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #include <iprt/assert.h>
|
---|
22 | #include <iprt/rand.h>
|
---|
23 | #include <iprt/test.h>
|
---|
24 |
|
---|
25 | #include <VBox/types.h>
|
---|
26 | #include <VBox/err.h>
|
---|
27 | #include "../include/IEMInternal.h"
|
---|
28 |
|
---|
29 |
|
---|
30 | /*******************************************************************************
|
---|
31 | * Global Variables *
|
---|
32 | *******************************************************************************/
|
---|
33 | bool volatile g_fRandom;
|
---|
34 | uint8_t volatile g_bRandom;
|
---|
35 |
|
---|
36 |
|
---|
37 | /** For hacks. */
|
---|
38 | #define TST_IEM_CHECK_MC
|
---|
39 |
|
---|
40 | #define CHK_TYPE(a_ExpectedType, a_Param) \
|
---|
41 | do { a_ExpectedType const * pCheckType = &(a_Param); } while (0)
|
---|
42 | #define CHK_PTYPE(a_ExpectedType, a_Param) \
|
---|
43 | do { a_ExpectedType pCheckType = (a_Param); } while (0)
|
---|
44 |
|
---|
45 | #define CHK_CONST(a_ExpectedType, a_Const) \
|
---|
46 | do { \
|
---|
47 | AssertCompile(((a_Const) >> 1) == ((a_Const) >> 1)); \
|
---|
48 | AssertCompile((a_ExpectedType)(a_Const) == (a_Const)); \
|
---|
49 | } while (0)
|
---|
50 |
|
---|
51 | #define CHK_SINGLE_BIT(a_ExpectedType, a_fBitMask) \
|
---|
52 | do { \
|
---|
53 | CHK_CONST(a_ExpectedType, a_fBitMask); \
|
---|
54 | AssertCompile(RT_IS_POWER_OF_TWO(a_fBitMask)); \
|
---|
55 | } while (0)
|
---|
56 |
|
---|
57 | #define CHK_GCPTR(a_EffAddr) \
|
---|
58 | CHK_TYPE(RTGCPTR, a_EffAddr)
|
---|
59 |
|
---|
60 | #define CHK_SEG_IDX(a_iSeg) \
|
---|
61 | do { \
|
---|
62 | uint8_t iMySeg = (a_iSeg); NOREF(iMySeg); /** @todo const or variable. grr. */ \
|
---|
63 | } while (0)
|
---|
64 |
|
---|
65 |
|
---|
66 | /** @name Other stubs.
|
---|
67 | * @{ */
|
---|
68 |
|
---|
69 | typedef VBOXSTRICTRC (* PFNIEMOP)(PIEMCPU pIemCpu);
|
---|
70 | #define FNIEMOP_DEF(a_Name) \
|
---|
71 | static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu) RT_NO_THROW
|
---|
72 | #define FNIEMOP_DEF_1(a_Name, a_Type0, a_Name0) \
|
---|
73 | static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, a_Type0 a_Name0) RT_NO_THROW
|
---|
74 | #define FNIEMOP_DEF_2(a_Name, a_Type0, a_Name0, a_Type1, a_Name1) \
|
---|
75 | static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, a_Type0 a_Name0, a_Type1 a_Name1) RT_NO_THROW
|
---|
76 |
|
---|
77 | #define IEM_NOT_REACHED_DEFAULT_CASE_RET() default: return VERR_INTERNAL_ERROR_4
|
---|
78 |
|
---|
79 | #define IEM_OPCODE_GET_NEXT_U8(a_pu8) do { *(a_pu8) = g_bRandom; CHK_PTYPE(uint8_t *, a_pu8); } while (0)
|
---|
80 | #define IEM_OPCODE_GET_NEXT_U16(a_pu16) do { *(a_pu16) = g_bRandom; CHK_PTYPE(uint16_t *, a_pu16); } while (0)
|
---|
81 | #define IEM_OPCODE_GET_NEXT_U32(a_pu32) do { *(a_pu32) = g_bRandom; CHK_PTYPE(uint32_t *, a_pu32); } while (0)
|
---|
82 | #define IEM_OPCODE_GET_NEXT_S32_SX_U64(a_pu64) do { *(a_pu64) = g_bRandom; CHK_PTYPE(uint64_t *, a_pu64); } while (0)
|
---|
83 | #define IEM_OPCODE_GET_NEXT_U64(a_pu64) do { *(a_pu64) = g_bRandom; CHK_PTYPE(uint64_t *, a_pu64); } while (0)
|
---|
84 | #define IEM_OPCODE_GET_NEXT_S8(a_pi8) do { *(a_pi8) = g_bRandom; CHK_PTYPE(int8_t *, a_pi8); } while (0)
|
---|
85 | #define IEM_OPCODE_GET_NEXT_S16(a_pi16) do { *(a_pi16) = g_bRandom; CHK_PTYPE(int16_t *, a_pi16); } while (0)
|
---|
86 | #define IEM_OPCODE_GET_NEXT_S32(a_pi32) do { *(a_pi32) = g_bRandom; CHK_PTYPE(int32_t *, a_pi32); } while (0)
|
---|
87 | #define IEMOP_HLP_NO_LOCK_PREFIX() do { } while (0)
|
---|
88 | #define IEMOP_HLP_NO_64BIT() do { } while (0)
|
---|
89 | #define IEMOP_HLP_DEFAULT_64BIT_OP_SIZE() do { } while (0)
|
---|
90 | #define IEMOP_RAISE_INVALID_OPCODE() VERR_TRPM_ACTIVE_TRAP
|
---|
91 | #define IEMOP_RAISE_INVALID_LOCK_PREFIX() VERR_TRPM_ACTIVE_TRAP
|
---|
92 | #define IEMOP_MNEMONIC(a_szMnemonic) do { } while (0)
|
---|
93 | #define IEMOP_MNEMONIC2(a_szMnemonic, a_szOps) do { } while (0)
|
---|
94 | #define FNIEMOP_STUB(a_Name) \
|
---|
95 | FNIEMOP_DEF(a_Name) { return VERR_NOT_IMPLEMENTED; } \
|
---|
96 | typedef int ignore_semicolon
|
---|
97 | #define FNIEMOP_STUB_1(a_Name, a_Type0, a_Name0) \
|
---|
98 | FNIEMOP_DEF_1(a_Name, a_Type0, a_Name0) { return VERR_NOT_IMPLEMENTED; } \
|
---|
99 | typedef int ignore_semicolon
|
---|
100 |
|
---|
101 |
|
---|
102 | #define FNIEMOP_CALL(a_pfn) (a_pfn)(pIemCpu)
|
---|
103 | #define FNIEMOP_CALL_1(a_pfn, a0) (a_pfn)(pIemCpu, a0)
|
---|
104 | #define FNIEMOP_CALL_2(a_pfn, a0, a1) (a_pfn)(pIemCpu, a0, a1)
|
---|
105 |
|
---|
106 | #define IEM_IS_REAL_OR_V86_MODE(a_pIemCpu) (g_fRandom)
|
---|
107 | #define IEM_IS_LONG_MODE(a_pIemCpu) (g_fRandom)
|
---|
108 | #define IEM_IS_REAL_MODE(a_pIemCpu) (g_fRandom)
|
---|
109 | #define IEM_IS_AMD_CPUID_FEATURE_PRESENT_ECX(a_fEcx) (g_fRandom)
|
---|
110 | #define IEM_IS_INTEL_CPUID_FEATURE_PRESENT_EDX(a_fEdx) (g_fRandom)
|
---|
111 |
|
---|
112 | #define iemRecalEffOpSize(a_pIemCpu) do { } while (0)
|
---|
113 |
|
---|
114 | IEMOPBINSIZES g_iemAImpl_add;
|
---|
115 | IEMOPBINSIZES g_iemAImpl_adc;
|
---|
116 | IEMOPBINSIZES g_iemAImpl_sub;
|
---|
117 | IEMOPBINSIZES g_iemAImpl_sbb;
|
---|
118 | IEMOPBINSIZES g_iemAImpl_or;
|
---|
119 | IEMOPBINSIZES g_iemAImpl_xor;
|
---|
120 | IEMOPBINSIZES g_iemAImpl_and;
|
---|
121 | IEMOPBINSIZES g_iemAImpl_cmp;
|
---|
122 | IEMOPBINSIZES g_iemAImpl_test;
|
---|
123 | IEMOPBINSIZES g_iemAImpl_bt;
|
---|
124 | IEMOPBINSIZES g_iemAImpl_btc;
|
---|
125 | IEMOPBINSIZES g_iemAImpl_btr;
|
---|
126 | IEMOPBINSIZES g_iemAImpl_bts;
|
---|
127 | IEMOPBINSIZES g_iemAImpl_bsf;
|
---|
128 | IEMOPBINSIZES g_iemAImpl_bsr;
|
---|
129 | IEMOPBINSIZES g_iemAImpl_imul_two;
|
---|
130 | PCIEMOPBINSIZES g_apIemImplGrp1[8];
|
---|
131 | IEMOPUNARYSIZES g_iemAImpl_inc;
|
---|
132 | IEMOPUNARYSIZES g_iemAImpl_dec;
|
---|
133 | IEMOPUNARYSIZES g_iemAImpl_neg;
|
---|
134 | IEMOPUNARYSIZES g_iemAImpl_not;
|
---|
135 | IEMOPSHIFTSIZES g_iemAImpl_rol;
|
---|
136 | IEMOPSHIFTSIZES g_iemAImpl_ror;
|
---|
137 | IEMOPSHIFTSIZES g_iemAImpl_rcl;
|
---|
138 | IEMOPSHIFTSIZES g_iemAImpl_rcr;
|
---|
139 | IEMOPSHIFTSIZES g_iemAImpl_shl;
|
---|
140 | IEMOPSHIFTSIZES g_iemAImpl_shr;
|
---|
141 | IEMOPSHIFTSIZES g_iemAImpl_sar;
|
---|
142 | IEMOPMULDIVSIZES g_iemAImpl_mul;
|
---|
143 | IEMOPMULDIVSIZES g_iemAImpl_imul;
|
---|
144 | IEMOPMULDIVSIZES g_iemAImpl_div;
|
---|
145 | IEMOPMULDIVSIZES g_iemAImpl_idiv;
|
---|
146 | IEMOPSHIFTDBLSIZES g_iemAImpl_shld;
|
---|
147 | IEMOPSHIFTDBLSIZES g_iemAImpl_shrd;
|
---|
148 |
|
---|
149 |
|
---|
150 | #define iemAImpl_idiv_u8 ((PFNIEMAIMPLMULDIVU8)0)
|
---|
151 | #define iemAImpl_div_u8 ((PFNIEMAIMPLMULDIVU8)0)
|
---|
152 | #define iemAImpl_imul_u8 ((PFNIEMAIMPLMULDIVU8)0)
|
---|
153 | #define iemAImpl_mul_u8 ((PFNIEMAIMPLMULDIVU8)0)
|
---|
154 |
|
---|
155 | /** @} */
|
---|
156 |
|
---|
157 |
|
---|
158 | #define IEM_REPEAT_0(a_Callback, a_User) do { } while (0)
|
---|
159 | #define IEM_REPEAT_1(a_Callback, a_User) a_Callback##_CALLBACK(0, a_User)
|
---|
160 | #define IEM_REPEAT_2(a_Callback, a_User) IEM_REPEAT_1(a_Callback, a_User); a_Callback##_CALLBACK(1, a_User)
|
---|
161 | #define IEM_REPEAT_3(a_Callback, a_User) IEM_REPEAT_2(a_Callback, a_User); a_Callback##_CALLBACK(2, a_User)
|
---|
162 | #define IEM_REPEAT_4(a_Callback, a_User) IEM_REPEAT_3(a_Callback, a_User); a_Callback##_CALLBACK(3, a_User)
|
---|
163 | #define IEM_REPEAT_5(a_Callback, a_User) IEM_REPEAT_4(a_Callback, a_User); a_Callback##_CALLBACK(4, a_User)
|
---|
164 | #define IEM_REPEAT_6(a_Callback, a_User) IEM_REPEAT_5(a_Callback, a_User); a_Callback##_CALLBACK(5, a_User)
|
---|
165 | #define IEM_REPEAT_7(a_Callback, a_User) IEM_REPEAT_6(a_Callback, a_User); a_Callback##_CALLBACK(6, a_User)
|
---|
166 | #define IEM_REPEAT_8(a_Callback, a_User) IEM_REPEAT_7(a_Callback, a_User); a_Callback##_CALLBACK(7, a_User)
|
---|
167 | #define IEM_REPEAT_9(a_Callback, a_User) IEM_REPEAT_8(a_Callback, a_User); a_Callback##_CALLBACK(8, a_User)
|
---|
168 | #define IEM_REPEAT(a_cTimes, a_Callback, a_User) RT_CONCAT(IEM_REPEAT_,a_cTimes)(a_Callback, a_User)
|
---|
169 |
|
---|
170 |
|
---|
171 |
|
---|
172 | /** @name Microcode test stubs
|
---|
173 | * @{ */
|
---|
174 |
|
---|
175 | #define IEM_ARG_CHECK_CALLBACK(a_idx, a_User) int RT_CONCAT(iArgCheck_,a_idx)
|
---|
176 | #define IEM_MC_BEGIN(a_cArgs, a_cLocals) \
|
---|
177 | { \
|
---|
178 | const uint8_t cArgs = (a_cArgs); NOREF(cArgs); \
|
---|
179 | const uint8_t cLocals = (a_cArgs); NOREF(cLocals); \
|
---|
180 | IEM_REPEAT(a_cArgs, IEM_ARG_CHECK, 0); \
|
---|
181 |
|
---|
182 | #define IEM_MC_END() \
|
---|
183 | }
|
---|
184 |
|
---|
185 | #define IEM_MC_PAUSE() do {} while (0)
|
---|
186 | #define IEM_MC_CONTINUE() do {} while (0)
|
---|
187 | #define IEM_MC_ADVANCE_RIP() do {} while (0)
|
---|
188 | #define IEM_MC_REL_JMP_S8(a_i8) CHK_TYPE(int8_t, a_i8)
|
---|
189 | #define IEM_MC_REL_JMP_S16(a_i16) CHK_TYPE(int16_t, a_i16)
|
---|
190 | #define IEM_MC_REL_JMP_S32(a_i32) CHK_TYPE(int32_t, a_i32)
|
---|
191 | #define IEM_MC_SET_RIP_U16(a_u16NewIP) CHK_TYPE(uint16_t, a_u16NewIP)
|
---|
192 | #define IEM_MC_SET_RIP_U32(a_u32NewIP) CHK_TYPE(uint32_t, a_u32NewIP)
|
---|
193 | #define IEM_MC_SET_RIP_U64(a_u64NewIP) CHK_TYPE(uint64_t, a_u64NewIP)
|
---|
194 | #define IEM_MC_RAISE_DIVIDE_ERROR() return VERR_TRPM_ACTIVE_TRAP
|
---|
195 | #define IEM_MC_MAYBE_RAISE_DEVICE_NOT_AVAILABLE() do {} while (0)
|
---|
196 | #define IEM_MC_MAYBE_RAISE_FPU_XCPT() do {} while (0)
|
---|
197 | #define IEM_MC_RAISE_GP0_IF_CPL_NOT_ZERO() do {} while (0)
|
---|
198 |
|
---|
199 | #define IEM_MC_LOCAL(a_Type, a_Name) \
|
---|
200 | a_Type a_Name; NOREF(a_Name)
|
---|
201 | #define IEM_MC_LOCAL_CONST(a_Type, a_Name, a_Value) \
|
---|
202 | a_Type const a_Name = (a_Value); \
|
---|
203 | NOREF(a_Name)
|
---|
204 | #define IEM_MC_REF_LOCAL(a_pRefArg, a_Local) \
|
---|
205 | (a_pRefArg) = &(a_Local)
|
---|
206 |
|
---|
207 | #define IEM_MC_ARG(a_Type, a_Name, a_iArg) \
|
---|
208 | RT_CONCAT(iArgCheck_,a_iArg) = 1; NOREF(RT_CONCAT(iArgCheck_,a_iArg)); \
|
---|
209 | int RT_CONCAT3(iArgCheck_,a_iArg,a_Name); NOREF(RT_CONCAT3(iArgCheck_,a_iArg,a_Name)); \
|
---|
210 | AssertCompile((a_iArg) < cArgs); \
|
---|
211 | a_Type a_Name; \
|
---|
212 | NOREF(a_Name)
|
---|
213 | #define IEM_MC_ARG_CONST(a_Type, a_Name, a_Value, a_iArg) \
|
---|
214 | RT_CONCAT(iArgCheck_, a_iArg) = 1; NOREF(RT_CONCAT(iArgCheck_,a_iArg)); \
|
---|
215 | int RT_CONCAT3(iArgCheck_,a_iArg,a_Name); NOREF(RT_CONCAT3(iArgCheck_,a_iArg,a_Name)); \
|
---|
216 | AssertCompile((a_iArg) < cArgs); \
|
---|
217 | a_Type const a_Name = (a_Value); \
|
---|
218 | NOREF(a_Name)
|
---|
219 | #define IEM_MC_ARG_LOCAL_EFLAGS(a_pName, a_Name, a_iArg) \
|
---|
220 | RT_CONCAT(iArgCheck_, a_iArg) = 1; NOREF(RT_CONCAT(iArgCheck_,a_iArg)); \
|
---|
221 | int RT_CONCAT3(iArgCheck_,a_iArg,a_Name); NOREF(RT_CONCAT3(iArgCheck_,a_iArg,a_Name)); \
|
---|
222 | AssertCompile((a_iArg) < cArgs); \
|
---|
223 | uint32_t a_Name; \
|
---|
224 | uint32_t *a_pName = &a_Name; \
|
---|
225 | NOREF(a_pName)
|
---|
226 |
|
---|
227 | #define IEM_MC_COMMIT_EFLAGS(a_EFlags) CHK_TYPE(uint32_t, a_EFlags)
|
---|
228 | #define IEM_MC_ASSIGN(a_VarOrArg, a_CVariableOrConst) (a_VarOrArg) = (0)
|
---|
229 | #define IEM_MC_ASSIGN_TO_SMALLER IEM_MC_ASSIGN
|
---|
230 |
|
---|
231 | #define IEM_MC_FETCH_GREG_U8(a_u8Dst, a_iGReg) do { (a_u8Dst) = 0; CHK_TYPE(uint8_t, a_u8Dst); } while (0)
|
---|
232 | #define IEM_MC_FETCH_GREG_U8_ZX_U16(a_u16Dst, a_iGReg) do { (a_u16Dst) = 0; CHK_TYPE(uint16_t, a_u16Dst); } while (0)
|
---|
233 | #define IEM_MC_FETCH_GREG_U8_ZX_U32(a_u32Dst, a_iGReg) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
234 | #define IEM_MC_FETCH_GREG_U8_ZX_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
235 | #define IEM_MC_FETCH_GREG_U8_SX_U16(a_u16Dst, a_iGReg) do { (a_u16Dst) = 0; CHK_TYPE(uint16_t, a_u16Dst); } while (0)
|
---|
236 | #define IEM_MC_FETCH_GREG_U8_SX_U32(a_u32Dst, a_iGReg) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
237 | #define IEM_MC_FETCH_GREG_U8_SX_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
238 | #define IEM_MC_FETCH_GREG_U16(a_u16Dst, a_iGReg) do { (a_u16Dst) = 0; CHK_TYPE(uint16_t, a_u16Dst); } while (0)
|
---|
239 | #define IEM_MC_FETCH_GREG_U16_ZX_U32(a_u32Dst, a_iGReg) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
240 | #define IEM_MC_FETCH_GREG_U16_ZX_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
241 | #define IEM_MC_FETCH_GREG_U16_SX_U32(a_u32Dst, a_iGReg) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
242 | #define IEM_MC_FETCH_GREG_U16_SX_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
243 | #define IEM_MC_FETCH_GREG_U32(a_u32Dst, a_iGReg) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
244 | #define IEM_MC_FETCH_GREG_U32_ZX_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
245 | #define IEM_MC_FETCH_GREG_U32_SX_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
246 | #define IEM_MC_FETCH_GREG_U64(a_u64Dst, a_iGReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
247 | #define IEM_MC_FETCH_GREG_U64_ZX_U64 IEM_MC_FETCH_GREG_U64
|
---|
248 | #define IEM_MC_FETCH_SREG_U16(a_u16Dst, a_iSReg) do { (a_u16Dst) = 0; CHK_TYPE(uint16_t, a_u16Dst); } while (0)
|
---|
249 | #define IEM_MC_FETCH_SREG_ZX_U32(a_u32Dst, a_iSReg) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
250 | #define IEM_MC_FETCH_SREG_ZX_U64(a_u64Dst, a_iSReg) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
251 | #define IEM_MC_FETCH_CR0_U16(a_u16Dst) do { (a_u16Dst) = 0; CHK_TYPE(uint16_t, a_u16Dst); } while (0)
|
---|
252 | #define IEM_MC_FETCH_CR0_U32(a_u32Dst) do { (a_u32Dst) = 0; CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
253 | #define IEM_MC_FETCH_CR0_U64(a_u64Dst) do { (a_u64Dst) = 0; CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
254 | #define IEM_MC_FETCH_EFLAGS(a_EFlags) do { (a_EFlags) = 0; CHK_TYPE(uint32_t, a_EFlags); } while (0)
|
---|
255 | #define IEM_MC_FETCH_EFLAGS_U8(a_EFlags) do { (a_EFlags) = 0; CHK_TYPE(uint8_t, a_EFlags); } while (0)
|
---|
256 | #define IEM_MC_FETCH_FSW(a_u16Fsw) do { (a_u16Fsw) = 0; CHK_TYPE(uint16_t, a_u16Fsw); } while (0)
|
---|
257 | #define IEM_MC_STORE_GREG_U8(a_iGReg, a_u8Value) do { CHK_TYPE(uint8_t, a_u8Value); } while (0)
|
---|
258 | #define IEM_MC_STORE_GREG_U16(a_iGReg, a_u16Value) do { CHK_TYPE(uint16_t, a_u16Value); } while (0)
|
---|
259 | #define IEM_MC_STORE_GREG_U32(a_iGReg, a_u32Value) do { } while (0)
|
---|
260 | #define IEM_MC_STORE_GREG_U64(a_iGReg, a_u64Value) do { } while (0)
|
---|
261 | #define IEM_MC_STORE_GREG_U8_CONST(a_iGReg, a_u8C) do { AssertCompile((uint8_t )(a_u8C) == (a_u8C) ); } while (0)
|
---|
262 | #define IEM_MC_STORE_GREG_U16_CONST(a_iGReg, a_u16C) do { AssertCompile((uint16_t)(a_u16C) == (a_u16C)); } while (0)
|
---|
263 | #define IEM_MC_STORE_GREG_U32_CONST(a_iGReg, a_u32C) do { AssertCompile((uint32_t)(a_u32C) == (a_u32C)); } while (0)
|
---|
264 | #define IEM_MC_STORE_GREG_U64_CONST(a_iGReg, a_u64C) do { AssertCompile((uint64_t)(a_u64C) == (a_u64C)); } while (0)
|
---|
265 | #define IEM_MC_CLEAR_HIGH_GREG_U64(a_iGReg) do { } while (0)
|
---|
266 | #define IEM_MC_REF_GREG_U8(a_pu8Dst, a_iGReg) do { (a_pu8Dst) = (uint8_t *)((uintptr_t)0); CHK_PTYPE(uint8_t *, a_pu8Dst); } while (0)
|
---|
267 | #define IEM_MC_REF_GREG_U16(a_pu16Dst, a_iGReg) do { (a_pu16Dst) = (uint16_t *)((uintptr_t)0); CHK_PTYPE(uint16_t *, a_pu16Dst); } while (0)
|
---|
268 | #define IEM_MC_REF_GREG_U32(a_pu32Dst, a_iGReg) do { (a_pu32Dst) = (uint32_t *)((uintptr_t)0); CHK_PTYPE(uint32_t *, a_pu32Dst); } while (0)
|
---|
269 | #define IEM_MC_REF_GREG_U64(a_pu64Dst, a_iGReg) do { (a_pu64Dst) = (uint64_t *)((uintptr_t)0); CHK_PTYPE(uint64_t *, a_pu64Dst); } while (0)
|
---|
270 | #define IEM_MC_REF_EFLAGS(a_pEFlags) do { (a_pEFlags) = (uint32_t *)((uintptr_t)0); CHK_PTYPE(uint32_t *, a_pEFlags); } while (0)
|
---|
271 |
|
---|
272 | #define IEM_MC_ADD_GREG_U8(a_iGReg, a_u8Value) do { CHK_CONST(uint8_t, a_u8Value); } while (0)
|
---|
273 | #define IEM_MC_ADD_GREG_U16(a_iGReg, a_u16Value) do { CHK_CONST(uint16_t, a_u16Value); } while (0)
|
---|
274 | #define IEM_MC_ADD_GREG_U32(a_iGReg, a_u32Value) do { CHK_CONST(uint32_t, a_u32Value); } while (0)
|
---|
275 | #define IEM_MC_ADD_GREG_U64(a_iGReg, a_u64Value) do { CHK_CONST(uint64_t, a_u64Value); } while (0)
|
---|
276 | #define IEM_MC_SUB_GREG_U8(a_iGReg, a_u8Value) do { CHK_CONST(uint8_t, a_u8Value); } while (0)
|
---|
277 | #define IEM_MC_SUB_GREG_U16(a_iGReg, a_u16Value) do { CHK_CONST(uint16_t, a_u16Value); } while (0)
|
---|
278 | #define IEM_MC_SUB_GREG_U32(a_iGReg, a_u32Value) do { CHK_CONST(uint32_t, a_u32Value); } while (0)
|
---|
279 | #define IEM_MC_SUB_GREG_U64(a_iGReg, a_u64Value) do { CHK_CONST(uint64_t, a_u64Value); } while (0)
|
---|
280 |
|
---|
281 | #define IEM_MC_AND_GREG_U8(a_iGReg, a_u8Value) do { CHK_CONST(uint8_t, a_u8Value); } while (0)
|
---|
282 | #define IEM_MC_AND_GREG_U16(a_iGReg, a_u16Value) do { CHK_CONST(uint16_t, a_u16Value); } while (0)
|
---|
283 | #define IEM_MC_AND_GREG_U32(a_iGReg, a_u32Value) do { CHK_CONST(uint32_t, a_u32Value); } while (0)
|
---|
284 | #define IEM_MC_AND_GREG_U64(a_iGReg, a_u64Value) do { CHK_CONST(uint64_t, a_u64Value); } while (0)
|
---|
285 | #define IEM_MC_OR_GREG_U8(a_iGReg, a_u8Value) do { CHK_CONST(uint8_t, a_u8Value); } while (0)
|
---|
286 | #define IEM_MC_OR_GREG_U16(a_iGReg, a_u16Value) do { CHK_CONST(uint16_t, a_u16Value); } while (0)
|
---|
287 | #define IEM_MC_OR_GREG_U32(a_iGReg, a_u32Value) do { CHK_CONST(uint32_t, a_u32Value); } while (0)
|
---|
288 | #define IEM_MC_OR_GREG_U64(a_iGReg, a_u64Value) do { CHK_CONST(uint64_t, a_u64Value); } while (0)
|
---|
289 |
|
---|
290 | #ifdef _MSC_VER
|
---|
291 | #define IEM_MC_ADD_GREG_U8_TO_LOCAL(a_u16Value, a_iGReg) do { (a_u8Value) += 1; /*CHK_CONST(uint8_t, a_u8Value); */ } while (0)
|
---|
292 | #define IEM_MC_ADD_GREG_U16_TO_LOCAL(a_u16Value, a_iGReg) do { (a_u16Value) += 1; /*CHK_CONST(uint16_t, a_u16Value);*/ } while (0)
|
---|
293 | #define IEM_MC_ADD_GREG_U32_TO_LOCAL(a_u32Value, a_iGReg) do { (a_u32Value) += 1; /*CHK_CONST(uint32_t, a_u32Value);*/ } while (0)
|
---|
294 | #define IEM_MC_ADD_GREG_U64_TO_LOCAL(a_u64Value, a_iGReg) do { (a_u64Value) += 1; /*CHK_CONST(uint64_t, a_u64Value);*/ } while (0)
|
---|
295 | #else
|
---|
296 | #define IEM_MC_ADD_GREG_U8_TO_LOCAL(a_u16Value, a_iGReg) do { (a_u8Value) += 1; CHK_CONST(uint8_t, a_u8Value); } while (0)
|
---|
297 | #define IEM_MC_ADD_GREG_U16_TO_LOCAL(a_u16Value, a_iGReg) do { (a_u16Value) += 1; CHK_CONST(uint16_t, a_u16Value); } while (0)
|
---|
298 | #define IEM_MC_ADD_GREG_U32_TO_LOCAL(a_u32Value, a_iGReg) do { (a_u32Value) += 1; CHK_CONST(uint32_t, a_u32Value); } while (0)
|
---|
299 | #define IEM_MC_ADD_GREG_U64_TO_LOCAL(a_u64Value, a_iGReg) do { (a_u64Value) += 1; CHK_CONST(uint64_t, a_u64Value); } while (0)
|
---|
300 | #endif
|
---|
301 | #define IEM_MC_ADD_LOCAL_S16_TO_EFF_ADDR(a_EffAddr, a_i16) do { (a_EffAddr) += (a_i16); CHK_GCPTR(a_EffAddr); } while (0)
|
---|
302 | #define IEM_MC_ADD_LOCAL_S32_TO_EFF_ADDR(a_EffAddr, a_i32) do { (a_EffAddr) += (a_i32); CHK_GCPTR(a_EffAddr); } while (0)
|
---|
303 | #define IEM_MC_ADD_LOCAL_S64_TO_EFF_ADDR(a_EffAddr, a_i64) do { (a_EffAddr) += (a_i64); CHK_GCPTR(a_EffAddr); } while (0)
|
---|
304 | #define IEM_MC_AND_LOCAL_U8(a_u8Local, a_u8Mask) do { (a_u8Local) &= (a_u8Mask); CHK_TYPE(uint8_t, a_u8Local); CHK_CONST(uint8_t, a_u8Mask); } while (0)
|
---|
305 | #define IEM_MC_AND_LOCAL_U16(a_u16Local, a_u16Mask) do { (a_u16Local) &= (a_u16Mask); CHK_TYPE(uint16_t, a_u16Local); CHK_CONST(uint16_t, a_u16Mask); } while (0)
|
---|
306 | #define IEM_MC_AND_LOCAL_U32(a_u32Local, a_u32Mask) do { (a_u32Local) &= (a_u32Mask); CHK_TYPE(uint32_t, a_u32Local); CHK_CONST(uint32_t, a_u32Mask); } while (0)
|
---|
307 | #define IEM_MC_AND_LOCAL_U64(a_u64Local, a_u64Mask) do { (a_u64Local) &= (a_u64Mask); CHK_TYPE(uint64_t, a_u64Local); CHK_CONST(uint64_t, a_u64Mask); } while (0)
|
---|
308 | #define IEM_MC_AND_ARG_U16(a_u16Arg, a_u16Mask) do { (a_u16Arg) &= (a_u16Mask); CHK_TYPE(uint16_t, a_u16Arg); CHK_CONST(uint16_t, a_u16Mask); } while (0)
|
---|
309 | #define IEM_MC_AND_ARG_U32(a_u32Arg, a_u32Mask) do { (a_u32Arg) &= (a_u32Mask); CHK_TYPE(uint32_t, a_u32Arg); CHK_CONST(uint32_t, a_u32Mask); } while (0)
|
---|
310 | #define IEM_MC_AND_ARG_U64(a_u64Arg, a_u64Mask) do { (a_u64Arg) &= (a_u64Mask); CHK_TYPE(uint64_t, a_u64Arg); CHK_CONST(uint64_t, a_u64Mask); } while (0)
|
---|
311 | #define IEM_MC_OR_LOCAL_U8(a_u8Local, a_u8Mask) do { (a_u8Local) |= (a_u8Mask); CHK_TYPE(uint8_t, a_u8Local); CHK_CONST(uint8_t, a_u8Mask); } while (0)
|
---|
312 | #define IEM_MC_OR_LOCAL_U32(a_u32Local, a_u32Mask) do { (a_u32Local) |= (a_u32Mask); CHK_TYPE(uint32_t, a_u32Local); CHK_CONST(uint32_t, a_u32Mask); } while (0)
|
---|
313 | #define IEM_MC_SAR_LOCAL_S16(a_i16Local, a_cShift) do { (a_i16Local) >>= (a_cShift); CHK_TYPE(int16_t, a_i16Local); CHK_CONST(uint8_t, a_cShift); } while (0)
|
---|
314 | #define IEM_MC_SAR_LOCAL_S32(a_i32Local, a_cShift) do { (a_i32Local) >>= (a_cShift); CHK_TYPE(int32_t, a_i32Local); CHK_CONST(uint8_t, a_cShift); } while (0)
|
---|
315 | #define IEM_MC_SAR_LOCAL_S64(a_i64Local, a_cShift) do { (a_i64Local) >>= (a_cShift); CHK_TYPE(int64_t, a_i64Local); CHK_CONST(uint8_t, a_cShift); } while (0)
|
---|
316 | #define IEM_MC_SHL_LOCAL_S16(a_i16Local, a_cShift) do { (a_i16Local) <<= (a_cShift); CHK_TYPE(int16_t, a_i16Local); CHK_CONST(uint8_t, a_cShift); } while (0)
|
---|
317 | #define IEM_MC_SHL_LOCAL_S32(a_i32Local, a_cShift) do { (a_i32Local) <<= (a_cShift); CHK_TYPE(int32_t, a_i32Local); CHK_CONST(uint8_t, a_cShift); } while (0)
|
---|
318 | #define IEM_MC_SHL_LOCAL_S64(a_i64Local, a_cShift) do { (a_i64Local) <<= (a_cShift); CHK_TYPE(int64_t, a_i64Local); CHK_CONST(uint8_t, a_cShift); } while (0)
|
---|
319 | #define IEM_MC_AND_2LOCS_U32(a_u32Local, a_u32Mask) do { (a_u32Local) &= (a_u32Mask); CHK_TYPE(uint32_t, a_u32Local); } while (0)
|
---|
320 | #define IEM_MC_OR_2LOCS_U32(a_u32Local, a_u32Mask) do { (a_u32Local) |= (a_u32Mask); CHK_TYPE(uint32_t, a_u32Local); } while (0)
|
---|
321 | #define IEM_MC_SET_EFL_BIT(a_fBit) do { CHK_SINGLE_BIT(uint32_t, a_fBit); } while (0)
|
---|
322 | #define IEM_MC_CLEAR_EFL_BIT(a_fBit) do { CHK_SINGLE_BIT(uint32_t, a_fBit); } while (0)
|
---|
323 | #define IEM_MC_FLIP_EFL_BIT(a_fBit) do { CHK_SINGLE_BIT(uint32_t, a_fBit); } while (0)
|
---|
324 |
|
---|
325 | #define IEM_MC_FETCH_MEM_U8(a_u8Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
326 | #define IEM_MC_FETCH_MEM16_U8(a_u8Dst, a_iSeg, a_GCPtrMem16) do { CHK_TYPE(uint16_t, a_GCPtrMem16); } while (0)
|
---|
327 | #define IEM_MC_FETCH_MEM32_U8(a_u8Dst, a_iSeg, a_GCPtrMem32) do { CHK_TYPE(uint32_t, a_GCPtrMem32); } while (0)
|
---|
328 | #define IEM_MC_FETCH_MEM_U16(a_u16Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
329 | #define IEM_MC_FETCH_MEM_U32(a_u32Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
330 | #define IEM_MC_FETCH_MEM_S32_SX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
331 | #define IEM_MC_FETCH_MEM_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
332 |
|
---|
333 | #define IEM_MC_FETCH_MEM_U8_DISP(a_u8Dst, a_iSeg, a_GCPtrMem, a_offDisp) \
|
---|
334 | do { CHK_GCPTR(a_GCPtrMem); CHK_CONST(uint8_t, a_offDisp); CHK_TYPE(uint8_t, a_u8Dst); } while (0)
|
---|
335 | #define IEM_MC_FETCH_MEM_U16_DISP(a_u16Dst, a_iSeg, a_GCPtrMem, a_offDisp) \
|
---|
336 | do { CHK_GCPTR(a_GCPtrMem); CHK_CONST(uint8_t, a_offDisp); CHK_TYPE(uint16_t, a_u16Dst); } while (0)
|
---|
337 | #define IEM_MC_FETCH_MEM_U32_DISP(a_u32Dst, a_iSeg, a_GCPtrMem, a_offDisp) \
|
---|
338 | do { CHK_GCPTR(a_GCPtrMem); CHK_CONST(uint8_t, a_offDisp); CHK_TYPE(uint32_t, a_u32Dst); } while (0)
|
---|
339 | #define IEM_MC_FETCH_MEM_U64_DISP(a_u64Dst, a_iSeg, a_GCPtrMem, a_offDisp) \
|
---|
340 | do { CHK_GCPTR(a_GCPtrMem); CHK_CONST(uint8_t, a_offDisp); CHK_TYPE(uint64_t, a_u64Dst); } while (0)
|
---|
341 |
|
---|
342 | #define IEM_MC_FETCH_MEM_U8_ZX_U16(a_u16Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
343 | #define IEM_MC_FETCH_MEM_U8_ZX_U32(a_u32Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
344 | #define IEM_MC_FETCH_MEM_U8_ZX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
345 | #define IEM_MC_FETCH_MEM_U16_ZX_U32(a_u32Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
346 | #define IEM_MC_FETCH_MEM_U16_ZX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
347 | #define IEM_MC_FETCH_MEM_U32_ZX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
348 | #define IEM_MC_FETCH_MEM_U8_SX_U16(a_u16Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
349 | #define IEM_MC_FETCH_MEM_U8_SX_U32(a_u32Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
350 | #define IEM_MC_FETCH_MEM_U8_SX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
351 | #define IEM_MC_FETCH_MEM_U16_SX_U32(a_u32Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
352 | #define IEM_MC_FETCH_MEM_U16_SX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
353 | #define IEM_MC_FETCH_MEM_U32_SX_U64(a_u64Dst, a_iSeg, a_GCPtrMem) do { CHK_GCPTR(a_GCPtrMem); } while (0)
|
---|
354 | #define IEM_MC_STORE_MEM_U8(a_iSeg, a_GCPtrMem, a_u8Value) do { CHK_GCPTR(a_GCPtrMem); CHK_TYPE(uint8_t, a_u8Value); CHK_SEG_IDX(a_iSeg); } while (0)
|
---|
355 | #define IEM_MC_STORE_MEM_U16(a_iSeg, a_GCPtrMem, a_u16Value) do { CHK_GCPTR(a_GCPtrMem); CHK_TYPE(uint16_t, a_u16Value); } while (0)
|
---|
356 | #define IEM_MC_STORE_MEM_U32(a_iSeg, a_GCPtrMem, a_u32Value) do { CHK_GCPTR(a_GCPtrMem); CHK_TYPE(uint32_t, a_u32Value); } while (0)
|
---|
357 | #define IEM_MC_STORE_MEM_U64(a_iSeg, a_GCPtrMem, a_u64Value) do { CHK_GCPTR(a_GCPtrMem); CHK_TYPE(uint64_t, a_u64Value); } while (0)
|
---|
358 | #define IEM_MC_STORE_MEM_U8_CONST(a_iSeg, a_GCPtrMem, a_u8C) do { CHK_GCPTR(a_GCPtrMem); CHK_CONST(uint8_t, a_u8C); } while (0)
|
---|
359 |
|
---|
360 | #define IEM_MC_PUSH_U16(a_u16Value) do {} while (0)
|
---|
361 | #define IEM_MC_PUSH_U32(a_u32Value) do {} while (0)
|
---|
362 | #define IEM_MC_PUSH_U64(a_u64Value) do {} while (0)
|
---|
363 | #define IEM_MC_POP_U16(a_pu16Value) do {} while (0)
|
---|
364 | #define IEM_MC_POP_U32(a_pu32Value) do {} while (0)
|
---|
365 | #define IEM_MC_POP_U64(a_pu64Value) do {} while (0)
|
---|
366 | #define IEM_MC_MEM_MAP(a_pMem, a_fAccess, a_iSeg, a_GCPtrMem, a_iArg) do {} while (0)
|
---|
367 | #define IEM_MC_MEM_MAP_EX(a_pvMem, a_fAccess, a_cbMem, a_iSeg, a_GCPtrMem, a_iArg) do {} while (0)
|
---|
368 | #define IEM_MC_MEM_COMMIT_AND_UNMAP(a_pvMem, a_fAccess) do {} while (0)
|
---|
369 | #define IEM_MC_CALC_RM_EFF_ADDR(a_GCPtrEff, bRm) do { (a_GCPtrEff) = 0; CHK_GCPTR(a_GCPtrEff); } while (0)
|
---|
370 | #define IEM_MC_CALL_VOID_AIMPL_2(a_pfn, a0, a1) do {} while (0)
|
---|
371 | #define IEM_MC_CALL_VOID_AIMPL_3(a_pfn, a0, a1, a2) do {} while (0)
|
---|
372 | #define IEM_MC_CALL_VOID_AIMPL_4(a_pfn, a0, a1, a2, a3) do {} while (0)
|
---|
373 | #define IEM_MC_CALL_AIMPL_4(a_rc, a_pfn, a0, a1, a2, a3) do { (a_rc) = VINF_SUCCESS; } while (0)
|
---|
374 | #define IEM_MC_CALL_CIMPL_0(a_pfnCImpl) return VINF_SUCCESS
|
---|
375 | #define IEM_MC_CALL_CIMPL_1(a_pfnCImpl, a0) return VINF_SUCCESS
|
---|
376 | #define IEM_MC_CALL_CIMPL_2(a_pfnCImpl, a0, a1) return VINF_SUCCESS
|
---|
377 | #define IEM_MC_CALL_CIMPL_3(a_pfnCImpl, a0, a1, a2) return VINF_SUCCESS
|
---|
378 | #define IEM_MC_CALL_CIMPL_5(a_pfnCImpl, a0, a1, a2, a3, a4) return VINF_SUCCESS
|
---|
379 | #define IEM_MC_DEFER_TO_CIMPL_0(a_pfnCImpl) (VINF_SUCCESS)
|
---|
380 | #define IEM_MC_DEFER_TO_CIMPL_1(a_pfnCImpl, a0) (VINF_SUCCESS)
|
---|
381 | #define IEM_MC_DEFER_TO_CIMPL_2(a_pfnCImpl, a0, a1) (VINF_SUCCESS)
|
---|
382 | #define IEM_MC_DEFER_TO_CIMPL_3(a_pfnCImpl, a0, a1, a2) (VINF_SUCCESS)
|
---|
383 |
|
---|
384 | #define IEM_MC_IF_EFL_BIT_SET(a_fBit) if (g_fRandom) {
|
---|
385 | #define IEM_MC_IF_EFL_BIT_NOT_SET(a_fBit) if (g_fRandom) {
|
---|
386 | #define IEM_MC_IF_EFL_ANY_BITS_SET(a_fBits) if (g_fRandom) {
|
---|
387 | #define IEM_MC_IF_EFL_NO_BITS_SET(a_fBits) if (g_fRandom) {
|
---|
388 | #define IEM_MC_IF_EFL_BITS_NE(a_fBit1, a_fBit2) if (g_fRandom) {
|
---|
389 | #define IEM_MC_IF_EFL_BITS_EQ(a_fBit1, a_fBit2) if (g_fRandom) {
|
---|
390 | #define IEM_MC_IF_EFL_BIT_SET_OR_BITS_NE(a_fBit, a_fBit1, a_fBit2) if (g_fRandom) {
|
---|
391 | #define IEM_MC_IF_EFL_BIT_NOT_SET_AND_BITS_EQ(a_fBit, a_fBit1, a_fBit2) if (g_fRandom) {
|
---|
392 | #define IEM_MC_IF_CX_IS_NZ() if (g_fRandom) {
|
---|
393 | #define IEM_MC_IF_ECX_IS_NZ() if (g_fRandom) {
|
---|
394 | #define IEM_MC_IF_RCX_IS_NZ() if (g_fRandom) {
|
---|
395 | #define IEM_MC_IF_CX_IS_NZ_AND_EFL_BIT_SET(a_fBit) if (g_fRandom) {
|
---|
396 | #define IEM_MC_IF_ECX_IS_NZ_AND_EFL_BIT_SET(a_fBit) if (g_fRandom) {
|
---|
397 | #define IEM_MC_IF_RCX_IS_NZ_AND_EFL_BIT_SET(a_fBit) if (g_fRandom) {
|
---|
398 | #define IEM_MC_IF_CX_IS_NZ_AND_EFL_BIT_NOT_SET(a_fBit) if (g_fRandom) {
|
---|
399 | #define IEM_MC_IF_ECX_IS_NZ_AND_EFL_BIT_NOT_SET(a_fBit) if (g_fRandom) {
|
---|
400 | #define IEM_MC_IF_RCX_IS_NZ_AND_EFL_BIT_NOT_SET(a_fBit) if (g_fRandom) {
|
---|
401 | #define IEM_MC_IF_LOCAL_IS_Z(a_Local) if ((a_Local) == 0) {
|
---|
402 | #define IEM_MC_IF_GREG_BIT_SET(a_iGReg, a_iBitNo) if (g_fRandom) {
|
---|
403 | #define IEM_MC_ELSE() } else {
|
---|
404 | #define IEM_MC_ENDIF() } do {} while (0)
|
---|
405 |
|
---|
406 | /** @} */
|
---|
407 |
|
---|
408 | #include "../VMMAll/IEMAllInstructions.cpp.h"
|
---|
409 |
|
---|
410 |
|
---|
411 |
|
---|
412 | /**
|
---|
413 | * Formalities...
|
---|
414 | */
|
---|
415 | int main()
|
---|
416 | {
|
---|
417 | RTTEST hTest;
|
---|
418 | RTEXITCODE rcExit = RTTestInitAndCreate("tstIEMCheckMc", &hTest);
|
---|
419 | if (rcExit == RTEXITCODE_SUCCESS)
|
---|
420 | {
|
---|
421 | RTTestBanner(hTest);
|
---|
422 | RTTestPrintf(hTest, RTTESTLVL_ALWAYS, "(this is only a compile test.)");
|
---|
423 | rcExit = RTTestSummaryAndDestroy(hTest);
|
---|
424 | }
|
---|
425 | return rcExit;
|
---|
426 | }
|
---|