1 | /* $Id: EM.cpp 56064 2015-05-25 16:09:01Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * EM - Execution Monitor / Manager.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2015 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 | /** @page pg_em EM - The Execution Monitor / Manager
|
---|
19 | *
|
---|
20 | * The Execution Monitor/Manager is responsible for running the VM, scheduling
|
---|
21 | * the right kind of execution (Raw-mode, Hardware Assisted, Recompiled or
|
---|
22 | * Interpreted), and keeping the CPU states in sync. The function
|
---|
23 | * EMR3ExecuteVM() is the 'main-loop' of the VM, while each of the execution
|
---|
24 | * modes has different inner loops (emR3RawExecute, emR3HmExecute, and
|
---|
25 | * emR3RemExecute).
|
---|
26 | *
|
---|
27 | * The interpreted execution is only used to avoid switching between
|
---|
28 | * raw-mode/hm and the recompiler when fielding virtualization traps/faults.
|
---|
29 | * The interpretation is thus implemented as part of EM.
|
---|
30 | *
|
---|
31 | * @see grp_em
|
---|
32 | */
|
---|
33 |
|
---|
34 | /*******************************************************************************
|
---|
35 | * Header Files *
|
---|
36 | *******************************************************************************/
|
---|
37 | #define LOG_GROUP LOG_GROUP_EM
|
---|
38 | #include <VBox/vmm/em.h>
|
---|
39 | #include <VBox/vmm/vmm.h>
|
---|
40 | #include <VBox/vmm/patm.h>
|
---|
41 | #include <VBox/vmm/csam.h>
|
---|
42 | #include <VBox/vmm/selm.h>
|
---|
43 | #include <VBox/vmm/trpm.h>
|
---|
44 | #include <VBox/vmm/iem.h>
|
---|
45 | #include <VBox/vmm/iom.h>
|
---|
46 | #include <VBox/vmm/dbgf.h>
|
---|
47 | #include <VBox/vmm/pgm.h>
|
---|
48 | #ifdef VBOX_WITH_REM
|
---|
49 | # include <VBox/vmm/rem.h>
|
---|
50 | #endif
|
---|
51 | #include <VBox/vmm/tm.h>
|
---|
52 | #include <VBox/vmm/mm.h>
|
---|
53 | #include <VBox/vmm/ssm.h>
|
---|
54 | #include <VBox/vmm/pdmapi.h>
|
---|
55 | #include <VBox/vmm/pdmcritsect.h>
|
---|
56 | #include <VBox/vmm/pdmqueue.h>
|
---|
57 | #include <VBox/vmm/hm.h>
|
---|
58 | #include <VBox/vmm/patm.h>
|
---|
59 | #include "EMInternal.h"
|
---|
60 | #include <VBox/vmm/vm.h>
|
---|
61 | #include <VBox/vmm/uvm.h>
|
---|
62 | #include <VBox/vmm/cpumdis.h>
|
---|
63 | #include <VBox/dis.h>
|
---|
64 | #include <VBox/disopcode.h>
|
---|
65 | #include "VMMTracing.h"
|
---|
66 |
|
---|
67 | #include <iprt/asm.h>
|
---|
68 | #include <iprt/string.h>
|
---|
69 | #include <iprt/stream.h>
|
---|
70 | #include <iprt/thread.h>
|
---|
71 |
|
---|
72 |
|
---|
73 | /*******************************************************************************
|
---|
74 | * Defined Constants And Macros *
|
---|
75 | *******************************************************************************/
|
---|
76 | #if 0 /* Disabled till after 2.1.0 when we've time to test it. */
|
---|
77 | #define EM_NOTIFY_HM
|
---|
78 | #endif
|
---|
79 |
|
---|
80 |
|
---|
81 | /*******************************************************************************
|
---|
82 | * Internal Functions *
|
---|
83 | *******************************************************************************/
|
---|
84 | static DECLCALLBACK(int) emR3Save(PVM pVM, PSSMHANDLE pSSM);
|
---|
85 | static DECLCALLBACK(int) emR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
|
---|
86 | #if defined(LOG_ENABLED) || defined(VBOX_STRICT)
|
---|
87 | static const char *emR3GetStateName(EMSTATE enmState);
|
---|
88 | #endif
|
---|
89 | static VBOXSTRICTRC emR3Debug(PVM pVM, PVMCPU pVCpu, VBOXSTRICTRC rc);
|
---|
90 | static int emR3RemStep(PVM pVM, PVMCPU pVCpu);
|
---|
91 | static int emR3RemExecute(PVM pVM, PVMCPU pVCpu, bool *pfFFDone);
|
---|
92 | int emR3HighPriorityPostForcedActions(PVM pVM, PVMCPU pVCpu, int rc);
|
---|
93 |
|
---|
94 |
|
---|
95 | /**
|
---|
96 | * Initializes the EM.
|
---|
97 | *
|
---|
98 | * @returns VBox status code.
|
---|
99 | * @param pVM Pointer to the VM.
|
---|
100 | */
|
---|
101 | VMMR3_INT_DECL(int) EMR3Init(PVM pVM)
|
---|
102 | {
|
---|
103 | LogFlow(("EMR3Init\n"));
|
---|
104 | /*
|
---|
105 | * Assert alignment and sizes.
|
---|
106 | */
|
---|
107 | AssertCompileMemberAlignment(VM, em.s, 32);
|
---|
108 | AssertCompile(sizeof(pVM->em.s) <= sizeof(pVM->em.padding));
|
---|
109 | AssertCompile(sizeof(pVM->aCpus[0].em.s.u.FatalLongJump) <= sizeof(pVM->aCpus[0].em.s.u.achPaddingFatalLongJump));
|
---|
110 |
|
---|
111 | /*
|
---|
112 | * Init the structure.
|
---|
113 | */
|
---|
114 | pVM->em.s.offVM = RT_OFFSETOF(VM, em.s);
|
---|
115 | PCFGMNODE pCfgRoot = CFGMR3GetRoot(pVM);
|
---|
116 | PCFGMNODE pCfgEM = CFGMR3GetChild(pCfgRoot, "EM");
|
---|
117 |
|
---|
118 | bool fEnabled;
|
---|
119 | int rc = CFGMR3QueryBoolDef(pCfgRoot, "RawR3Enabled", &fEnabled, true);
|
---|
120 | AssertLogRelRCReturn(rc, rc);
|
---|
121 | pVM->fRecompileUser = !fEnabled;
|
---|
122 |
|
---|
123 | rc = CFGMR3QueryBoolDef(pCfgRoot, "RawR0Enabled", &fEnabled, true);
|
---|
124 | AssertLogRelRCReturn(rc, rc);
|
---|
125 | pVM->fRecompileSupervisor = !fEnabled;
|
---|
126 |
|
---|
127 | #ifdef VBOX_WITH_RAW_RING1
|
---|
128 | rc = CFGMR3QueryBoolDef(pCfgRoot, "RawR1Enabled", &pVM->fRawRing1Enabled, false);
|
---|
129 | AssertLogRelRCReturn(rc, rc);
|
---|
130 | #else
|
---|
131 | pVM->fRawRing1Enabled = false; /* Disabled by default. */
|
---|
132 | #endif
|
---|
133 |
|
---|
134 | rc = CFGMR3QueryBoolDef(pCfgEM, "IemExecutesAll", &pVM->em.s.fIemExecutesAll, false);
|
---|
135 | AssertLogRelRCReturn(rc, rc);
|
---|
136 |
|
---|
137 | rc = CFGMR3QueryBoolDef(pCfgEM, "TripleFaultReset", &fEnabled, false);
|
---|
138 | AssertLogRelRCReturn(rc, rc);
|
---|
139 | pVM->em.s.fGuruOnTripleFault = !fEnabled;
|
---|
140 | if (!pVM->em.s.fGuruOnTripleFault && pVM->cCpus > 1)
|
---|
141 | {
|
---|
142 | LogRel(("EM: Overriding /EM/TripleFaultReset, must be false on SMP.\n"));
|
---|
143 | pVM->em.s.fGuruOnTripleFault = true;
|
---|
144 | }
|
---|
145 |
|
---|
146 | Log(("EMR3Init: fRecompileUser=%RTbool fRecompileSupervisor=%RTbool fRawRing1Enabled=%RTbool fIemExecutesAll=%RTbool fGuruOnTripleFault=%RTbool\n",
|
---|
147 | pVM->fRecompileUser, pVM->fRecompileSupervisor, pVM->fRawRing1Enabled, pVM->em.s.fIemExecutesAll, pVM->em.s.fGuruOnTripleFault));
|
---|
148 |
|
---|
149 | #ifdef VBOX_WITH_REM
|
---|
150 | /*
|
---|
151 | * Initialize the REM critical section.
|
---|
152 | */
|
---|
153 | AssertCompileMemberAlignment(EM, CritSectREM, sizeof(uintptr_t));
|
---|
154 | rc = PDMR3CritSectInit(pVM, &pVM->em.s.CritSectREM, RT_SRC_POS, "EM-REM");
|
---|
155 | AssertRCReturn(rc, rc);
|
---|
156 | #endif
|
---|
157 |
|
---|
158 | /*
|
---|
159 | * Saved state.
|
---|
160 | */
|
---|
161 | rc = SSMR3RegisterInternal(pVM, "em", 0, EM_SAVED_STATE_VERSION, 16,
|
---|
162 | NULL, NULL, NULL,
|
---|
163 | NULL, emR3Save, NULL,
|
---|
164 | NULL, emR3Load, NULL);
|
---|
165 | if (RT_FAILURE(rc))
|
---|
166 | return rc;
|
---|
167 |
|
---|
168 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
169 | {
|
---|
170 | PVMCPU pVCpu = &pVM->aCpus[i];
|
---|
171 |
|
---|
172 | pVCpu->em.s.enmState = (i == 0) ? EMSTATE_NONE : EMSTATE_WAIT_SIPI;
|
---|
173 | pVCpu->em.s.enmPrevState = EMSTATE_NONE;
|
---|
174 | pVCpu->em.s.fForceRAW = false;
|
---|
175 |
|
---|
176 | pVCpu->em.s.pCtx = CPUMQueryGuestCtxPtr(pVCpu);
|
---|
177 | #ifdef VBOX_WITH_RAW_MODE
|
---|
178 | if (!HMIsEnabled(pVM))
|
---|
179 | {
|
---|
180 | pVCpu->em.s.pPatmGCState = PATMR3QueryGCStateHC(pVM);
|
---|
181 | AssertMsg(pVCpu->em.s.pPatmGCState, ("PATMR3QueryGCStateHC failed!\n"));
|
---|
182 | }
|
---|
183 | #endif
|
---|
184 |
|
---|
185 | /* Force reset of the time slice. */
|
---|
186 | pVCpu->em.s.u64TimeSliceStart = 0;
|
---|
187 |
|
---|
188 | # define EM_REG_COUNTER(a, b, c) \
|
---|
189 | rc = STAMR3RegisterF(pVM, a, STAMTYPE_COUNTER, STAMVISIBILITY_ALWAYS, STAMUNIT_OCCURENCES, c, b, i); \
|
---|
190 | AssertRC(rc);
|
---|
191 |
|
---|
192 | # define EM_REG_COUNTER_USED(a, b, c) \
|
---|
193 | rc = STAMR3RegisterF(pVM, a, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, c, b, i); \
|
---|
194 | AssertRC(rc);
|
---|
195 |
|
---|
196 | # define EM_REG_PROFILE(a, b, c) \
|
---|
197 | rc = STAMR3RegisterF(pVM, a, STAMTYPE_PROFILE, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, c, b, i); \
|
---|
198 | AssertRC(rc);
|
---|
199 |
|
---|
200 | # define EM_REG_PROFILE_ADV(a, b, c) \
|
---|
201 | rc = STAMR3RegisterF(pVM, a, STAMTYPE_PROFILE_ADV, STAMVISIBILITY_ALWAYS, STAMUNIT_TICKS_PER_CALL, c, b, i); \
|
---|
202 | AssertRC(rc);
|
---|
203 |
|
---|
204 | /*
|
---|
205 | * Statistics.
|
---|
206 | */
|
---|
207 | #ifdef VBOX_WITH_STATISTICS
|
---|
208 | PEMSTATS pStats;
|
---|
209 | rc = MMHyperAlloc(pVM, sizeof(*pStats), 0, MM_TAG_EM, (void **)&pStats);
|
---|
210 | if (RT_FAILURE(rc))
|
---|
211 | return rc;
|
---|
212 |
|
---|
213 | pVCpu->em.s.pStatsR3 = pStats;
|
---|
214 | pVCpu->em.s.pStatsR0 = MMHyperR3ToR0(pVM, pStats);
|
---|
215 | pVCpu->em.s.pStatsRC = MMHyperR3ToRC(pVM, pStats);
|
---|
216 |
|
---|
217 | EM_REG_PROFILE(&pStats->StatRZEmulate, "/EM/CPU%d/RZ/Interpret", "Profiling of EMInterpretInstruction.");
|
---|
218 | EM_REG_PROFILE(&pStats->StatR3Emulate, "/EM/CPU%d/R3/Interpret", "Profiling of EMInterpretInstruction.");
|
---|
219 |
|
---|
220 | EM_REG_PROFILE(&pStats->StatRZInterpretSucceeded, "/EM/CPU%d/RZ/Interpret/Success", "The number of times an instruction was successfully interpreted.");
|
---|
221 | EM_REG_PROFILE(&pStats->StatR3InterpretSucceeded, "/EM/CPU%d/R3/Interpret/Success", "The number of times an instruction was successfully interpreted.");
|
---|
222 |
|
---|
223 | EM_REG_COUNTER_USED(&pStats->StatRZAnd, "/EM/CPU%d/RZ/Interpret/Success/And", "The number of times AND was successfully interpreted.");
|
---|
224 | EM_REG_COUNTER_USED(&pStats->StatR3And, "/EM/CPU%d/R3/Interpret/Success/And", "The number of times AND was successfully interpreted.");
|
---|
225 | EM_REG_COUNTER_USED(&pStats->StatRZAdd, "/EM/CPU%d/RZ/Interpret/Success/Add", "The number of times ADD was successfully interpreted.");
|
---|
226 | EM_REG_COUNTER_USED(&pStats->StatR3Add, "/EM/CPU%d/R3/Interpret/Success/Add", "The number of times ADD was successfully interpreted.");
|
---|
227 | EM_REG_COUNTER_USED(&pStats->StatRZAdc, "/EM/CPU%d/RZ/Interpret/Success/Adc", "The number of times ADC was successfully interpreted.");
|
---|
228 | EM_REG_COUNTER_USED(&pStats->StatR3Adc, "/EM/CPU%d/R3/Interpret/Success/Adc", "The number of times ADC was successfully interpreted.");
|
---|
229 | EM_REG_COUNTER_USED(&pStats->StatRZSub, "/EM/CPU%d/RZ/Interpret/Success/Sub", "The number of times SUB was successfully interpreted.");
|
---|
230 | EM_REG_COUNTER_USED(&pStats->StatR3Sub, "/EM/CPU%d/R3/Interpret/Success/Sub", "The number of times SUB was successfully interpreted.");
|
---|
231 | EM_REG_COUNTER_USED(&pStats->StatRZCpuId, "/EM/CPU%d/RZ/Interpret/Success/CpuId", "The number of times CPUID was successfully interpreted.");
|
---|
232 | EM_REG_COUNTER_USED(&pStats->StatR3CpuId, "/EM/CPU%d/R3/Interpret/Success/CpuId", "The number of times CPUID was successfully interpreted.");
|
---|
233 | EM_REG_COUNTER_USED(&pStats->StatRZDec, "/EM/CPU%d/RZ/Interpret/Success/Dec", "The number of times DEC was successfully interpreted.");
|
---|
234 | EM_REG_COUNTER_USED(&pStats->StatR3Dec, "/EM/CPU%d/R3/Interpret/Success/Dec", "The number of times DEC was successfully interpreted.");
|
---|
235 | EM_REG_COUNTER_USED(&pStats->StatRZHlt, "/EM/CPU%d/RZ/Interpret/Success/Hlt", "The number of times HLT was successfully interpreted.");
|
---|
236 | EM_REG_COUNTER_USED(&pStats->StatR3Hlt, "/EM/CPU%d/R3/Interpret/Success/Hlt", "The number of times HLT was successfully interpreted.");
|
---|
237 | EM_REG_COUNTER_USED(&pStats->StatRZInc, "/EM/CPU%d/RZ/Interpret/Success/Inc", "The number of times INC was successfully interpreted.");
|
---|
238 | EM_REG_COUNTER_USED(&pStats->StatR3Inc, "/EM/CPU%d/R3/Interpret/Success/Inc", "The number of times INC was successfully interpreted.");
|
---|
239 | EM_REG_COUNTER_USED(&pStats->StatRZInvlPg, "/EM/CPU%d/RZ/Interpret/Success/Invlpg", "The number of times INVLPG was successfully interpreted.");
|
---|
240 | EM_REG_COUNTER_USED(&pStats->StatR3InvlPg, "/EM/CPU%d/R3/Interpret/Success/Invlpg", "The number of times INVLPG was successfully interpreted.");
|
---|
241 | EM_REG_COUNTER_USED(&pStats->StatRZIret, "/EM/CPU%d/RZ/Interpret/Success/Iret", "The number of times IRET was successfully interpreted.");
|
---|
242 | EM_REG_COUNTER_USED(&pStats->StatR3Iret, "/EM/CPU%d/R3/Interpret/Success/Iret", "The number of times IRET was successfully interpreted.");
|
---|
243 | EM_REG_COUNTER_USED(&pStats->StatRZLLdt, "/EM/CPU%d/RZ/Interpret/Success/LLdt", "The number of times LLDT was successfully interpreted.");
|
---|
244 | EM_REG_COUNTER_USED(&pStats->StatR3LLdt, "/EM/CPU%d/R3/Interpret/Success/LLdt", "The number of times LLDT was successfully interpreted.");
|
---|
245 | EM_REG_COUNTER_USED(&pStats->StatRZLIdt, "/EM/CPU%d/RZ/Interpret/Success/LIdt", "The number of times LIDT was successfully interpreted.");
|
---|
246 | EM_REG_COUNTER_USED(&pStats->StatR3LIdt, "/EM/CPU%d/R3/Interpret/Success/LIdt", "The number of times LIDT was successfully interpreted.");
|
---|
247 | EM_REG_COUNTER_USED(&pStats->StatRZLGdt, "/EM/CPU%d/RZ/Interpret/Success/LGdt", "The number of times LGDT was successfully interpreted.");
|
---|
248 | EM_REG_COUNTER_USED(&pStats->StatR3LGdt, "/EM/CPU%d/R3/Interpret/Success/LGdt", "The number of times LGDT was successfully interpreted.");
|
---|
249 | EM_REG_COUNTER_USED(&pStats->StatRZMov, "/EM/CPU%d/RZ/Interpret/Success/Mov", "The number of times MOV was successfully interpreted.");
|
---|
250 | EM_REG_COUNTER_USED(&pStats->StatR3Mov, "/EM/CPU%d/R3/Interpret/Success/Mov", "The number of times MOV was successfully interpreted.");
|
---|
251 | EM_REG_COUNTER_USED(&pStats->StatRZMovCRx, "/EM/CPU%d/RZ/Interpret/Success/MovCRx", "The number of times MOV CRx was successfully interpreted.");
|
---|
252 | EM_REG_COUNTER_USED(&pStats->StatR3MovCRx, "/EM/CPU%d/R3/Interpret/Success/MovCRx", "The number of times MOV CRx was successfully interpreted.");
|
---|
253 | EM_REG_COUNTER_USED(&pStats->StatRZMovDRx, "/EM/CPU%d/RZ/Interpret/Success/MovDRx", "The number of times MOV DRx was successfully interpreted.");
|
---|
254 | EM_REG_COUNTER_USED(&pStats->StatR3MovDRx, "/EM/CPU%d/R3/Interpret/Success/MovDRx", "The number of times MOV DRx was successfully interpreted.");
|
---|
255 | EM_REG_COUNTER_USED(&pStats->StatRZOr, "/EM/CPU%d/RZ/Interpret/Success/Or", "The number of times OR was successfully interpreted.");
|
---|
256 | EM_REG_COUNTER_USED(&pStats->StatR3Or, "/EM/CPU%d/R3/Interpret/Success/Or", "The number of times OR was successfully interpreted.");
|
---|
257 | EM_REG_COUNTER_USED(&pStats->StatRZPop, "/EM/CPU%d/RZ/Interpret/Success/Pop", "The number of times POP was successfully interpreted.");
|
---|
258 | EM_REG_COUNTER_USED(&pStats->StatR3Pop, "/EM/CPU%d/R3/Interpret/Success/Pop", "The number of times POP was successfully interpreted.");
|
---|
259 | EM_REG_COUNTER_USED(&pStats->StatRZRdtsc, "/EM/CPU%d/RZ/Interpret/Success/Rdtsc", "The number of times RDTSC was successfully interpreted.");
|
---|
260 | EM_REG_COUNTER_USED(&pStats->StatR3Rdtsc, "/EM/CPU%d/R3/Interpret/Success/Rdtsc", "The number of times RDTSC was successfully interpreted.");
|
---|
261 | EM_REG_COUNTER_USED(&pStats->StatRZRdpmc, "/EM/CPU%d/RZ/Interpret/Success/Rdpmc", "The number of times RDPMC was successfully interpreted.");
|
---|
262 | EM_REG_COUNTER_USED(&pStats->StatR3Rdpmc, "/EM/CPU%d/R3/Interpret/Success/Rdpmc", "The number of times RDPMC was successfully interpreted.");
|
---|
263 | EM_REG_COUNTER_USED(&pStats->StatRZSti, "/EM/CPU%d/RZ/Interpret/Success/Sti", "The number of times STI was successfully interpreted.");
|
---|
264 | EM_REG_COUNTER_USED(&pStats->StatR3Sti, "/EM/CPU%d/R3/Interpret/Success/Sti", "The number of times STI was successfully interpreted.");
|
---|
265 | EM_REG_COUNTER_USED(&pStats->StatRZXchg, "/EM/CPU%d/RZ/Interpret/Success/Xchg", "The number of times XCHG was successfully interpreted.");
|
---|
266 | EM_REG_COUNTER_USED(&pStats->StatR3Xchg, "/EM/CPU%d/R3/Interpret/Success/Xchg", "The number of times XCHG was successfully interpreted.");
|
---|
267 | EM_REG_COUNTER_USED(&pStats->StatRZXor, "/EM/CPU%d/RZ/Interpret/Success/Xor", "The number of times XOR was successfully interpreted.");
|
---|
268 | EM_REG_COUNTER_USED(&pStats->StatR3Xor, "/EM/CPU%d/R3/Interpret/Success/Xor", "The number of times XOR was successfully interpreted.");
|
---|
269 | EM_REG_COUNTER_USED(&pStats->StatRZMonitor, "/EM/CPU%d/RZ/Interpret/Success/Monitor", "The number of times MONITOR was successfully interpreted.");
|
---|
270 | EM_REG_COUNTER_USED(&pStats->StatR3Monitor, "/EM/CPU%d/R3/Interpret/Success/Monitor", "The number of times MONITOR was successfully interpreted.");
|
---|
271 | EM_REG_COUNTER_USED(&pStats->StatRZMWait, "/EM/CPU%d/RZ/Interpret/Success/MWait", "The number of times MWAIT was successfully interpreted.");
|
---|
272 | EM_REG_COUNTER_USED(&pStats->StatR3MWait, "/EM/CPU%d/R3/Interpret/Success/MWait", "The number of times MWAIT was successfully interpreted.");
|
---|
273 | EM_REG_COUNTER_USED(&pStats->StatRZBtr, "/EM/CPU%d/RZ/Interpret/Success/Btr", "The number of times BTR was successfully interpreted.");
|
---|
274 | EM_REG_COUNTER_USED(&pStats->StatR3Btr, "/EM/CPU%d/R3/Interpret/Success/Btr", "The number of times BTR was successfully interpreted.");
|
---|
275 | EM_REG_COUNTER_USED(&pStats->StatRZBts, "/EM/CPU%d/RZ/Interpret/Success/Bts", "The number of times BTS was successfully interpreted.");
|
---|
276 | EM_REG_COUNTER_USED(&pStats->StatR3Bts, "/EM/CPU%d/R3/Interpret/Success/Bts", "The number of times BTS was successfully interpreted.");
|
---|
277 | EM_REG_COUNTER_USED(&pStats->StatRZBtc, "/EM/CPU%d/RZ/Interpret/Success/Btc", "The number of times BTC was successfully interpreted.");
|
---|
278 | EM_REG_COUNTER_USED(&pStats->StatR3Btc, "/EM/CPU%d/R3/Interpret/Success/Btc", "The number of times BTC was successfully interpreted.");
|
---|
279 | EM_REG_COUNTER_USED(&pStats->StatRZCmpXchg, "/EM/CPU%d/RZ/Interpret/Success/CmpXchg", "The number of times CMPXCHG was successfully interpreted.");
|
---|
280 | EM_REG_COUNTER_USED(&pStats->StatR3CmpXchg, "/EM/CPU%d/R3/Interpret/Success/CmpXchg", "The number of times CMPXCHG was successfully interpreted.");
|
---|
281 | EM_REG_COUNTER_USED(&pStats->StatRZCmpXchg8b, "/EM/CPU%d/RZ/Interpret/Success/CmpXchg8b", "The number of times CMPXCHG8B was successfully interpreted.");
|
---|
282 | EM_REG_COUNTER_USED(&pStats->StatR3CmpXchg8b, "/EM/CPU%d/R3/Interpret/Success/CmpXchg8b", "The number of times CMPXCHG8B was successfully interpreted.");
|
---|
283 | EM_REG_COUNTER_USED(&pStats->StatRZXAdd, "/EM/CPU%d/RZ/Interpret/Success/XAdd", "The number of times XADD was successfully interpreted.");
|
---|
284 | EM_REG_COUNTER_USED(&pStats->StatR3XAdd, "/EM/CPU%d/R3/Interpret/Success/XAdd", "The number of times XADD was successfully interpreted.");
|
---|
285 | EM_REG_COUNTER_USED(&pStats->StatR3Rdmsr, "/EM/CPU%d/R3/Interpret/Success/Rdmsr", "The number of times RDMSR was successfully interpreted.");
|
---|
286 | EM_REG_COUNTER_USED(&pStats->StatRZRdmsr, "/EM/CPU%d/RZ/Interpret/Success/Rdmsr", "The number of times RDMSR was successfully interpreted.");
|
---|
287 | EM_REG_COUNTER_USED(&pStats->StatR3Wrmsr, "/EM/CPU%d/R3/Interpret/Success/Wrmsr", "The number of times WRMSR was successfully interpreted.");
|
---|
288 | EM_REG_COUNTER_USED(&pStats->StatRZWrmsr, "/EM/CPU%d/RZ/Interpret/Success/Wrmsr", "The number of times WRMSR was successfully interpreted.");
|
---|
289 | EM_REG_COUNTER_USED(&pStats->StatR3StosWD, "/EM/CPU%d/R3/Interpret/Success/Stoswd", "The number of times STOSWD was successfully interpreted.");
|
---|
290 | EM_REG_COUNTER_USED(&pStats->StatRZStosWD, "/EM/CPU%d/RZ/Interpret/Success/Stoswd", "The number of times STOSWD was successfully interpreted.");
|
---|
291 | EM_REG_COUNTER_USED(&pStats->StatRZWbInvd, "/EM/CPU%d/RZ/Interpret/Success/WbInvd", "The number of times WBINVD was successfully interpreted.");
|
---|
292 | EM_REG_COUNTER_USED(&pStats->StatR3WbInvd, "/EM/CPU%d/R3/Interpret/Success/WbInvd", "The number of times WBINVD was successfully interpreted.");
|
---|
293 | EM_REG_COUNTER_USED(&pStats->StatRZLmsw, "/EM/CPU%d/RZ/Interpret/Success/Lmsw", "The number of times LMSW was successfully interpreted.");
|
---|
294 | EM_REG_COUNTER_USED(&pStats->StatR3Lmsw, "/EM/CPU%d/R3/Interpret/Success/Lmsw", "The number of times LMSW was successfully interpreted.");
|
---|
295 | EM_REG_COUNTER_USED(&pStats->StatRZSmsw, "/EM/CPU%d/RZ/Interpret/Success/Smsw", "The number of times SMSW was successfully interpreted.");
|
---|
296 | EM_REG_COUNTER_USED(&pStats->StatR3Smsw, "/EM/CPU%d/R3/Interpret/Success/Smsw", "The number of times SMSW was successfully interpreted.");
|
---|
297 |
|
---|
298 | EM_REG_COUNTER(&pStats->StatRZInterpretFailed, "/EM/CPU%d/RZ/Interpret/Failed", "The number of times an instruction was not interpreted.");
|
---|
299 | EM_REG_COUNTER(&pStats->StatR3InterpretFailed, "/EM/CPU%d/R3/Interpret/Failed", "The number of times an instruction was not interpreted.");
|
---|
300 |
|
---|
301 | EM_REG_COUNTER_USED(&pStats->StatRZFailedAnd, "/EM/CPU%d/RZ/Interpret/Failed/And", "The number of times AND was not interpreted.");
|
---|
302 | EM_REG_COUNTER_USED(&pStats->StatR3FailedAnd, "/EM/CPU%d/R3/Interpret/Failed/And", "The number of times AND was not interpreted.");
|
---|
303 | EM_REG_COUNTER_USED(&pStats->StatRZFailedCpuId, "/EM/CPU%d/RZ/Interpret/Failed/CpuId", "The number of times CPUID was not interpreted.");
|
---|
304 | EM_REG_COUNTER_USED(&pStats->StatR3FailedCpuId, "/EM/CPU%d/R3/Interpret/Failed/CpuId", "The number of times CPUID was not interpreted.");
|
---|
305 | EM_REG_COUNTER_USED(&pStats->StatRZFailedDec, "/EM/CPU%d/RZ/Interpret/Failed/Dec", "The number of times DEC was not interpreted.");
|
---|
306 | EM_REG_COUNTER_USED(&pStats->StatR3FailedDec, "/EM/CPU%d/R3/Interpret/Failed/Dec", "The number of times DEC was not interpreted.");
|
---|
307 | EM_REG_COUNTER_USED(&pStats->StatRZFailedHlt, "/EM/CPU%d/RZ/Interpret/Failed/Hlt", "The number of times HLT was not interpreted.");
|
---|
308 | EM_REG_COUNTER_USED(&pStats->StatR3FailedHlt, "/EM/CPU%d/R3/Interpret/Failed/Hlt", "The number of times HLT was not interpreted.");
|
---|
309 | EM_REG_COUNTER_USED(&pStats->StatRZFailedInc, "/EM/CPU%d/RZ/Interpret/Failed/Inc", "The number of times INC was not interpreted.");
|
---|
310 | EM_REG_COUNTER_USED(&pStats->StatR3FailedInc, "/EM/CPU%d/R3/Interpret/Failed/Inc", "The number of times INC was not interpreted.");
|
---|
311 | EM_REG_COUNTER_USED(&pStats->StatRZFailedInvlPg, "/EM/CPU%d/RZ/Interpret/Failed/InvlPg", "The number of times INVLPG was not interpreted.");
|
---|
312 | EM_REG_COUNTER_USED(&pStats->StatR3FailedInvlPg, "/EM/CPU%d/R3/Interpret/Failed/InvlPg", "The number of times INVLPG was not interpreted.");
|
---|
313 | EM_REG_COUNTER_USED(&pStats->StatRZFailedIret, "/EM/CPU%d/RZ/Interpret/Failed/Iret", "The number of times IRET was not interpreted.");
|
---|
314 | EM_REG_COUNTER_USED(&pStats->StatR3FailedIret, "/EM/CPU%d/R3/Interpret/Failed/Iret", "The number of times IRET was not interpreted.");
|
---|
315 | EM_REG_COUNTER_USED(&pStats->StatRZFailedLLdt, "/EM/CPU%d/RZ/Interpret/Failed/LLdt", "The number of times LLDT was not interpreted.");
|
---|
316 | EM_REG_COUNTER_USED(&pStats->StatR3FailedLLdt, "/EM/CPU%d/R3/Interpret/Failed/LLdt", "The number of times LLDT was not interpreted.");
|
---|
317 | EM_REG_COUNTER_USED(&pStats->StatRZFailedLIdt, "/EM/CPU%d/RZ/Interpret/Failed/LIdt", "The number of times LIDT was not interpreted.");
|
---|
318 | EM_REG_COUNTER_USED(&pStats->StatR3FailedLIdt, "/EM/CPU%d/R3/Interpret/Failed/LIdt", "The number of times LIDT was not interpreted.");
|
---|
319 | EM_REG_COUNTER_USED(&pStats->StatRZFailedLGdt, "/EM/CPU%d/RZ/Interpret/Failed/LGdt", "The number of times LGDT was not interpreted.");
|
---|
320 | EM_REG_COUNTER_USED(&pStats->StatR3FailedLGdt, "/EM/CPU%d/R3/Interpret/Failed/LGdt", "The number of times LGDT was not interpreted.");
|
---|
321 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMov, "/EM/CPU%d/RZ/Interpret/Failed/Mov", "The number of times MOV was not interpreted.");
|
---|
322 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMov, "/EM/CPU%d/R3/Interpret/Failed/Mov", "The number of times MOV was not interpreted.");
|
---|
323 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMovCRx, "/EM/CPU%d/RZ/Interpret/Failed/MovCRx", "The number of times MOV CRx was not interpreted.");
|
---|
324 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMovCRx, "/EM/CPU%d/R3/Interpret/Failed/MovCRx", "The number of times MOV CRx was not interpreted.");
|
---|
325 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMovDRx, "/EM/CPU%d/RZ/Interpret/Failed/MovDRx", "The number of times MOV DRx was not interpreted.");
|
---|
326 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMovDRx, "/EM/CPU%d/R3/Interpret/Failed/MovDRx", "The number of times MOV DRx was not interpreted.");
|
---|
327 | EM_REG_COUNTER_USED(&pStats->StatRZFailedOr, "/EM/CPU%d/RZ/Interpret/Failed/Or", "The number of times OR was not interpreted.");
|
---|
328 | EM_REG_COUNTER_USED(&pStats->StatR3FailedOr, "/EM/CPU%d/R3/Interpret/Failed/Or", "The number of times OR was not interpreted.");
|
---|
329 | EM_REG_COUNTER_USED(&pStats->StatRZFailedPop, "/EM/CPU%d/RZ/Interpret/Failed/Pop", "The number of times POP was not interpreted.");
|
---|
330 | EM_REG_COUNTER_USED(&pStats->StatR3FailedPop, "/EM/CPU%d/R3/Interpret/Failed/Pop", "The number of times POP was not interpreted.");
|
---|
331 | EM_REG_COUNTER_USED(&pStats->StatRZFailedSti, "/EM/CPU%d/RZ/Interpret/Failed/Sti", "The number of times STI was not interpreted.");
|
---|
332 | EM_REG_COUNTER_USED(&pStats->StatR3FailedSti, "/EM/CPU%d/R3/Interpret/Failed/Sti", "The number of times STI was not interpreted.");
|
---|
333 | EM_REG_COUNTER_USED(&pStats->StatRZFailedXchg, "/EM/CPU%d/RZ/Interpret/Failed/Xchg", "The number of times XCHG was not interpreted.");
|
---|
334 | EM_REG_COUNTER_USED(&pStats->StatR3FailedXchg, "/EM/CPU%d/R3/Interpret/Failed/Xchg", "The number of times XCHG was not interpreted.");
|
---|
335 | EM_REG_COUNTER_USED(&pStats->StatRZFailedXor, "/EM/CPU%d/RZ/Interpret/Failed/Xor", "The number of times XOR was not interpreted.");
|
---|
336 | EM_REG_COUNTER_USED(&pStats->StatR3FailedXor, "/EM/CPU%d/R3/Interpret/Failed/Xor", "The number of times XOR was not interpreted.");
|
---|
337 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMonitor, "/EM/CPU%d/RZ/Interpret/Failed/Monitor", "The number of times MONITOR was not interpreted.");
|
---|
338 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMonitor, "/EM/CPU%d/R3/Interpret/Failed/Monitor", "The number of times MONITOR was not interpreted.");
|
---|
339 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMWait, "/EM/CPU%d/RZ/Interpret/Failed/MWait", "The number of times MWAIT was not interpreted.");
|
---|
340 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMWait, "/EM/CPU%d/R3/Interpret/Failed/MWait", "The number of times MWAIT was not interpreted.");
|
---|
341 | EM_REG_COUNTER_USED(&pStats->StatRZFailedRdtsc, "/EM/CPU%d/RZ/Interpret/Failed/Rdtsc", "The number of times RDTSC was not interpreted.");
|
---|
342 | EM_REG_COUNTER_USED(&pStats->StatR3FailedRdtsc, "/EM/CPU%d/R3/Interpret/Failed/Rdtsc", "The number of times RDTSC was not interpreted.");
|
---|
343 | EM_REG_COUNTER_USED(&pStats->StatRZFailedRdpmc, "/EM/CPU%d/RZ/Interpret/Failed/Rdpmc", "The number of times RDPMC was not interpreted.");
|
---|
344 | EM_REG_COUNTER_USED(&pStats->StatR3FailedRdpmc, "/EM/CPU%d/R3/Interpret/Failed/Rdpmc", "The number of times RDPMC was not interpreted.");
|
---|
345 | EM_REG_COUNTER_USED(&pStats->StatRZFailedRdmsr, "/EM/CPU%d/RZ/Interpret/Failed/Rdmsr", "The number of times RDMSR was not interpreted.");
|
---|
346 | EM_REG_COUNTER_USED(&pStats->StatR3FailedRdmsr, "/EM/CPU%d/R3/Interpret/Failed/Rdmsr", "The number of times RDMSR was not interpreted.");
|
---|
347 | EM_REG_COUNTER_USED(&pStats->StatRZFailedWrmsr, "/EM/CPU%d/RZ/Interpret/Failed/Wrmsr", "The number of times WRMSR was not interpreted.");
|
---|
348 | EM_REG_COUNTER_USED(&pStats->StatR3FailedWrmsr, "/EM/CPU%d/R3/Interpret/Failed/Wrmsr", "The number of times WRMSR was not interpreted.");
|
---|
349 | EM_REG_COUNTER_USED(&pStats->StatRZFailedLmsw, "/EM/CPU%d/RZ/Interpret/Failed/Lmsw", "The number of times LMSW was not interpreted.");
|
---|
350 | EM_REG_COUNTER_USED(&pStats->StatR3FailedLmsw, "/EM/CPU%d/R3/Interpret/Failed/Lmsw", "The number of times LMSW was not interpreted.");
|
---|
351 | EM_REG_COUNTER_USED(&pStats->StatRZFailedSmsw, "/EM/CPU%d/RZ/Interpret/Failed/Smsw", "The number of times SMSW was not interpreted.");
|
---|
352 | EM_REG_COUNTER_USED(&pStats->StatR3FailedSmsw, "/EM/CPU%d/R3/Interpret/Failed/Smsw", "The number of times SMSW was not interpreted.");
|
---|
353 |
|
---|
354 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMisc, "/EM/CPU%d/RZ/Interpret/Failed/Misc", "The number of times some misc instruction was encountered.");
|
---|
355 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMisc, "/EM/CPU%d/R3/Interpret/Failed/Misc", "The number of times some misc instruction was encountered.");
|
---|
356 | EM_REG_COUNTER_USED(&pStats->StatRZFailedAdd, "/EM/CPU%d/RZ/Interpret/Failed/Add", "The number of times ADD was not interpreted.");
|
---|
357 | EM_REG_COUNTER_USED(&pStats->StatR3FailedAdd, "/EM/CPU%d/R3/Interpret/Failed/Add", "The number of times ADD was not interpreted.");
|
---|
358 | EM_REG_COUNTER_USED(&pStats->StatRZFailedAdc, "/EM/CPU%d/RZ/Interpret/Failed/Adc", "The number of times ADC was not interpreted.");
|
---|
359 | EM_REG_COUNTER_USED(&pStats->StatR3FailedAdc, "/EM/CPU%d/R3/Interpret/Failed/Adc", "The number of times ADC was not interpreted.");
|
---|
360 | EM_REG_COUNTER_USED(&pStats->StatRZFailedBtr, "/EM/CPU%d/RZ/Interpret/Failed/Btr", "The number of times BTR was not interpreted.");
|
---|
361 | EM_REG_COUNTER_USED(&pStats->StatR3FailedBtr, "/EM/CPU%d/R3/Interpret/Failed/Btr", "The number of times BTR was not interpreted.");
|
---|
362 | EM_REG_COUNTER_USED(&pStats->StatRZFailedBts, "/EM/CPU%d/RZ/Interpret/Failed/Bts", "The number of times BTS was not interpreted.");
|
---|
363 | EM_REG_COUNTER_USED(&pStats->StatR3FailedBts, "/EM/CPU%d/R3/Interpret/Failed/Bts", "The number of times BTS was not interpreted.");
|
---|
364 | EM_REG_COUNTER_USED(&pStats->StatRZFailedBtc, "/EM/CPU%d/RZ/Interpret/Failed/Btc", "The number of times BTC was not interpreted.");
|
---|
365 | EM_REG_COUNTER_USED(&pStats->StatR3FailedBtc, "/EM/CPU%d/R3/Interpret/Failed/Btc", "The number of times BTC was not interpreted.");
|
---|
366 | EM_REG_COUNTER_USED(&pStats->StatRZFailedCli, "/EM/CPU%d/RZ/Interpret/Failed/Cli", "The number of times CLI was not interpreted.");
|
---|
367 | EM_REG_COUNTER_USED(&pStats->StatR3FailedCli, "/EM/CPU%d/R3/Interpret/Failed/Cli", "The number of times CLI was not interpreted.");
|
---|
368 | EM_REG_COUNTER_USED(&pStats->StatRZFailedCmpXchg, "/EM/CPU%d/RZ/Interpret/Failed/CmpXchg", "The number of times CMPXCHG was not interpreted.");
|
---|
369 | EM_REG_COUNTER_USED(&pStats->StatR3FailedCmpXchg, "/EM/CPU%d/R3/Interpret/Failed/CmpXchg", "The number of times CMPXCHG was not interpreted.");
|
---|
370 | EM_REG_COUNTER_USED(&pStats->StatRZFailedCmpXchg8b, "/EM/CPU%d/RZ/Interpret/Failed/CmpXchg8b", "The number of times CMPXCHG8B was not interpreted.");
|
---|
371 | EM_REG_COUNTER_USED(&pStats->StatR3FailedCmpXchg8b, "/EM/CPU%d/R3/Interpret/Failed/CmpXchg8b", "The number of times CMPXCHG8B was not interpreted.");
|
---|
372 | EM_REG_COUNTER_USED(&pStats->StatRZFailedXAdd, "/EM/CPU%d/RZ/Interpret/Failed/XAdd", "The number of times XADD was not interpreted.");
|
---|
373 | EM_REG_COUNTER_USED(&pStats->StatR3FailedXAdd, "/EM/CPU%d/R3/Interpret/Failed/XAdd", "The number of times XADD was not interpreted.");
|
---|
374 | EM_REG_COUNTER_USED(&pStats->StatRZFailedMovNTPS, "/EM/CPU%d/RZ/Interpret/Failed/MovNTPS", "The number of times MOVNTPS was not interpreted.");
|
---|
375 | EM_REG_COUNTER_USED(&pStats->StatR3FailedMovNTPS, "/EM/CPU%d/R3/Interpret/Failed/MovNTPS", "The number of times MOVNTPS was not interpreted.");
|
---|
376 | EM_REG_COUNTER_USED(&pStats->StatRZFailedStosWD, "/EM/CPU%d/RZ/Interpret/Failed/StosWD", "The number of times STOSWD was not interpreted.");
|
---|
377 | EM_REG_COUNTER_USED(&pStats->StatR3FailedStosWD, "/EM/CPU%d/R3/Interpret/Failed/StosWD", "The number of times STOSWD was not interpreted.");
|
---|
378 | EM_REG_COUNTER_USED(&pStats->StatRZFailedSub, "/EM/CPU%d/RZ/Interpret/Failed/Sub", "The number of times SUB was not interpreted.");
|
---|
379 | EM_REG_COUNTER_USED(&pStats->StatR3FailedSub, "/EM/CPU%d/R3/Interpret/Failed/Sub", "The number of times SUB was not interpreted.");
|
---|
380 | EM_REG_COUNTER_USED(&pStats->StatRZFailedWbInvd, "/EM/CPU%d/RZ/Interpret/Failed/WbInvd", "The number of times WBINVD was not interpreted.");
|
---|
381 | EM_REG_COUNTER_USED(&pStats->StatR3FailedWbInvd, "/EM/CPU%d/R3/Interpret/Failed/WbInvd", "The number of times WBINVD was not interpreted.");
|
---|
382 |
|
---|
383 | EM_REG_COUNTER_USED(&pStats->StatRZFailedUserMode, "/EM/CPU%d/RZ/Interpret/Failed/UserMode", "The number of rejections because of CPL.");
|
---|
384 | EM_REG_COUNTER_USED(&pStats->StatR3FailedUserMode, "/EM/CPU%d/R3/Interpret/Failed/UserMode", "The number of rejections because of CPL.");
|
---|
385 | EM_REG_COUNTER_USED(&pStats->StatRZFailedPrefix, "/EM/CPU%d/RZ/Interpret/Failed/Prefix", "The number of rejections because of prefix .");
|
---|
386 | EM_REG_COUNTER_USED(&pStats->StatR3FailedPrefix, "/EM/CPU%d/R3/Interpret/Failed/Prefix", "The number of rejections because of prefix .");
|
---|
387 |
|
---|
388 | EM_REG_COUNTER_USED(&pStats->StatIoRestarted, "/EM/CPU%d/R3/PrivInst/IoRestarted", "I/O instructions restarted in ring-3.");
|
---|
389 | EM_REG_COUNTER_USED(&pStats->StatIoIem, "/EM/CPU%d/R3/PrivInst/IoIem", "I/O instructions end to IEM in ring-3.");
|
---|
390 | EM_REG_COUNTER_USED(&pStats->StatCli, "/EM/CPU%d/R3/PrivInst/Cli", "Number of cli instructions.");
|
---|
391 | EM_REG_COUNTER_USED(&pStats->StatSti, "/EM/CPU%d/R3/PrivInst/Sti", "Number of sli instructions.");
|
---|
392 | EM_REG_COUNTER_USED(&pStats->StatHlt, "/EM/CPU%d/R3/PrivInst/Hlt", "Number of hlt instructions not handled in GC because of PATM.");
|
---|
393 | EM_REG_COUNTER_USED(&pStats->StatInvlpg, "/EM/CPU%d/R3/PrivInst/Invlpg", "Number of invlpg instructions.");
|
---|
394 | EM_REG_COUNTER_USED(&pStats->StatMisc, "/EM/CPU%d/R3/PrivInst/Misc", "Number of misc. instructions.");
|
---|
395 | EM_REG_COUNTER_USED(&pStats->StatMovWriteCR[0], "/EM/CPU%d/R3/PrivInst/Mov CR0, X", "Number of mov CR0 write instructions.");
|
---|
396 | EM_REG_COUNTER_USED(&pStats->StatMovWriteCR[1], "/EM/CPU%d/R3/PrivInst/Mov CR1, X", "Number of mov CR1 write instructions.");
|
---|
397 | EM_REG_COUNTER_USED(&pStats->StatMovWriteCR[2], "/EM/CPU%d/R3/PrivInst/Mov CR2, X", "Number of mov CR2 write instructions.");
|
---|
398 | EM_REG_COUNTER_USED(&pStats->StatMovWriteCR[3], "/EM/CPU%d/R3/PrivInst/Mov CR3, X", "Number of mov CR3 write instructions.");
|
---|
399 | EM_REG_COUNTER_USED(&pStats->StatMovWriteCR[4], "/EM/CPU%d/R3/PrivInst/Mov CR4, X", "Number of mov CR4 write instructions.");
|
---|
400 | EM_REG_COUNTER_USED(&pStats->StatMovReadCR[0], "/EM/CPU%d/R3/PrivInst/Mov X, CR0", "Number of mov CR0 read instructions.");
|
---|
401 | EM_REG_COUNTER_USED(&pStats->StatMovReadCR[1], "/EM/CPU%d/R3/PrivInst/Mov X, CR1", "Number of mov CR1 read instructions.");
|
---|
402 | EM_REG_COUNTER_USED(&pStats->StatMovReadCR[2], "/EM/CPU%d/R3/PrivInst/Mov X, CR2", "Number of mov CR2 read instructions.");
|
---|
403 | EM_REG_COUNTER_USED(&pStats->StatMovReadCR[3], "/EM/CPU%d/R3/PrivInst/Mov X, CR3", "Number of mov CR3 read instructions.");
|
---|
404 | EM_REG_COUNTER_USED(&pStats->StatMovReadCR[4], "/EM/CPU%d/R3/PrivInst/Mov X, CR4", "Number of mov CR4 read instructions.");
|
---|
405 | EM_REG_COUNTER_USED(&pStats->StatMovDRx, "/EM/CPU%d/R3/PrivInst/MovDRx", "Number of mov DRx instructions.");
|
---|
406 | EM_REG_COUNTER_USED(&pStats->StatIret, "/EM/CPU%d/R3/PrivInst/Iret", "Number of iret instructions.");
|
---|
407 | EM_REG_COUNTER_USED(&pStats->StatMovLgdt, "/EM/CPU%d/R3/PrivInst/Lgdt", "Number of lgdt instructions.");
|
---|
408 | EM_REG_COUNTER_USED(&pStats->StatMovLidt, "/EM/CPU%d/R3/PrivInst/Lidt", "Number of lidt instructions.");
|
---|
409 | EM_REG_COUNTER_USED(&pStats->StatMovLldt, "/EM/CPU%d/R3/PrivInst/Lldt", "Number of lldt instructions.");
|
---|
410 | EM_REG_COUNTER_USED(&pStats->StatSysEnter, "/EM/CPU%d/R3/PrivInst/Sysenter", "Number of sysenter instructions.");
|
---|
411 | EM_REG_COUNTER_USED(&pStats->StatSysExit, "/EM/CPU%d/R3/PrivInst/Sysexit", "Number of sysexit instructions.");
|
---|
412 | EM_REG_COUNTER_USED(&pStats->StatSysCall, "/EM/CPU%d/R3/PrivInst/Syscall", "Number of syscall instructions.");
|
---|
413 | EM_REG_COUNTER_USED(&pStats->StatSysRet, "/EM/CPU%d/R3/PrivInst/Sysret", "Number of sysret instructions.");
|
---|
414 |
|
---|
415 | EM_REG_COUNTER(&pVCpu->em.s.StatTotalClis, "/EM/CPU%d/Cli/Total", "Total number of cli instructions executed.");
|
---|
416 | pVCpu->em.s.pCliStatTree = 0;
|
---|
417 |
|
---|
418 | /* these should be considered for release statistics. */
|
---|
419 | EM_REG_COUNTER(&pVCpu->em.s.StatIOEmu, "/PROF/CPU%d/EM/Emulation/IO", "Profiling of emR3RawExecuteIOInstruction.");
|
---|
420 | EM_REG_COUNTER(&pVCpu->em.s.StatPrivEmu, "/PROF/CPU%d/EM/Emulation/Priv", "Profiling of emR3RawPrivileged.");
|
---|
421 | EM_REG_PROFILE(&pVCpu->em.s.StatHmEntry, "/PROF/CPU%d/EM/HmEnter", "Profiling Hardware Accelerated Mode entry overhead.");
|
---|
422 | EM_REG_PROFILE(&pVCpu->em.s.StatHmExec, "/PROF/CPU%d/EM/HmExec", "Profiling Hardware Accelerated Mode execution.");
|
---|
423 | EM_REG_PROFILE(&pVCpu->em.s.StatIEMEmu, "/PROF/CPU%d/EM/IEMEmuSingle", "Profiling single instruction IEM execution.");
|
---|
424 | EM_REG_PROFILE(&pVCpu->em.s.StatIEMThenREM, "/PROF/CPU%d/EM/IEMThenRem", "Profiling IEM-then-REM instruction execution (by IEM).");
|
---|
425 | EM_REG_PROFILE(&pVCpu->em.s.StatREMEmu, "/PROF/CPU%d/EM/REMEmuSingle", "Profiling single instruction REM execution.");
|
---|
426 | EM_REG_PROFILE(&pVCpu->em.s.StatREMExec, "/PROF/CPU%d/EM/REMExec", "Profiling REM execution.");
|
---|
427 | EM_REG_PROFILE(&pVCpu->em.s.StatREMSync, "/PROF/CPU%d/EM/REMSync", "Profiling REM context syncing.");
|
---|
428 | EM_REG_PROFILE(&pVCpu->em.s.StatRAWEntry, "/PROF/CPU%d/EM/RAWEnter", "Profiling Raw Mode entry overhead.");
|
---|
429 | EM_REG_PROFILE(&pVCpu->em.s.StatRAWExec, "/PROF/CPU%d/EM/RAWExec", "Profiling Raw Mode execution.");
|
---|
430 | EM_REG_PROFILE(&pVCpu->em.s.StatRAWTail, "/PROF/CPU%d/EM/RAWTail", "Profiling Raw Mode tail overhead.");
|
---|
431 |
|
---|
432 | #endif /* VBOX_WITH_STATISTICS */
|
---|
433 |
|
---|
434 | EM_REG_COUNTER(&pVCpu->em.s.StatForcedActions, "/PROF/CPU%d/EM/ForcedActions", "Profiling forced action execution.");
|
---|
435 | EM_REG_COUNTER(&pVCpu->em.s.StatHalted, "/PROF/CPU%d/EM/Halted", "Profiling halted state (VMR3WaitHalted).");
|
---|
436 | EM_REG_PROFILE_ADV(&pVCpu->em.s.StatCapped, "/PROF/CPU%d/EM/Capped", "Profiling capped state (sleep).");
|
---|
437 | EM_REG_COUNTER(&pVCpu->em.s.StatREMTotal, "/PROF/CPU%d/EM/REMTotal", "Profiling emR3RemExecute (excluding FFs).");
|
---|
438 | EM_REG_COUNTER(&pVCpu->em.s.StatRAWTotal, "/PROF/CPU%d/EM/RAWTotal", "Profiling emR3RawExecute (excluding FFs).");
|
---|
439 |
|
---|
440 | EM_REG_PROFILE_ADV(&pVCpu->em.s.StatTotal, "/PROF/CPU%d/EM/Total", "Profiling EMR3ExecuteVM.");
|
---|
441 | }
|
---|
442 |
|
---|
443 | emR3InitDbg(pVM);
|
---|
444 | return VINF_SUCCESS;
|
---|
445 | }
|
---|
446 |
|
---|
447 |
|
---|
448 | /**
|
---|
449 | * Applies relocations to data and code managed by this
|
---|
450 | * component. This function will be called at init and
|
---|
451 | * whenever the VMM need to relocate it self inside the GC.
|
---|
452 | *
|
---|
453 | * @param pVM Pointer to the VM.
|
---|
454 | */
|
---|
455 | VMMR3_INT_DECL(void) EMR3Relocate(PVM pVM)
|
---|
456 | {
|
---|
457 | LogFlow(("EMR3Relocate\n"));
|
---|
458 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
459 | {
|
---|
460 | PVMCPU pVCpu = &pVM->aCpus[i];
|
---|
461 | if (pVCpu->em.s.pStatsR3)
|
---|
462 | pVCpu->em.s.pStatsRC = MMHyperR3ToRC(pVM, pVCpu->em.s.pStatsR3);
|
---|
463 | }
|
---|
464 | }
|
---|
465 |
|
---|
466 |
|
---|
467 | /**
|
---|
468 | * Reset the EM state for a CPU.
|
---|
469 | *
|
---|
470 | * Called by EMR3Reset and hot plugging.
|
---|
471 | *
|
---|
472 | * @param pVCpu Pointer to the VMCPU.
|
---|
473 | */
|
---|
474 | VMMR3_INT_DECL(void) EMR3ResetCpu(PVMCPU pVCpu)
|
---|
475 | {
|
---|
476 | pVCpu->em.s.fForceRAW = false;
|
---|
477 |
|
---|
478 | /* VMR3Reset may return VINF_EM_RESET or VINF_EM_SUSPEND, so transition
|
---|
479 | out of the HALTED state here so that enmPrevState doesn't end up as
|
---|
480 | HALTED when EMR3Execute returns. */
|
---|
481 | if (pVCpu->em.s.enmState == EMSTATE_HALTED)
|
---|
482 | {
|
---|
483 | Log(("EMR3ResetCpu: Cpu#%u %s -> %s\n", pVCpu->idCpu, emR3GetStateName(pVCpu->em.s.enmState), pVCpu->idCpu == 0 ? "EMSTATE_NONE" : "EMSTATE_WAIT_SIPI"));
|
---|
484 | pVCpu->em.s.enmState = pVCpu->idCpu == 0 ? EMSTATE_NONE : EMSTATE_WAIT_SIPI;
|
---|
485 | }
|
---|
486 | }
|
---|
487 |
|
---|
488 |
|
---|
489 | /**
|
---|
490 | * Reset notification.
|
---|
491 | *
|
---|
492 | * @param pVM Pointer to the VM.
|
---|
493 | */
|
---|
494 | VMMR3_INT_DECL(void) EMR3Reset(PVM pVM)
|
---|
495 | {
|
---|
496 | Log(("EMR3Reset: \n"));
|
---|
497 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
498 | EMR3ResetCpu(&pVM->aCpus[i]);
|
---|
499 | }
|
---|
500 |
|
---|
501 |
|
---|
502 | /**
|
---|
503 | * Terminates the EM.
|
---|
504 | *
|
---|
505 | * Termination means cleaning up and freeing all resources,
|
---|
506 | * the VM it self is at this point powered off or suspended.
|
---|
507 | *
|
---|
508 | * @returns VBox status code.
|
---|
509 | * @param pVM Pointer to the VM.
|
---|
510 | */
|
---|
511 | VMMR3_INT_DECL(int) EMR3Term(PVM pVM)
|
---|
512 | {
|
---|
513 | AssertMsg(pVM->em.s.offVM, ("bad init order!\n"));
|
---|
514 |
|
---|
515 | #ifdef VBOX_WITH_REM
|
---|
516 | PDMR3CritSectDelete(&pVM->em.s.CritSectREM);
|
---|
517 | #endif
|
---|
518 | return VINF_SUCCESS;
|
---|
519 | }
|
---|
520 |
|
---|
521 |
|
---|
522 | /**
|
---|
523 | * Execute state save operation.
|
---|
524 | *
|
---|
525 | * @returns VBox status code.
|
---|
526 | * @param pVM Pointer to the VM.
|
---|
527 | * @param pSSM SSM operation handle.
|
---|
528 | */
|
---|
529 | static DECLCALLBACK(int) emR3Save(PVM pVM, PSSMHANDLE pSSM)
|
---|
530 | {
|
---|
531 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
532 | {
|
---|
533 | PVMCPU pVCpu = &pVM->aCpus[i];
|
---|
534 |
|
---|
535 | int rc = SSMR3PutBool(pSSM, pVCpu->em.s.fForceRAW);
|
---|
536 | AssertRCReturn(rc, rc);
|
---|
537 |
|
---|
538 | Assert(pVCpu->em.s.enmState == EMSTATE_SUSPENDED);
|
---|
539 | Assert(pVCpu->em.s.enmPrevState != EMSTATE_SUSPENDED);
|
---|
540 | rc = SSMR3PutU32(pSSM, pVCpu->em.s.enmPrevState);
|
---|
541 | AssertRCReturn(rc, rc);
|
---|
542 |
|
---|
543 | /* Save mwait state. */
|
---|
544 | rc = SSMR3PutU32(pSSM, pVCpu->em.s.MWait.fWait);
|
---|
545 | AssertRCReturn(rc, rc);
|
---|
546 | rc = SSMR3PutGCPtr(pSSM, pVCpu->em.s.MWait.uMWaitRAX);
|
---|
547 | AssertRCReturn(rc, rc);
|
---|
548 | rc = SSMR3PutGCPtr(pSSM, pVCpu->em.s.MWait.uMWaitRCX);
|
---|
549 | AssertRCReturn(rc, rc);
|
---|
550 | rc = SSMR3PutGCPtr(pSSM, pVCpu->em.s.MWait.uMonitorRAX);
|
---|
551 | AssertRCReturn(rc, rc);
|
---|
552 | rc = SSMR3PutGCPtr(pSSM, pVCpu->em.s.MWait.uMonitorRCX);
|
---|
553 | AssertRCReturn(rc, rc);
|
---|
554 | rc = SSMR3PutGCPtr(pSSM, pVCpu->em.s.MWait.uMonitorRDX);
|
---|
555 | AssertRCReturn(rc, rc);
|
---|
556 | }
|
---|
557 | return VINF_SUCCESS;
|
---|
558 | }
|
---|
559 |
|
---|
560 |
|
---|
561 | /**
|
---|
562 | * Execute state load operation.
|
---|
563 | *
|
---|
564 | * @returns VBox status code.
|
---|
565 | * @param pVM Pointer to the VM.
|
---|
566 | * @param pSSM SSM operation handle.
|
---|
567 | * @param uVersion Data layout version.
|
---|
568 | * @param uPass The data pass.
|
---|
569 | */
|
---|
570 | static DECLCALLBACK(int) emR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
|
---|
571 | {
|
---|
572 | /*
|
---|
573 | * Validate version.
|
---|
574 | */
|
---|
575 | if ( uVersion > EM_SAVED_STATE_VERSION
|
---|
576 | || uVersion < EM_SAVED_STATE_VERSION_PRE_SMP)
|
---|
577 | {
|
---|
578 | AssertMsgFailed(("emR3Load: Invalid version uVersion=%d (current %d)!\n", uVersion, EM_SAVED_STATE_VERSION));
|
---|
579 | return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
|
---|
580 | }
|
---|
581 | Assert(uPass == SSM_PASS_FINAL); NOREF(uPass);
|
---|
582 |
|
---|
583 | /*
|
---|
584 | * Load the saved state.
|
---|
585 | */
|
---|
586 | for (VMCPUID i = 0; i < pVM->cCpus; i++)
|
---|
587 | {
|
---|
588 | PVMCPU pVCpu = &pVM->aCpus[i];
|
---|
589 |
|
---|
590 | int rc = SSMR3GetBool(pSSM, &pVCpu->em.s.fForceRAW);
|
---|
591 | if (RT_FAILURE(rc))
|
---|
592 | pVCpu->em.s.fForceRAW = false;
|
---|
593 | AssertRCReturn(rc, rc);
|
---|
594 |
|
---|
595 | if (uVersion > EM_SAVED_STATE_VERSION_PRE_SMP)
|
---|
596 | {
|
---|
597 | AssertCompile(sizeof(pVCpu->em.s.enmPrevState) == sizeof(uint32_t));
|
---|
598 | rc = SSMR3GetU32(pSSM, (uint32_t *)&pVCpu->em.s.enmPrevState);
|
---|
599 | AssertRCReturn(rc, rc);
|
---|
600 | Assert(pVCpu->em.s.enmPrevState != EMSTATE_SUSPENDED);
|
---|
601 |
|
---|
602 | pVCpu->em.s.enmState = EMSTATE_SUSPENDED;
|
---|
603 | }
|
---|
604 | if (uVersion > EM_SAVED_STATE_VERSION_PRE_MWAIT)
|
---|
605 | {
|
---|
606 | /* Load mwait state. */
|
---|
607 | rc = SSMR3GetU32(pSSM, &pVCpu->em.s.MWait.fWait);
|
---|
608 | AssertRCReturn(rc, rc);
|
---|
609 | rc = SSMR3GetGCPtr(pSSM, &pVCpu->em.s.MWait.uMWaitRAX);
|
---|
610 | AssertRCReturn(rc, rc);
|
---|
611 | rc = SSMR3GetGCPtr(pSSM, &pVCpu->em.s.MWait.uMWaitRCX);
|
---|
612 | AssertRCReturn(rc, rc);
|
---|
613 | rc = SSMR3GetGCPtr(pSSM, &pVCpu->em.s.MWait.uMonitorRAX);
|
---|
614 | AssertRCReturn(rc, rc);
|
---|
615 | rc = SSMR3GetGCPtr(pSSM, &pVCpu->em.s.MWait.uMonitorRCX);
|
---|
616 | AssertRCReturn(rc, rc);
|
---|
617 | rc = SSMR3GetGCPtr(pSSM, &pVCpu->em.s.MWait.uMonitorRDX);
|
---|
618 | AssertRCReturn(rc, rc);
|
---|
619 | }
|
---|
620 |
|
---|
621 | Assert(!pVCpu->em.s.pCliStatTree);
|
---|
622 | }
|
---|
623 | return VINF_SUCCESS;
|
---|
624 | }
|
---|
625 |
|
---|
626 |
|
---|
627 | /**
|
---|
628 | * Argument packet for emR3SetExecutionPolicy.
|
---|
629 | */
|
---|
630 | struct EMR3SETEXECPOLICYARGS
|
---|
631 | {
|
---|
632 | EMEXECPOLICY enmPolicy;
|
---|
633 | bool fEnforce;
|
---|
634 | };
|
---|
635 |
|
---|
636 |
|
---|
637 | /**
|
---|
638 | * @callback_method_impl{FNVMMEMTRENDEZVOUS, Rendezvous callback for EMR3SetExecutionPolicy.}
|
---|
639 | */
|
---|
640 | static DECLCALLBACK(VBOXSTRICTRC) emR3SetExecutionPolicy(PVM pVM, PVMCPU pVCpu, void *pvUser)
|
---|
641 | {
|
---|
642 | /*
|
---|
643 | * Only the first CPU changes the variables.
|
---|
644 | */
|
---|
645 | if (pVCpu->idCpu == 0)
|
---|
646 | {
|
---|
647 | struct EMR3SETEXECPOLICYARGS *pArgs = (struct EMR3SETEXECPOLICYARGS *)pvUser;
|
---|
648 | switch (pArgs->enmPolicy)
|
---|
649 | {
|
---|
650 | case EMEXECPOLICY_RECOMPILE_RING0:
|
---|
651 | pVM->fRecompileSupervisor = pArgs->fEnforce;
|
---|
652 | break;
|
---|
653 | case EMEXECPOLICY_RECOMPILE_RING3:
|
---|
654 | pVM->fRecompileUser = pArgs->fEnforce;
|
---|
655 | break;
|
---|
656 | case EMEXECPOLICY_IEM_ALL:
|
---|
657 | pVM->em.s.fIemExecutesAll = pArgs->fEnforce;
|
---|
658 | break;
|
---|
659 | default:
|
---|
660 | AssertFailedReturn(VERR_INVALID_PARAMETER);
|
---|
661 | }
|
---|
662 | Log(("emR3SetExecutionPolicy: fRecompileUser=%RTbool fRecompileSupervisor=%RTbool fIemExecutesAll=%RTbool\n",
|
---|
663 | pVM->fRecompileUser, pVM->fRecompileSupervisor, pVM->em.s.fIemExecutesAll));
|
---|
664 | }
|
---|
665 |
|
---|
666 | /*
|
---|
667 | * Force rescheduling if in RAW, HM, IEM, or REM.
|
---|
668 | */
|
---|
669 | return pVCpu->em.s.enmState == EMSTATE_RAW
|
---|
670 | || pVCpu->em.s.enmState == EMSTATE_HM
|
---|
671 | || pVCpu->em.s.enmState == EMSTATE_IEM
|
---|
672 | || pVCpu->em.s.enmState == EMSTATE_REM
|
---|
673 | || pVCpu->em.s.enmState == EMSTATE_IEM_THEN_REM
|
---|
674 | ? VINF_EM_RESCHEDULE
|
---|
675 | : VINF_SUCCESS;
|
---|
676 | }
|
---|
677 |
|
---|
678 |
|
---|
679 | /**
|
---|
680 | * Changes an execution scheduling policy parameter.
|
---|
681 | *
|
---|
682 | * This is used to enable or disable raw-mode / hardware-virtualization
|
---|
683 | * execution of user and supervisor code.
|
---|
684 | *
|
---|
685 | * @returns VINF_SUCCESS on success.
|
---|
686 | * @returns VINF_RESCHEDULE if a rescheduling might be required.
|
---|
687 | * @returns VERR_INVALID_PARAMETER on an invalid enmMode value.
|
---|
688 | *
|
---|
689 | * @param pUVM The user mode VM handle.
|
---|
690 | * @param enmPolicy The scheduling policy to change.
|
---|
691 | * @param fEnforce Whether to enforce the policy or not.
|
---|
692 | */
|
---|
693 | VMMR3DECL(int) EMR3SetExecutionPolicy(PUVM pUVM, EMEXECPOLICY enmPolicy, bool fEnforce)
|
---|
694 | {
|
---|
695 | UVM_ASSERT_VALID_EXT_RETURN(pUVM, VERR_INVALID_VM_HANDLE);
|
---|
696 | VM_ASSERT_VALID_EXT_RETURN(pUVM->pVM, VERR_INVALID_VM_HANDLE);
|
---|
697 | AssertReturn(enmPolicy > EMEXECPOLICY_INVALID && enmPolicy < EMEXECPOLICY_END, VERR_INVALID_PARAMETER);
|
---|
698 |
|
---|
699 | struct EMR3SETEXECPOLICYARGS Args = { enmPolicy, fEnforce };
|
---|
700 | return VMMR3EmtRendezvous(pUVM->pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_DESCENDING, emR3SetExecutionPolicy, &Args);
|
---|
701 | }
|
---|
702 |
|
---|
703 |
|
---|
704 | /**
|
---|
705 | * Queries an execution scheduling policy parameter.
|
---|
706 | *
|
---|
707 | * @returns VBox status code
|
---|
708 | * @param pUVM The user mode VM handle.
|
---|
709 | * @param enmPolicy The scheduling policy to query.
|
---|
710 | * @param pfEnforced Where to return the current value.
|
---|
711 | */
|
---|
712 | VMMR3DECL(int) EMR3QueryExecutionPolicy(PUVM pUVM, EMEXECPOLICY enmPolicy, bool *pfEnforced)
|
---|
713 | {
|
---|
714 | AssertReturn(enmPolicy > EMEXECPOLICY_INVALID && enmPolicy < EMEXECPOLICY_END, VERR_INVALID_PARAMETER);
|
---|
715 | AssertPtrReturn(pfEnforced, VERR_INVALID_POINTER);
|
---|
716 | UVM_ASSERT_VALID_EXT_RETURN(pUVM, VERR_INVALID_VM_HANDLE);
|
---|
717 | PVM pVM = pUVM->pVM;
|
---|
718 | VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
|
---|
719 |
|
---|
720 | /* No need to bother EMTs with a query. */
|
---|
721 | switch (enmPolicy)
|
---|
722 | {
|
---|
723 | case EMEXECPOLICY_RECOMPILE_RING0:
|
---|
724 | *pfEnforced = pVM->fRecompileSupervisor;
|
---|
725 | break;
|
---|
726 | case EMEXECPOLICY_RECOMPILE_RING3:
|
---|
727 | *pfEnforced = pVM->fRecompileUser;
|
---|
728 | break;
|
---|
729 | case EMEXECPOLICY_IEM_ALL:
|
---|
730 | *pfEnforced = pVM->em.s.fIemExecutesAll;
|
---|
731 | break;
|
---|
732 | default:
|
---|
733 | AssertFailedReturn(VERR_INTERNAL_ERROR_2);
|
---|
734 | }
|
---|
735 |
|
---|
736 | return VINF_SUCCESS;
|
---|
737 | }
|
---|
738 |
|
---|
739 |
|
---|
740 | /**
|
---|
741 | * Raise a fatal error.
|
---|
742 | *
|
---|
743 | * Safely terminate the VM with full state report and stuff. This function
|
---|
744 | * will naturally never return.
|
---|
745 | *
|
---|
746 | * @param pVCpu Pointer to the VMCPU.
|
---|
747 | * @param rc VBox status code.
|
---|
748 | */
|
---|
749 | VMMR3DECL(void) EMR3FatalError(PVMCPU pVCpu, int rc)
|
---|
750 | {
|
---|
751 | pVCpu->em.s.enmState = EMSTATE_GURU_MEDITATION;
|
---|
752 | longjmp(pVCpu->em.s.u.FatalLongJump, rc);
|
---|
753 | AssertReleaseMsgFailed(("longjmp returned!\n"));
|
---|
754 | }
|
---|
755 |
|
---|
756 |
|
---|
757 | #if defined(LOG_ENABLED) || defined(VBOX_STRICT)
|
---|
758 | /**
|
---|
759 | * Gets the EM state name.
|
---|
760 | *
|
---|
761 | * @returns pointer to read only state name,
|
---|
762 | * @param enmState The state.
|
---|
763 | */
|
---|
764 | static const char *emR3GetStateName(EMSTATE enmState)
|
---|
765 | {
|
---|
766 | switch (enmState)
|
---|
767 | {
|
---|
768 | case EMSTATE_NONE: return "EMSTATE_NONE";
|
---|
769 | case EMSTATE_RAW: return "EMSTATE_RAW";
|
---|
770 | case EMSTATE_HM: return "EMSTATE_HM";
|
---|
771 | case EMSTATE_IEM: return "EMSTATE_IEM";
|
---|
772 | case EMSTATE_REM: return "EMSTATE_REM";
|
---|
773 | case EMSTATE_HALTED: return "EMSTATE_HALTED";
|
---|
774 | case EMSTATE_WAIT_SIPI: return "EMSTATE_WAIT_SIPI";
|
---|
775 | case EMSTATE_SUSPENDED: return "EMSTATE_SUSPENDED";
|
---|
776 | case EMSTATE_TERMINATING: return "EMSTATE_TERMINATING";
|
---|
777 | case EMSTATE_DEBUG_GUEST_RAW: return "EMSTATE_DEBUG_GUEST_RAW";
|
---|
778 | case EMSTATE_DEBUG_GUEST_HM: return "EMSTATE_DEBUG_GUEST_HM";
|
---|
779 | case EMSTATE_DEBUG_GUEST_IEM: return "EMSTATE_DEBUG_GUEST_IEM";
|
---|
780 | case EMSTATE_DEBUG_GUEST_REM: return "EMSTATE_DEBUG_GUEST_REM";
|
---|
781 | case EMSTATE_DEBUG_HYPER: return "EMSTATE_DEBUG_HYPER";
|
---|
782 | case EMSTATE_GURU_MEDITATION: return "EMSTATE_GURU_MEDITATION";
|
---|
783 | case EMSTATE_IEM_THEN_REM: return "EMSTATE_IEM_THEN_REM";
|
---|
784 | default: return "Unknown!";
|
---|
785 | }
|
---|
786 | }
|
---|
787 | #endif /* LOG_ENABLED || VBOX_STRICT */
|
---|
788 |
|
---|
789 |
|
---|
790 | /**
|
---|
791 | * Debug loop.
|
---|
792 | *
|
---|
793 | * @returns VBox status code for EM.
|
---|
794 | * @param pVM Pointer to the VM.
|
---|
795 | * @param pVCpu Pointer to the VMCPU.
|
---|
796 | * @param rc Current EM VBox status code.
|
---|
797 | */
|
---|
798 | static VBOXSTRICTRC emR3Debug(PVM pVM, PVMCPU pVCpu, VBOXSTRICTRC rc)
|
---|
799 | {
|
---|
800 | for (;;)
|
---|
801 | {
|
---|
802 | Log(("emR3Debug: rc=%Rrc\n", VBOXSTRICTRC_VAL(rc)));
|
---|
803 | const VBOXSTRICTRC rcLast = rc;
|
---|
804 |
|
---|
805 | /*
|
---|
806 | * Debug related RC.
|
---|
807 | */
|
---|
808 | switch (VBOXSTRICTRC_VAL(rc))
|
---|
809 | {
|
---|
810 | /*
|
---|
811 | * Single step an instruction.
|
---|
812 | */
|
---|
813 | case VINF_EM_DBG_STEP:
|
---|
814 | if ( pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_RAW
|
---|
815 | || pVCpu->em.s.enmState == EMSTATE_DEBUG_HYPER
|
---|
816 | || pVCpu->em.s.fForceRAW /* paranoia */)
|
---|
817 | #ifdef VBOX_WITH_RAW_MODE
|
---|
818 | rc = emR3RawStep(pVM, pVCpu);
|
---|
819 | #else
|
---|
820 | AssertLogRelMsgFailedStmt(("Bad EM state."), VERR_EM_INTERNAL_ERROR);
|
---|
821 | #endif
|
---|
822 | else if (pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_HM)
|
---|
823 | rc = EMR3HmSingleInstruction(pVM, pVCpu, 0 /*fFlags*/);
|
---|
824 | #ifdef VBOX_WITH_REM
|
---|
825 | else if (pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_REM)
|
---|
826 | rc = emR3RemStep(pVM, pVCpu);
|
---|
827 | #endif
|
---|
828 | else
|
---|
829 | {
|
---|
830 | rc = IEMExecOne(pVCpu); /** @todo add dedicated interface... */
|
---|
831 | if (rc == VINF_SUCCESS || rc == VINF_EM_RESCHEDULE)
|
---|
832 | rc = VINF_EM_DBG_STEPPED;
|
---|
833 | }
|
---|
834 | break;
|
---|
835 |
|
---|
836 | /*
|
---|
837 | * Simple events: stepped, breakpoint, stop/assertion.
|
---|
838 | */
|
---|
839 | case VINF_EM_DBG_STEPPED:
|
---|
840 | rc = DBGFR3Event(pVM, DBGFEVENT_STEPPED);
|
---|
841 | break;
|
---|
842 |
|
---|
843 | case VINF_EM_DBG_BREAKPOINT:
|
---|
844 | rc = DBGFR3EventBreakpoint(pVM, DBGFEVENT_BREAKPOINT);
|
---|
845 | break;
|
---|
846 |
|
---|
847 | case VINF_EM_DBG_STOP:
|
---|
848 | rc = DBGFR3EventSrc(pVM, DBGFEVENT_DEV_STOP, NULL, 0, NULL, NULL);
|
---|
849 | break;
|
---|
850 |
|
---|
851 | case VINF_EM_DBG_HYPER_STEPPED:
|
---|
852 | rc = DBGFR3Event(pVM, DBGFEVENT_STEPPED_HYPER);
|
---|
853 | break;
|
---|
854 |
|
---|
855 | case VINF_EM_DBG_HYPER_BREAKPOINT:
|
---|
856 | rc = DBGFR3EventBreakpoint(pVM, DBGFEVENT_BREAKPOINT_HYPER);
|
---|
857 | break;
|
---|
858 |
|
---|
859 | case VINF_EM_DBG_HYPER_ASSERTION:
|
---|
860 | RTPrintf("\nVINF_EM_DBG_HYPER_ASSERTION:\n%s%s\n", VMMR3GetRZAssertMsg1(pVM), VMMR3GetRZAssertMsg2(pVM));
|
---|
861 | RTLogFlush(NULL);
|
---|
862 | rc = DBGFR3EventAssertion(pVM, DBGFEVENT_ASSERTION_HYPER, VMMR3GetRZAssertMsg1(pVM), VMMR3GetRZAssertMsg2(pVM));
|
---|
863 | break;
|
---|
864 |
|
---|
865 | /*
|
---|
866 | * Guru meditation.
|
---|
867 | */
|
---|
868 | case VERR_VMM_RING0_ASSERTION: /** @todo Make a guru meditation event! */
|
---|
869 | rc = DBGFR3EventSrc(pVM, DBGFEVENT_FATAL_ERROR, "VERR_VMM_RING0_ASSERTION", 0, NULL, NULL);
|
---|
870 | break;
|
---|
871 | case VERR_REM_TOO_MANY_TRAPS: /** @todo Make a guru meditation event! */
|
---|
872 | rc = DBGFR3EventSrc(pVM, DBGFEVENT_DEV_STOP, "VERR_REM_TOO_MANY_TRAPS", 0, NULL, NULL);
|
---|
873 | break;
|
---|
874 |
|
---|
875 | default: /** @todo don't use default for guru, but make special errors code! */
|
---|
876 | {
|
---|
877 | LogRel(("emR3Debug: rc=%Rrc\n", VBOXSTRICTRC_VAL(rc)));
|
---|
878 | rc = DBGFR3Event(pVM, DBGFEVENT_FATAL_ERROR);
|
---|
879 | break;
|
---|
880 | }
|
---|
881 | }
|
---|
882 |
|
---|
883 | /*
|
---|
884 | * Process the result.
|
---|
885 | */
|
---|
886 | do
|
---|
887 | {
|
---|
888 | switch (VBOXSTRICTRC_VAL(rc))
|
---|
889 | {
|
---|
890 | /*
|
---|
891 | * Continue the debugging loop.
|
---|
892 | */
|
---|
893 | case VINF_EM_DBG_STEP:
|
---|
894 | case VINF_EM_DBG_STOP:
|
---|
895 | case VINF_EM_DBG_STEPPED:
|
---|
896 | case VINF_EM_DBG_BREAKPOINT:
|
---|
897 | case VINF_EM_DBG_HYPER_STEPPED:
|
---|
898 | case VINF_EM_DBG_HYPER_BREAKPOINT:
|
---|
899 | case VINF_EM_DBG_HYPER_ASSERTION:
|
---|
900 | break;
|
---|
901 |
|
---|
902 | /*
|
---|
903 | * Resuming execution (in some form) has to be done here if we got
|
---|
904 | * a hypervisor debug event.
|
---|
905 | */
|
---|
906 | case VINF_SUCCESS:
|
---|
907 | case VINF_EM_RESUME:
|
---|
908 | case VINF_EM_SUSPEND:
|
---|
909 | case VINF_EM_RESCHEDULE:
|
---|
910 | case VINF_EM_RESCHEDULE_RAW:
|
---|
911 | case VINF_EM_RESCHEDULE_REM:
|
---|
912 | case VINF_EM_HALT:
|
---|
913 | if (pVCpu->em.s.enmState == EMSTATE_DEBUG_HYPER)
|
---|
914 | {
|
---|
915 | #ifdef VBOX_WITH_RAW_MODE
|
---|
916 | rc = emR3RawResumeHyper(pVM, pVCpu);
|
---|
917 | if (rc != VINF_SUCCESS && RT_SUCCESS(rc))
|
---|
918 | continue;
|
---|
919 | #else
|
---|
920 | AssertLogRelMsgFailedReturn(("Not implemented\n"), VERR_EM_INTERNAL_ERROR);
|
---|
921 | #endif
|
---|
922 | }
|
---|
923 | if (rc == VINF_SUCCESS)
|
---|
924 | rc = VINF_EM_RESCHEDULE;
|
---|
925 | return rc;
|
---|
926 |
|
---|
927 | /*
|
---|
928 | * The debugger isn't attached.
|
---|
929 | * We'll simply turn the thing off since that's the easiest thing to do.
|
---|
930 | */
|
---|
931 | case VERR_DBGF_NOT_ATTACHED:
|
---|
932 | switch (VBOXSTRICTRC_VAL(rcLast))
|
---|
933 | {
|
---|
934 | case VINF_EM_DBG_HYPER_STEPPED:
|
---|
935 | case VINF_EM_DBG_HYPER_BREAKPOINT:
|
---|
936 | case VINF_EM_DBG_HYPER_ASSERTION:
|
---|
937 | case VERR_TRPM_PANIC:
|
---|
938 | case VERR_TRPM_DONT_PANIC:
|
---|
939 | case VERR_VMM_RING0_ASSERTION:
|
---|
940 | case VERR_VMM_HYPER_CR3_MISMATCH:
|
---|
941 | case VERR_VMM_RING3_CALL_DISABLED:
|
---|
942 | return rcLast;
|
---|
943 | }
|
---|
944 | return VINF_EM_OFF;
|
---|
945 |
|
---|
946 | /*
|
---|
947 | * Status codes terminating the VM in one or another sense.
|
---|
948 | */
|
---|
949 | case VINF_EM_TERMINATE:
|
---|
950 | case VINF_EM_OFF:
|
---|
951 | case VINF_EM_RESET:
|
---|
952 | case VINF_EM_NO_MEMORY:
|
---|
953 | case VINF_EM_RAW_STALE_SELECTOR:
|
---|
954 | case VINF_EM_RAW_IRET_TRAP:
|
---|
955 | case VERR_TRPM_PANIC:
|
---|
956 | case VERR_TRPM_DONT_PANIC:
|
---|
957 | case VERR_IEM_INSTR_NOT_IMPLEMENTED:
|
---|
958 | case VERR_IEM_ASPECT_NOT_IMPLEMENTED:
|
---|
959 | case VERR_VMM_RING0_ASSERTION:
|
---|
960 | case VERR_VMM_HYPER_CR3_MISMATCH:
|
---|
961 | case VERR_VMM_RING3_CALL_DISABLED:
|
---|
962 | case VERR_INTERNAL_ERROR:
|
---|
963 | case VERR_INTERNAL_ERROR_2:
|
---|
964 | case VERR_INTERNAL_ERROR_3:
|
---|
965 | case VERR_INTERNAL_ERROR_4:
|
---|
966 | case VERR_INTERNAL_ERROR_5:
|
---|
967 | case VERR_IPE_UNEXPECTED_STATUS:
|
---|
968 | case VERR_IPE_UNEXPECTED_INFO_STATUS:
|
---|
969 | case VERR_IPE_UNEXPECTED_ERROR_STATUS:
|
---|
970 | return rc;
|
---|
971 |
|
---|
972 | /*
|
---|
973 | * The rest is unexpected, and will keep us here.
|
---|
974 | */
|
---|
975 | default:
|
---|
976 | AssertMsgFailed(("Unexpected rc %Rrc!\n", VBOXSTRICTRC_VAL(rc)));
|
---|
977 | break;
|
---|
978 | }
|
---|
979 | } while (false);
|
---|
980 | } /* debug for ever */
|
---|
981 | }
|
---|
982 |
|
---|
983 |
|
---|
984 | /**
|
---|
985 | * Steps recompiled code.
|
---|
986 | *
|
---|
987 | * @returns VBox status code. The most important ones are: VINF_EM_STEP_EVENT,
|
---|
988 | * VINF_EM_RESCHEDULE, VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
|
---|
989 | *
|
---|
990 | * @param pVM Pointer to the VM.
|
---|
991 | * @param pVCpu Pointer to the VMCPU.
|
---|
992 | */
|
---|
993 | static int emR3RemStep(PVM pVM, PVMCPU pVCpu)
|
---|
994 | {
|
---|
995 | Log3(("emR3RemStep: cs:eip=%04x:%08x\n", CPUMGetGuestCS(pVCpu), CPUMGetGuestEIP(pVCpu)));
|
---|
996 |
|
---|
997 | #ifdef VBOX_WITH_REM
|
---|
998 | EMRemLock(pVM);
|
---|
999 |
|
---|
1000 | /*
|
---|
1001 | * Switch to REM, step instruction, switch back.
|
---|
1002 | */
|
---|
1003 | int rc = REMR3State(pVM, pVCpu);
|
---|
1004 | if (RT_SUCCESS(rc))
|
---|
1005 | {
|
---|
1006 | rc = REMR3Step(pVM, pVCpu);
|
---|
1007 | REMR3StateBack(pVM, pVCpu);
|
---|
1008 | }
|
---|
1009 | EMRemUnlock(pVM);
|
---|
1010 |
|
---|
1011 | #else
|
---|
1012 | int rc = VBOXSTRICTRC_TODO(IEMExecOne(pVCpu)); NOREF(pVM);
|
---|
1013 | #endif
|
---|
1014 |
|
---|
1015 | Log3(("emR3RemStep: returns %Rrc cs:eip=%04x:%08x\n", rc, CPUMGetGuestCS(pVCpu), CPUMGetGuestEIP(pVCpu)));
|
---|
1016 | return rc;
|
---|
1017 | }
|
---|
1018 |
|
---|
1019 |
|
---|
1020 | /**
|
---|
1021 | * emR3RemExecute helper that syncs the state back from REM and leave the REM
|
---|
1022 | * critical section.
|
---|
1023 | *
|
---|
1024 | * @returns false - new fInREMState value.
|
---|
1025 | * @param pVM Pointer to the VM.
|
---|
1026 | * @param pVCpu Pointer to the VMCPU.
|
---|
1027 | */
|
---|
1028 | DECLINLINE(bool) emR3RemExecuteSyncBack(PVM pVM, PVMCPU pVCpu)
|
---|
1029 | {
|
---|
1030 | #ifdef VBOX_WITH_REM
|
---|
1031 | STAM_PROFILE_START(&pVCpu->em.s.StatREMSync, a);
|
---|
1032 | REMR3StateBack(pVM, pVCpu);
|
---|
1033 | STAM_PROFILE_STOP(&pVCpu->em.s.StatREMSync, a);
|
---|
1034 |
|
---|
1035 | EMRemUnlock(pVM);
|
---|
1036 | #endif
|
---|
1037 | return false;
|
---|
1038 | }
|
---|
1039 |
|
---|
1040 |
|
---|
1041 | /**
|
---|
1042 | * Executes recompiled code.
|
---|
1043 | *
|
---|
1044 | * This function contains the recompiler version of the inner
|
---|
1045 | * execution loop (the outer loop being in EMR3ExecuteVM()).
|
---|
1046 | *
|
---|
1047 | * @returns VBox status code. The most important ones are: VINF_EM_RESCHEDULE,
|
---|
1048 | * VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
|
---|
1049 | *
|
---|
1050 | * @param pVM Pointer to the VM.
|
---|
1051 | * @param pVCpu Pointer to the VMCPU.
|
---|
1052 | * @param pfFFDone Where to store an indicator telling whether or not
|
---|
1053 | * FFs were done before returning.
|
---|
1054 | *
|
---|
1055 | */
|
---|
1056 | static int emR3RemExecute(PVM pVM, PVMCPU pVCpu, bool *pfFFDone)
|
---|
1057 | {
|
---|
1058 | #ifdef LOG_ENABLED
|
---|
1059 | PCPUMCTX pCtx = pVCpu->em.s.pCtx;
|
---|
1060 | uint32_t cpl = CPUMGetGuestCPL(pVCpu);
|
---|
1061 |
|
---|
1062 | if (pCtx->eflags.Bits.u1VM)
|
---|
1063 | Log(("EMV86: %04X:%08X IF=%d\n", pCtx->cs.Sel, pCtx->eip, pCtx->eflags.Bits.u1IF));
|
---|
1064 | else
|
---|
1065 | Log(("EMR%d: %04X:%08X ESP=%08X IF=%d CR0=%x eflags=%x\n", cpl, pCtx->cs.Sel, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0, pCtx->eflags.u));
|
---|
1066 | #endif
|
---|
1067 | STAM_REL_PROFILE_ADV_START(&pVCpu->em.s.StatREMTotal, a);
|
---|
1068 |
|
---|
1069 | #if defined(VBOX_STRICT) && defined(DEBUG_bird)
|
---|
1070 | AssertMsg( VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_PGM_SYNC_CR3 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL)
|
---|
1071 | || !MMHyperIsInsideArea(pVM, CPUMGetGuestEIP(pVCpu)), /** @todo @bugref{1419} - get flat address. */
|
---|
1072 | ("cs:eip=%RX16:%RX32\n", CPUMGetGuestCS(pVCpu), CPUMGetGuestEIP(pVCpu)));
|
---|
1073 | #endif
|
---|
1074 |
|
---|
1075 | /*
|
---|
1076 | * Spin till we get a forced action which returns anything but VINF_SUCCESS
|
---|
1077 | * or the REM suggests raw-mode execution.
|
---|
1078 | */
|
---|
1079 | *pfFFDone = false;
|
---|
1080 | #ifdef VBOX_WITH_REM
|
---|
1081 | bool fInREMState = false;
|
---|
1082 | #endif
|
---|
1083 | int rc = VINF_SUCCESS;
|
---|
1084 | for (;;)
|
---|
1085 | {
|
---|
1086 | #ifdef VBOX_WITH_REM
|
---|
1087 | /*
|
---|
1088 | * Lock REM and update the state if not already in sync.
|
---|
1089 | *
|
---|
1090 | * Note! Big lock, but you are not supposed to own any lock when
|
---|
1091 | * coming in here.
|
---|
1092 | */
|
---|
1093 | if (!fInREMState)
|
---|
1094 | {
|
---|
1095 | EMRemLock(pVM);
|
---|
1096 | STAM_PROFILE_START(&pVCpu->em.s.StatREMSync, b);
|
---|
1097 |
|
---|
1098 | /* Flush the recompiler translation blocks if the VCPU has changed,
|
---|
1099 | also force a full CPU state resync. */
|
---|
1100 | if (pVM->em.s.idLastRemCpu != pVCpu->idCpu)
|
---|
1101 | {
|
---|
1102 | REMFlushTBs(pVM);
|
---|
1103 | CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_ALL);
|
---|
1104 | }
|
---|
1105 | pVM->em.s.idLastRemCpu = pVCpu->idCpu;
|
---|
1106 |
|
---|
1107 | rc = REMR3State(pVM, pVCpu);
|
---|
1108 |
|
---|
1109 | STAM_PROFILE_STOP(&pVCpu->em.s.StatREMSync, b);
|
---|
1110 | if (RT_FAILURE(rc))
|
---|
1111 | break;
|
---|
1112 | fInREMState = true;
|
---|
1113 |
|
---|
1114 | /*
|
---|
1115 | * We might have missed the raising of VMREQ, TIMER and some other
|
---|
1116 | * important FFs while we were busy switching the state. So, check again.
|
---|
1117 | */
|
---|
1118 | if ( VM_FF_IS_PENDING(pVM, VM_FF_REQUEST | VM_FF_PDM_QUEUES | VM_FF_DBGF | VM_FF_CHECK_VM_STATE | VM_FF_RESET)
|
---|
1119 | || VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_TIMER | VMCPU_FF_REQUEST))
|
---|
1120 | {
|
---|
1121 | LogFlow(("emR3RemExecute: Skipping run, because FF is set. %#x\n", pVM->fGlobalForcedActions));
|
---|
1122 | goto l_REMDoForcedActions;
|
---|
1123 | }
|
---|
1124 | }
|
---|
1125 | #endif
|
---|
1126 |
|
---|
1127 | /*
|
---|
1128 | * Execute REM.
|
---|
1129 | */
|
---|
1130 | if (RT_LIKELY(emR3IsExecutionAllowed(pVM, pVCpu)))
|
---|
1131 | {
|
---|
1132 | STAM_PROFILE_START(&pVCpu->em.s.StatREMExec, c);
|
---|
1133 | #ifdef VBOX_WITH_REM
|
---|
1134 | rc = REMR3Run(pVM, pVCpu);
|
---|
1135 | #else
|
---|
1136 | rc = VBOXSTRICTRC_TODO(IEMExecLots(pVCpu));
|
---|
1137 | #endif
|
---|
1138 | STAM_PROFILE_STOP(&pVCpu->em.s.StatREMExec, c);
|
---|
1139 | }
|
---|
1140 | else
|
---|
1141 | {
|
---|
1142 | /* Give up this time slice; virtual time continues */
|
---|
1143 | STAM_REL_PROFILE_ADV_START(&pVCpu->em.s.StatCapped, u);
|
---|
1144 | RTThreadSleep(5);
|
---|
1145 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatCapped, u);
|
---|
1146 | rc = VINF_SUCCESS;
|
---|
1147 | }
|
---|
1148 |
|
---|
1149 | /*
|
---|
1150 | * Deal with high priority post execution FFs before doing anything
|
---|
1151 | * else. Sync back the state and leave the lock to be on the safe side.
|
---|
1152 | */
|
---|
1153 | if ( VM_FF_IS_PENDING(pVM, VM_FF_HIGH_PRIORITY_POST_MASK)
|
---|
1154 | || VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_HIGH_PRIORITY_POST_MASK))
|
---|
1155 | {
|
---|
1156 | #ifdef VBOX_WITH_REM
|
---|
1157 | fInREMState = emR3RemExecuteSyncBack(pVM, pVCpu);
|
---|
1158 | #endif
|
---|
1159 | rc = emR3HighPriorityPostForcedActions(pVM, pVCpu, rc);
|
---|
1160 | }
|
---|
1161 |
|
---|
1162 | /*
|
---|
1163 | * Process the returned status code.
|
---|
1164 | */
|
---|
1165 | if (rc != VINF_SUCCESS)
|
---|
1166 | {
|
---|
1167 | if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
|
---|
1168 | break;
|
---|
1169 | if (rc != VINF_REM_INTERRUPED_FF)
|
---|
1170 | {
|
---|
1171 | /*
|
---|
1172 | * Anything which is not known to us means an internal error
|
---|
1173 | * and the termination of the VM!
|
---|
1174 | */
|
---|
1175 | AssertMsg(rc == VERR_REM_TOO_MANY_TRAPS, ("Unknown GC return code: %Rra\n", rc));
|
---|
1176 | break;
|
---|
1177 | }
|
---|
1178 | }
|
---|
1179 |
|
---|
1180 |
|
---|
1181 | /*
|
---|
1182 | * Check and execute forced actions.
|
---|
1183 | *
|
---|
1184 | * Sync back the VM state and leave the lock before calling any of
|
---|
1185 | * these, you never know what's going to happen here.
|
---|
1186 | */
|
---|
1187 | #ifdef VBOX_HIGH_RES_TIMERS_HACK
|
---|
1188 | TMTimerPollVoid(pVM, pVCpu);
|
---|
1189 | #endif
|
---|
1190 | AssertCompile(VMCPU_FF_ALL_REM_MASK & VMCPU_FF_TIMER);
|
---|
1191 | if ( VM_FF_IS_PENDING(pVM, VM_FF_ALL_REM_MASK)
|
---|
1192 | || VMCPU_FF_IS_PENDING(pVCpu,
|
---|
1193 | VMCPU_FF_ALL_REM_MASK
|
---|
1194 | & VM_WHEN_RAW_MODE(~(VMCPU_FF_CSAM_PENDING_ACTION | VMCPU_FF_CSAM_SCAN_PAGE), UINT32_MAX)) )
|
---|
1195 | {
|
---|
1196 | l_REMDoForcedActions:
|
---|
1197 | #ifdef VBOX_WITH_REM
|
---|
1198 | if (fInREMState)
|
---|
1199 | fInREMState = emR3RemExecuteSyncBack(pVM, pVCpu);
|
---|
1200 | #endif
|
---|
1201 | STAM_REL_PROFILE_ADV_SUSPEND(&pVCpu->em.s.StatREMTotal, a);
|
---|
1202 | rc = emR3ForcedActions(pVM, pVCpu, rc);
|
---|
1203 | VBOXVMM_EM_FF_ALL_RET(pVCpu, rc);
|
---|
1204 | STAM_REL_PROFILE_ADV_RESUME(&pVCpu->em.s.StatREMTotal, a);
|
---|
1205 | if ( rc != VINF_SUCCESS
|
---|
1206 | && rc != VINF_EM_RESCHEDULE_REM)
|
---|
1207 | {
|
---|
1208 | *pfFFDone = true;
|
---|
1209 | break;
|
---|
1210 | }
|
---|
1211 | }
|
---|
1212 |
|
---|
1213 | } /* The Inner Loop, recompiled execution mode version. */
|
---|
1214 |
|
---|
1215 |
|
---|
1216 | #ifdef VBOX_WITH_REM
|
---|
1217 | /*
|
---|
1218 | * Returning. Sync back the VM state if required.
|
---|
1219 | */
|
---|
1220 | if (fInREMState)
|
---|
1221 | fInREMState = emR3RemExecuteSyncBack(pVM, pVCpu);
|
---|
1222 | #endif
|
---|
1223 |
|
---|
1224 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatREMTotal, a);
|
---|
1225 | return rc;
|
---|
1226 | }
|
---|
1227 |
|
---|
1228 |
|
---|
1229 | #ifdef DEBUG
|
---|
1230 |
|
---|
1231 | int emR3SingleStepExecRem(PVM pVM, PVMCPU pVCpu, uint32_t cIterations)
|
---|
1232 | {
|
---|
1233 | EMSTATE enmOldState = pVCpu->em.s.enmState;
|
---|
1234 |
|
---|
1235 | pVCpu->em.s.enmState = EMSTATE_DEBUG_GUEST_REM;
|
---|
1236 |
|
---|
1237 | Log(("Single step BEGIN:\n"));
|
---|
1238 | for (uint32_t i = 0; i < cIterations; i++)
|
---|
1239 | {
|
---|
1240 | DBGFR3PrgStep(pVCpu);
|
---|
1241 | DBGFR3_DISAS_INSTR_CUR_LOG(pVCpu, "RSS");
|
---|
1242 | emR3RemStep(pVM, pVCpu);
|
---|
1243 | if (emR3Reschedule(pVM, pVCpu, pVCpu->em.s.pCtx) != EMSTATE_REM)
|
---|
1244 | break;
|
---|
1245 | }
|
---|
1246 | Log(("Single step END:\n"));
|
---|
1247 | CPUMSetGuestEFlags(pVCpu, CPUMGetGuestEFlags(pVCpu) & ~X86_EFL_TF);
|
---|
1248 | pVCpu->em.s.enmState = enmOldState;
|
---|
1249 | return VINF_EM_RESCHEDULE;
|
---|
1250 | }
|
---|
1251 |
|
---|
1252 | #endif /* DEBUG */
|
---|
1253 |
|
---|
1254 |
|
---|
1255 | /**
|
---|
1256 | * Try execute the problematic code in IEM first, then fall back on REM if there
|
---|
1257 | * is too much of it or if IEM doesn't implement something.
|
---|
1258 | *
|
---|
1259 | * @returns Strict VBox status code from IEMExecLots.
|
---|
1260 | * @param pVM The cross context VM structure.
|
---|
1261 | * @param pVCpu The cross context CPU structure for the calling EMT.
|
---|
1262 | * @param pfFFDone Force flags done indicator.
|
---|
1263 | *
|
---|
1264 | * @thread EMT(pVCpu)
|
---|
1265 | */
|
---|
1266 | static VBOXSTRICTRC emR3ExecuteIemThenRem(PVM pVM, PVMCPU pVCpu, bool *pfFFDone)
|
---|
1267 | {
|
---|
1268 | LogFlow(("emR3ExecuteIemThenRem: %04x:%RGv\n", CPUMGetGuestCS(pVCpu), CPUMGetGuestRIP(pVCpu)));
|
---|
1269 | *pfFFDone = false;
|
---|
1270 |
|
---|
1271 | /*
|
---|
1272 | * Execute in IEM for a while.
|
---|
1273 | */
|
---|
1274 | while (pVCpu->em.s.cIemThenRemInstructions < 1024)
|
---|
1275 | {
|
---|
1276 | VBOXSTRICTRC rcStrict = IEMExecLots(pVCpu);
|
---|
1277 | if (rcStrict != VINF_SUCCESS)
|
---|
1278 | {
|
---|
1279 | if ( rcStrict == VERR_IEM_ASPECT_NOT_IMPLEMENTED
|
---|
1280 | || rcStrict == VERR_IEM_INSTR_NOT_IMPLEMENTED)
|
---|
1281 | break;
|
---|
1282 |
|
---|
1283 | pVCpu->em.s.cIemThenRemInstructions++;
|
---|
1284 | Log(("emR3ExecuteIemThenRem: returns %Rrc after %u instructions\n",
|
---|
1285 | VBOXSTRICTRC_VAL(rcStrict), pVCpu->em.s.cIemThenRemInstructions));
|
---|
1286 | return rcStrict;
|
---|
1287 | }
|
---|
1288 | pVCpu->em.s.cIemThenRemInstructions++;
|
---|
1289 |
|
---|
1290 | EMSTATE enmNewState = emR3Reschedule(pVM, pVCpu, pVCpu->em.s.pCtx);
|
---|
1291 | if (enmNewState != EMSTATE_REM && enmNewState != EMSTATE_IEM_THEN_REM)
|
---|
1292 | {
|
---|
1293 | LogFlow(("emR3ExecuteIemThenRem: -> %d (%s) after %u instructions\n",
|
---|
1294 | enmNewState, emR3GetStateName(enmNewState), pVCpu->em.s.cIemThenRemInstructions));
|
---|
1295 | pVCpu->em.s.enmPrevState = pVCpu->em.s.enmState;
|
---|
1296 | pVCpu->em.s.enmState = enmNewState;
|
---|
1297 | return VINF_SUCCESS;
|
---|
1298 | }
|
---|
1299 |
|
---|
1300 | /*
|
---|
1301 | * Check for pending actions.
|
---|
1302 | */
|
---|
1303 | if ( VM_FF_IS_PENDING(pVM, VM_FF_ALL_REM_MASK)
|
---|
1304 | || VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_ALL_REM_MASK))
|
---|
1305 | return VINF_SUCCESS;
|
---|
1306 | }
|
---|
1307 |
|
---|
1308 | /*
|
---|
1309 | * Switch to REM.
|
---|
1310 | */
|
---|
1311 | Log(("emR3ExecuteIemThenRem: -> EMSTATE_REM (after %u instructions)\n", pVCpu->em.s.cIemThenRemInstructions));
|
---|
1312 | pVCpu->em.s.enmState = EMSTATE_REM;
|
---|
1313 | return VINF_SUCCESS;
|
---|
1314 | }
|
---|
1315 |
|
---|
1316 |
|
---|
1317 | /**
|
---|
1318 | * Decides whether to execute RAW, HWACC or REM.
|
---|
1319 | *
|
---|
1320 | * @returns new EM state
|
---|
1321 | * @param pVM Pointer to the VM.
|
---|
1322 | * @param pVCpu Pointer to the VMCPU.
|
---|
1323 | * @param pCtx Pointer to the guest CPU context.
|
---|
1324 | */
|
---|
1325 | EMSTATE emR3Reschedule(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx)
|
---|
1326 | {
|
---|
1327 | /*
|
---|
1328 | * When forcing raw-mode execution, things are simple.
|
---|
1329 | */
|
---|
1330 | if (pVCpu->em.s.fForceRAW)
|
---|
1331 | return EMSTATE_RAW;
|
---|
1332 |
|
---|
1333 | /*
|
---|
1334 | * We stay in the wait for SIPI state unless explicitly told otherwise.
|
---|
1335 | */
|
---|
1336 | if (pVCpu->em.s.enmState == EMSTATE_WAIT_SIPI)
|
---|
1337 | return EMSTATE_WAIT_SIPI;
|
---|
1338 |
|
---|
1339 | /*
|
---|
1340 | * Execute everything in IEM?
|
---|
1341 | */
|
---|
1342 | if (pVM->em.s.fIemExecutesAll)
|
---|
1343 | return EMSTATE_IEM;
|
---|
1344 |
|
---|
1345 | /* !!! THIS MUST BE IN SYNC WITH remR3CanExecuteRaw !!! */
|
---|
1346 | /* !!! THIS MUST BE IN SYNC WITH remR3CanExecuteRaw !!! */
|
---|
1347 | /* !!! THIS MUST BE IN SYNC WITH remR3CanExecuteRaw !!! */
|
---|
1348 |
|
---|
1349 | X86EFLAGS EFlags = pCtx->eflags;
|
---|
1350 | if (HMIsEnabled(pVM))
|
---|
1351 | {
|
---|
1352 | /*
|
---|
1353 | * Hardware accelerated raw-mode:
|
---|
1354 | */
|
---|
1355 | if ( EMIsHwVirtExecutionEnabled(pVM)
|
---|
1356 | && HMR3CanExecuteGuest(pVM, pCtx))
|
---|
1357 | return EMSTATE_HM;
|
---|
1358 |
|
---|
1359 | /*
|
---|
1360 | * Note! Raw mode and hw accelerated mode are incompatible. The latter
|
---|
1361 | * turns off monitoring features essential for raw mode!
|
---|
1362 | */
|
---|
1363 | return EMSTATE_IEM_THEN_REM;
|
---|
1364 | }
|
---|
1365 |
|
---|
1366 | /*
|
---|
1367 | * Standard raw-mode:
|
---|
1368 | *
|
---|
1369 | * Here we only support 16 & 32 bits protected mode ring 3 code that has no IO privileges
|
---|
1370 | * or 32 bits protected mode ring 0 code
|
---|
1371 | *
|
---|
1372 | * The tests are ordered by the likelihood of being true during normal execution.
|
---|
1373 | */
|
---|
1374 | if (EFlags.u32 & (X86_EFL_TF /* | HF_INHIBIT_IRQ_MASK*/))
|
---|
1375 | {
|
---|
1376 | Log2(("raw mode refused: EFlags=%#x\n", EFlags.u32));
|
---|
1377 | return EMSTATE_REM;
|
---|
1378 | }
|
---|
1379 |
|
---|
1380 | # ifndef VBOX_RAW_V86
|
---|
1381 | if (EFlags.u32 & X86_EFL_VM) {
|
---|
1382 | Log2(("raw mode refused: VM_MASK\n"));
|
---|
1383 | return EMSTATE_REM;
|
---|
1384 | }
|
---|
1385 | # endif
|
---|
1386 |
|
---|
1387 | /** @todo check up the X86_CR0_AM flag in respect to raw mode!!! We're probably not emulating it right! */
|
---|
1388 | uint32_t u32CR0 = pCtx->cr0;
|
---|
1389 | if ((u32CR0 & (X86_CR0_PG | X86_CR0_PE)) != (X86_CR0_PG | X86_CR0_PE))
|
---|
1390 | {
|
---|
1391 | //Log2(("raw mode refused: %s%s%s\n", (u32CR0 & X86_CR0_PG) ? "" : " !PG", (u32CR0 & X86_CR0_PE) ? "" : " !PE", (u32CR0 & X86_CR0_AM) ? "" : " !AM"));
|
---|
1392 | return EMSTATE_REM;
|
---|
1393 | }
|
---|
1394 |
|
---|
1395 | if (pCtx->cr4 & X86_CR4_PAE)
|
---|
1396 | {
|
---|
1397 | uint32_t u32Dummy, u32Features;
|
---|
1398 |
|
---|
1399 | CPUMGetGuestCpuId(pVCpu, 1, 0, &u32Dummy, &u32Dummy, &u32Dummy, &u32Features);
|
---|
1400 | if (!(u32Features & X86_CPUID_FEATURE_EDX_PAE))
|
---|
1401 | return EMSTATE_REM;
|
---|
1402 | }
|
---|
1403 |
|
---|
1404 | unsigned uSS = pCtx->ss.Sel;
|
---|
1405 | if ( pCtx->eflags.Bits.u1VM
|
---|
1406 | || (uSS & X86_SEL_RPL) == 3)
|
---|
1407 | {
|
---|
1408 | if (!EMIsRawRing3Enabled(pVM))
|
---|
1409 | return EMSTATE_REM;
|
---|
1410 |
|
---|
1411 | if (!(EFlags.u32 & X86_EFL_IF))
|
---|
1412 | {
|
---|
1413 | Log2(("raw mode refused: IF (RawR3)\n"));
|
---|
1414 | return EMSTATE_REM;
|
---|
1415 | }
|
---|
1416 |
|
---|
1417 | if (!(u32CR0 & X86_CR0_WP) && EMIsRawRing0Enabled(pVM))
|
---|
1418 | {
|
---|
1419 | Log2(("raw mode refused: CR0.WP + RawR0\n"));
|
---|
1420 | return EMSTATE_REM;
|
---|
1421 | }
|
---|
1422 | }
|
---|
1423 | else
|
---|
1424 | {
|
---|
1425 | if (!EMIsRawRing0Enabled(pVM))
|
---|
1426 | return EMSTATE_REM;
|
---|
1427 |
|
---|
1428 | if (EMIsRawRing1Enabled(pVM))
|
---|
1429 | {
|
---|
1430 | /* Only ring 0 and 1 supervisor code. */
|
---|
1431 | if ((uSS & X86_SEL_RPL) == 2) /* ring 1 code is moved into ring 2, so we can't support ring-2 in that case. */
|
---|
1432 | {
|
---|
1433 | Log2(("raw r0 mode refused: CPL %d\n", uSS & X86_SEL_RPL));
|
---|
1434 | return EMSTATE_REM;
|
---|
1435 | }
|
---|
1436 | }
|
---|
1437 | /* Only ring 0 supervisor code. */
|
---|
1438 | else if ((uSS & X86_SEL_RPL) != 0)
|
---|
1439 | {
|
---|
1440 | Log2(("raw r0 mode refused: CPL %d\n", uSS & X86_SEL_RPL));
|
---|
1441 | return EMSTATE_REM;
|
---|
1442 | }
|
---|
1443 |
|
---|
1444 | // Let's start with pure 32 bits ring 0 code first
|
---|
1445 | /** @todo What's pure 32-bit mode? flat? */
|
---|
1446 | if ( !(pCtx->ss.Attr.n.u1DefBig)
|
---|
1447 | || !(pCtx->cs.Attr.n.u1DefBig))
|
---|
1448 | {
|
---|
1449 | Log2(("raw r0 mode refused: SS/CS not 32bit\n"));
|
---|
1450 | return EMSTATE_REM;
|
---|
1451 | }
|
---|
1452 |
|
---|
1453 | /* Write protection must be turned on, or else the guest can overwrite our hypervisor code and data. */
|
---|
1454 | if (!(u32CR0 & X86_CR0_WP))
|
---|
1455 | {
|
---|
1456 | Log2(("raw r0 mode refused: CR0.WP=0!\n"));
|
---|
1457 | return EMSTATE_REM;
|
---|
1458 | }
|
---|
1459 |
|
---|
1460 | # ifdef VBOX_WITH_RAW_MODE
|
---|
1461 | if (PATMShouldUseRawMode(pVM, (RTGCPTR)pCtx->eip))
|
---|
1462 | {
|
---|
1463 | Log2(("raw r0 mode forced: patch code\n"));
|
---|
1464 | # ifdef VBOX_WITH_SAFE_STR
|
---|
1465 | Assert(pCtx->tr.Sel);
|
---|
1466 | # endif
|
---|
1467 | return EMSTATE_RAW;
|
---|
1468 | }
|
---|
1469 | # endif /* VBOX_WITH_RAW_MODE */
|
---|
1470 |
|
---|
1471 | # if !defined(VBOX_ALLOW_IF0) && !defined(VBOX_RUN_INTERRUPT_GATE_HANDLERS)
|
---|
1472 | if (!(EFlags.u32 & X86_EFL_IF))
|
---|
1473 | {
|
---|
1474 | ////Log2(("R0: IF=0 VIF=%d %08X\n", eip, pVMeflags));
|
---|
1475 | //Log2(("RR0: Interrupts turned off; fall back to emulation\n"));
|
---|
1476 | return EMSTATE_REM;
|
---|
1477 | }
|
---|
1478 | # endif
|
---|
1479 |
|
---|
1480 | # ifndef VBOX_WITH_RAW_RING1
|
---|
1481 | /** @todo still necessary??? */
|
---|
1482 | if (EFlags.Bits.u2IOPL != 0)
|
---|
1483 | {
|
---|
1484 | Log2(("raw r0 mode refused: IOPL %d\n", EFlags.Bits.u2IOPL));
|
---|
1485 | return EMSTATE_REM;
|
---|
1486 | }
|
---|
1487 | # endif
|
---|
1488 | }
|
---|
1489 |
|
---|
1490 | /*
|
---|
1491 | * Stale hidden selectors means raw-mode is unsafe (being very careful).
|
---|
1492 | */
|
---|
1493 | if (pCtx->cs.fFlags & CPUMSELREG_FLAGS_STALE)
|
---|
1494 | {
|
---|
1495 | Log2(("raw mode refused: stale CS\n"));
|
---|
1496 | return EMSTATE_REM;
|
---|
1497 | }
|
---|
1498 | if (pCtx->ss.fFlags & CPUMSELREG_FLAGS_STALE)
|
---|
1499 | {
|
---|
1500 | Log2(("raw mode refused: stale SS\n"));
|
---|
1501 | return EMSTATE_REM;
|
---|
1502 | }
|
---|
1503 | if (pCtx->ds.fFlags & CPUMSELREG_FLAGS_STALE)
|
---|
1504 | {
|
---|
1505 | Log2(("raw mode refused: stale DS\n"));
|
---|
1506 | return EMSTATE_REM;
|
---|
1507 | }
|
---|
1508 | if (pCtx->es.fFlags & CPUMSELREG_FLAGS_STALE)
|
---|
1509 | {
|
---|
1510 | Log2(("raw mode refused: stale ES\n"));
|
---|
1511 | return EMSTATE_REM;
|
---|
1512 | }
|
---|
1513 | if (pCtx->fs.fFlags & CPUMSELREG_FLAGS_STALE)
|
---|
1514 | {
|
---|
1515 | Log2(("raw mode refused: stale FS\n"));
|
---|
1516 | return EMSTATE_REM;
|
---|
1517 | }
|
---|
1518 | if (pCtx->gs.fFlags & CPUMSELREG_FLAGS_STALE)
|
---|
1519 | {
|
---|
1520 | Log2(("raw mode refused: stale GS\n"));
|
---|
1521 | return EMSTATE_REM;
|
---|
1522 | }
|
---|
1523 |
|
---|
1524 | # ifdef VBOX_WITH_SAFE_STR
|
---|
1525 | if (pCtx->tr.Sel == 0)
|
---|
1526 | {
|
---|
1527 | Log(("Raw mode refused -> TR=0\n"));
|
---|
1528 | return EMSTATE_REM;
|
---|
1529 | }
|
---|
1530 | # endif
|
---|
1531 |
|
---|
1532 | /*Assert(PGMPhysIsA20Enabled(pVCpu));*/
|
---|
1533 | return EMSTATE_RAW;
|
---|
1534 | }
|
---|
1535 |
|
---|
1536 |
|
---|
1537 | /**
|
---|
1538 | * Executes all high priority post execution force actions.
|
---|
1539 | *
|
---|
1540 | * @returns rc or a fatal status code.
|
---|
1541 | *
|
---|
1542 | * @param pVM Pointer to the VM.
|
---|
1543 | * @param pVCpu Pointer to the VMCPU.
|
---|
1544 | * @param rc The current rc.
|
---|
1545 | */
|
---|
1546 | int emR3HighPriorityPostForcedActions(PVM pVM, PVMCPU pVCpu, int rc)
|
---|
1547 | {
|
---|
1548 | VBOXVMM_EM_FF_HIGH(pVCpu, pVM->fGlobalForcedActions, pVCpu->fLocalForcedActions, rc);
|
---|
1549 |
|
---|
1550 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_PDM_CRITSECT))
|
---|
1551 | PDMCritSectBothFF(pVCpu);
|
---|
1552 |
|
---|
1553 | /* Update CR3 (Nested Paging case for HM). */
|
---|
1554 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_HM_UPDATE_CR3))
|
---|
1555 | {
|
---|
1556 | int rc2 = PGMUpdateCR3(pVCpu, CPUMGetGuestCR3(pVCpu));
|
---|
1557 | if (RT_FAILURE(rc2))
|
---|
1558 | return rc2;
|
---|
1559 | Assert(!VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_HM_UPDATE_CR3));
|
---|
1560 | }
|
---|
1561 |
|
---|
1562 | /* Update PAE PDPEs. This must be done *after* PGMUpdateCR3() and used only by the Nested Paging case for HM. */
|
---|
1563 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_HM_UPDATE_PAE_PDPES))
|
---|
1564 | {
|
---|
1565 | if (CPUMIsGuestInPAEMode(pVCpu))
|
---|
1566 | {
|
---|
1567 | PX86PDPE pPdpes = HMGetPaePdpes(pVCpu);
|
---|
1568 | AssertPtr(pPdpes);
|
---|
1569 |
|
---|
1570 | PGMGstUpdatePaePdpes(pVCpu, pPdpes);
|
---|
1571 | Assert(!VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_HM_UPDATE_PAE_PDPES));
|
---|
1572 | }
|
---|
1573 | else
|
---|
1574 | VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_HM_UPDATE_PAE_PDPES);
|
---|
1575 | }
|
---|
1576 |
|
---|
1577 | #ifdef VBOX_WITH_RAW_MODE
|
---|
1578 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_CSAM_PENDING_ACTION))
|
---|
1579 | CSAMR3DoPendingAction(pVM, pVCpu);
|
---|
1580 | #endif
|
---|
1581 |
|
---|
1582 | if (VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY))
|
---|
1583 | {
|
---|
1584 | if ( rc > VINF_EM_NO_MEMORY
|
---|
1585 | && rc <= VINF_EM_LAST)
|
---|
1586 | rc = VINF_EM_NO_MEMORY;
|
---|
1587 | }
|
---|
1588 |
|
---|
1589 | return rc;
|
---|
1590 | }
|
---|
1591 |
|
---|
1592 |
|
---|
1593 | /**
|
---|
1594 | * Executes all pending forced actions.
|
---|
1595 | *
|
---|
1596 | * Forced actions can cause execution delays and execution
|
---|
1597 | * rescheduling. The first we deal with using action priority, so
|
---|
1598 | * that for instance pending timers aren't scheduled and ran until
|
---|
1599 | * right before execution. The rescheduling we deal with using
|
---|
1600 | * return codes. The same goes for VM termination, only in that case
|
---|
1601 | * we exit everything.
|
---|
1602 | *
|
---|
1603 | * @returns VBox status code of equal or greater importance/severity than rc.
|
---|
1604 | * The most important ones are: VINF_EM_RESCHEDULE,
|
---|
1605 | * VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
|
---|
1606 | *
|
---|
1607 | * @param pVM Pointer to the VM.
|
---|
1608 | * @param pVCpu Pointer to the VMCPU.
|
---|
1609 | * @param rc The current rc.
|
---|
1610 | *
|
---|
1611 | */
|
---|
1612 | int emR3ForcedActions(PVM pVM, PVMCPU pVCpu, int rc)
|
---|
1613 | {
|
---|
1614 | STAM_REL_PROFILE_START(&pVCpu->em.s.StatForcedActions, a);
|
---|
1615 | #ifdef VBOX_STRICT
|
---|
1616 | int rcIrq = VINF_SUCCESS;
|
---|
1617 | #endif
|
---|
1618 | int rc2;
|
---|
1619 | #define UPDATE_RC() \
|
---|
1620 | do { \
|
---|
1621 | AssertMsg(rc2 <= 0 || (rc2 >= VINF_EM_FIRST && rc2 <= VINF_EM_LAST), ("Invalid FF return code: %Rra\n", rc2)); \
|
---|
1622 | if (rc2 == VINF_SUCCESS || rc < VINF_SUCCESS) \
|
---|
1623 | break; \
|
---|
1624 | if (!rc || rc2 < rc) \
|
---|
1625 | rc = rc2; \
|
---|
1626 | } while (0)
|
---|
1627 | VBOXVMM_EM_FF_ALL(pVCpu, pVM->fGlobalForcedActions, pVCpu->fLocalForcedActions, rc);
|
---|
1628 |
|
---|
1629 | /*
|
---|
1630 | * Post execution chunk first.
|
---|
1631 | */
|
---|
1632 | if ( VM_FF_IS_PENDING(pVM, VM_FF_NORMAL_PRIORITY_POST_MASK)
|
---|
1633 | || (VMCPU_FF_NORMAL_PRIORITY_POST_MASK && VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_NORMAL_PRIORITY_POST_MASK)) )
|
---|
1634 | {
|
---|
1635 | /*
|
---|
1636 | * EMT Rendezvous (must be serviced before termination).
|
---|
1637 | */
|
---|
1638 | if (VM_FF_IS_PENDING(pVM, VM_FF_EMT_RENDEZVOUS))
|
---|
1639 | {
|
---|
1640 | rc2 = VMMR3EmtRendezvousFF(pVM, pVCpu);
|
---|
1641 | UPDATE_RC();
|
---|
1642 | /** @todo HACK ALERT! The following test is to make sure EM+TM
|
---|
1643 | * thinks the VM is stopped/reset before the next VM state change
|
---|
1644 | * is made. We need a better solution for this, or at least make it
|
---|
1645 | * possible to do: (rc >= VINF_EM_FIRST && rc <=
|
---|
1646 | * VINF_EM_SUSPEND). */
|
---|
1647 | if (RT_UNLIKELY(rc == VINF_EM_SUSPEND || rc == VINF_EM_RESET || rc == VINF_EM_OFF))
|
---|
1648 | {
|
---|
1649 | Log2(("emR3ForcedActions: returns %Rrc\n", rc));
|
---|
1650 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1651 | return rc;
|
---|
1652 | }
|
---|
1653 | }
|
---|
1654 |
|
---|
1655 | /*
|
---|
1656 | * State change request (cleared by vmR3SetStateLocked).
|
---|
1657 | */
|
---|
1658 | if (VM_FF_IS_PENDING(pVM, VM_FF_CHECK_VM_STATE))
|
---|
1659 | {
|
---|
1660 | VMSTATE enmState = VMR3GetState(pVM);
|
---|
1661 | switch (enmState)
|
---|
1662 | {
|
---|
1663 | case VMSTATE_FATAL_ERROR:
|
---|
1664 | case VMSTATE_FATAL_ERROR_LS:
|
---|
1665 | Log2(("emR3ForcedActions: %s -> VINF_EM_SUSPEND\n", VMGetStateName(enmState) ));
|
---|
1666 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1667 | return VINF_EM_SUSPEND;
|
---|
1668 |
|
---|
1669 | case VMSTATE_DESTROYING:
|
---|
1670 | Log2(("emR3ForcedActions: %s -> VINF_EM_TERMINATE\n", VMGetStateName(enmState) ));
|
---|
1671 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1672 | return VINF_EM_TERMINATE;
|
---|
1673 |
|
---|
1674 | default:
|
---|
1675 | AssertMsgFailed(("%s\n", VMGetStateName(enmState)));
|
---|
1676 | }
|
---|
1677 | }
|
---|
1678 |
|
---|
1679 | /*
|
---|
1680 | * Debugger Facility polling.
|
---|
1681 | */
|
---|
1682 | if (VM_FF_IS_PENDING(pVM, VM_FF_DBGF))
|
---|
1683 | {
|
---|
1684 | rc2 = DBGFR3VMMForcedAction(pVM);
|
---|
1685 | UPDATE_RC();
|
---|
1686 | }
|
---|
1687 |
|
---|
1688 | /*
|
---|
1689 | * Postponed reset request.
|
---|
1690 | */
|
---|
1691 | if (VM_FF_TEST_AND_CLEAR(pVM, VM_FF_RESET))
|
---|
1692 | {
|
---|
1693 | rc2 = VMR3Reset(pVM->pUVM);
|
---|
1694 | UPDATE_RC();
|
---|
1695 | }
|
---|
1696 |
|
---|
1697 | #ifdef VBOX_WITH_RAW_MODE
|
---|
1698 | /*
|
---|
1699 | * CSAM page scanning.
|
---|
1700 | */
|
---|
1701 | if ( !VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY)
|
---|
1702 | && VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_CSAM_SCAN_PAGE))
|
---|
1703 | {
|
---|
1704 | PCPUMCTX pCtx = pVCpu->em.s.pCtx;
|
---|
1705 |
|
---|
1706 | /** @todo: check for 16 or 32 bits code! (D bit in the code selector) */
|
---|
1707 | Log(("Forced action VMCPU_FF_CSAM_SCAN_PAGE\n"));
|
---|
1708 |
|
---|
1709 | CSAMR3CheckCodeEx(pVM, pCtx, pCtx->eip);
|
---|
1710 | VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_CSAM_SCAN_PAGE);
|
---|
1711 | }
|
---|
1712 | #endif
|
---|
1713 |
|
---|
1714 | /*
|
---|
1715 | * Out of memory? Putting this after CSAM as it may in theory cause us to run out of memory.
|
---|
1716 | */
|
---|
1717 | if (VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY))
|
---|
1718 | {
|
---|
1719 | rc2 = PGMR3PhysAllocateHandyPages(pVM);
|
---|
1720 | UPDATE_RC();
|
---|
1721 | if (rc == VINF_EM_NO_MEMORY)
|
---|
1722 | return rc;
|
---|
1723 | }
|
---|
1724 |
|
---|
1725 | /* check that we got them all */
|
---|
1726 | AssertCompile(VM_FF_NORMAL_PRIORITY_POST_MASK == (VM_FF_CHECK_VM_STATE | VM_FF_DBGF | VM_FF_RESET | VM_FF_PGM_NO_MEMORY | VM_FF_EMT_RENDEZVOUS));
|
---|
1727 | AssertCompile(VMCPU_FF_NORMAL_PRIORITY_POST_MASK == VM_WHEN_RAW_MODE(VMCPU_FF_CSAM_SCAN_PAGE, 0));
|
---|
1728 | }
|
---|
1729 |
|
---|
1730 | /*
|
---|
1731 | * Normal priority then.
|
---|
1732 | * (Executed in no particular order.)
|
---|
1733 | */
|
---|
1734 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_NORMAL_PRIORITY_MASK, VM_FF_PGM_NO_MEMORY))
|
---|
1735 | {
|
---|
1736 | /*
|
---|
1737 | * PDM Queues are pending.
|
---|
1738 | */
|
---|
1739 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_PDM_QUEUES, VM_FF_PGM_NO_MEMORY))
|
---|
1740 | PDMR3QueueFlushAll(pVM);
|
---|
1741 |
|
---|
1742 | /*
|
---|
1743 | * PDM DMA transfers are pending.
|
---|
1744 | */
|
---|
1745 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_PDM_DMA, VM_FF_PGM_NO_MEMORY))
|
---|
1746 | PDMR3DmaRun(pVM);
|
---|
1747 |
|
---|
1748 | /*
|
---|
1749 | * EMT Rendezvous (make sure they are handled before the requests).
|
---|
1750 | */
|
---|
1751 | if (VM_FF_IS_PENDING(pVM, VM_FF_EMT_RENDEZVOUS))
|
---|
1752 | {
|
---|
1753 | rc2 = VMMR3EmtRendezvousFF(pVM, pVCpu);
|
---|
1754 | UPDATE_RC();
|
---|
1755 | /** @todo HACK ALERT! The following test is to make sure EM+TM
|
---|
1756 | * thinks the VM is stopped/reset before the next VM state change
|
---|
1757 | * is made. We need a better solution for this, or at least make it
|
---|
1758 | * possible to do: (rc >= VINF_EM_FIRST && rc <=
|
---|
1759 | * VINF_EM_SUSPEND). */
|
---|
1760 | if (RT_UNLIKELY(rc == VINF_EM_SUSPEND || rc == VINF_EM_RESET || rc == VINF_EM_OFF))
|
---|
1761 | {
|
---|
1762 | Log2(("emR3ForcedActions: returns %Rrc\n", rc));
|
---|
1763 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1764 | return rc;
|
---|
1765 | }
|
---|
1766 | }
|
---|
1767 |
|
---|
1768 | /*
|
---|
1769 | * Requests from other threads.
|
---|
1770 | */
|
---|
1771 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_REQUEST, VM_FF_PGM_NO_MEMORY))
|
---|
1772 | {
|
---|
1773 | rc2 = VMR3ReqProcessU(pVM->pUVM, VMCPUID_ANY, false /*fPriorityOnly*/);
|
---|
1774 | if (rc2 == VINF_EM_OFF || rc2 == VINF_EM_TERMINATE) /** @todo this shouldn't be necessary */
|
---|
1775 | {
|
---|
1776 | Log2(("emR3ForcedActions: returns %Rrc\n", rc2));
|
---|
1777 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1778 | return rc2;
|
---|
1779 | }
|
---|
1780 | UPDATE_RC();
|
---|
1781 | /** @todo HACK ALERT! The following test is to make sure EM+TM
|
---|
1782 | * thinks the VM is stopped/reset before the next VM state change
|
---|
1783 | * is made. We need a better solution for this, or at least make it
|
---|
1784 | * possible to do: (rc >= VINF_EM_FIRST && rc <=
|
---|
1785 | * VINF_EM_SUSPEND). */
|
---|
1786 | if (RT_UNLIKELY(rc == VINF_EM_SUSPEND || rc == VINF_EM_RESET || rc == VINF_EM_OFF))
|
---|
1787 | {
|
---|
1788 | Log2(("emR3ForcedActions: returns %Rrc\n", rc));
|
---|
1789 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1790 | return rc;
|
---|
1791 | }
|
---|
1792 | }
|
---|
1793 |
|
---|
1794 | #ifdef VBOX_WITH_REM
|
---|
1795 | /* Replay the handler notification changes. */
|
---|
1796 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_REM_HANDLER_NOTIFY, VM_FF_PGM_NO_MEMORY))
|
---|
1797 | {
|
---|
1798 | /* Try not to cause deadlocks. */
|
---|
1799 | if ( pVM->cCpus == 1
|
---|
1800 | || ( !PGMIsLockOwner(pVM)
|
---|
1801 | && !IOMIsLockWriteOwner(pVM))
|
---|
1802 | )
|
---|
1803 | {
|
---|
1804 | EMRemLock(pVM);
|
---|
1805 | REMR3ReplayHandlerNotifications(pVM);
|
---|
1806 | EMRemUnlock(pVM);
|
---|
1807 | }
|
---|
1808 | }
|
---|
1809 | #endif
|
---|
1810 |
|
---|
1811 | /* check that we got them all */
|
---|
1812 | AssertCompile(VM_FF_NORMAL_PRIORITY_MASK == (VM_FF_REQUEST | VM_FF_PDM_QUEUES | VM_FF_PDM_DMA | VM_FF_REM_HANDLER_NOTIFY | VM_FF_EMT_RENDEZVOUS));
|
---|
1813 | }
|
---|
1814 |
|
---|
1815 | /*
|
---|
1816 | * Normal priority then. (per-VCPU)
|
---|
1817 | * (Executed in no particular order.)
|
---|
1818 | */
|
---|
1819 | if ( !VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY)
|
---|
1820 | && VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_NORMAL_PRIORITY_MASK))
|
---|
1821 | {
|
---|
1822 | /*
|
---|
1823 | * Requests from other threads.
|
---|
1824 | */
|
---|
1825 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_REQUEST))
|
---|
1826 | {
|
---|
1827 | rc2 = VMR3ReqProcessU(pVM->pUVM, pVCpu->idCpu, false /*fPriorityOnly*/);
|
---|
1828 | if (rc2 == VINF_EM_OFF || rc2 == VINF_EM_TERMINATE || rc2 == VINF_EM_RESET)
|
---|
1829 | {
|
---|
1830 | Log2(("emR3ForcedActions: returns %Rrc\n", rc2));
|
---|
1831 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1832 | return rc2;
|
---|
1833 | }
|
---|
1834 | UPDATE_RC();
|
---|
1835 | /** @todo HACK ALERT! The following test is to make sure EM+TM
|
---|
1836 | * thinks the VM is stopped/reset before the next VM state change
|
---|
1837 | * is made. We need a better solution for this, or at least make it
|
---|
1838 | * possible to do: (rc >= VINF_EM_FIRST && rc <=
|
---|
1839 | * VINF_EM_SUSPEND). */
|
---|
1840 | if (RT_UNLIKELY(rc == VINF_EM_SUSPEND || rc == VINF_EM_RESET || rc == VINF_EM_OFF))
|
---|
1841 | {
|
---|
1842 | Log2(("emR3ForcedActions: returns %Rrc\n", rc));
|
---|
1843 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1844 | return rc;
|
---|
1845 | }
|
---|
1846 | }
|
---|
1847 |
|
---|
1848 | /*
|
---|
1849 | * Forced unhalting of EMT.
|
---|
1850 | */
|
---|
1851 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_UNHALT))
|
---|
1852 | {
|
---|
1853 | VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_UNHALT);
|
---|
1854 | if (rc == VINF_EM_HALT)
|
---|
1855 | rc = VINF_EM_RESCHEDULE;
|
---|
1856 | else
|
---|
1857 | {
|
---|
1858 | rc2 = VINF_EM_RESCHEDULE;
|
---|
1859 | UPDATE_RC();
|
---|
1860 | }
|
---|
1861 | }
|
---|
1862 |
|
---|
1863 | /* check that we got them all */
|
---|
1864 | Assert(!(VMCPU_FF_NORMAL_PRIORITY_MASK & ~(VMCPU_FF_REQUEST | VMCPU_FF_UNHALT)));
|
---|
1865 | }
|
---|
1866 |
|
---|
1867 | /*
|
---|
1868 | * High priority pre execution chunk last.
|
---|
1869 | * (Executed in ascending priority order.)
|
---|
1870 | */
|
---|
1871 | if ( VM_FF_IS_PENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_MASK)
|
---|
1872 | || VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_HIGH_PRIORITY_PRE_MASK))
|
---|
1873 | {
|
---|
1874 | /*
|
---|
1875 | * Timers before interrupts.
|
---|
1876 | */
|
---|
1877 | if ( VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_TIMER)
|
---|
1878 | && !VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY))
|
---|
1879 | TMR3TimerQueuesDo(pVM);
|
---|
1880 |
|
---|
1881 | /*
|
---|
1882 | * The instruction following an emulated STI should *always* be executed!
|
---|
1883 | *
|
---|
1884 | * Note! We intentionally don't clear VM_FF_INHIBIT_INTERRUPTS here if
|
---|
1885 | * the eip is the same as the inhibited instr address. Before we
|
---|
1886 | * are able to execute this instruction in raw mode (iret to
|
---|
1887 | * guest code) an external interrupt might force a world switch
|
---|
1888 | * again. Possibly allowing a guest interrupt to be dispatched
|
---|
1889 | * in the process. This could break the guest. Sounds very
|
---|
1890 | * unlikely, but such timing sensitive problem are not as rare as
|
---|
1891 | * you might think.
|
---|
1892 | */
|
---|
1893 | if ( VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS)
|
---|
1894 | && !VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY))
|
---|
1895 | {
|
---|
1896 | if (CPUMGetGuestRIP(pVCpu) != EMGetInhibitInterruptsPC(pVCpu))
|
---|
1897 | {
|
---|
1898 | Log(("Clearing VMCPU_FF_INHIBIT_INTERRUPTS at %RGv - successor %RGv\n", (RTGCPTR)CPUMGetGuestRIP(pVCpu), EMGetInhibitInterruptsPC(pVCpu)));
|
---|
1899 | VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS);
|
---|
1900 | }
|
---|
1901 | else
|
---|
1902 | Log(("Leaving VMCPU_FF_INHIBIT_INTERRUPTS set at %RGv\n", (RTGCPTR)CPUMGetGuestRIP(pVCpu)));
|
---|
1903 | }
|
---|
1904 |
|
---|
1905 | /*
|
---|
1906 | * Interrupts.
|
---|
1907 | */
|
---|
1908 | bool fWakeupPending = false;
|
---|
1909 | if ( !VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY)
|
---|
1910 | && !VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INHIBIT_INTERRUPTS)
|
---|
1911 | && (!rc || rc >= VINF_EM_RESCHEDULE_HM)
|
---|
1912 | && !TRPMHasTrap(pVCpu) /* an interrupt could already be scheduled for dispatching in the recompiler. */
|
---|
1913 | #ifdef VBOX_WITH_RAW_MODE
|
---|
1914 | && PATMAreInterruptsEnabled(pVM)
|
---|
1915 | #else
|
---|
1916 | && (pVCpu->em.s.pCtx->eflags.u32 & X86_EFL_IF)
|
---|
1917 | #endif
|
---|
1918 | && !HMR3IsEventPending(pVCpu))
|
---|
1919 | {
|
---|
1920 | Assert(pVCpu->em.s.enmState != EMSTATE_WAIT_SIPI);
|
---|
1921 | if (VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC))
|
---|
1922 | {
|
---|
1923 | /* Note: it's important to make sure the return code from TRPMR3InjectEvent isn't ignored! */
|
---|
1924 | /** @todo this really isn't nice, should properly handle this */
|
---|
1925 | rc2 = TRPMR3InjectEvent(pVM, pVCpu, TRPM_HARDWARE_INT);
|
---|
1926 | if (pVM->em.s.fIemExecutesAll && (rc2 == VINF_EM_RESCHEDULE_REM || rc2 == VINF_EM_RESCHEDULE_HM || rc2 == VINF_EM_RESCHEDULE_RAW))
|
---|
1927 | rc2 = VINF_EM_RESCHEDULE;
|
---|
1928 | #ifdef VBOX_STRICT
|
---|
1929 | rcIrq = rc2;
|
---|
1930 | #endif
|
---|
1931 | UPDATE_RC();
|
---|
1932 | /* Reschedule required: We must not miss the wakeup below! */
|
---|
1933 | fWakeupPending = true;
|
---|
1934 | }
|
---|
1935 | #ifdef VBOX_WITH_REM
|
---|
1936 | /** @todo really ugly; if we entered the hlt state when exiting the recompiler and an interrupt was pending, we previously got stuck in the halted state. */
|
---|
1937 | else if (REMR3QueryPendingInterrupt(pVM, pVCpu) != REM_NO_PENDING_IRQ)
|
---|
1938 | {
|
---|
1939 | Log2(("REMR3QueryPendingInterrupt -> %#x\n", REMR3QueryPendingInterrupt(pVM, pVCpu)));
|
---|
1940 | rc2 = VINF_EM_RESCHEDULE_REM;
|
---|
1941 | UPDATE_RC();
|
---|
1942 | }
|
---|
1943 | #endif
|
---|
1944 | }
|
---|
1945 |
|
---|
1946 | /*
|
---|
1947 | * Allocate handy pages.
|
---|
1948 | */
|
---|
1949 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_PGM_NEED_HANDY_PAGES, VM_FF_PGM_NO_MEMORY))
|
---|
1950 | {
|
---|
1951 | rc2 = PGMR3PhysAllocateHandyPages(pVM);
|
---|
1952 | UPDATE_RC();
|
---|
1953 | }
|
---|
1954 |
|
---|
1955 | /*
|
---|
1956 | * Debugger Facility request.
|
---|
1957 | */
|
---|
1958 | if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_DBGF, VM_FF_PGM_NO_MEMORY))
|
---|
1959 | {
|
---|
1960 | rc2 = DBGFR3VMMForcedAction(pVM);
|
---|
1961 | UPDATE_RC();
|
---|
1962 | }
|
---|
1963 |
|
---|
1964 | /*
|
---|
1965 | * EMT Rendezvous (must be serviced before termination).
|
---|
1966 | */
|
---|
1967 | if ( !fWakeupPending /* don't miss the wakeup from EMSTATE_HALTED! */
|
---|
1968 | && VM_FF_IS_PENDING(pVM, VM_FF_EMT_RENDEZVOUS))
|
---|
1969 | {
|
---|
1970 | rc2 = VMMR3EmtRendezvousFF(pVM, pVCpu);
|
---|
1971 | UPDATE_RC();
|
---|
1972 | /** @todo HACK ALERT! The following test is to make sure EM+TM thinks the VM is
|
---|
1973 | * stopped/reset before the next VM state change is made. We need a better
|
---|
1974 | * solution for this, or at least make it possible to do: (rc >= VINF_EM_FIRST
|
---|
1975 | * && rc >= VINF_EM_SUSPEND). */
|
---|
1976 | if (RT_UNLIKELY(rc == VINF_EM_SUSPEND || rc == VINF_EM_RESET || rc == VINF_EM_OFF))
|
---|
1977 | {
|
---|
1978 | Log2(("emR3ForcedActions: returns %Rrc\n", rc));
|
---|
1979 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1980 | return rc;
|
---|
1981 | }
|
---|
1982 | }
|
---|
1983 |
|
---|
1984 | /*
|
---|
1985 | * State change request (cleared by vmR3SetStateLocked).
|
---|
1986 | */
|
---|
1987 | if ( !fWakeupPending /* don't miss the wakeup from EMSTATE_HALTED! */
|
---|
1988 | && VM_FF_IS_PENDING(pVM, VM_FF_CHECK_VM_STATE))
|
---|
1989 | {
|
---|
1990 | VMSTATE enmState = VMR3GetState(pVM);
|
---|
1991 | switch (enmState)
|
---|
1992 | {
|
---|
1993 | case VMSTATE_FATAL_ERROR:
|
---|
1994 | case VMSTATE_FATAL_ERROR_LS:
|
---|
1995 | Log2(("emR3ForcedActions: %s -> VINF_EM_SUSPEND\n", VMGetStateName(enmState) ));
|
---|
1996 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
1997 | return VINF_EM_SUSPEND;
|
---|
1998 |
|
---|
1999 | case VMSTATE_DESTROYING:
|
---|
2000 | Log2(("emR3ForcedActions: %s -> VINF_EM_TERMINATE\n", VMGetStateName(enmState) ));
|
---|
2001 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
2002 | return VINF_EM_TERMINATE;
|
---|
2003 |
|
---|
2004 | default:
|
---|
2005 | AssertMsgFailed(("%s\n", VMGetStateName(enmState)));
|
---|
2006 | }
|
---|
2007 | }
|
---|
2008 |
|
---|
2009 | /*
|
---|
2010 | * Out of memory? Since most of our fellow high priority actions may cause us
|
---|
2011 | * to run out of memory, we're employing VM_FF_IS_PENDING_EXCEPT and putting this
|
---|
2012 | * at the end rather than the start. Also, VM_FF_TERMINATE has higher priority
|
---|
2013 | * than us since we can terminate without allocating more memory.
|
---|
2014 | */
|
---|
2015 | if (VM_FF_IS_PENDING(pVM, VM_FF_PGM_NO_MEMORY))
|
---|
2016 | {
|
---|
2017 | rc2 = PGMR3PhysAllocateHandyPages(pVM);
|
---|
2018 | UPDATE_RC();
|
---|
2019 | if (rc == VINF_EM_NO_MEMORY)
|
---|
2020 | return rc;
|
---|
2021 | }
|
---|
2022 |
|
---|
2023 | /*
|
---|
2024 | * If the virtual sync clock is still stopped, make TM restart it.
|
---|
2025 | */
|
---|
2026 | if (VM_FF_IS_PENDING(pVM, VM_FF_TM_VIRTUAL_SYNC))
|
---|
2027 | TMR3VirtualSyncFF(pVM, pVCpu);
|
---|
2028 |
|
---|
2029 | #ifdef DEBUG
|
---|
2030 | /*
|
---|
2031 | * Debug, pause the VM.
|
---|
2032 | */
|
---|
2033 | if (VM_FF_IS_PENDING(pVM, VM_FF_DEBUG_SUSPEND))
|
---|
2034 | {
|
---|
2035 | VM_FF_CLEAR(pVM, VM_FF_DEBUG_SUSPEND);
|
---|
2036 | Log(("emR3ForcedActions: returns VINF_EM_SUSPEND\n"));
|
---|
2037 | return VINF_EM_SUSPEND;
|
---|
2038 | }
|
---|
2039 | #endif
|
---|
2040 |
|
---|
2041 | /* check that we got them all */
|
---|
2042 | AssertCompile(VM_FF_HIGH_PRIORITY_PRE_MASK == (VM_FF_TM_VIRTUAL_SYNC | VM_FF_DBGF | VM_FF_CHECK_VM_STATE | VM_FF_DEBUG_SUSPEND | VM_FF_PGM_NEED_HANDY_PAGES | VM_FF_PGM_NO_MEMORY | VM_FF_EMT_RENDEZVOUS));
|
---|
2043 | AssertCompile(VMCPU_FF_HIGH_PRIORITY_PRE_MASK == (VMCPU_FF_TIMER | VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC | VMCPU_FF_PGM_SYNC_CR3 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL | VMCPU_FF_INHIBIT_INTERRUPTS | VM_WHEN_RAW_MODE(VMCPU_FF_SELM_SYNC_TSS | VMCPU_FF_TRPM_SYNC_IDT | VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT, 0)));
|
---|
2044 | }
|
---|
2045 |
|
---|
2046 | #undef UPDATE_RC
|
---|
2047 | Log2(("emR3ForcedActions: returns %Rrc\n", rc));
|
---|
2048 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatForcedActions, a);
|
---|
2049 | Assert(rcIrq == VINF_SUCCESS || rcIrq == rc);
|
---|
2050 | return rc;
|
---|
2051 | }
|
---|
2052 |
|
---|
2053 |
|
---|
2054 | /**
|
---|
2055 | * Check if the preset execution time cap restricts guest execution scheduling.
|
---|
2056 | *
|
---|
2057 | * @returns true if allowed, false otherwise
|
---|
2058 | * @param pVM Pointer to the VM.
|
---|
2059 | * @param pVCpu Pointer to the VMCPU.
|
---|
2060 | */
|
---|
2061 | bool emR3IsExecutionAllowed(PVM pVM, PVMCPU pVCpu)
|
---|
2062 | {
|
---|
2063 | uint64_t u64UserTime, u64KernelTime;
|
---|
2064 |
|
---|
2065 | if ( pVM->uCpuExecutionCap != 100
|
---|
2066 | && RT_SUCCESS(RTThreadGetExecutionTimeMilli(&u64KernelTime, &u64UserTime)))
|
---|
2067 | {
|
---|
2068 | uint64_t u64TimeNow = RTTimeMilliTS();
|
---|
2069 | if (pVCpu->em.s.u64TimeSliceStart + EM_TIME_SLICE < u64TimeNow)
|
---|
2070 | {
|
---|
2071 | /* New time slice. */
|
---|
2072 | pVCpu->em.s.u64TimeSliceStart = u64TimeNow;
|
---|
2073 | pVCpu->em.s.u64TimeSliceStartExec = u64KernelTime + u64UserTime;
|
---|
2074 | pVCpu->em.s.u64TimeSliceExec = 0;
|
---|
2075 | }
|
---|
2076 | pVCpu->em.s.u64TimeSliceExec = u64KernelTime + u64UserTime - pVCpu->em.s.u64TimeSliceStartExec;
|
---|
2077 |
|
---|
2078 | Log2(("emR3IsExecutionAllowed: start=%RX64 startexec=%RX64 exec=%RX64 (cap=%x)\n", pVCpu->em.s.u64TimeSliceStart, pVCpu->em.s.u64TimeSliceStartExec, pVCpu->em.s.u64TimeSliceExec, (EM_TIME_SLICE * pVM->uCpuExecutionCap) / 100));
|
---|
2079 | if (pVCpu->em.s.u64TimeSliceExec >= (EM_TIME_SLICE * pVM->uCpuExecutionCap) / 100)
|
---|
2080 | return false;
|
---|
2081 | }
|
---|
2082 | return true;
|
---|
2083 | }
|
---|
2084 |
|
---|
2085 |
|
---|
2086 | /**
|
---|
2087 | * Execute VM.
|
---|
2088 | *
|
---|
2089 | * This function is the main loop of the VM. The emulation thread
|
---|
2090 | * calls this function when the VM has been successfully constructed
|
---|
2091 | * and we're ready for executing the VM.
|
---|
2092 | *
|
---|
2093 | * Returning from this function means that the VM is turned off or
|
---|
2094 | * suspended (state already saved) and deconstruction is next in line.
|
---|
2095 | *
|
---|
2096 | * All interaction from other thread are done using forced actions
|
---|
2097 | * and signaling of the wait object.
|
---|
2098 | *
|
---|
2099 | * @returns VBox status code, informational status codes may indicate failure.
|
---|
2100 | * @param pVM Pointer to the VM.
|
---|
2101 | * @param pVCpu Pointer to the VMCPU.
|
---|
2102 | */
|
---|
2103 | VMMR3_INT_DECL(int) EMR3ExecuteVM(PVM pVM, PVMCPU pVCpu)
|
---|
2104 | {
|
---|
2105 | Log(("EMR3ExecuteVM: pVM=%p enmVMState=%d (%s) enmState=%d (%s) enmPrevState=%d (%s) fForceRAW=%RTbool\n",
|
---|
2106 | pVM,
|
---|
2107 | pVM->enmVMState, VMR3GetStateName(pVM->enmVMState),
|
---|
2108 | pVCpu->em.s.enmState, emR3GetStateName(pVCpu->em.s.enmState),
|
---|
2109 | pVCpu->em.s.enmPrevState, emR3GetStateName(pVCpu->em.s.enmPrevState),
|
---|
2110 | pVCpu->em.s.fForceRAW));
|
---|
2111 | VM_ASSERT_EMT(pVM);
|
---|
2112 | AssertMsg( pVCpu->em.s.enmState == EMSTATE_NONE
|
---|
2113 | || pVCpu->em.s.enmState == EMSTATE_WAIT_SIPI
|
---|
2114 | || pVCpu->em.s.enmState == EMSTATE_SUSPENDED,
|
---|
2115 | ("%s\n", emR3GetStateName(pVCpu->em.s.enmState)));
|
---|
2116 |
|
---|
2117 | int rc = setjmp(pVCpu->em.s.u.FatalLongJump);
|
---|
2118 | if (rc == 0)
|
---|
2119 | {
|
---|
2120 | /*
|
---|
2121 | * Start the virtual time.
|
---|
2122 | */
|
---|
2123 | TMR3NotifyResume(pVM, pVCpu);
|
---|
2124 |
|
---|
2125 | /*
|
---|
2126 | * The Outer Main Loop.
|
---|
2127 | */
|
---|
2128 | bool fFFDone = false;
|
---|
2129 |
|
---|
2130 | /* Reschedule right away to start in the right state. */
|
---|
2131 | rc = VINF_SUCCESS;
|
---|
2132 |
|
---|
2133 | /* If resuming after a pause or a state load, restore the previous
|
---|
2134 | state or else we'll start executing code. Else, just reschedule. */
|
---|
2135 | if ( pVCpu->em.s.enmState == EMSTATE_SUSPENDED
|
---|
2136 | && ( pVCpu->em.s.enmPrevState == EMSTATE_WAIT_SIPI
|
---|
2137 | || pVCpu->em.s.enmPrevState == EMSTATE_HALTED))
|
---|
2138 | pVCpu->em.s.enmState = pVCpu->em.s.enmPrevState;
|
---|
2139 | else
|
---|
2140 | pVCpu->em.s.enmState = emR3Reschedule(pVM, pVCpu, pVCpu->em.s.pCtx);
|
---|
2141 | pVCpu->em.s.cIemThenRemInstructions = 0;
|
---|
2142 | Log(("EMR3ExecuteVM: enmState=%s\n", emR3GetStateName(pVCpu->em.s.enmState)));
|
---|
2143 |
|
---|
2144 | STAM_REL_PROFILE_ADV_START(&pVCpu->em.s.StatTotal, x);
|
---|
2145 | for (;;)
|
---|
2146 | {
|
---|
2147 | /*
|
---|
2148 | * Before we can schedule anything (we're here because
|
---|
2149 | * scheduling is required) we must service any pending
|
---|
2150 | * forced actions to avoid any pending action causing
|
---|
2151 | * immediate rescheduling upon entering an inner loop
|
---|
2152 | *
|
---|
2153 | * Do forced actions.
|
---|
2154 | */
|
---|
2155 | if ( !fFFDone
|
---|
2156 | && RT_SUCCESS(rc)
|
---|
2157 | && rc != VINF_EM_TERMINATE
|
---|
2158 | && rc != VINF_EM_OFF
|
---|
2159 | && ( VM_FF_IS_PENDING(pVM, VM_FF_ALL_REM_MASK)
|
---|
2160 | || VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_ALL_REM_MASK)))
|
---|
2161 | {
|
---|
2162 | rc = emR3ForcedActions(pVM, pVCpu, rc);
|
---|
2163 | VBOXVMM_EM_FF_ALL_RET(pVCpu, rc);
|
---|
2164 | if ( ( rc == VINF_EM_RESCHEDULE_REM
|
---|
2165 | || rc == VINF_EM_RESCHEDULE_HM)
|
---|
2166 | && pVCpu->em.s.fForceRAW)
|
---|
2167 | rc = VINF_EM_RESCHEDULE_RAW;
|
---|
2168 | }
|
---|
2169 | else if (fFFDone)
|
---|
2170 | fFFDone = false;
|
---|
2171 |
|
---|
2172 | /*
|
---|
2173 | * Now what to do?
|
---|
2174 | */
|
---|
2175 | Log2(("EMR3ExecuteVM: rc=%Rrc\n", rc));
|
---|
2176 | EMSTATE const enmOldState = pVCpu->em.s.enmState;
|
---|
2177 | switch (rc)
|
---|
2178 | {
|
---|
2179 | /*
|
---|
2180 | * Keep doing what we're currently doing.
|
---|
2181 | */
|
---|
2182 | case VINF_SUCCESS:
|
---|
2183 | break;
|
---|
2184 |
|
---|
2185 | /*
|
---|
2186 | * Reschedule - to raw-mode execution.
|
---|
2187 | */
|
---|
2188 | case VINF_EM_RESCHEDULE_RAW:
|
---|
2189 | Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_RAW: %d -> %d (EMSTATE_RAW)\n", enmOldState, EMSTATE_RAW));
|
---|
2190 | Assert(!pVM->em.s.fIemExecutesAll || pVCpu->em.s.enmState != EMSTATE_IEM);
|
---|
2191 | pVCpu->em.s.enmState = EMSTATE_RAW;
|
---|
2192 | break;
|
---|
2193 |
|
---|
2194 | /*
|
---|
2195 | * Reschedule - to hardware accelerated raw-mode execution.
|
---|
2196 | */
|
---|
2197 | case VINF_EM_RESCHEDULE_HM:
|
---|
2198 | Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_HM: %d -> %d (EMSTATE_HM)\n", enmOldState, EMSTATE_HM));
|
---|
2199 | Assert(!pVM->em.s.fIemExecutesAll || pVCpu->em.s.enmState != EMSTATE_IEM);
|
---|
2200 | Assert(!pVCpu->em.s.fForceRAW);
|
---|
2201 | pVCpu->em.s.enmState = EMSTATE_HM;
|
---|
2202 | break;
|
---|
2203 |
|
---|
2204 | /*
|
---|
2205 | * Reschedule - to recompiled execution.
|
---|
2206 | */
|
---|
2207 | case VINF_EM_RESCHEDULE_REM:
|
---|
2208 | Assert(!pVM->em.s.fIemExecutesAll || pVCpu->em.s.enmState != EMSTATE_IEM);
|
---|
2209 | if (HMIsEnabled(pVM))
|
---|
2210 | {
|
---|
2211 | Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_REM: %d -> %d (EMSTATE_IEM_THEN_REM)\n",
|
---|
2212 | enmOldState, EMSTATE_IEM_THEN_REM));
|
---|
2213 | if (pVCpu->em.s.enmState != EMSTATE_IEM_THEN_REM)
|
---|
2214 | {
|
---|
2215 | pVCpu->em.s.enmState = EMSTATE_IEM_THEN_REM;
|
---|
2216 | pVCpu->em.s.cIemThenRemInstructions = 0;
|
---|
2217 | }
|
---|
2218 | }
|
---|
2219 | else
|
---|
2220 | {
|
---|
2221 | Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_REM: %d -> %d (EMSTATE_REM)\n", enmOldState, EMSTATE_REM));
|
---|
2222 | pVCpu->em.s.enmState = EMSTATE_REM;
|
---|
2223 | }
|
---|
2224 | break;
|
---|
2225 |
|
---|
2226 | /*
|
---|
2227 | * Resume.
|
---|
2228 | */
|
---|
2229 | case VINF_EM_RESUME:
|
---|
2230 | Log2(("EMR3ExecuteVM: VINF_EM_RESUME: %d -> VINF_EM_RESCHEDULE\n", enmOldState));
|
---|
2231 | /* Don't reschedule in the halted or wait for SIPI case. */
|
---|
2232 | if ( pVCpu->em.s.enmPrevState == EMSTATE_WAIT_SIPI
|
---|
2233 | || pVCpu->em.s.enmPrevState == EMSTATE_HALTED)
|
---|
2234 | {
|
---|
2235 | pVCpu->em.s.enmState = pVCpu->em.s.enmPrevState;
|
---|
2236 | break;
|
---|
2237 | }
|
---|
2238 | /* fall through and get scheduled. */
|
---|
2239 |
|
---|
2240 | /*
|
---|
2241 | * Reschedule.
|
---|
2242 | */
|
---|
2243 | case VINF_EM_RESCHEDULE:
|
---|
2244 | {
|
---|
2245 | EMSTATE enmState = emR3Reschedule(pVM, pVCpu, pVCpu->em.s.pCtx);
|
---|
2246 | Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE: %d -> %d (%s)\n", enmOldState, enmState, emR3GetStateName(enmState)));
|
---|
2247 | if (pVCpu->em.s.enmState != enmState && enmState == EMSTATE_IEM_THEN_REM)
|
---|
2248 | pVCpu->em.s.cIemThenRemInstructions = 0;
|
---|
2249 | pVCpu->em.s.enmState = enmState;
|
---|
2250 | break;
|
---|
2251 | }
|
---|
2252 |
|
---|
2253 | /*
|
---|
2254 | * Halted.
|
---|
2255 | */
|
---|
2256 | case VINF_EM_HALT:
|
---|
2257 | Log2(("EMR3ExecuteVM: VINF_EM_HALT: %d -> %d\n", enmOldState, EMSTATE_HALTED));
|
---|
2258 | pVCpu->em.s.enmState = EMSTATE_HALTED;
|
---|
2259 | break;
|
---|
2260 |
|
---|
2261 | /*
|
---|
2262 | * Switch to the wait for SIPI state (application processor only)
|
---|
2263 | */
|
---|
2264 | case VINF_EM_WAIT_SIPI:
|
---|
2265 | Assert(pVCpu->idCpu != 0);
|
---|
2266 | Log2(("EMR3ExecuteVM: VINF_EM_WAIT_SIPI: %d -> %d\n", enmOldState, EMSTATE_WAIT_SIPI));
|
---|
2267 | pVCpu->em.s.enmState = EMSTATE_WAIT_SIPI;
|
---|
2268 | break;
|
---|
2269 |
|
---|
2270 |
|
---|
2271 | /*
|
---|
2272 | * Suspend.
|
---|
2273 | */
|
---|
2274 | case VINF_EM_SUSPEND:
|
---|
2275 | Log2(("EMR3ExecuteVM: VINF_EM_SUSPEND: %d -> %d\n", enmOldState, EMSTATE_SUSPENDED));
|
---|
2276 | Assert(enmOldState != EMSTATE_SUSPENDED);
|
---|
2277 | pVCpu->em.s.enmPrevState = enmOldState;
|
---|
2278 | pVCpu->em.s.enmState = EMSTATE_SUSPENDED;
|
---|
2279 | break;
|
---|
2280 |
|
---|
2281 | /*
|
---|
2282 | * Reset.
|
---|
2283 | * We might end up doing a double reset for now, we'll have to clean up the mess later.
|
---|
2284 | */
|
---|
2285 | case VINF_EM_RESET:
|
---|
2286 | {
|
---|
2287 | if (pVCpu->idCpu == 0)
|
---|
2288 | {
|
---|
2289 | EMSTATE enmState = emR3Reschedule(pVM, pVCpu, pVCpu->em.s.pCtx);
|
---|
2290 | Log2(("EMR3ExecuteVM: VINF_EM_RESET: %d -> %d (%s)\n", enmOldState, enmState, emR3GetStateName(enmState)));
|
---|
2291 | if (pVCpu->em.s.enmState != enmState && enmState == EMSTATE_IEM_THEN_REM)
|
---|
2292 | pVCpu->em.s.cIemThenRemInstructions = 0;
|
---|
2293 | pVCpu->em.s.enmState = enmState;
|
---|
2294 | }
|
---|
2295 | else
|
---|
2296 | {
|
---|
2297 | /* All other VCPUs go into the wait for SIPI state. */
|
---|
2298 | pVCpu->em.s.enmState = EMSTATE_WAIT_SIPI;
|
---|
2299 | }
|
---|
2300 | break;
|
---|
2301 | }
|
---|
2302 |
|
---|
2303 | /*
|
---|
2304 | * Power Off.
|
---|
2305 | */
|
---|
2306 | case VINF_EM_OFF:
|
---|
2307 | pVCpu->em.s.enmState = EMSTATE_TERMINATING;
|
---|
2308 | Log2(("EMR3ExecuteVM: returns VINF_EM_OFF (%d -> %d)\n", enmOldState, EMSTATE_TERMINATING));
|
---|
2309 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2310 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2311 | return rc;
|
---|
2312 |
|
---|
2313 | /*
|
---|
2314 | * Terminate the VM.
|
---|
2315 | */
|
---|
2316 | case VINF_EM_TERMINATE:
|
---|
2317 | pVCpu->em.s.enmState = EMSTATE_TERMINATING;
|
---|
2318 | Log(("EMR3ExecuteVM returns VINF_EM_TERMINATE (%d -> %d)\n", enmOldState, EMSTATE_TERMINATING));
|
---|
2319 | if (pVM->enmVMState < VMSTATE_DESTROYING) /* ugly */
|
---|
2320 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2321 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2322 | return rc;
|
---|
2323 |
|
---|
2324 |
|
---|
2325 | /*
|
---|
2326 | * Out of memory, suspend the VM and stuff.
|
---|
2327 | */
|
---|
2328 | case VINF_EM_NO_MEMORY:
|
---|
2329 | Log2(("EMR3ExecuteVM: VINF_EM_NO_MEMORY: %d -> %d\n", enmOldState, EMSTATE_SUSPENDED));
|
---|
2330 | Assert(enmOldState != EMSTATE_SUSPENDED);
|
---|
2331 | pVCpu->em.s.enmPrevState = enmOldState;
|
---|
2332 | pVCpu->em.s.enmState = EMSTATE_SUSPENDED;
|
---|
2333 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2334 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2335 |
|
---|
2336 | rc = VMSetRuntimeError(pVM, VMSETRTERR_FLAGS_SUSPEND, "HostMemoryLow",
|
---|
2337 | N_("Unable to allocate and lock memory. The virtual machine will be paused. Please close applications to free up memory or close the VM"));
|
---|
2338 | if (rc != VINF_EM_SUSPEND)
|
---|
2339 | {
|
---|
2340 | if (RT_SUCCESS_NP(rc))
|
---|
2341 | {
|
---|
2342 | AssertLogRelMsgFailed(("%Rrc\n", rc));
|
---|
2343 | rc = VERR_EM_INTERNAL_ERROR;
|
---|
2344 | }
|
---|
2345 | pVCpu->em.s.enmState = EMSTATE_GURU_MEDITATION;
|
---|
2346 | }
|
---|
2347 | return rc;
|
---|
2348 |
|
---|
2349 | /*
|
---|
2350 | * Guest debug events.
|
---|
2351 | */
|
---|
2352 | case VINF_EM_DBG_STEPPED:
|
---|
2353 | case VINF_EM_DBG_STOP:
|
---|
2354 | case VINF_EM_DBG_BREAKPOINT:
|
---|
2355 | case VINF_EM_DBG_STEP:
|
---|
2356 | if (enmOldState == EMSTATE_RAW)
|
---|
2357 | {
|
---|
2358 | Log2(("EMR3ExecuteVM: %Rrc: %d -> %d\n", rc, enmOldState, EMSTATE_DEBUG_GUEST_RAW));
|
---|
2359 | pVCpu->em.s.enmState = EMSTATE_DEBUG_GUEST_RAW;
|
---|
2360 | }
|
---|
2361 | else if (enmOldState == EMSTATE_HM)
|
---|
2362 | {
|
---|
2363 | Log2(("EMR3ExecuteVM: %Rrc: %d -> %d\n", rc, enmOldState, EMSTATE_DEBUG_GUEST_HM));
|
---|
2364 | pVCpu->em.s.enmState = EMSTATE_DEBUG_GUEST_HM;
|
---|
2365 | }
|
---|
2366 | else if (enmOldState == EMSTATE_REM)
|
---|
2367 | {
|
---|
2368 | Log2(("EMR3ExecuteVM: %Rrc: %d -> %d\n", rc, enmOldState, EMSTATE_DEBUG_GUEST_REM));
|
---|
2369 | pVCpu->em.s.enmState = EMSTATE_DEBUG_GUEST_REM;
|
---|
2370 | }
|
---|
2371 | else
|
---|
2372 | {
|
---|
2373 | Log2(("EMR3ExecuteVM: %Rrc: %d -> %d\n", rc, enmOldState, EMSTATE_DEBUG_GUEST_IEM));
|
---|
2374 | pVCpu->em.s.enmState = EMSTATE_DEBUG_GUEST_IEM;
|
---|
2375 | }
|
---|
2376 | break;
|
---|
2377 |
|
---|
2378 | /*
|
---|
2379 | * Hypervisor debug events.
|
---|
2380 | */
|
---|
2381 | case VINF_EM_DBG_HYPER_STEPPED:
|
---|
2382 | case VINF_EM_DBG_HYPER_BREAKPOINT:
|
---|
2383 | case VINF_EM_DBG_HYPER_ASSERTION:
|
---|
2384 | Log2(("EMR3ExecuteVM: %Rrc: %d -> %d\n", rc, enmOldState, EMSTATE_DEBUG_HYPER));
|
---|
2385 | pVCpu->em.s.enmState = EMSTATE_DEBUG_HYPER;
|
---|
2386 | break;
|
---|
2387 |
|
---|
2388 | /*
|
---|
2389 | * Triple fault.
|
---|
2390 | */
|
---|
2391 | case VINF_EM_TRIPLE_FAULT:
|
---|
2392 | if (!pVM->em.s.fGuruOnTripleFault)
|
---|
2393 | {
|
---|
2394 | Log(("EMR3ExecuteVM: VINF_EM_TRIPLE_FAULT: CPU reset...\n"));
|
---|
2395 | Assert(pVM->cCpus == 1);
|
---|
2396 | REMR3Reset(pVM);
|
---|
2397 | PGMR3ResetCpu(pVM, pVCpu);
|
---|
2398 | TRPMR3ResetCpu(pVCpu);
|
---|
2399 | CPUMR3ResetCpu(pVM, pVCpu);
|
---|
2400 | EMR3ResetCpu(pVCpu);
|
---|
2401 | HMR3ResetCpu(pVCpu);
|
---|
2402 | pVCpu->em.s.enmState = emR3Reschedule(pVM, pVCpu, pVCpu->em.s.pCtx);
|
---|
2403 | Log2(("EMR3ExecuteVM: VINF_EM_TRIPLE_FAULT: %d -> %d\n", rc, enmOldState, pVCpu->em.s.enmState));
|
---|
2404 | break;
|
---|
2405 | }
|
---|
2406 | /* Else fall through and trigger a guru. */
|
---|
2407 | case VERR_VMM_RING0_ASSERTION:
|
---|
2408 | Log(("EMR3ExecuteVM: %Rrc: %d -> %d (EMSTATE_GURU_MEDITATION)\n", rc, enmOldState, EMSTATE_GURU_MEDITATION));
|
---|
2409 | pVCpu->em.s.enmState = EMSTATE_GURU_MEDITATION;
|
---|
2410 | break;
|
---|
2411 |
|
---|
2412 | /*
|
---|
2413 | * Any error code showing up here other than the ones we
|
---|
2414 | * know and process above are considered to be FATAL.
|
---|
2415 | *
|
---|
2416 | * Unknown warnings and informational status codes are also
|
---|
2417 | * included in this.
|
---|
2418 | */
|
---|
2419 | default:
|
---|
2420 | if (RT_SUCCESS_NP(rc))
|
---|
2421 | {
|
---|
2422 | AssertMsgFailed(("Unexpected warning or informational status code %Rra!\n", rc));
|
---|
2423 | rc = VERR_EM_INTERNAL_ERROR;
|
---|
2424 | }
|
---|
2425 | Log(("EMR3ExecuteVM: %Rrc: %d -> %d (EMSTATE_GURU_MEDITATION)\n", rc, enmOldState, EMSTATE_GURU_MEDITATION));
|
---|
2426 | pVCpu->em.s.enmState = EMSTATE_GURU_MEDITATION;
|
---|
2427 | break;
|
---|
2428 | }
|
---|
2429 |
|
---|
2430 | /*
|
---|
2431 | * Act on state transition.
|
---|
2432 | */
|
---|
2433 | EMSTATE const enmNewState = pVCpu->em.s.enmState;
|
---|
2434 | if (enmOldState != enmNewState)
|
---|
2435 | {
|
---|
2436 | VBOXVMM_EM_STATE_CHANGED(pVCpu, enmOldState, enmNewState, rc);
|
---|
2437 |
|
---|
2438 | /* Clear MWait flags. */
|
---|
2439 | if ( enmOldState == EMSTATE_HALTED
|
---|
2440 | && (pVCpu->em.s.MWait.fWait & EMMWAIT_FLAG_ACTIVE)
|
---|
2441 | && ( enmNewState == EMSTATE_RAW
|
---|
2442 | || enmNewState == EMSTATE_HM
|
---|
2443 | || enmNewState == EMSTATE_REM
|
---|
2444 | || enmNewState == EMSTATE_IEM_THEN_REM
|
---|
2445 | || enmNewState == EMSTATE_DEBUG_GUEST_RAW
|
---|
2446 | || enmNewState == EMSTATE_DEBUG_GUEST_HM
|
---|
2447 | || enmNewState == EMSTATE_DEBUG_GUEST_IEM
|
---|
2448 | || enmNewState == EMSTATE_DEBUG_GUEST_REM) )
|
---|
2449 | {
|
---|
2450 | LogFlow(("EMR3ExecuteVM: Clearing MWAIT\n"));
|
---|
2451 | pVCpu->em.s.MWait.fWait &= ~(EMMWAIT_FLAG_ACTIVE | EMMWAIT_FLAG_BREAKIRQIF0);
|
---|
2452 | }
|
---|
2453 | }
|
---|
2454 | else
|
---|
2455 | VBOXVMM_EM_STATE_UNCHANGED(pVCpu, enmNewState, rc);
|
---|
2456 |
|
---|
2457 | STAM_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x); /* (skip this in release) */
|
---|
2458 | STAM_PROFILE_ADV_START(&pVCpu->em.s.StatTotal, x);
|
---|
2459 |
|
---|
2460 | /*
|
---|
2461 | * Act on the new state.
|
---|
2462 | */
|
---|
2463 | switch (enmNewState)
|
---|
2464 | {
|
---|
2465 | /*
|
---|
2466 | * Execute raw.
|
---|
2467 | */
|
---|
2468 | case EMSTATE_RAW:
|
---|
2469 | #ifdef VBOX_WITH_RAW_MODE
|
---|
2470 | rc = emR3RawExecute(pVM, pVCpu, &fFFDone);
|
---|
2471 | #else
|
---|
2472 | AssertLogRelMsgFailed(("%Rrc\n", rc));
|
---|
2473 | rc = VERR_EM_INTERNAL_ERROR;
|
---|
2474 | #endif
|
---|
2475 | break;
|
---|
2476 |
|
---|
2477 | /*
|
---|
2478 | * Execute hardware accelerated raw.
|
---|
2479 | */
|
---|
2480 | case EMSTATE_HM:
|
---|
2481 | rc = emR3HmExecute(pVM, pVCpu, &fFFDone);
|
---|
2482 | break;
|
---|
2483 |
|
---|
2484 | /*
|
---|
2485 | * Execute recompiled.
|
---|
2486 | */
|
---|
2487 | case EMSTATE_REM:
|
---|
2488 | rc = emR3RemExecute(pVM, pVCpu, &fFFDone);
|
---|
2489 | Log2(("EMR3ExecuteVM: emR3RemExecute -> %Rrc\n", rc));
|
---|
2490 | break;
|
---|
2491 |
|
---|
2492 | /*
|
---|
2493 | * Execute in the interpreter.
|
---|
2494 | */
|
---|
2495 | case EMSTATE_IEM:
|
---|
2496 | {
|
---|
2497 | #if 0 /* For testing purposes. */
|
---|
2498 | STAM_PROFILE_START(&pVCpu->em.s.StatHmExec, x1);
|
---|
2499 | rc = VBOXSTRICTRC_TODO(EMR3HmSingleInstruction(pVM, pVCpu, EM_ONE_INS_FLAGS_RIP_CHANGE));
|
---|
2500 | STAM_PROFILE_STOP(&pVCpu->em.s.StatHmExec, x1);
|
---|
2501 | if (rc == VINF_EM_DBG_STEPPED || rc == VINF_EM_RESCHEDULE_HM || rc == VINF_EM_RESCHEDULE_REM || rc == VINF_EM_RESCHEDULE_RAW)
|
---|
2502 | rc = VINF_SUCCESS;
|
---|
2503 | else if (rc == VERR_EM_CANNOT_EXEC_GUEST)
|
---|
2504 | #endif
|
---|
2505 | rc = VBOXSTRICTRC_TODO(IEMExecLots(pVCpu));
|
---|
2506 | if (pVM->em.s.fIemExecutesAll)
|
---|
2507 | {
|
---|
2508 | Assert(rc != VINF_EM_RESCHEDULE_REM);
|
---|
2509 | Assert(rc != VINF_EM_RESCHEDULE_RAW);
|
---|
2510 | Assert(rc != VINF_EM_RESCHEDULE_HM);
|
---|
2511 | }
|
---|
2512 | fFFDone = false;
|
---|
2513 | break;
|
---|
2514 | }
|
---|
2515 |
|
---|
2516 | /*
|
---|
2517 | * Execute in IEM, hoping we can quickly switch aback to HM
|
---|
2518 | * or RAW execution. If our hopes fail, we go to REM.
|
---|
2519 | */
|
---|
2520 | case EMSTATE_IEM_THEN_REM:
|
---|
2521 | {
|
---|
2522 | STAM_PROFILE_START(&pVCpu->em.s.StatIEMThenREM, pIemThenRem);
|
---|
2523 | rc = VBOXSTRICTRC_TODO(emR3ExecuteIemThenRem(pVM, pVCpu, &fFFDone));
|
---|
2524 | STAM_PROFILE_STOP(&pVCpu->em.s.StatIEMThenREM, pIemThenRem);
|
---|
2525 | break;
|
---|
2526 | }
|
---|
2527 |
|
---|
2528 | /*
|
---|
2529 | * Application processor execution halted until SIPI.
|
---|
2530 | */
|
---|
2531 | case EMSTATE_WAIT_SIPI:
|
---|
2532 | /* no break */
|
---|
2533 | /*
|
---|
2534 | * hlt - execution halted until interrupt.
|
---|
2535 | */
|
---|
2536 | case EMSTATE_HALTED:
|
---|
2537 | {
|
---|
2538 | STAM_REL_PROFILE_START(&pVCpu->em.s.StatHalted, y);
|
---|
2539 | /* If HM (or someone else) store a pending interrupt in
|
---|
2540 | TRPM, it must be dispatched ASAP without any halting.
|
---|
2541 | Anything pending in TRPM has been accepted and the CPU
|
---|
2542 | should already be the right state to receive it. */
|
---|
2543 | if (TRPMHasTrap(pVCpu))
|
---|
2544 | rc = VINF_EM_RESCHEDULE;
|
---|
2545 | /* MWAIT has a special extension where it's woken up when
|
---|
2546 | an interrupt is pending even when IF=0. */
|
---|
2547 | else if ( (pVCpu->em.s.MWait.fWait & (EMMWAIT_FLAG_ACTIVE | EMMWAIT_FLAG_BREAKIRQIF0))
|
---|
2548 | == (EMMWAIT_FLAG_ACTIVE | EMMWAIT_FLAG_BREAKIRQIF0))
|
---|
2549 | {
|
---|
2550 | rc = VMR3WaitHalted(pVM, pVCpu, false /*fIgnoreInterrupts*/);
|
---|
2551 | if ( rc == VINF_SUCCESS
|
---|
2552 | && VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_APIC | VMCPU_FF_INTERRUPT_PIC
|
---|
2553 | | VMCPU_FF_INTERRUPT_NMI | VMCPU_FF_INTERRUPT_SMI | VMCPU_FF_UNHALT))
|
---|
2554 | {
|
---|
2555 | Log(("EMR3ExecuteVM: Triggering reschedule on pending IRQ after MWAIT\n"));
|
---|
2556 | rc = VINF_EM_RESCHEDULE;
|
---|
2557 | }
|
---|
2558 | }
|
---|
2559 | else
|
---|
2560 | {
|
---|
2561 | rc = VMR3WaitHalted(pVM, pVCpu, !(CPUMGetGuestEFlags(pVCpu) & X86_EFL_IF));
|
---|
2562 | if ( rc == VINF_SUCCESS
|
---|
2563 | && VMCPU_FF_IS_PENDING(pVCpu, VMCPU_FF_INTERRUPT_NMI | VMCPU_FF_INTERRUPT_SMI | VMCPU_FF_UNHALT))
|
---|
2564 | {
|
---|
2565 | Log(("EMR3ExecuteVM: Triggering reschedule on pending NMI/SMI/UNHALT after HLT\n"));
|
---|
2566 | rc = VINF_EM_RESCHEDULE;
|
---|
2567 | }
|
---|
2568 | }
|
---|
2569 |
|
---|
2570 | STAM_REL_PROFILE_STOP(&pVCpu->em.s.StatHalted, y);
|
---|
2571 | break;
|
---|
2572 | }
|
---|
2573 |
|
---|
2574 | /*
|
---|
2575 | * Suspended - return to VM.cpp.
|
---|
2576 | */
|
---|
2577 | case EMSTATE_SUSPENDED:
|
---|
2578 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2579 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2580 | Log(("EMR3ExecuteVM: actually returns %Rrc (state %s / %s)\n", rc, emR3GetStateName(pVCpu->em.s.enmState), emR3GetStateName(enmOldState)));
|
---|
2581 | return VINF_EM_SUSPEND;
|
---|
2582 |
|
---|
2583 | /*
|
---|
2584 | * Debugging in the guest.
|
---|
2585 | */
|
---|
2586 | case EMSTATE_DEBUG_GUEST_RAW:
|
---|
2587 | case EMSTATE_DEBUG_GUEST_HM:
|
---|
2588 | case EMSTATE_DEBUG_GUEST_IEM:
|
---|
2589 | case EMSTATE_DEBUG_GUEST_REM:
|
---|
2590 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2591 | rc = VBOXSTRICTRC_TODO(emR3Debug(pVM, pVCpu, rc));
|
---|
2592 | TMR3NotifyResume(pVM, pVCpu);
|
---|
2593 | Log2(("EMR3ExecuteVM: emR3Debug -> %Rrc (state %d)\n", rc, pVCpu->em.s.enmState));
|
---|
2594 | break;
|
---|
2595 |
|
---|
2596 | /*
|
---|
2597 | * Debugging in the hypervisor.
|
---|
2598 | */
|
---|
2599 | case EMSTATE_DEBUG_HYPER:
|
---|
2600 | {
|
---|
2601 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2602 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2603 |
|
---|
2604 | rc = VBOXSTRICTRC_TODO(emR3Debug(pVM, pVCpu, rc));
|
---|
2605 | Log2(("EMR3ExecuteVM: emR3Debug -> %Rrc (state %d)\n", rc, pVCpu->em.s.enmState));
|
---|
2606 | if (rc != VINF_SUCCESS)
|
---|
2607 | {
|
---|
2608 | if (rc == VINF_EM_OFF || rc == VINF_EM_TERMINATE)
|
---|
2609 | pVCpu->em.s.enmState = EMSTATE_TERMINATING;
|
---|
2610 | else
|
---|
2611 | {
|
---|
2612 | /* switch to guru meditation mode */
|
---|
2613 | pVCpu->em.s.enmState = EMSTATE_GURU_MEDITATION;
|
---|
2614 | VMMR3FatalDump(pVM, pVCpu, rc);
|
---|
2615 | }
|
---|
2616 | Log(("EMR3ExecuteVM: actually returns %Rrc (state %s / %s)\n", rc, emR3GetStateName(pVCpu->em.s.enmState), emR3GetStateName(enmOldState)));
|
---|
2617 | return rc;
|
---|
2618 | }
|
---|
2619 |
|
---|
2620 | STAM_REL_PROFILE_ADV_START(&pVCpu->em.s.StatTotal, x);
|
---|
2621 | TMR3NotifyResume(pVM, pVCpu);
|
---|
2622 | break;
|
---|
2623 | }
|
---|
2624 |
|
---|
2625 | /*
|
---|
2626 | * Guru meditation takes place in the debugger.
|
---|
2627 | */
|
---|
2628 | case EMSTATE_GURU_MEDITATION:
|
---|
2629 | {
|
---|
2630 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2631 | VMMR3FatalDump(pVM, pVCpu, rc);
|
---|
2632 | emR3Debug(pVM, pVCpu, rc);
|
---|
2633 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2634 | Log(("EMR3ExecuteVM: actually returns %Rrc (state %s / %s)\n", rc, emR3GetStateName(pVCpu->em.s.enmState), emR3GetStateName(enmOldState)));
|
---|
2635 | return rc;
|
---|
2636 | }
|
---|
2637 |
|
---|
2638 | /*
|
---|
2639 | * The states we don't expect here.
|
---|
2640 | */
|
---|
2641 | case EMSTATE_NONE:
|
---|
2642 | case EMSTATE_TERMINATING:
|
---|
2643 | default:
|
---|
2644 | AssertMsgFailed(("EMR3ExecuteVM: Invalid state %d!\n", pVCpu->em.s.enmState));
|
---|
2645 | pVCpu->em.s.enmState = EMSTATE_GURU_MEDITATION;
|
---|
2646 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2647 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2648 | Log(("EMR3ExecuteVM: actually returns %Rrc (state %s / %s)\n", rc, emR3GetStateName(pVCpu->em.s.enmState), emR3GetStateName(enmOldState)));
|
---|
2649 | return VERR_EM_INTERNAL_ERROR;
|
---|
2650 | }
|
---|
2651 | } /* The Outer Main Loop */
|
---|
2652 | }
|
---|
2653 | else
|
---|
2654 | {
|
---|
2655 | /*
|
---|
2656 | * Fatal error.
|
---|
2657 | */
|
---|
2658 | Log(("EMR3ExecuteVM: returns %Rrc because of longjmp / fatal error; (state %s / %s)\n", rc, emR3GetStateName(pVCpu->em.s.enmState), emR3GetStateName(pVCpu->em.s.enmPrevState)));
|
---|
2659 | TMR3NotifySuspend(pVM, pVCpu);
|
---|
2660 | VMMR3FatalDump(pVM, pVCpu, rc);
|
---|
2661 | emR3Debug(pVM, pVCpu, rc);
|
---|
2662 | STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatTotal, x);
|
---|
2663 | /** @todo change the VM state! */
|
---|
2664 | return rc;
|
---|
2665 | }
|
---|
2666 |
|
---|
2667 | /* (won't ever get here). */
|
---|
2668 | AssertFailed();
|
---|
2669 | }
|
---|
2670 |
|
---|
2671 | /**
|
---|
2672 | * Notify EM of a state change (used by FTM)
|
---|
2673 | *
|
---|
2674 | * @param pVM Pointer to the VM.
|
---|
2675 | */
|
---|
2676 | VMMR3_INT_DECL(int) EMR3NotifySuspend(PVM pVM)
|
---|
2677 | {
|
---|
2678 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
2679 |
|
---|
2680 | TMR3NotifySuspend(pVM, pVCpu); /* Stop the virtual time. */
|
---|
2681 | pVCpu->em.s.enmPrevState = pVCpu->em.s.enmState;
|
---|
2682 | pVCpu->em.s.enmState = EMSTATE_SUSPENDED;
|
---|
2683 | return VINF_SUCCESS;
|
---|
2684 | }
|
---|
2685 |
|
---|
2686 | /**
|
---|
2687 | * Notify EM of a state change (used by FTM)
|
---|
2688 | *
|
---|
2689 | * @param pVM Pointer to the VM.
|
---|
2690 | */
|
---|
2691 | VMMR3_INT_DECL(int) EMR3NotifyResume(PVM pVM)
|
---|
2692 | {
|
---|
2693 | PVMCPU pVCpu = VMMGetCpu(pVM);
|
---|
2694 | EMSTATE enmCurState = pVCpu->em.s.enmState;
|
---|
2695 |
|
---|
2696 | TMR3NotifyResume(pVM, pVCpu); /* Resume the virtual time. */
|
---|
2697 | pVCpu->em.s.enmState = pVCpu->em.s.enmPrevState;
|
---|
2698 | pVCpu->em.s.enmPrevState = enmCurState;
|
---|
2699 | return VINF_SUCCESS;
|
---|
2700 | }
|
---|