VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/EM.cpp@ 47538

Last change on this file since 47538 was 47444, checked in by vboxsync, 11 years ago

IEM,HM,PGM: Started on string I/O optimizations using IEM (disabled). Cleaned up confusing status code handling in hmR0VmxCheckForceFlags (involving PGM) as well as some use of incorrect doxygen groups (@name).

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette