VirtualBox

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

Last change on this file since 13813 was 13813, checked in by vboxsync, 16 years ago

#1865: Final VMM cleanups.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 151.6 KB
Line 
1/* $Id: EM.cpp 13813 2008-11-04 21:55:34Z vboxsync $ */
2/** @file
3 * EM - Execution Monitor / Manager.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22/** @page pg_em EM - The Execution Monitor / Manager
23 *
24 * The Execution Monitor/Manager is responsible for running the VM, scheduling
25 * the right kind of execution (Raw-mode, Hardware Assisted, Recompiled or
26 * Interpreted), and keeping the CPU states in sync. The function
27 * EMR3ExecuteVM() is the 'main-loop' of the VM, while each of the execution
28 * modes has different inner loops (emR3RawExecute, emR3HwAccExecute, and
29 * emR3RemExecute).
30 *
31 * The interpreted execution is only used to avoid switching between
32 * raw-mode/hwaccm and the recompiler when fielding virtualization traps/faults.
33 * The interpretation is thus implemented as part of EM.
34 *
35 * @see grp_em
36 */
37
38/*******************************************************************************
39* Header Files *
40*******************************************************************************/
41#define LOG_GROUP LOG_GROUP_EM
42#include <VBox/em.h>
43#include <VBox/vmm.h>
44#ifdef VBOX_WITH_VMI
45# include <VBox/parav.h>
46#endif
47#include <VBox/patm.h>
48#include <VBox/csam.h>
49#include <VBox/selm.h>
50#include <VBox/trpm.h>
51#include <VBox/iom.h>
52#include <VBox/dbgf.h>
53#include <VBox/pgm.h>
54#include <VBox/rem.h>
55#include <VBox/tm.h>
56#include <VBox/mm.h>
57#include <VBox/ssm.h>
58#include <VBox/pdmapi.h>
59#include <VBox/pdmcritsect.h>
60#include <VBox/pdmqueue.h>
61#include <VBox/hwaccm.h>
62#include <VBox/patm.h>
63#include "EMInternal.h"
64#include <VBox/vm.h>
65#include <VBox/cpumdis.h>
66#include <VBox/dis.h>
67#include <VBox/disopcode.h>
68#include <VBox/dbgf.h>
69
70#include <VBox/log.h>
71#include <iprt/thread.h>
72#include <iprt/assert.h>
73#include <iprt/asm.h>
74#include <iprt/semaphore.h>
75#include <iprt/string.h>
76#include <iprt/avl.h>
77#include <iprt/stream.h>
78#include <VBox/param.h>
79#include <VBox/err.h>
80
81
82/*******************************************************************************
83* Internal Functions *
84*******************************************************************************/
85static DECLCALLBACK(int) emR3Save(PVM pVM, PSSMHANDLE pSSM);
86static DECLCALLBACK(int) emR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version);
87static int emR3Debug(PVM pVM, int rc);
88static int emR3RemStep(PVM pVM);
89static int emR3RemExecute(PVM pVM, bool *pfFFDone);
90static int emR3RawResumeHyper(PVM pVM);
91static int emR3RawStep(PVM pVM);
92DECLINLINE(int) emR3RawHandleRC(PVM pVM, PCPUMCTX pCtx, int rc);
93DECLINLINE(int) emR3RawUpdateForceFlag(PVM pVM, PCPUMCTX pCtx, int rc);
94static int emR3RawForcedActions(PVM pVM, PCPUMCTX pCtx);
95static int emR3RawExecute(PVM pVM, bool *pfFFDone);
96DECLINLINE(int) emR3RawExecuteInstruction(PVM pVM, const char *pszPrefix, int rcGC = VINF_SUCCESS);
97static int emR3HighPriorityPostForcedActions(PVM pVM, int rc);
98static int emR3ForcedActions(PVM pVM, int rc);
99static int emR3RawGuestTrap(PVM pVM);
100static int emR3PatchTrap(PVM pVM, PCPUMCTX pCtx, int gcret);
101
102
103/**
104 * Initializes the EM.
105 *
106 * @returns VBox status code.
107 * @param pVM The VM to operate on.
108 */
109VMMR3DECL(int) EMR3Init(PVM pVM)
110{
111 LogFlow(("EMR3Init\n"));
112 /*
113 * Assert alignment and sizes.
114 */
115 AssertRelease(!(RT_OFFSETOF(VM, em.s) & 31));
116 AssertRelease(sizeof(pVM->em.s) <= sizeof(pVM->em.padding));
117 AssertReleaseMsg(sizeof(pVM->em.s.u.FatalLongJump) <= sizeof(pVM->em.s.u.achPaddingFatalLongJump),
118 ("%d bytes, padding %d\n", sizeof(pVM->em.s.u.FatalLongJump), sizeof(pVM->em.s.u.achPaddingFatalLongJump)));
119
120 /*
121 * Init the structure.
122 */
123 pVM->em.s.offVM = RT_OFFSETOF(VM, em.s);
124 int rc = CFGMR3QueryBool(CFGMR3GetRoot(pVM), "RawR3Enabled", &pVM->fRawR3Enabled);
125 if (VBOX_FAILURE(rc))
126 pVM->fRawR3Enabled = true;
127 rc = CFGMR3QueryBool(CFGMR3GetRoot(pVM), "RawR0Enabled", &pVM->fRawR0Enabled);
128 if (VBOX_FAILURE(rc))
129 pVM->fRawR0Enabled = true;
130 Log(("EMR3Init: fRawR3Enabled=%d fRawR0Enabled=%d\n", pVM->fRawR3Enabled, pVM->fRawR0Enabled));
131 pVM->em.s.enmState = EMSTATE_NONE;
132 pVM->em.s.fForceRAW = false;
133
134 pVM->em.s.pCtx = CPUMQueryGuestCtxPtr(pVM);
135 pVM->em.s.pPatmGCState = PATMR3QueryGCStateHC(pVM);
136 AssertMsg(pVM->em.s.pPatmGCState, ("PATMR3QueryGCStateHC failed!\n"));
137
138 /*
139 * Saved state.
140 */
141 rc = SSMR3RegisterInternal(pVM, "em", 0, EM_SAVED_STATE_VERSION, 16,
142 NULL, emR3Save, NULL,
143 NULL, emR3Load, NULL);
144 if (VBOX_FAILURE(rc))
145 return rc;
146
147 /*
148 * Statistics.
149 */
150#ifdef VBOX_WITH_STATISTICS
151 PEMSTATS pStats;
152 rc = MMHyperAlloc(pVM, sizeof(*pStats), 0, MM_TAG_EM, (void **)&pStats);
153 if (VBOX_FAILURE(rc))
154 return rc;
155 pVM->em.s.pStatsR3 = pStats;
156 pVM->em.s.pStatsR0 = MMHyperR3ToR0(pVM, pStats);
157 pVM->em.s.pStatsRC = MMHyperR3ToRC(pVM, pStats);
158
159 STAM_REG(pVM, &pStats->StatRZEmulate, STAMTYPE_PROFILE, "/EM/RZ/Interpret", STAMUNIT_TICKS_PER_CALL, "Profiling of EMInterpretInstruction.");
160 STAM_REG(pVM, &pStats->StatR3Emulate, STAMTYPE_PROFILE, "/EM/R3/Interpret", STAMUNIT_TICKS_PER_CALL, "Profiling of EMInterpretInstruction.");
161
162 STAM_REG(pVM, &pStats->StatRZInterpretSucceeded, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success", STAMUNIT_OCCURENCES, "The number of times an instruction was successfully interpreted.");
163 STAM_REG(pVM, &pStats->StatR3InterpretSucceeded, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success", STAMUNIT_OCCURENCES, "The number of times an instruction was successfully interpreted.");
164
165 STAM_REG_USED(pVM, &pStats->StatRZAnd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/And", STAMUNIT_OCCURENCES, "The number of times AND was successfully interpreted.");
166 STAM_REG_USED(pVM, &pStats->StatR3And, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/And", STAMUNIT_OCCURENCES, "The number of times AND was successfully interpreted.");
167 STAM_REG_USED(pVM, &pStats->StatRZAdd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Add", STAMUNIT_OCCURENCES, "The number of times ADD was successfully interpreted.");
168 STAM_REG_USED(pVM, &pStats->StatR3Add, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Add", STAMUNIT_OCCURENCES, "The number of times ADD was successfully interpreted.");
169 STAM_REG_USED(pVM, &pStats->StatRZAdc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Adc", STAMUNIT_OCCURENCES, "The number of times ADC was successfully interpreted.");
170 STAM_REG_USED(pVM, &pStats->StatR3Adc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Adc", STAMUNIT_OCCURENCES, "The number of times ADC was successfully interpreted.");
171 STAM_REG_USED(pVM, &pStats->StatRZSub, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Sub", STAMUNIT_OCCURENCES, "The number of times SUB was successfully interpreted.");
172 STAM_REG_USED(pVM, &pStats->StatR3Sub, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Sub", STAMUNIT_OCCURENCES, "The number of times SUB was successfully interpreted.");
173 STAM_REG_USED(pVM, &pStats->StatRZCpuId, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/CpuId", STAMUNIT_OCCURENCES, "The number of times CPUID was successfully interpreted.");
174 STAM_REG_USED(pVM, &pStats->StatR3CpuId, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/CpuId", STAMUNIT_OCCURENCES, "The number of times CPUID was successfully interpreted.");
175 STAM_REG_USED(pVM, &pStats->StatRZDec, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Dec", STAMUNIT_OCCURENCES, "The number of times DEC was successfully interpreted.");
176 STAM_REG_USED(pVM, &pStats->StatR3Dec, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Dec", STAMUNIT_OCCURENCES, "The number of times DEC was successfully interpreted.");
177 STAM_REG_USED(pVM, &pStats->StatRZHlt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Hlt", STAMUNIT_OCCURENCES, "The number of times HLT was successfully interpreted.");
178 STAM_REG_USED(pVM, &pStats->StatR3Hlt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Hlt", STAMUNIT_OCCURENCES, "The number of times HLT was successfully interpreted.");
179 STAM_REG_USED(pVM, &pStats->StatRZInc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Inc", STAMUNIT_OCCURENCES, "The number of times INC was successfully interpreted.");
180 STAM_REG_USED(pVM, &pStats->StatR3Inc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Inc", STAMUNIT_OCCURENCES, "The number of times INC was successfully interpreted.");
181 STAM_REG_USED(pVM, &pStats->StatRZInvlPg, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Invlpg", STAMUNIT_OCCURENCES, "The number of times INVLPG was successfully interpreted.");
182 STAM_REG_USED(pVM, &pStats->StatR3InvlPg, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Invlpg", STAMUNIT_OCCURENCES, "The number of times INVLPG was successfully interpreted.");
183 STAM_REG_USED(pVM, &pStats->StatRZIret, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Iret", STAMUNIT_OCCURENCES, "The number of times IRET was successfully interpreted.");
184 STAM_REG_USED(pVM, &pStats->StatR3Iret, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Iret", STAMUNIT_OCCURENCES, "The number of times IRET was successfully interpreted.");
185 STAM_REG_USED(pVM, &pStats->StatRZLLdt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/LLdt", STAMUNIT_OCCURENCES, "The number of times LLDT was successfully interpreted.");
186 STAM_REG_USED(pVM, &pStats->StatR3LLdt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/LLdt", STAMUNIT_OCCURENCES, "The number of times LLDT was successfully interpreted.");
187 STAM_REG_USED(pVM, &pStats->StatRZLIdt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/LIdt", STAMUNIT_OCCURENCES, "The number of times LIDT was successfully interpreted.");
188 STAM_REG_USED(pVM, &pStats->StatR3LIdt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/LIdt", STAMUNIT_OCCURENCES, "The number of times LIDT was successfully interpreted.");
189 STAM_REG_USED(pVM, &pStats->StatRZLGdt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/LGdt", STAMUNIT_OCCURENCES, "The number of times LGDT was successfully interpreted.");
190 STAM_REG_USED(pVM, &pStats->StatR3LGdt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/LGdt", STAMUNIT_OCCURENCES, "The number of times LGDT was successfully interpreted.");
191 STAM_REG_USED(pVM, &pStats->StatRZMov, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Mov", STAMUNIT_OCCURENCES, "The number of times MOV was successfully interpreted.");
192 STAM_REG_USED(pVM, &pStats->StatR3Mov, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Mov", STAMUNIT_OCCURENCES, "The number of times MOV was successfully interpreted.");
193 STAM_REG_USED(pVM, &pStats->StatRZMovCRx, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/MovCRx", STAMUNIT_OCCURENCES, "The number of times MOV CRx was successfully interpreted.");
194 STAM_REG_USED(pVM, &pStats->StatR3MovCRx, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/MovCRx", STAMUNIT_OCCURENCES, "The number of times MOV CRx was successfully interpreted.");
195 STAM_REG_USED(pVM, &pStats->StatRZMovDRx, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/MovDRx", STAMUNIT_OCCURENCES, "The number of times MOV DRx was successfully interpreted.");
196 STAM_REG_USED(pVM, &pStats->StatR3MovDRx, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/MovDRx", STAMUNIT_OCCURENCES, "The number of times MOV DRx was successfully interpreted.");
197 STAM_REG_USED(pVM, &pStats->StatRZOr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Or", STAMUNIT_OCCURENCES, "The number of times OR was successfully interpreted.");
198 STAM_REG_USED(pVM, &pStats->StatR3Or, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Or", STAMUNIT_OCCURENCES, "The number of times OR was successfully interpreted.");
199 STAM_REG_USED(pVM, &pStats->StatRZPop, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Pop", STAMUNIT_OCCURENCES, "The number of times POP was successfully interpreted.");
200 STAM_REG_USED(pVM, &pStats->StatR3Pop, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Pop", STAMUNIT_OCCURENCES, "The number of times POP was successfully interpreted.");
201 STAM_REG_USED(pVM, &pStats->StatRZRdtsc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Rdtsc", STAMUNIT_OCCURENCES, "The number of times RDTSC was successfully interpreted.");
202 STAM_REG_USED(pVM, &pStats->StatR3Rdtsc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Rdtsc", STAMUNIT_OCCURENCES, "The number of times RDTSC was successfully interpreted.");
203 STAM_REG_USED(pVM, &pStats->StatRZSti, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Sti", STAMUNIT_OCCURENCES, "The number of times STI was successfully interpreted.");
204 STAM_REG_USED(pVM, &pStats->StatR3Sti, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Sti", STAMUNIT_OCCURENCES, "The number of times STI was successfully interpreted.");
205 STAM_REG_USED(pVM, &pStats->StatRZXchg, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Xchg", STAMUNIT_OCCURENCES, "The number of times XCHG was successfully interpreted.");
206 STAM_REG_USED(pVM, &pStats->StatR3Xchg, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Xchg", STAMUNIT_OCCURENCES, "The number of times XCHG was successfully interpreted.");
207 STAM_REG_USED(pVM, &pStats->StatRZXor, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Xor", STAMUNIT_OCCURENCES, "The number of times XOR was successfully interpreted.");
208 STAM_REG_USED(pVM, &pStats->StatR3Xor, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Xor", STAMUNIT_OCCURENCES, "The number of times XOR was successfully interpreted.");
209 STAM_REG_USED(pVM, &pStats->StatRZMonitor, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Monitor", STAMUNIT_OCCURENCES, "The number of times MONITOR was successfully interpreted.");
210 STAM_REG_USED(pVM, &pStats->StatR3Monitor, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Monitor", STAMUNIT_OCCURENCES, "The number of times MONITOR was successfully interpreted.");
211 STAM_REG_USED(pVM, &pStats->StatRZMWait, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/MWait", STAMUNIT_OCCURENCES, "The number of times MWAIT was successfully interpreted.");
212 STAM_REG_USED(pVM, &pStats->StatR3MWait, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/MWait", STAMUNIT_OCCURENCES, "The number of times MWAIT was successfully interpreted.");
213 STAM_REG_USED(pVM, &pStats->StatRZBtr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Btr", STAMUNIT_OCCURENCES, "The number of times BTR was successfully interpreted.");
214 STAM_REG_USED(pVM, &pStats->StatR3Btr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Btr", STAMUNIT_OCCURENCES, "The number of times BTR was successfully interpreted.");
215 STAM_REG_USED(pVM, &pStats->StatRZBts, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Bts", STAMUNIT_OCCURENCES, "The number of times BTS was successfully interpreted.");
216 STAM_REG_USED(pVM, &pStats->StatR3Bts, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Bts", STAMUNIT_OCCURENCES, "The number of times BTS was successfully interpreted.");
217 STAM_REG_USED(pVM, &pStats->StatRZBtc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Btc", STAMUNIT_OCCURENCES, "The number of times BTC was successfully interpreted.");
218 STAM_REG_USED(pVM, &pStats->StatR3Btc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Btc", STAMUNIT_OCCURENCES, "The number of times BTC was successfully interpreted.");
219 STAM_REG_USED(pVM, &pStats->StatRZCmpXchg, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/CmpXchg", STAMUNIT_OCCURENCES, "The number of times CMPXCHG was successfully interpreted.");
220 STAM_REG_USED(pVM, &pStats->StatR3CmpXchg, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/CmpXchg", STAMUNIT_OCCURENCES, "The number of times CMPXCHG was successfully interpreted.");
221 STAM_REG_USED(pVM, &pStats->StatRZCmpXchg8b, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/CmpXchg8b", STAMUNIT_OCCURENCES, "The number of times CMPXCHG8B was successfully interpreted.");
222 STAM_REG_USED(pVM, &pStats->StatR3CmpXchg8b, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/CmpXchg8b", STAMUNIT_OCCURENCES, "The number of times CMPXCHG8B was successfully interpreted.");
223 STAM_REG_USED(pVM, &pStats->StatRZXAdd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/XAdd", STAMUNIT_OCCURENCES, "The number of times XADD was successfully interpreted.");
224 STAM_REG_USED(pVM, &pStats->StatR3XAdd, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/XAdd", STAMUNIT_OCCURENCES, "The number of times XADD was successfully interpreted.");
225 STAM_REG_USED(pVM, &pStats->StatR3Rdmsr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Rdmsr", STAMUNIT_OCCURENCES, "The number of times RDMSR was successfully interpreted.");
226 STAM_REG_USED(pVM, &pStats->StatRZRdmsr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Rdmsr", STAMUNIT_OCCURENCES, "The number of times RDMSR was successfully interpreted.");
227 STAM_REG_USED(pVM, &pStats->StatR3Wrmsr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Wrmsr", STAMUNIT_OCCURENCES, "The number of times WRMSR was successfully interpreted.");
228 STAM_REG_USED(pVM, &pStats->StatRZWrmsr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Wrmsr", STAMUNIT_OCCURENCES, "The number of times WRMSR was successfully interpreted.");
229 STAM_REG_USED(pVM, &pStats->StatR3StosWD, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Stoswd", STAMUNIT_OCCURENCES, "The number of times STOSWD was successfully interpreted.");
230 STAM_REG_USED(pVM, &pStats->StatRZStosWD, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Stoswd", STAMUNIT_OCCURENCES, "The number of times STOSWD was successfully interpreted.");
231 STAM_REG_USED(pVM, &pStats->StatRZWbInvd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/WbInvd", STAMUNIT_OCCURENCES, "The number of times WBINVD was successfully interpreted.");
232 STAM_REG_USED(pVM, &pStats->StatR3WbInvd, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/WbInvd", STAMUNIT_OCCURENCES, "The number of times WBINVD was successfully interpreted.");
233 STAM_REG_USED(pVM, &pStats->StatRZLmsw, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Success/Lmsw", STAMUNIT_OCCURENCES, "The number of times LMSW was successfully interpreted.");
234 STAM_REG_USED(pVM, &pStats->StatR3Lmsw, STAMTYPE_COUNTER, "/EM/R3/Interpret/Success/Lmsw", STAMUNIT_OCCURENCES, "The number of times LMSW was successfully interpreted.");
235
236 STAM_REG(pVM, &pStats->StatRZInterpretFailed, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed", STAMUNIT_OCCURENCES, "The number of times an instruction was not interpreted.");
237 STAM_REG(pVM, &pStats->StatR3InterpretFailed, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed", STAMUNIT_OCCURENCES, "The number of times an instruction was not interpreted.");
238
239 STAM_REG_USED(pVM, &pStats->StatRZFailedAnd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/And", STAMUNIT_OCCURENCES, "The number of times AND was not interpreted.");
240 STAM_REG_USED(pVM, &pStats->StatR3FailedAnd, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/And", STAMUNIT_OCCURENCES, "The number of times AND was not interpreted.");
241 STAM_REG_USED(pVM, &pStats->StatRZFailedCpuId, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/CpuId", STAMUNIT_OCCURENCES, "The number of times CPUID was not interpreted.");
242 STAM_REG_USED(pVM, &pStats->StatR3FailedCpuId, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/CpuId", STAMUNIT_OCCURENCES, "The number of times CPUID was not interpreted.");
243 STAM_REG_USED(pVM, &pStats->StatRZFailedDec, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Dec", STAMUNIT_OCCURENCES, "The number of times DEC was not interpreted.");
244 STAM_REG_USED(pVM, &pStats->StatR3FailedDec, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Dec", STAMUNIT_OCCURENCES, "The number of times DEC was not interpreted.");
245 STAM_REG_USED(pVM, &pStats->StatRZFailedHlt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Hlt", STAMUNIT_OCCURENCES, "The number of times HLT was not interpreted.");
246 STAM_REG_USED(pVM, &pStats->StatR3FailedHlt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Hlt", STAMUNIT_OCCURENCES, "The number of times HLT was not interpreted.");
247 STAM_REG_USED(pVM, &pStats->StatRZFailedInc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Inc", STAMUNIT_OCCURENCES, "The number of times INC was not interpreted.");
248 STAM_REG_USED(pVM, &pStats->StatR3FailedInc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Inc", STAMUNIT_OCCURENCES, "The number of times INC was not interpreted.");
249 STAM_REG_USED(pVM, &pStats->StatRZFailedInvlPg, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/InvlPg", STAMUNIT_OCCURENCES, "The number of times INVLPG was not interpreted.");
250 STAM_REG_USED(pVM, &pStats->StatR3FailedInvlPg, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/InvlPg", STAMUNIT_OCCURENCES, "The number of times INVLPG was not interpreted.");
251 STAM_REG_USED(pVM, &pStats->StatRZFailedIret, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Iret", STAMUNIT_OCCURENCES, "The number of times IRET was not interpreted.");
252 STAM_REG_USED(pVM, &pStats->StatR3FailedIret, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Iret", STAMUNIT_OCCURENCES, "The number of times IRET was not interpreted.");
253 STAM_REG_USED(pVM, &pStats->StatRZFailedLLdt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/LLdt", STAMUNIT_OCCURENCES, "The number of times LLDT was not interpreted.");
254 STAM_REG_USED(pVM, &pStats->StatR3FailedLLdt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/LLdt", STAMUNIT_OCCURENCES, "The number of times LLDT was not interpreted.");
255 STAM_REG_USED(pVM, &pStats->StatRZFailedLIdt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/LIdt", STAMUNIT_OCCURENCES, "The number of times LIDT was not interpreted.");
256 STAM_REG_USED(pVM, &pStats->StatR3FailedLIdt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/LIdt", STAMUNIT_OCCURENCES, "The number of times LIDT was not interpreted.");
257 STAM_REG_USED(pVM, &pStats->StatRZFailedLGdt, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/LGdt", STAMUNIT_OCCURENCES, "The number of times LGDT was not interpreted.");
258 STAM_REG_USED(pVM, &pStats->StatR3FailedLGdt, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/LGdt", STAMUNIT_OCCURENCES, "The number of times LGDT was not interpreted.");
259 STAM_REG_USED(pVM, &pStats->StatRZFailedMov, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Mov", STAMUNIT_OCCURENCES, "The number of times MOV was not interpreted.");
260 STAM_REG_USED(pVM, &pStats->StatR3FailedMov, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Mov", STAMUNIT_OCCURENCES, "The number of times MOV was not interpreted.");
261 STAM_REG_USED(pVM, &pStats->StatRZFailedMovCRx, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MovCRx", STAMUNIT_OCCURENCES, "The number of times MOV CRx was not interpreted.");
262 STAM_REG_USED(pVM, &pStats->StatR3FailedMovCRx, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MovCRx", STAMUNIT_OCCURENCES, "The number of times MOV CRx was not interpreted.");
263 STAM_REG_USED(pVM, &pStats->StatRZFailedMovDRx, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MovDRx", STAMUNIT_OCCURENCES, "The number of times MOV DRx was not interpreted.");
264 STAM_REG_USED(pVM, &pStats->StatR3FailedMovDRx, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MovDRx", STAMUNIT_OCCURENCES, "The number of times MOV DRx was not interpreted.");
265 STAM_REG_USED(pVM, &pStats->StatRZFailedOr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Or", STAMUNIT_OCCURENCES, "The number of times OR was not interpreted.");
266 STAM_REG_USED(pVM, &pStats->StatR3FailedOr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Or", STAMUNIT_OCCURENCES, "The number of times OR was not interpreted.");
267 STAM_REG_USED(pVM, &pStats->StatRZFailedPop, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Pop", STAMUNIT_OCCURENCES, "The number of times POP was not interpreted.");
268 STAM_REG_USED(pVM, &pStats->StatR3FailedPop, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Pop", STAMUNIT_OCCURENCES, "The number of times POP was not interpreted.");
269 STAM_REG_USED(pVM, &pStats->StatRZFailedSti, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Sti", STAMUNIT_OCCURENCES, "The number of times STI was not interpreted.");
270 STAM_REG_USED(pVM, &pStats->StatR3FailedSti, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Sti", STAMUNIT_OCCURENCES, "The number of times STI was not interpreted.");
271 STAM_REG_USED(pVM, &pStats->StatRZFailedXchg, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Xchg", STAMUNIT_OCCURENCES, "The number of times XCHG was not interpreted.");
272 STAM_REG_USED(pVM, &pStats->StatR3FailedXchg, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Xchg", STAMUNIT_OCCURENCES, "The number of times XCHG was not interpreted.");
273 STAM_REG_USED(pVM, &pStats->StatRZFailedXor, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Xor", STAMUNIT_OCCURENCES, "The number of times XOR was not interpreted.");
274 STAM_REG_USED(pVM, &pStats->StatR3FailedXor, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Xor", STAMUNIT_OCCURENCES, "The number of times XOR was not interpreted.");
275 STAM_REG_USED(pVM, &pStats->StatRZFailedMonitor, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Monitor", STAMUNIT_OCCURENCES, "The number of times MONITOR was not interpreted.");
276 STAM_REG_USED(pVM, &pStats->StatR3FailedMonitor, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Monitor", STAMUNIT_OCCURENCES, "The number of times MONITOR was not interpreted.");
277 STAM_REG_USED(pVM, &pStats->StatRZFailedMWait, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MWait", STAMUNIT_OCCURENCES, "The number of times MONITOR was not interpreted.");
278 STAM_REG_USED(pVM, &pStats->StatR3FailedMWait, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MWait", STAMUNIT_OCCURENCES, "The number of times MONITOR was not interpreted.");
279 STAM_REG_USED(pVM, &pStats->StatRZFailedRdtsc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Rdtsc", STAMUNIT_OCCURENCES, "The number of times RDTSC was not interpreted.");
280 STAM_REG_USED(pVM, &pStats->StatR3FailedRdtsc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Rdtsc", STAMUNIT_OCCURENCES, "The number of times RDTSC was not interpreted.");
281 STAM_REG_USED(pVM, &pStats->StatRZFailedRdmsr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Rdmsr", STAMUNIT_OCCURENCES, "The number of times RDMSR was not interpreted.");
282 STAM_REG_USED(pVM, &pStats->StatR3FailedRdmsr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Rdmsr", STAMUNIT_OCCURENCES, "The number of times RDMSR was not interpreted.");
283 STAM_REG_USED(pVM, &pStats->StatRZFailedWrmsr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Wrmsr", STAMUNIT_OCCURENCES, "The number of times WRMSR was not interpreted.");
284 STAM_REG_USED(pVM, &pStats->StatR3FailedWrmsr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Wrmsr", STAMUNIT_OCCURENCES, "The number of times WRMSR was not interpreted.");
285 STAM_REG_USED(pVM, &pStats->StatRZFailedLmsw, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Lmsw", STAMUNIT_OCCURENCES, "The number of times LMSW was not interpreted.");
286 STAM_REG_USED(pVM, &pStats->StatR3FailedLmsw, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Lmsw", STAMUNIT_OCCURENCES, "The number of times LMSW was not interpreted.");
287
288 STAM_REG_USED(pVM, &pStats->StatRZFailedMisc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Misc", STAMUNIT_OCCURENCES, "The number of times some misc instruction was encountered.");
289 STAM_REG_USED(pVM, &pStats->StatR3FailedMisc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Misc", STAMUNIT_OCCURENCES, "The number of times some misc instruction was encountered.");
290 STAM_REG_USED(pVM, &pStats->StatRZFailedAdd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Add", STAMUNIT_OCCURENCES, "The number of times ADD was not interpreted.");
291 STAM_REG_USED(pVM, &pStats->StatR3FailedAdd, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Add", STAMUNIT_OCCURENCES, "The number of times ADD was not interpreted.");
292 STAM_REG_USED(pVM, &pStats->StatRZFailedAdc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Adc", STAMUNIT_OCCURENCES, "The number of times ADC was not interpreted.");
293 STAM_REG_USED(pVM, &pStats->StatR3FailedAdc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Adc", STAMUNIT_OCCURENCES, "The number of times ADC was not interpreted.");
294 STAM_REG_USED(pVM, &pStats->StatRZFailedBtr, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Btr", STAMUNIT_OCCURENCES, "The number of times BTR was not interpreted.");
295 STAM_REG_USED(pVM, &pStats->StatR3FailedBtr, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Btr", STAMUNIT_OCCURENCES, "The number of times BTR was not interpreted.");
296 STAM_REG_USED(pVM, &pStats->StatRZFailedBts, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Bts", STAMUNIT_OCCURENCES, "The number of times BTS was not interpreted.");
297 STAM_REG_USED(pVM, &pStats->StatR3FailedBts, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Bts", STAMUNIT_OCCURENCES, "The number of times BTS was not interpreted.");
298 STAM_REG_USED(pVM, &pStats->StatRZFailedBtc, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Btc", STAMUNIT_OCCURENCES, "The number of times BTC was not interpreted.");
299 STAM_REG_USED(pVM, &pStats->StatR3FailedBtc, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Btc", STAMUNIT_OCCURENCES, "The number of times BTC was not interpreted.");
300 STAM_REG_USED(pVM, &pStats->StatRZFailedCli, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Cli", STAMUNIT_OCCURENCES, "The number of times CLI was not interpreted.");
301 STAM_REG_USED(pVM, &pStats->StatR3FailedCli, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Cli", STAMUNIT_OCCURENCES, "The number of times CLI was not interpreted.");
302 STAM_REG_USED(pVM, &pStats->StatRZFailedCmpXchg, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/CmpXchg", STAMUNIT_OCCURENCES, "The number of times CMPXCHG was not interpreted.");
303 STAM_REG_USED(pVM, &pStats->StatR3FailedCmpXchg, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/CmpXchg", STAMUNIT_OCCURENCES, "The number of times CMPXCHG was not interpreted.");
304 STAM_REG_USED(pVM, &pStats->StatRZFailedCmpXchg8b, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/CmpXchg8b", STAMUNIT_OCCURENCES, "The number of times CMPXCHG8B was not interpreted.");
305 STAM_REG_USED(pVM, &pStats->StatR3FailedCmpXchg8b, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/CmpXchg8b", STAMUNIT_OCCURENCES, "The number of times CMPXCHG8B was not interpreted.");
306 STAM_REG_USED(pVM, &pStats->StatRZFailedXAdd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/XAdd", STAMUNIT_OCCURENCES, "The number of times XADD was not interpreted.");
307 STAM_REG_USED(pVM, &pStats->StatR3FailedXAdd, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/XAdd", STAMUNIT_OCCURENCES, "The number of times XADD was not interpreted.");
308 STAM_REG_USED(pVM, &pStats->StatRZFailedMovNTPS, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/MovNTPS", STAMUNIT_OCCURENCES, "The number of times MOVNTPS was not interpreted.");
309 STAM_REG_USED(pVM, &pStats->StatR3FailedMovNTPS, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/MovNTPS", STAMUNIT_OCCURENCES, "The number of times MOVNTPS was not interpreted.");
310 STAM_REG_USED(pVM, &pStats->StatRZFailedStosWD, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/StosWD", STAMUNIT_OCCURENCES, "The number of times STOSWD was not interpreted.");
311 STAM_REG_USED(pVM, &pStats->StatR3FailedStosWD, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/StosWD", STAMUNIT_OCCURENCES, "The number of times STOSWD was not interpreted.");
312 STAM_REG_USED(pVM, &pStats->StatRZFailedSub, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Sub", STAMUNIT_OCCURENCES, "The number of times SUB was not interpreted.");
313 STAM_REG_USED(pVM, &pStats->StatR3FailedSub, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Sub", STAMUNIT_OCCURENCES, "The number of times SUB was not interpreted.");
314 STAM_REG_USED(pVM, &pStats->StatRZFailedWbInvd, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/WbInvd", STAMUNIT_OCCURENCES, "The number of times WBINVD was not interpreted.");
315 STAM_REG_USED(pVM, &pStats->StatR3FailedWbInvd, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/WbInvd", STAMUNIT_OCCURENCES, "The number of times WBINVD was not interpreted.");
316
317 STAM_REG_USED(pVM, &pStats->StatRZFailedUserMode, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/UserMode", STAMUNIT_OCCURENCES, "The number of rejections because of CPL.");
318 STAM_REG_USED(pVM, &pStats->StatR3FailedUserMode, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/UserMode", STAMUNIT_OCCURENCES, "The number of rejections because of CPL.");
319 STAM_REG_USED(pVM, &pStats->StatRZFailedPrefix, STAMTYPE_COUNTER, "/EM/RZ/Interpret/Failed/Prefix", STAMUNIT_OCCURENCES, "The number of rejections because of prefix .");
320 STAM_REG_USED(pVM, &pStats->StatR3FailedPrefix, STAMTYPE_COUNTER, "/EM/R3/Interpret/Failed/Prefix", STAMUNIT_OCCURENCES, "The number of rejections because of prefix .");
321
322 STAM_REG_USED(pVM, &pStats->StatCli, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Cli", STAMUNIT_OCCURENCES, "Number of cli instructions.");
323 STAM_REG_USED(pVM, &pStats->StatSti, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sti", STAMUNIT_OCCURENCES, "Number of sli instructions.");
324 STAM_REG_USED(pVM, &pStats->StatIn, STAMTYPE_COUNTER, "/EM/R3/PrivInst/In", STAMUNIT_OCCURENCES, "Number of in instructions.");
325 STAM_REG_USED(pVM, &pStats->StatOut, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Out", STAMUNIT_OCCURENCES, "Number of out instructions.");
326 STAM_REG_USED(pVM, &pStats->StatHlt, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Hlt", STAMUNIT_OCCURENCES, "Number of hlt instructions not handled in GC because of PATM.");
327 STAM_REG_USED(pVM, &pStats->StatInvlpg, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Invlpg", STAMUNIT_OCCURENCES, "Number of invlpg instructions.");
328 STAM_REG_USED(pVM, &pStats->StatMisc, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Misc", STAMUNIT_OCCURENCES, "Number of misc. instructions.");
329 STAM_REG_USED(pVM, &pStats->StatMovWriteCR[0], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR0, X", STAMUNIT_OCCURENCES, "Number of mov CR0 read instructions.");
330 STAM_REG_USED(pVM, &pStats->StatMovWriteCR[1], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR1, X", STAMUNIT_OCCURENCES, "Number of mov CR1 read instructions.");
331 STAM_REG_USED(pVM, &pStats->StatMovWriteCR[2], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR2, X", STAMUNIT_OCCURENCES, "Number of mov CR2 read instructions.");
332 STAM_REG_USED(pVM, &pStats->StatMovWriteCR[3], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR3, X", STAMUNIT_OCCURENCES, "Number of mov CR3 read instructions.");
333 STAM_REG_USED(pVM, &pStats->StatMovWriteCR[4], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov CR4, X", STAMUNIT_OCCURENCES, "Number of mov CR4 read instructions.");
334 STAM_REG_USED(pVM, &pStats->StatMovReadCR[0], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR0", STAMUNIT_OCCURENCES, "Number of mov CR0 write instructions.");
335 STAM_REG_USED(pVM, &pStats->StatMovReadCR[1], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR1", STAMUNIT_OCCURENCES, "Number of mov CR1 write instructions.");
336 STAM_REG_USED(pVM, &pStats->StatMovReadCR[2], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR2", STAMUNIT_OCCURENCES, "Number of mov CR2 write instructions.");
337 STAM_REG_USED(pVM, &pStats->StatMovReadCR[3], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR3", STAMUNIT_OCCURENCES, "Number of mov CR3 write instructions.");
338 STAM_REG_USED(pVM, &pStats->StatMovReadCR[4], STAMTYPE_COUNTER, "/EM/R3/PrivInst/Mov X, CR4", STAMUNIT_OCCURENCES, "Number of mov CR4 write instructions.");
339 STAM_REG_USED(pVM, &pStats->StatMovDRx, STAMTYPE_COUNTER, "/EM/R3/PrivInst/MovDRx", STAMUNIT_OCCURENCES, "Number of mov DRx instructions.");
340 STAM_REG_USED(pVM, &pStats->StatIret, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Iret", STAMUNIT_OCCURENCES, "Number of iret instructions.");
341 STAM_REG_USED(pVM, &pStats->StatMovLgdt, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Lgdt", STAMUNIT_OCCURENCES, "Number of lgdt instructions.");
342 STAM_REG_USED(pVM, &pStats->StatMovLidt, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Lidt", STAMUNIT_OCCURENCES, "Number of lidt instructions.");
343 STAM_REG_USED(pVM, &pStats->StatMovLldt, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Lldt", STAMUNIT_OCCURENCES, "Number of lldt instructions.");
344 STAM_REG_USED(pVM, &pStats->StatSysEnter, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sysenter", STAMUNIT_OCCURENCES, "Number of sysenter instructions.");
345 STAM_REG_USED(pVM, &pStats->StatSysExit, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sysexit", STAMUNIT_OCCURENCES, "Number of sysexit instructions.");
346 STAM_REG_USED(pVM, &pStats->StatSysCall, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Syscall", STAMUNIT_OCCURENCES, "Number of syscall instructions.");
347 STAM_REG_USED(pVM, &pStats->StatSysRet, STAMTYPE_COUNTER, "/EM/R3/PrivInst/Sysret", STAMUNIT_OCCURENCES, "Number of sysret instructions.");
348
349 STAM_REG(pVM, &pVM->em.s.StatTotalClis, STAMTYPE_COUNTER, "/EM/Cli/Total", STAMUNIT_OCCURENCES, "Total number of cli instructions executed.");
350 pVM->em.s.pCliStatTree = 0;
351#endif /* VBOX_WITH_STATISTICS */
352
353 /* these should be considered for release statistics. */
354 STAM_REL_REG(pVM, &pVM->em.s.StatForcedActions, STAMTYPE_PROFILE, "/PROF/EM/ForcedActions", STAMUNIT_TICKS_PER_CALL, "Profiling forced action execution.");
355 STAM_REG(pVM, &pVM->em.s.StatIOEmu, STAMTYPE_PROFILE, "/PROF/EM/Emulation/IO", STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawExecuteIOInstruction.");
356 STAM_REG(pVM, &pVM->em.s.StatPrivEmu, STAMTYPE_PROFILE, "/PROF/EM/Emulation/Priv", STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawPrivileged.");
357 STAM_REG(pVM, &pVM->em.s.StatMiscEmu, STAMTYPE_PROFILE, "/PROF/EM/Emulation/Misc", STAMUNIT_TICKS_PER_CALL, "Profiling of emR3RawExecuteInstruction.");
358
359 STAM_REL_REG(pVM, &pVM->em.s.StatHalted, STAMTYPE_PROFILE, "/PROF/EM/Halted", STAMUNIT_TICKS_PER_CALL, "Profiling halted state (VMR3WaitHalted).");
360 STAM_REG(pVM, &pVM->em.s.StatHwAccEntry, STAMTYPE_PROFILE, "/PROF/EM/HwAccEnter", STAMUNIT_TICKS_PER_CALL, "Profiling Hardware Accelerated Mode entry overhead.");
361 STAM_REG(pVM, &pVM->em.s.StatHwAccExec, STAMTYPE_PROFILE, "/PROF/EM/HwAccExec", STAMUNIT_TICKS_PER_CALL, "Profiling Hardware Accelerated Mode execution.");
362 STAM_REG(pVM, &pVM->em.s.StatREMEmu, STAMTYPE_PROFILE, "/PROF/EM/REMEmuSingle", STAMUNIT_TICKS_PER_CALL, "Profiling single instruction REM execution.");
363 STAM_REG(pVM, &pVM->em.s.StatREMExec, STAMTYPE_PROFILE, "/PROF/EM/REMExec", STAMUNIT_TICKS_PER_CALL, "Profiling REM execution.");
364 STAM_REG(pVM, &pVM->em.s.StatREMSync, STAMTYPE_PROFILE, "/PROF/EM/REMSync", STAMUNIT_TICKS_PER_CALL, "Profiling REM context syncing.");
365 STAM_REL_REG(pVM, &pVM->em.s.StatREMTotal, STAMTYPE_PROFILE, "/PROF/EM/REMTotal", STAMUNIT_TICKS_PER_CALL, "Profiling emR3RemExecute (excluding FFs).");
366 STAM_REG(pVM, &pVM->em.s.StatRAWEntry, STAMTYPE_PROFILE, "/PROF/EM/RAWEnter", STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode entry overhead.");
367 STAM_REG(pVM, &pVM->em.s.StatRAWExec, STAMTYPE_PROFILE, "/PROF/EM/RAWExec", STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode execution.");
368 STAM_REG(pVM, &pVM->em.s.StatRAWTail, STAMTYPE_PROFILE, "/PROF/EM/RAWTail", STAMUNIT_TICKS_PER_CALL, "Profiling Raw Mode tail overhead.");
369 STAM_REL_REG(pVM, &pVM->em.s.StatRAWTotal, STAMTYPE_PROFILE, "/PROF/EM/RAWTotal", STAMUNIT_TICKS_PER_CALL, "Profiling emR3RawExecute (excluding FFs).");
370 STAM_REL_REG(pVM, &pVM->em.s.StatTotal, STAMTYPE_PROFILE_ADV, "/PROF/EM/Total", STAMUNIT_TICKS_PER_CALL, "Profiling EMR3ExecuteVM.");
371
372
373 return VINF_SUCCESS;
374}
375
376
377/**
378 * Initializes the per-VCPU EM.
379 *
380 * @returns VBox status code.
381 * @param pVM The VM to operate on.
382 */
383VMMR3DECL(int) EMR3InitCPU(PVM pVM)
384{
385 LogFlow(("EMR3InitCPU\n"));
386 return VINF_SUCCESS;
387}
388
389
390/**
391 * Applies relocations to data and code managed by this
392 * component. This function will be called at init and
393 * whenever the VMM need to relocate it self inside the GC.
394 *
395 * @param pVM The VM.
396 */
397VMMR3DECL(void) EMR3Relocate(PVM pVM)
398{
399 LogFlow(("EMR3Relocate\n"));
400 if (pVM->em.s.pStatsR3)
401 pVM->em.s.pStatsRC = MMHyperR3ToRC(pVM, pVM->em.s.pStatsR3);
402}
403
404
405/**
406 * Reset notification.
407 *
408 * @param pVM
409 */
410VMMR3DECL(void) EMR3Reset(PVM pVM)
411{
412 LogFlow(("EMR3Reset: \n"));
413 pVM->em.s.fForceRAW = false;
414}
415
416
417/**
418 * Terminates the EM.
419 *
420 * Termination means cleaning up and freeing all resources,
421 * the VM it self is at this point powered off or suspended.
422 *
423 * @returns VBox status code.
424 * @param pVM The VM to operate on.
425 */
426VMMR3DECL(int) EMR3Term(PVM pVM)
427{
428 AssertMsg(pVM->em.s.offVM, ("bad init order!\n"));
429
430 return VINF_SUCCESS;
431}
432
433/**
434 * Terminates the per-VCPU EM.
435 *
436 * Termination means cleaning up and freeing all resources,
437 * the VM it self is at this point powered off or suspended.
438 *
439 * @returns VBox status code.
440 * @param pVM The VM to operate on.
441 */
442VMMR3DECL(int) EMR3TermCPU(PVM pVM)
443{
444 return 0;
445}
446
447/**
448 * Execute state save operation.
449 *
450 * @returns VBox status code.
451 * @param pVM VM Handle.
452 * @param pSSM SSM operation handle.
453 */
454static DECLCALLBACK(int) emR3Save(PVM pVM, PSSMHANDLE pSSM)
455{
456 return SSMR3PutBool(pSSM, pVM->em.s.fForceRAW);
457}
458
459
460/**
461 * Execute state load operation.
462 *
463 * @returns VBox status code.
464 * @param pVM VM Handle.
465 * @param pSSM SSM operation handle.
466 * @param u32Version Data layout version.
467 */
468static DECLCALLBACK(int) emR3Load(PVM pVM, PSSMHANDLE pSSM, uint32_t u32Version)
469{
470 /*
471 * Validate version.
472 */
473 if (u32Version != EM_SAVED_STATE_VERSION)
474 {
475 AssertMsgFailed(("emR3Load: Invalid version u32Version=%d (current %d)!\n", u32Version, EM_SAVED_STATE_VERSION));
476 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
477 }
478
479 /*
480 * Load the saved state.
481 */
482 int rc = SSMR3GetBool(pSSM, &pVM->em.s.fForceRAW);
483 if (VBOX_FAILURE(rc))
484 pVM->em.s.fForceRAW = false;
485
486 Assert(!pVM->em.s.pCliStatTree);
487 return rc;
488}
489
490
491/**
492 * Enables or disables a set of raw-mode execution modes.
493 *
494 * @returns VINF_SUCCESS on success.
495 * @returns VINF_RESCHEDULE if a rescheduling might be required.
496 * @returns VERR_INVALID_PARAMETER on an invalid enmMode value.
497 *
498 * @param pVM The VM to operate on.
499 * @param enmMode The execution mode change.
500 * @thread The emulation thread.
501 */
502VMMR3DECL(int) EMR3RawSetMode(PVM pVM, EMRAWMODE enmMode)
503{
504 switch (enmMode)
505 {
506 case EMRAW_NONE:
507 pVM->fRawR3Enabled = false;
508 pVM->fRawR0Enabled = false;
509 break;
510 case EMRAW_RING3_ENABLE:
511 pVM->fRawR3Enabled = true;
512 break;
513 case EMRAW_RING3_DISABLE:
514 pVM->fRawR3Enabled = false;
515 break;
516 case EMRAW_RING0_ENABLE:
517 pVM->fRawR0Enabled = true;
518 break;
519 case EMRAW_RING0_DISABLE:
520 pVM->fRawR0Enabled = false;
521 break;
522 default:
523 AssertMsgFailed(("Invalid enmMode=%d\n", enmMode));
524 return VERR_INVALID_PARAMETER;
525 }
526 Log(("EMR3SetRawMode: fRawR3Enabled=%RTbool fRawR0Enabled=%RTbool\n",
527 pVM->fRawR3Enabled, pVM->fRawR0Enabled));
528 return pVM->em.s.enmState == EMSTATE_RAW ? VINF_EM_RESCHEDULE : VINF_SUCCESS;
529}
530
531
532/**
533 * Raise a fatal error.
534 *
535 * Safely terminate the VM with full state report and stuff. This function
536 * will naturally never return.
537 *
538 * @param pVM VM handle.
539 * @param rc VBox status code.
540 */
541VMMR3DECL(void) EMR3FatalError(PVM pVM, int rc)
542{
543 longjmp(pVM->em.s.u.FatalLongJump, rc);
544 AssertReleaseMsgFailed(("longjmp returned!\n"));
545}
546
547
548/**
549 * Gets the EM state name.
550 *
551 * @returns pointer to read only state name,
552 * @param enmState The state.
553 */
554VMMR3DECL(const char *) EMR3GetStateName(EMSTATE enmState)
555{
556 switch (enmState)
557 {
558 case EMSTATE_NONE: return "EMSTATE_NONE";
559 case EMSTATE_RAW: return "EMSTATE_RAW";
560 case EMSTATE_HWACC: return "EMSTATE_HWACC";
561 case EMSTATE_REM: return "EMSTATE_REM";
562 case EMSTATE_PARAV: return "EMSTATE_PARAV";
563 case EMSTATE_HALTED: return "EMSTATE_HALTED";
564 case EMSTATE_SUSPENDED: return "EMSTATE_SUSPENDED";
565 case EMSTATE_TERMINATING: return "EMSTATE_TERMINATING";
566 case EMSTATE_DEBUG_GUEST_RAW: return "EMSTATE_DEBUG_GUEST_RAW";
567 case EMSTATE_DEBUG_GUEST_REM: return "EMSTATE_DEBUG_GUEST_REM";
568 case EMSTATE_DEBUG_HYPER: return "EMSTATE_DEBUG_HYPER";
569 case EMSTATE_GURU_MEDITATION: return "EMSTATE_GURU_MEDITATION";
570 default: return "Unknown!";
571 }
572}
573
574
575#ifdef VBOX_WITH_STATISTICS
576/**
577 * Just a braindead function to keep track of cli addresses.
578 * @param pVM VM handle.
579 * @param pInstrGC The EIP of the cli instruction.
580 */
581static void emR3RecordCli(PVM pVM, RTGCPTR pInstrGC)
582{
583 PCLISTAT pRec;
584
585 pRec = (PCLISTAT)RTAvlPVGet(&pVM->em.s.pCliStatTree, (AVLPVKEY)pInstrGC);
586 if (!pRec)
587 {
588 /* New cli instruction; insert into the tree. */
589 pRec = (PCLISTAT)MMR3HeapAllocZ(pVM, MM_TAG_EM, sizeof(*pRec));
590 Assert(pRec);
591 if (!pRec)
592 return;
593 pRec->Core.Key = (AVLPVKEY)pInstrGC;
594
595 char szCliStatName[32];
596 RTStrPrintf(szCliStatName, sizeof(szCliStatName), "/EM/Cli/0x%VGv", pInstrGC);
597 STAM_REG(pVM, &pRec->Counter, STAMTYPE_COUNTER, szCliStatName, STAMUNIT_OCCURENCES, "Number of times cli was executed.");
598
599 bool fRc = RTAvlPVInsert(&pVM->em.s.pCliStatTree, &pRec->Core);
600 Assert(fRc); NOREF(fRc);
601 }
602 STAM_COUNTER_INC(&pRec->Counter);
603 STAM_COUNTER_INC(&pVM->em.s.StatTotalClis);
604}
605#endif /* VBOX_WITH_STATISTICS */
606
607
608/**
609 * Debug loop.
610 *
611 * @returns VBox status code for EM.
612 * @param pVM VM handle.
613 * @param rc Current EM VBox status code..
614 */
615static int emR3Debug(PVM pVM, int rc)
616{
617 for (;;)
618 {
619 Log(("emR3Debug: rc=%Vrc\n", rc));
620 const int rcLast = rc;
621
622 /*
623 * Debug related RC.
624 */
625 switch (rc)
626 {
627 /*
628 * Single step an instruction.
629 */
630 case VINF_EM_DBG_STEP:
631 if ( pVM->em.s.enmState == EMSTATE_DEBUG_GUEST_RAW
632 || pVM->em.s.enmState == EMSTATE_DEBUG_HYPER
633 || pVM->em.s.fForceRAW /* paranoia */)
634 rc = emR3RawStep(pVM);
635 else
636 {
637 Assert(pVM->em.s.enmState == EMSTATE_DEBUG_GUEST_REM);
638 rc = emR3RemStep(pVM);
639 }
640 break;
641
642 /*
643 * Simple events: stepped, breakpoint, stop/assertion.
644 */
645 case VINF_EM_DBG_STEPPED:
646 rc = DBGFR3Event(pVM, DBGFEVENT_STEPPED);
647 break;
648
649 case VINF_EM_DBG_BREAKPOINT:
650 rc = DBGFR3EventBreakpoint(pVM, DBGFEVENT_BREAKPOINT);
651 break;
652
653 case VINF_EM_DBG_STOP:
654 rc = DBGFR3EventSrc(pVM, DBGFEVENT_DEV_STOP, NULL, 0, NULL, NULL);
655 break;
656
657 case VINF_EM_DBG_HYPER_STEPPED:
658 rc = DBGFR3Event(pVM, DBGFEVENT_STEPPED_HYPER);
659 break;
660
661 case VINF_EM_DBG_HYPER_BREAKPOINT:
662 rc = DBGFR3EventBreakpoint(pVM, DBGFEVENT_BREAKPOINT_HYPER);
663 break;
664
665 case VINF_EM_DBG_HYPER_ASSERTION:
666 RTPrintf("\nVINF_EM_DBG_HYPER_ASSERTION:\n%s%s\n", VMMR3GetRZAssertMsg1(pVM), VMMR3GetRZAssertMsg2(pVM));
667 rc = DBGFR3EventAssertion(pVM, DBGFEVENT_ASSERTION_HYPER, VMMR3GetRZAssertMsg1(pVM), VMMR3GetRZAssertMsg2(pVM));
668 break;
669
670 /*
671 * Guru meditation.
672 */
673 case VERR_VMM_RING0_ASSERTION: /** @todo Make a guru meditation event! */
674 rc = DBGFR3EventSrc(pVM, DBGFEVENT_DEV_STOP, "VERR_VMM_RING0_ASSERTION", 0, NULL, NULL);
675 break;
676 case VERR_REM_TOO_MANY_TRAPS: /** @todo Make a guru meditation event! */
677 rc = DBGFR3EventSrc(pVM, DBGFEVENT_DEV_STOP, "VERR_REM_TOO_MANY_TRAPS", 0, NULL, NULL);
678 break;
679
680 default: /** @todo don't use default for guru, but make special errors code! */
681 rc = DBGFR3Event(pVM, DBGFEVENT_FATAL_ERROR);
682 break;
683 }
684
685 /*
686 * Process the result.
687 */
688 do
689 {
690 switch (rc)
691 {
692 /*
693 * Continue the debugging loop.
694 */
695 case VINF_EM_DBG_STEP:
696 case VINF_EM_DBG_STOP:
697 case VINF_EM_DBG_STEPPED:
698 case VINF_EM_DBG_BREAKPOINT:
699 case VINF_EM_DBG_HYPER_STEPPED:
700 case VINF_EM_DBG_HYPER_BREAKPOINT:
701 case VINF_EM_DBG_HYPER_ASSERTION:
702 break;
703
704 /*
705 * Resuming execution (in some form) has to be done here if we got
706 * a hypervisor debug event.
707 */
708 case VINF_SUCCESS:
709 case VINF_EM_RESUME:
710 case VINF_EM_SUSPEND:
711 case VINF_EM_RESCHEDULE:
712 case VINF_EM_RESCHEDULE_RAW:
713 case VINF_EM_RESCHEDULE_REM:
714 case VINF_EM_HALT:
715 if (pVM->em.s.enmState == EMSTATE_DEBUG_HYPER)
716 {
717 rc = emR3RawResumeHyper(pVM);
718 if (rc != VINF_SUCCESS && VBOX_SUCCESS(rc))
719 continue;
720 }
721 if (rc == VINF_SUCCESS)
722 rc = VINF_EM_RESCHEDULE;
723 return rc;
724
725 /*
726 * The debugger isn't attached.
727 * We'll simply turn the thing off since that's the easiest thing to do.
728 */
729 case VERR_DBGF_NOT_ATTACHED:
730 switch (rcLast)
731 {
732 case VINF_EM_DBG_HYPER_STEPPED:
733 case VINF_EM_DBG_HYPER_BREAKPOINT:
734 case VINF_EM_DBG_HYPER_ASSERTION:
735 case VERR_TRPM_PANIC:
736 case VERR_TRPM_DONT_PANIC:
737 case VERR_VMM_RING0_ASSERTION:
738 return rcLast;
739 }
740 return VINF_EM_OFF;
741
742 /*
743 * Status codes terminating the VM in one or another sense.
744 */
745 case VINF_EM_TERMINATE:
746 case VINF_EM_OFF:
747 case VINF_EM_RESET:
748 case VINF_EM_RAW_STALE_SELECTOR:
749 case VINF_EM_RAW_IRET_TRAP:
750 case VERR_TRPM_PANIC:
751 case VERR_TRPM_DONT_PANIC:
752 case VERR_VMM_RING0_ASSERTION:
753 case VERR_INTERNAL_ERROR:
754 return rc;
755
756 /*
757 * The rest is unexpected, and will keep us here.
758 */
759 default:
760 AssertMsgFailed(("Unxpected rc %Vrc!\n", rc));
761 break;
762 }
763 } while (false);
764 } /* debug for ever */
765}
766
767
768/**
769 * Steps recompiled code.
770 *
771 * @returns VBox status code. The most important ones are: VINF_EM_STEP_EVENT,
772 * VINF_EM_RESCHEDULE, VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
773 *
774 * @param pVM VM handle.
775 */
776static int emR3RemStep(PVM pVM)
777{
778 LogFlow(("emR3RemStep: cs:eip=%04x:%08x\n", CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
779
780 /*
781 * Switch to REM, step instruction, switch back.
782 */
783 int rc = REMR3State(pVM);
784 if (VBOX_SUCCESS(rc))
785 {
786 rc = REMR3Step(pVM);
787 REMR3StateBack(pVM);
788 }
789 LogFlow(("emR3RemStep: returns %Vrc cs:eip=%04x:%08x\n", rc, CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
790 return rc;
791}
792
793
794/**
795 * Executes recompiled code.
796 *
797 * This function contains the recompiler version of the inner
798 * execution loop (the outer loop being in EMR3ExecuteVM()).
799 *
800 * @returns VBox status code. The most important ones are: VINF_EM_RESCHEDULE,
801 * VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
802 *
803 * @param pVM VM handle.
804 * @param pfFFDone Where to store an indicator telling wheter or not
805 * FFs were done before returning.
806 *
807 */
808static int emR3RemExecute(PVM pVM, bool *pfFFDone)
809{
810#ifdef LOG_ENABLED
811 PCPUMCTX pCtx = pVM->em.s.pCtx;
812 uint32_t cpl = CPUMGetGuestCPL(pVM, CPUMCTX2CORE(pCtx));
813
814 if (pCtx->eflags.Bits.u1VM)
815 Log(("EMV86: %04X:%08X IF=%d\n", pCtx->cs, pCtx->eip, pCtx->eflags.Bits.u1IF));
816 else
817 Log(("EMR%d: %04X:%08X ESP=%08X IF=%d CR0=%x\n", cpl, pCtx->cs, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0));
818#endif
819 STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatREMTotal, a);
820
821#if defined(VBOX_STRICT) && defined(DEBUG_bird)
822 AssertMsg( VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3|VM_FF_PGM_SYNC_CR3_NON_GLOBAL)
823 || !MMHyperIsInsideArea(pVM, CPUMGetGuestEIP(pVM)), /** @todo #1419 - get flat address. */
824 ("cs:eip=%RX16:%RX32\n", CPUMGetGuestCS(pVM), CPUMGetGuestEIP(pVM)));
825#endif
826
827 /*
828 * Spin till we get a forced action which returns anything but VINF_SUCCESS
829 * or the REM suggests raw-mode execution.
830 */
831 *pfFFDone = false;
832 bool fInREMState = false;
833 int rc = VINF_SUCCESS;
834 for (;;)
835 {
836 /*
837 * Update REM state if not already in sync.
838 */
839 if (!fInREMState)
840 {
841 STAM_PROFILE_START(&pVM->em.s.StatREMSync, b);
842 rc = REMR3State(pVM);
843 STAM_PROFILE_STOP(&pVM->em.s.StatREMSync, b);
844 if (VBOX_FAILURE(rc))
845 break;
846 fInREMState = true;
847
848 /*
849 * We might have missed the raising of VMREQ, TIMER and some other
850 * imporant FFs while we were busy switching the state. So, check again.
851 */
852 if (VM_FF_ISPENDING(pVM, VM_FF_REQUEST | VM_FF_TIMER | VM_FF_PDM_QUEUES | VM_FF_DBGF | VM_FF_TERMINATE | VM_FF_RESET))
853 {
854 LogFlow(("emR3RemExecute: Skipping run, because FF is set. %#x\n", pVM->fForcedActions));
855 goto l_REMDoForcedActions;
856 }
857 }
858
859
860 /*
861 * Execute REM.
862 */
863 STAM_PROFILE_START(&pVM->em.s.StatREMExec, c);
864 rc = REMR3Run(pVM);
865 STAM_PROFILE_STOP(&pVM->em.s.StatREMExec, c);
866
867
868 /*
869 * Deal with high priority post execution FFs before doing anything else.
870 */
871 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_POST_MASK))
872 rc = emR3HighPriorityPostForcedActions(pVM, rc);
873
874 /*
875 * Process the returned status code.
876 * (Try keep this short! Call functions!)
877 */
878 if (rc != VINF_SUCCESS)
879 {
880 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
881 break;
882 if (rc != VINF_REM_INTERRUPED_FF)
883 {
884 /*
885 * Anything which is not known to us means an internal error
886 * and the termination of the VM!
887 */
888 AssertMsg(rc == VERR_REM_TOO_MANY_TRAPS, ("Unknown GC return code: %Vra\n", rc));
889 break;
890 }
891 }
892
893
894 /*
895 * Check and execute forced actions.
896 * Sync back the VM state before calling any of these.
897 */
898#ifdef VBOX_HIGH_RES_TIMERS_HACK
899 TMTimerPoll(pVM);
900#endif
901 if (VM_FF_ISPENDING(pVM, VM_FF_ALL_BUT_RAW_MASK & ~(VM_FF_CSAM_PENDING_ACTION | VM_FF_CSAM_SCAN_PAGE)))
902 {
903l_REMDoForcedActions:
904 if (fInREMState)
905 {
906 STAM_PROFILE_START(&pVM->em.s.StatREMSync, d);
907 REMR3StateBack(pVM);
908 STAM_PROFILE_STOP(&pVM->em.s.StatREMSync, d);
909 fInREMState = false;
910 }
911 STAM_REL_PROFILE_ADV_SUSPEND(&pVM->em.s.StatREMTotal, a);
912 rc = emR3ForcedActions(pVM, rc);
913 STAM_REL_PROFILE_ADV_RESUME(&pVM->em.s.StatREMTotal, a);
914 if ( rc != VINF_SUCCESS
915 && rc != VINF_EM_RESCHEDULE_REM)
916 {
917 *pfFFDone = true;
918 break;
919 }
920 }
921
922 } /* The Inner Loop, recompiled execution mode version. */
923
924
925 /*
926 * Returning. Sync back the VM state if required.
927 */
928 if (fInREMState)
929 {
930 STAM_PROFILE_START(&pVM->em.s.StatREMSync, e);
931 REMR3StateBack(pVM);
932 STAM_PROFILE_STOP(&pVM->em.s.StatREMSync, e);
933 }
934
935 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatREMTotal, a);
936 return rc;
937}
938
939
940/**
941 * Resumes executing hypervisor after a debug event.
942 *
943 * This is kind of special since our current guest state is
944 * potentially out of sync.
945 *
946 * @returns VBox status code.
947 * @param pVM The VM handle.
948 */
949static int emR3RawResumeHyper(PVM pVM)
950{
951 int rc;
952 PCPUMCTX pCtx = pVM->em.s.pCtx;
953 Assert(pVM->em.s.enmState == EMSTATE_DEBUG_HYPER);
954 Log(("emR3RawResumeHyper: cs:eip=%RTsel:%RGr efl=%RGr\n", pCtx->cs, pCtx->eip, pCtx->eflags));
955
956 /*
957 * Resume execution.
958 */
959 CPUMRawEnter(pVM, NULL);
960 CPUMSetHyperEFlags(pVM, CPUMGetHyperEFlags(pVM) | X86_EFL_RF);
961 rc = VMMR3ResumeHyper(pVM);
962 Log(("emR3RawStep: cs:eip=%RTsel:%RGr efl=%RGr - returned from GC with rc=%Vrc\n", pCtx->cs, pCtx->eip, pCtx->eflags, rc));
963 rc = CPUMRawLeave(pVM, NULL, rc);
964 VM_FF_CLEAR(pVM, VM_FF_RESUME_GUEST_MASK);
965
966 /*
967 * Deal with the return code.
968 */
969 rc = emR3HighPriorityPostForcedActions(pVM, rc);
970 rc = emR3RawHandleRC(pVM, pCtx, rc);
971 rc = emR3RawUpdateForceFlag(pVM, pCtx, rc);
972 return rc;
973}
974
975
976/**
977 * Steps rawmode.
978 *
979 * @returns VBox status code.
980 * @param pVM The VM handle.
981 */
982static int emR3RawStep(PVM pVM)
983{
984 Assert( pVM->em.s.enmState == EMSTATE_DEBUG_HYPER
985 || pVM->em.s.enmState == EMSTATE_DEBUG_GUEST_RAW
986 || pVM->em.s.enmState == EMSTATE_DEBUG_GUEST_REM);
987 int rc;
988 PCPUMCTX pCtx = pVM->em.s.pCtx;
989 bool fGuest = pVM->em.s.enmState != EMSTATE_DEBUG_HYPER;
990#ifndef DEBUG_sandervl
991 Log(("emR3RawStep: cs:eip=%RTsel:%RGr efl=%RGr\n", fGuest ? CPUMGetGuestCS(pVM) : CPUMGetHyperCS(pVM),
992 fGuest ? CPUMGetGuestEIP(pVM) : CPUMGetHyperEIP(pVM), fGuest ? CPUMGetGuestEFlags(pVM) : CPUMGetHyperEFlags(pVM)));
993#endif
994 if (fGuest)
995 {
996 /*
997 * Check vital forced actions, but ignore pending interrupts and timers.
998 */
999 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_RAW_MASK))
1000 {
1001 rc = emR3RawForcedActions(pVM, pCtx);
1002 if (VBOX_FAILURE(rc))
1003 return rc;
1004 }
1005
1006 /*
1007 * Set flags for single stepping.
1008 */
1009 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) | X86_EFL_TF | X86_EFL_RF);
1010 }
1011 else
1012 CPUMSetHyperEFlags(pVM, CPUMGetHyperEFlags(pVM) | X86_EFL_TF | X86_EFL_RF);
1013
1014 /*
1015 * Single step.
1016 * We do not start time or anything, if anything we should just do a few nanoseconds.
1017 */
1018 CPUMRawEnter(pVM, NULL);
1019 do
1020 {
1021 if (pVM->em.s.enmState == EMSTATE_DEBUG_HYPER)
1022 rc = VMMR3ResumeHyper(pVM);
1023 else
1024 rc = VMMR3RawRunGC(pVM);
1025#ifndef DEBUG_sandervl
1026 Log(("emR3RawStep: cs:eip=%RTsel:%RGr efl=%RGr - GC rc %Vrc\n", fGuest ? CPUMGetGuestCS(pVM) : CPUMGetHyperCS(pVM),
1027 fGuest ? CPUMGetGuestEIP(pVM) : CPUMGetHyperEIP(pVM), fGuest ? CPUMGetGuestEFlags(pVM) : CPUMGetHyperEFlags(pVM), rc));
1028#endif
1029 } while ( rc == VINF_SUCCESS
1030 || rc == VINF_EM_RAW_INTERRUPT);
1031 rc = CPUMRawLeave(pVM, NULL, rc);
1032 VM_FF_CLEAR(pVM, VM_FF_RESUME_GUEST_MASK);
1033
1034 /*
1035 * Make sure the trap flag is cleared.
1036 * (Too bad if the guest is trying to single step too.)
1037 */
1038 if (fGuest)
1039 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) & ~X86_EFL_TF);
1040 else
1041 CPUMSetHyperEFlags(pVM, CPUMGetHyperEFlags(pVM) & ~X86_EFL_TF);
1042
1043 /*
1044 * Deal with the return codes.
1045 */
1046 rc = emR3HighPriorityPostForcedActions(pVM, rc);
1047 rc = emR3RawHandleRC(pVM, pCtx, rc);
1048 rc = emR3RawUpdateForceFlag(pVM, pCtx, rc);
1049 return rc;
1050}
1051
1052
1053#ifdef DEBUG
1054
1055/**
1056 * Steps hardware accelerated mode.
1057 *
1058 * @returns VBox status code.
1059 * @param pVM The VM handle.
1060 */
1061static int emR3HwAccStep(PVM pVM)
1062{
1063 Assert(pVM->em.s.enmState == EMSTATE_DEBUG_GUEST_HWACC);
1064
1065 int rc;
1066 PCPUMCTX pCtx = pVM->em.s.pCtx;
1067 VM_FF_CLEAR(pVM, (VM_FF_SELM_SYNC_GDT | VM_FF_SELM_SYNC_LDT | VM_FF_TRPM_SYNC_IDT | VM_FF_SELM_SYNC_TSS));
1068
1069 /*
1070 * Check vital forced actions, but ignore pending interrupts and timers.
1071 */
1072 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_RAW_MASK))
1073 {
1074 rc = emR3RawForcedActions(pVM, pCtx);
1075 if (VBOX_FAILURE(rc))
1076 return rc;
1077 }
1078 /*
1079 * Set flags for single stepping.
1080 */
1081 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) | X86_EFL_TF | X86_EFL_RF);
1082
1083 /*
1084 * Single step.
1085 * We do not start time or anything, if anything we should just do a few nanoseconds.
1086 */
1087 do
1088 {
1089 rc = VMMR3HwAccRunGC(pVM);
1090 } while ( rc == VINF_SUCCESS
1091 || rc == VINF_EM_RAW_INTERRUPT);
1092 VM_FF_CLEAR(pVM, VM_FF_RESUME_GUEST_MASK);
1093
1094 /*
1095 * Make sure the trap flag is cleared.
1096 * (Too bad if the guest is trying to single step too.)
1097 */
1098 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) & ~X86_EFL_TF);
1099
1100 /*
1101 * Deal with the return codes.
1102 */
1103 rc = emR3HighPriorityPostForcedActions(pVM, rc);
1104 rc = emR3RawHandleRC(pVM, pCtx, rc);
1105 rc = emR3RawUpdateForceFlag(pVM, pCtx, rc);
1106 return rc;
1107}
1108
1109
1110void emR3SingleStepExecRaw(PVM pVM, uint32_t cIterations)
1111{
1112 EMSTATE enmOldState = pVM->em.s.enmState;
1113
1114 pVM->em.s.enmState = EMSTATE_DEBUG_GUEST_RAW;
1115
1116 Log(("Single step BEGIN:\n"));
1117 for (uint32_t i = 0; i < cIterations; i++)
1118 {
1119 DBGFR3PrgStep(pVM);
1120 DBGFR3DisasInstrCurrentLog(pVM, "RSS: ");
1121 emR3RawStep(pVM);
1122 }
1123 Log(("Single step END:\n"));
1124 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) & ~X86_EFL_TF);
1125 pVM->em.s.enmState = enmOldState;
1126}
1127
1128
1129void emR3SingleStepExecHwAcc(PVM pVM, uint32_t cIterations)
1130{
1131 EMSTATE enmOldState = pVM->em.s.enmState;
1132
1133 pVM->em.s.enmState = EMSTATE_DEBUG_GUEST_HWACC;
1134
1135 Log(("Single step BEGIN:\n"));
1136 for (uint32_t i = 0; i < cIterations; i++)
1137 {
1138 DBGFR3PrgStep(pVM);
1139 DBGFR3DisasInstrCurrentLog(pVM, "RSS: ");
1140 emR3HwAccStep(pVM);
1141 }
1142 Log(("Single step END:\n"));
1143 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) & ~X86_EFL_TF);
1144 pVM->em.s.enmState = enmOldState;
1145}
1146
1147
1148void emR3SingleStepExecRem(PVM pVM, uint32_t cIterations)
1149{
1150 EMSTATE enmOldState = pVM->em.s.enmState;
1151
1152 pVM->em.s.enmState = EMSTATE_DEBUG_GUEST_REM;
1153
1154 Log(("Single step BEGIN:\n"));
1155 for (uint32_t i = 0; i < cIterations; i++)
1156 {
1157 DBGFR3PrgStep(pVM);
1158 DBGFR3DisasInstrCurrentLog(pVM, "RSS: ");
1159 emR3RemStep(pVM);
1160 }
1161 Log(("Single step END:\n"));
1162 CPUMSetGuestEFlags(pVM, CPUMGetGuestEFlags(pVM) & ~X86_EFL_TF);
1163 pVM->em.s.enmState = enmOldState;
1164}
1165
1166#endif /* DEBUG */
1167
1168
1169/**
1170 * Executes one (or perhaps a few more) instruction(s).
1171 *
1172 * @returns VBox status code suitable for EM.
1173 *
1174 * @param pVM VM handle.
1175 * @param rcGC GC return code
1176 * @param pszPrefix Disassembly prefix. If not NULL we'll disassemble the
1177 * instruction and prefix the log output with this text.
1178 */
1179#ifdef LOG_ENABLED
1180static int emR3RawExecuteInstructionWorker(PVM pVM, int rcGC, const char *pszPrefix)
1181#else
1182static int emR3RawExecuteInstructionWorker(PVM pVM, int rcGC)
1183#endif
1184{
1185 PCPUMCTX pCtx = pVM->em.s.pCtx;
1186 int rc;
1187
1188 /*
1189 *
1190 * The simple solution is to use the recompiler.
1191 * The better solution is to disassemble the current instruction and
1192 * try handle as many as possible without using REM.
1193 *
1194 */
1195
1196#ifdef LOG_ENABLED
1197 /*
1198 * Disassemble the instruction if requested.
1199 */
1200 if (pszPrefix)
1201 {
1202 DBGFR3InfoLog(pVM, "cpumguest", pszPrefix);
1203 DBGFR3DisasInstrCurrentLog(pVM, pszPrefix);
1204 }
1205#endif /* LOG_ENABLED */
1206
1207 /*
1208 * PATM is making life more interesting.
1209 * We cannot hand anything to REM which has an EIP inside patch code. So, we'll
1210 * tell PATM there is a trap in this code and have it take the appropriate actions
1211 * to allow us execute the code in REM.
1212 */
1213 if (PATMIsPatchGCAddr(pVM, pCtx->eip))
1214 {
1215 Log(("emR3RawExecuteInstruction: In patch block. eip=%VRv\n", pCtx->eip));
1216
1217 RTGCPTR pNewEip;
1218 rc = PATMR3HandleTrap(pVM, pCtx, pCtx->eip, &pNewEip);
1219 switch (rc)
1220 {
1221 /*
1222 * It's not very useful to emulate a single instruction and then go back to raw
1223 * mode; just execute the whole block until IF is set again.
1224 */
1225 case VINF_SUCCESS:
1226 Log(("emR3RawExecuteInstruction: Executing instruction starting at new address %VGv IF=%d VMIF=%x\n",
1227 pNewEip, pCtx->eflags.Bits.u1IF, pVM->em.s.pPatmGCState->uVMFlags));
1228 pCtx->eip = pNewEip;
1229 Assert(pCtx->eip);
1230
1231 if (pCtx->eflags.Bits.u1IF)
1232 {
1233 /*
1234 * The last instruction in the patch block needs to be executed!! (sti/sysexit for example)
1235 */
1236 Log(("PATCH: IF=1 -> emulate last instruction as it can't be interrupted!!\n"));
1237 return emR3RawExecuteInstruction(pVM, "PATCHIR");
1238 }
1239 else if (rcGC == VINF_PATM_PENDING_IRQ_AFTER_IRET)
1240 {
1241 /* special case: iret, that sets IF, detected a pending irq/event */
1242 return emR3RawExecuteInstruction(pVM, "PATCHIRET");
1243 }
1244 return VINF_EM_RESCHEDULE_REM;
1245
1246 /*
1247 * One instruction.
1248 */
1249 case VINF_PATCH_EMULATE_INSTR:
1250 Log(("emR3RawExecuteInstruction: Emulate patched instruction at %VGv IF=%d VMIF=%x\n",
1251 pNewEip, pCtx->eflags.Bits.u1IF, pVM->em.s.pPatmGCState->uVMFlags));
1252 pCtx->eip = pNewEip;
1253 return emR3RawExecuteInstruction(pVM, "PATCHIR");
1254
1255 /*
1256 * The patch was disabled, hand it to the REM.
1257 */
1258 case VERR_PATCH_DISABLED:
1259 Log(("emR3RawExecuteInstruction: Disabled patch -> new eip %VGv IF=%d VMIF=%x\n",
1260 pNewEip, pCtx->eflags.Bits.u1IF, pVM->em.s.pPatmGCState->uVMFlags));
1261 pCtx->eip = pNewEip;
1262 if (pCtx->eflags.Bits.u1IF)
1263 {
1264 /*
1265 * The last instruction in the patch block needs to be executed!! (sti/sysexit for example)
1266 */
1267 Log(("PATCH: IF=1 -> emulate last instruction as it can't be interrupted!!\n"));
1268 return emR3RawExecuteInstruction(pVM, "PATCHIR");
1269 }
1270 return VINF_EM_RESCHEDULE_REM;
1271
1272 /* Force continued patch exection; usually due to write monitored stack. */
1273 case VINF_PATCH_CONTINUE:
1274 return VINF_SUCCESS;
1275
1276 default:
1277 AssertReleaseMsgFailed(("Unknown return code %Vrc from PATMR3HandleTrap\n", rc));
1278 return VERR_INTERNAL_ERROR;
1279 }
1280 }
1281
1282#if 0
1283 /* Try our own instruction emulator before falling back to the recompiler. */
1284 DISCPUSTATE Cpu;
1285 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->rip, &Cpu, "GEN EMU");
1286 if (VBOX_SUCCESS(rc))
1287 {
1288 uint32_t size;
1289
1290 switch (Cpu.pCurInstr->opcode)
1291 {
1292 /* @todo we can do more now */
1293 case OP_MOV:
1294 case OP_AND:
1295 case OP_OR:
1296 case OP_XOR:
1297 case OP_POP:
1298 case OP_INC:
1299 case OP_DEC:
1300 case OP_XCHG:
1301 STAM_PROFILE_START(&pVM->em.s.StatMiscEmu, a);
1302 rc = EMInterpretInstructionCPU(pVM, &Cpu, CPUMCTX2CORE(pCtx), 0, &size);
1303 if (VBOX_SUCCESS(rc))
1304 {
1305 pCtx->rip += Cpu.opsize;
1306 STAM_PROFILE_STOP(&pVM->em.s.StatMiscEmu, a);
1307 return rc;
1308 }
1309 if (rc != VERR_EM_INTERPRETER)
1310 AssertMsgFailedReturn(("rc=%Vrc\n", rc), rc);
1311 STAM_PROFILE_STOP(&pVM->em.s.StatMiscEmu, a);
1312 break;
1313 }
1314 }
1315#endif /* 0 */
1316 STAM_PROFILE_START(&pVM->em.s.StatREMEmu, a);
1317 rc = REMR3EmulateInstruction(pVM);
1318 STAM_PROFILE_STOP(&pVM->em.s.StatREMEmu, a);
1319
1320 return rc;
1321}
1322
1323
1324/**
1325 * Executes one (or perhaps a few more) instruction(s).
1326 * This is just a wrapper for discarding pszPrefix in non-logging builds.
1327 *
1328 * @returns VBox status code suitable for EM.
1329 * @param pVM VM handle.
1330 * @param pszPrefix Disassembly prefix. If not NULL we'll disassemble the
1331 * instruction and prefix the log output with this text.
1332 * @param rcGC GC return code
1333 */
1334DECLINLINE(int) emR3RawExecuteInstruction(PVM pVM, const char *pszPrefix, int rcGC)
1335{
1336#ifdef LOG_ENABLED
1337 return emR3RawExecuteInstructionWorker(pVM, rcGC, pszPrefix);
1338#else
1339 return emR3RawExecuteInstructionWorker(pVM, rcGC);
1340#endif
1341}
1342
1343/**
1344 * Executes one (or perhaps a few more) IO instruction(s).
1345 *
1346 * @returns VBox status code suitable for EM.
1347 * @param pVM VM handle.
1348 */
1349int emR3RawExecuteIOInstruction(PVM pVM)
1350{
1351 int rc;
1352 PCPUMCTX pCtx = pVM->em.s.pCtx;
1353
1354 STAM_PROFILE_START(&pVM->em.s.StatIOEmu, a);
1355
1356 /** @todo probably we should fall back to the recompiler; otherwise we'll go back and forth between HC & GC
1357 * as io instructions tend to come in packages of more than one
1358 */
1359 DISCPUSTATE Cpu;
1360 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->rip, &Cpu, "IO EMU");
1361 if (VBOX_SUCCESS(rc))
1362 {
1363 rc = VINF_EM_RAW_EMULATE_INSTR;
1364
1365 if (!(Cpu.prefix & (PREFIX_REP | PREFIX_REPNE)))
1366 {
1367 switch (Cpu.pCurInstr->opcode)
1368 {
1369 case OP_IN:
1370 {
1371 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatIn);
1372 rc = IOMInterpretIN(pVM, CPUMCTX2CORE(pCtx), &Cpu);
1373 break;
1374 }
1375
1376 case OP_OUT:
1377 {
1378 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatOut);
1379 rc = IOMInterpretOUT(pVM, CPUMCTX2CORE(pCtx), &Cpu);
1380 break;
1381 }
1382 }
1383 }
1384 else if (Cpu.prefix & PREFIX_REP)
1385 {
1386 switch (Cpu.pCurInstr->opcode)
1387 {
1388 case OP_INSB:
1389 case OP_INSWD:
1390 {
1391 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatIn);
1392 rc = IOMInterpretINS(pVM, CPUMCTX2CORE(pCtx), &Cpu);
1393 break;
1394 }
1395
1396 case OP_OUTSB:
1397 case OP_OUTSWD:
1398 {
1399 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatOut);
1400 rc = IOMInterpretOUTS(pVM, CPUMCTX2CORE(pCtx), &Cpu);
1401 break;
1402 }
1403 }
1404 }
1405
1406 /*
1407 * Handled the I/O return codes.
1408 * (The unhandled cases end up with rc == VINF_EM_RAW_EMULATE_INSTR.)
1409 */
1410 if (IOM_SUCCESS(rc))
1411 {
1412 pCtx->rip += Cpu.opsize;
1413 STAM_PROFILE_STOP(&pVM->em.s.StatIOEmu, a);
1414 return rc;
1415 }
1416
1417 if (rc == VINF_EM_RAW_GUEST_TRAP)
1418 {
1419 STAM_PROFILE_STOP(&pVM->em.s.StatIOEmu, a);
1420 rc = emR3RawGuestTrap(pVM);
1421 return rc;
1422 }
1423 AssertMsg(rc != VINF_TRPM_XCPT_DISPATCHED, ("Handle VINF_TRPM_XCPT_DISPATCHED\n"));
1424
1425 if (VBOX_FAILURE(rc))
1426 {
1427 STAM_PROFILE_STOP(&pVM->em.s.StatIOEmu, a);
1428 return rc;
1429 }
1430 AssertMsg(rc == VINF_EM_RAW_EMULATE_INSTR || rc == VINF_EM_RESCHEDULE_REM, ("rc=%Vrc\n", rc));
1431 }
1432 STAM_PROFILE_STOP(&pVM->em.s.StatIOEmu, a);
1433 return emR3RawExecuteInstruction(pVM, "IO: ");
1434}
1435
1436
1437/**
1438 * Handle a guest context trap.
1439 *
1440 * @returns VBox status code suitable for EM.
1441 * @param pVM VM handle.
1442 */
1443static int emR3RawGuestTrap(PVM pVM)
1444{
1445 PCPUMCTX pCtx = pVM->em.s.pCtx;
1446
1447 /*
1448 * Get the trap info.
1449 */
1450 uint8_t u8TrapNo;
1451 TRPMEVENT enmType;
1452 RTGCUINT uErrorCode;
1453 RTGCUINTPTR uCR2;
1454 int rc = TRPMQueryTrapAll(pVM, &u8TrapNo, &enmType, &uErrorCode, &uCR2);
1455 if (VBOX_FAILURE(rc))
1456 {
1457 AssertReleaseMsgFailed(("No trap! (rc=%Vrc)\n", rc));
1458 return rc;
1459 }
1460
1461 /*
1462 * Traps can be directly forwarded in hardware accelerated mode.
1463 */
1464 if (HWACCMR3IsActive(pVM))
1465 {
1466#ifdef LOGGING_ENABLED
1467 DBGFR3InfoLog(pVM, "cpumguest", "Guest trap");
1468 DBGFR3DisasInstrCurrentLog(pVM, "Guest trap");
1469#endif
1470 return VINF_EM_RESCHEDULE_HWACC;
1471 }
1472
1473#if 1 /* Experimental: Review, disable if it causes trouble. */
1474 /*
1475 * Handle traps in patch code first.
1476 *
1477 * We catch a few of these cases in RC before returning to R3 (#PF, #GP, #BP)
1478 * but several traps isn't handled specially by TRPM in RC and we end up here
1479 * instead. One example is #DE.
1480 */
1481 uint32_t uCpl = CPUMGetGuestCPL(pVM, CPUMCTX2CORE(pCtx));
1482 if ( uCpl == 0
1483 && PATMIsPatchGCAddr(pVM, (RTGCPTR)pCtx->eip))
1484 {
1485 LogFlow(("emR3RawGuestTrap: trap %#x in patch code; eip=%08x\n", u8TrapNo, pCtx->eip));
1486 return emR3PatchTrap(pVM, pCtx, rc);
1487 }
1488#endif
1489
1490 /*
1491 * If the guest gate is marked unpatched, then we will check again if we can patch it.
1492 * (This assumes that we've already tried and failed to dispatch the trap in
1493 * RC for the gates that already has been patched. Which is true for most high
1494 * volume traps, because these are handled specially, but not for odd ones like #DE.)
1495 */
1496 if (TRPMR3GetGuestTrapHandler(pVM, u8TrapNo) == TRPM_INVALID_HANDLER)
1497 {
1498 CSAMR3CheckGates(pVM, u8TrapNo, 1);
1499 Log(("emR3RawHandleRC: recheck gate %x -> valid=%d\n", u8TrapNo, TRPMR3GetGuestTrapHandler(pVM, u8TrapNo) != TRPM_INVALID_HANDLER));
1500
1501 /* If it was successful, then we could go back to raw mode. */
1502 if (TRPMR3GetGuestTrapHandler(pVM, u8TrapNo) != TRPM_INVALID_HANDLER)
1503 {
1504 /* Must check pending forced actions as our IDT or GDT might be out of sync. */
1505 rc = EMR3CheckRawForcedActions(pVM);
1506 AssertRCReturn(rc, rc);
1507
1508 TRPMERRORCODE enmError = uErrorCode != ~0U
1509 ? TRPM_TRAP_HAS_ERRORCODE
1510 : TRPM_TRAP_NO_ERRORCODE;
1511 rc = TRPMForwardTrap(pVM, CPUMCTX2CORE(pCtx), u8TrapNo, uErrorCode, enmError, TRPM_TRAP, -1);
1512 if (rc == VINF_SUCCESS /* Don't use VBOX_SUCCESS */)
1513 {
1514 TRPMResetTrap(pVM);
1515 return VINF_EM_RESCHEDULE_RAW;
1516 }
1517 AssertMsg(rc == VINF_EM_RAW_GUEST_TRAP, ("%Rrc\n", rc));
1518 }
1519 }
1520
1521 /*
1522 * Scan kernel code that traps; we might not get another chance.
1523 */
1524 /** @todo move this up before the dispatching? */
1525 if ( (pCtx->ss & X86_SEL_RPL) <= 1
1526 && !pCtx->eflags.Bits.u1VM)
1527 {
1528 Assert(!PATMIsPatchGCAddr(pVM, pCtx->eip));
1529 CSAMR3CheckCodeEx(pVM, CPUMCTX2CORE(pCtx), pCtx->eip);
1530 }
1531
1532 /*
1533 * Trap specific handling.
1534 */
1535 if (u8TrapNo == 6) /* (#UD) Invalid opcode. */
1536 {
1537 /*
1538 * If MONITOR & MWAIT are supported, then interpret them here.
1539 */
1540 DISCPUSTATE cpu;
1541 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->rip, &cpu, "Guest Trap (#UD): ");
1542 if ( VBOX_SUCCESS(rc)
1543 && (cpu.pCurInstr->opcode == OP_MONITOR || cpu.pCurInstr->opcode == OP_MWAIT))
1544 {
1545 uint32_t u32Dummy, u32Features, u32ExtFeatures;
1546 CPUMGetGuestCpuId(pVM, 1, &u32Dummy, &u32Dummy, &u32ExtFeatures, &u32Features);
1547 if (u32ExtFeatures & X86_CPUID_FEATURE_ECX_MONITOR)
1548 {
1549 rc = TRPMResetTrap(pVM);
1550 AssertRC(rc);
1551
1552 uint32_t opsize;
1553 rc = EMInterpretInstructionCPU(pVM, &cpu, CPUMCTX2CORE(pCtx), 0, &opsize);
1554 if (VBOX_SUCCESS(rc))
1555 {
1556 pCtx->rip += cpu.opsize;
1557 return rc;
1558 }
1559 return emR3RawExecuteInstruction(pVM, "Monitor: ");
1560 }
1561 }
1562 }
1563 else if (u8TrapNo == 13) /* (#GP) Privileged exception */
1564 {
1565 /*
1566 * Handle I/O bitmap?
1567 */
1568 /** @todo We're not supposed to be here with a false guest trap concerning
1569 * I/O access. We can easily handle those in RC. */
1570 DISCPUSTATE cpu;
1571 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->rip, &cpu, "Guest Trap: ");
1572 if ( VBOX_SUCCESS(rc)
1573 && (cpu.pCurInstr->optype & OPTYPE_PORTIO))
1574 {
1575 /*
1576 * We should really check the TSS for the IO bitmap, but it's not like this
1577 * lazy approach really makes things worse.
1578 */
1579 rc = TRPMResetTrap(pVM);
1580 AssertRC(rc);
1581 return emR3RawExecuteInstruction(pVM, "IO Guest Trap: ");
1582 }
1583 }
1584
1585#ifdef LOG_ENABLED
1586 DBGFR3InfoLog(pVM, "cpumguest", "Guest trap");
1587 DBGFR3DisasInstrCurrentLog(pVM, "Guest trap");
1588
1589 /* Get guest page information. */
1590 uint64_t fFlags = 0;
1591 RTGCPHYS GCPhys = 0;
1592 int rc2 = PGMGstGetPage(pVM, uCR2, &fFlags, &GCPhys);
1593 Log(("emR3RawGuestTrap: cs:eip=%04x:%08x: trap=%02x err=%08x cr2=%08x cr0=%08x%s: Phys=%VGp fFlags=%08llx %s %s %s%s rc2=%d\n",
1594 pCtx->cs, pCtx->eip, u8TrapNo, uErrorCode, uCR2, (uint32_t)pCtx->cr0, (enmType == TRPM_SOFTWARE_INT) ? " software" : "", GCPhys, fFlags,
1595 fFlags & X86_PTE_P ? "P " : "NP", fFlags & X86_PTE_US ? "U" : "S",
1596 fFlags & X86_PTE_RW ? "RW" : "R0", fFlags & X86_PTE_G ? " G" : "", rc2));
1597#endif
1598
1599 /*
1600 * #PG has CR2.
1601 * (Because of stuff like above we must set CR2 in a delayed fashion.)
1602 */
1603 if (u8TrapNo == 14 /* #PG */)
1604 pCtx->cr2 = uCR2;
1605
1606 return VINF_EM_RESCHEDULE_REM;
1607}
1608
1609
1610/**
1611 * Handle a ring switch trap.
1612 * Need to do statistics and to install patches. The result is going to REM.
1613 *
1614 * @returns VBox status code suitable for EM.
1615 * @param pVM VM handle.
1616 */
1617int emR3RawRingSwitch(PVM pVM)
1618{
1619 int rc;
1620 DISCPUSTATE Cpu;
1621 PCPUMCTX pCtx = pVM->em.s.pCtx;
1622
1623 /*
1624 * sysenter, syscall & callgate
1625 */
1626 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->rip, &Cpu, "RSWITCH: ");
1627 if (VBOX_SUCCESS(rc))
1628 {
1629 if (Cpu.pCurInstr->opcode == OP_SYSENTER)
1630 {
1631 if (pCtx->SysEnter.cs != 0)
1632 {
1633 rc = PATMR3InstallPatch(pVM, SELMToFlat(pVM, DIS_SELREG_CS, CPUMCTX2CORE(pCtx), pCtx->eip),
1634 (SELMGetCpuModeFromSelector(pVM, pCtx->eflags, pCtx->cs, &pCtx->csHid) == CPUMODE_32BIT) ? PATMFL_CODE32 : 0);
1635 if (VBOX_SUCCESS(rc))
1636 {
1637 DBGFR3DisasInstrCurrentLog(pVM, "Patched sysenter instruction");
1638 return VINF_EM_RESCHEDULE_RAW;
1639 }
1640 }
1641 }
1642
1643#ifdef VBOX_WITH_STATISTICS
1644 switch (Cpu.pCurInstr->opcode)
1645 {
1646 case OP_SYSENTER:
1647 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysEnter);
1648 break;
1649 case OP_SYSEXIT:
1650 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysExit);
1651 break;
1652 case OP_SYSCALL:
1653 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysCall);
1654 break;
1655 case OP_SYSRET:
1656 STAM_COUNTER_INC(&pVM->em.s.CTX_SUFF(pStats)->StatSysRet);
1657 break;
1658 }
1659#endif
1660 }
1661 else
1662 AssertRC(rc);
1663
1664 /* go to the REM to emulate a single instruction */
1665 return emR3RawExecuteInstruction(pVM, "RSWITCH: ");
1666}
1667
1668
1669/**
1670 * Handle a trap (\#PF or \#GP) in patch code
1671 *
1672 * @returns VBox status code suitable for EM.
1673 * @param pVM VM handle.
1674 * @param pCtx CPU context
1675 * @param gcret GC return code
1676 */
1677static int emR3PatchTrap(PVM pVM, PCPUMCTX pCtx, int gcret)
1678{
1679 uint8_t u8TrapNo;
1680 int rc;
1681 TRPMEVENT enmType;
1682 RTGCUINT uErrorCode;
1683 RTGCUINTPTR uCR2;
1684
1685 Assert(PATMIsPatchGCAddr(pVM, pCtx->eip));
1686
1687 if (gcret == VINF_PATM_PATCH_INT3)
1688 {
1689 u8TrapNo = 3;
1690 uCR2 = 0;
1691 uErrorCode = 0;
1692 }
1693 else if (gcret == VINF_PATM_PATCH_TRAP_GP)
1694 {
1695 /* No active trap in this case. Kind of ugly. */
1696 u8TrapNo = X86_XCPT_GP;
1697 uCR2 = 0;
1698 uErrorCode = 0;
1699 }
1700 else
1701 {
1702 rc = TRPMQueryTrapAll(pVM, &u8TrapNo, &enmType, &uErrorCode, &uCR2);
1703 if (VBOX_FAILURE(rc))
1704 {
1705 AssertReleaseMsgFailed(("emR3PatchTrap: no trap! (rc=%Vrc) gcret=%Vrc\n", rc, gcret));
1706 return rc;
1707 }
1708 /* Reset the trap as we'll execute the original instruction again. */
1709 TRPMResetTrap(pVM);
1710 }
1711
1712 /*
1713 * Deal with traps inside patch code.
1714 * (This code won't run outside GC.)
1715 */
1716 if (u8TrapNo != 1)
1717 {
1718#ifdef LOG_ENABLED
1719 DBGFR3InfoLog(pVM, "cpumguest", "Trap in patch code");
1720 DBGFR3DisasInstrCurrentLog(pVM, "Patch code");
1721
1722 DISCPUSTATE Cpu;
1723 int rc;
1724
1725 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->eip, &Cpu, "Patch code: ");
1726 if ( VBOX_SUCCESS(rc)
1727 && Cpu.pCurInstr->opcode == OP_IRET)
1728 {
1729 uint32_t eip, selCS, uEFlags;
1730
1731 /* Iret crashes are bad as we have already changed the flags on the stack */
1732 rc = PGMPhysSimpleReadGCPtr(pVM, &eip, pCtx->esp, 4);
1733 rc |= PGMPhysSimpleReadGCPtr(pVM, &selCS, pCtx->esp+4, 4);
1734 rc |= PGMPhysSimpleReadGCPtr(pVM, &uEFlags, pCtx->esp+8, 4);
1735 if (rc == VINF_SUCCESS)
1736 {
1737 if ( (uEFlags & X86_EFL_VM)
1738 || (selCS & X86_SEL_RPL) == 3)
1739 {
1740 uint32_t selSS, esp;
1741
1742 rc |= PGMPhysSimpleReadGCPtr(pVM, &esp, pCtx->esp + 12, 4);
1743 rc |= PGMPhysSimpleReadGCPtr(pVM, &selSS, pCtx->esp + 16, 4);
1744
1745 if (uEFlags & X86_EFL_VM)
1746 {
1747 uint32_t selDS, selES, selFS, selGS;
1748 rc = PGMPhysSimpleReadGCPtr(pVM, &selES, pCtx->esp + 20, 4);
1749 rc |= PGMPhysSimpleReadGCPtr(pVM, &selDS, pCtx->esp + 24, 4);
1750 rc |= PGMPhysSimpleReadGCPtr(pVM, &selFS, pCtx->esp + 28, 4);
1751 rc |= PGMPhysSimpleReadGCPtr(pVM, &selGS, pCtx->esp + 32, 4);
1752 if (rc == VINF_SUCCESS)
1753 {
1754 Log(("Patch code: IRET->VM stack frame: return address %04X:%VGv eflags=%08x ss:esp=%04X:%VGv\n", selCS, eip, uEFlags, selSS, esp));
1755 Log(("Patch code: IRET->VM stack frame: DS=%04X ES=%04X FS=%04X GS=%04X\n", selDS, selES, selFS, selGS));
1756 }
1757 }
1758 else
1759 Log(("Patch code: IRET stack frame: return address %04X:%VGv eflags=%08x ss:esp=%04X:%VGv\n", selCS, eip, uEFlags, selSS, esp));
1760 }
1761 else
1762 Log(("Patch code: IRET stack frame: return address %04X:%VGv eflags=%08x\n", selCS, eip, uEFlags));
1763 }
1764 }
1765#endif /* LOG_ENABLED */
1766 Log(("emR3PatchTrap: in patch: eip=%08x: trap=%02x err=%08x cr2=%08x cr0=%08x\n",
1767 pCtx->eip, u8TrapNo, uErrorCode, uCR2, (uint32_t)pCtx->cr0));
1768
1769 RTGCPTR pNewEip;
1770 rc = PATMR3HandleTrap(pVM, pCtx, pCtx->eip, &pNewEip);
1771 switch (rc)
1772 {
1773 /*
1774 * Execute the faulting instruction.
1775 */
1776 case VINF_SUCCESS:
1777 {
1778 /** @todo execute a whole block */
1779 Log(("emR3PatchTrap: Executing faulting instruction at new address %VGv\n", pNewEip));
1780 if (!(pVM->em.s.pPatmGCState->uVMFlags & X86_EFL_IF))
1781 Log(("emR3PatchTrap: Virtual IF flag disabled!!\n"));
1782
1783 pCtx->eip = pNewEip;
1784 AssertRelease(pCtx->eip);
1785
1786 if (pCtx->eflags.Bits.u1IF)
1787 {
1788 /* Windows XP lets irets fault intentionally and then takes action based on the opcode; an
1789 * int3 patch overwrites it and leads to blue screens. Remove the patch in this case.
1790 */
1791 if ( u8TrapNo == X86_XCPT_GP
1792 && PATMIsInt3Patch(pVM, pCtx->eip, NULL, NULL))
1793 {
1794 /** @todo move to PATMR3HandleTrap */
1795 Log(("Possible Windows XP iret fault at %VGv\n", pCtx->eip));
1796 PATMR3RemovePatch(pVM, pCtx->eip);
1797 }
1798
1799 /** @todo Knoppix 5 regression when returning VINF_SUCCESS here and going back to raw mode. */
1800 /* Note: possibly because a reschedule is required (e.g. iret to V86 code) */
1801
1802 return emR3RawExecuteInstruction(pVM, "PATCHIR");
1803 /* Interrupts are enabled; just go back to the original instruction.
1804 return VINF_SUCCESS; */
1805 }
1806 return VINF_EM_RESCHEDULE_REM;
1807 }
1808
1809 /*
1810 * One instruction.
1811 */
1812 case VINF_PATCH_EMULATE_INSTR:
1813 Log(("emR3PatchTrap: Emulate patched instruction at %VGv IF=%d VMIF=%x\n",
1814 pNewEip, pCtx->eflags.Bits.u1IF, pVM->em.s.pPatmGCState->uVMFlags));
1815 pCtx->eip = pNewEip;
1816 AssertRelease(pCtx->eip);
1817 return emR3RawExecuteInstruction(pVM, "PATCHEMUL: ");
1818
1819 /*
1820 * The patch was disabled, hand it to the REM.
1821 */
1822 case VERR_PATCH_DISABLED:
1823 if (!(pVM->em.s.pPatmGCState->uVMFlags & X86_EFL_IF))
1824 Log(("emR3PatchTrap: Virtual IF flag disabled!!\n"));
1825 pCtx->eip = pNewEip;
1826 AssertRelease(pCtx->eip);
1827
1828 if (pCtx->eflags.Bits.u1IF)
1829 {
1830 /*
1831 * The last instruction in the patch block needs to be executed!! (sti/sysexit for example)
1832 */
1833 Log(("PATCH: IF=1 -> emulate last instruction as it can't be interrupted!!\n"));
1834 return emR3RawExecuteInstruction(pVM, "PATCHIR");
1835 }
1836 return VINF_EM_RESCHEDULE_REM;
1837
1838 /* Force continued patch exection; usually due to write monitored stack. */
1839 case VINF_PATCH_CONTINUE:
1840 return VINF_SUCCESS;
1841
1842 /*
1843 * Anything else is *fatal*.
1844 */
1845 default:
1846 AssertReleaseMsgFailed(("Unknown return code %Vrc from PATMR3HandleTrap!\n", rc));
1847 return VERR_INTERNAL_ERROR;
1848 }
1849 }
1850 return VINF_SUCCESS;
1851}
1852
1853
1854/**
1855 * Handle a privileged instruction.
1856 *
1857 * @returns VBox status code suitable for EM.
1858 * @param pVM VM handle.
1859 */
1860int emR3RawPrivileged(PVM pVM)
1861{
1862 STAM_PROFILE_START(&pVM->em.s.StatPrivEmu, a);
1863 PCPUMCTX pCtx = pVM->em.s.pCtx;
1864
1865 Assert(!pCtx->eflags.Bits.u1VM);
1866
1867 if (PATMIsEnabled(pVM))
1868 {
1869 /*
1870 * Check if in patch code.
1871 */
1872 if (PATMR3IsInsidePatchJump(pVM, pCtx->eip, NULL))
1873 {
1874#ifdef LOG_ENABLED
1875 DBGFR3InfoLog(pVM, "cpumguest", "PRIV");
1876#endif
1877 AssertMsgFailed(("FATAL ERROR: executing random instruction inside generated patch jump %08X\n", pCtx->eip));
1878 return VERR_EM_RAW_PATCH_CONFLICT;
1879 }
1880 if ( (pCtx->ss & X86_SEL_RPL) == 0
1881 && !pCtx->eflags.Bits.u1VM
1882 && !PATMIsPatchGCAddr(pVM, pCtx->eip))
1883 {
1884 int rc = PATMR3InstallPatch(pVM, SELMToFlat(pVM, DIS_SELREG_CS, CPUMCTX2CORE(pCtx), pCtx->eip),
1885 (SELMGetCpuModeFromSelector(pVM, pCtx->eflags, pCtx->cs, &pCtx->csHid) == CPUMODE_32BIT) ? PATMFL_CODE32 : 0);
1886 if (VBOX_SUCCESS(rc))
1887 {
1888#ifdef LOG_ENABLED
1889 DBGFR3InfoLog(pVM, "cpumguest", "PRIV");
1890#endif
1891 DBGFR3DisasInstrCurrentLog(pVM, "Patched privileged instruction");
1892 return VINF_SUCCESS;
1893 }
1894 }
1895 }
1896
1897#ifdef LOG_ENABLED
1898 if (!PATMIsPatchGCAddr(pVM, pCtx->eip))
1899 {
1900 DBGFR3InfoLog(pVM, "cpumguest", "PRIV");
1901 DBGFR3DisasInstrCurrentLog(pVM, "Privileged instr: ");
1902 }
1903#endif
1904
1905 /*
1906 * Instruction statistics and logging.
1907 */
1908 DISCPUSTATE Cpu;
1909 int rc;
1910
1911 rc = CPUMR3DisasmInstrCPU(pVM, pCtx, pCtx->rip, &Cpu, "PRIV: ");
1912 if (VBOX_SUCCESS(rc))
1913 {
1914#ifdef VBOX_WITH_STATISTICS
1915 PEMSTATS pStats = pVM->em.s.CTX_SUFF(pStats);
1916 switch (Cpu.pCurInstr->opcode)
1917 {
1918 case OP_INVLPG:
1919 STAM_COUNTER_INC(&pStats->StatInvlpg);
1920 break;
1921 case OP_IRET:
1922 STAM_COUNTER_INC(&pStats->StatIret);
1923 break;
1924 case OP_CLI:
1925 STAM_COUNTER_INC(&pStats->StatCli);
1926 emR3RecordCli(pVM, pCtx->rip);
1927 break;
1928 case OP_STI:
1929 STAM_COUNTER_INC(&pStats->StatSti);
1930 break;
1931 case OP_INSB:
1932 case OP_INSWD:
1933 case OP_IN:
1934 case OP_OUTSB:
1935 case OP_OUTSWD:
1936 case OP_OUT:
1937 AssertMsgFailed(("Unexpected privileged exception due to port IO\n"));
1938 break;
1939
1940 case OP_MOV_CR:
1941 if (Cpu.param1.flags & USE_REG_GEN32)
1942 {
1943 //read
1944 Assert(Cpu.param2.flags & USE_REG_CR);
1945 Assert(Cpu.param2.base.reg_ctrl <= USE_REG_CR4);
1946 STAM_COUNTER_INC(&pStats->StatMovReadCR[Cpu.param2.base.reg_ctrl]);
1947 }
1948 else
1949 {
1950 //write
1951 Assert(Cpu.param1.flags & USE_REG_CR);
1952 Assert(Cpu.param1.base.reg_ctrl <= USE_REG_CR4);
1953 STAM_COUNTER_INC(&pStats->StatMovWriteCR[Cpu.param1.base.reg_ctrl]);
1954 }
1955 break;
1956
1957 case OP_MOV_DR:
1958 STAM_COUNTER_INC(&pStats->StatMovDRx);
1959 break;
1960 case OP_LLDT:
1961 STAM_COUNTER_INC(&pStats->StatMovLldt);
1962 break;
1963 case OP_LIDT:
1964 STAM_COUNTER_INC(&pStats->StatMovLidt);
1965 break;
1966 case OP_LGDT:
1967 STAM_COUNTER_INC(&pStats->StatMovLgdt);
1968 break;
1969 case OP_SYSENTER:
1970 STAM_COUNTER_INC(&pStats->StatSysEnter);
1971 break;
1972 case OP_SYSEXIT:
1973 STAM_COUNTER_INC(&pStats->StatSysExit);
1974 break;
1975 case OP_SYSCALL:
1976 STAM_COUNTER_INC(&pStats->StatSysCall);
1977 break;
1978 case OP_SYSRET:
1979 STAM_COUNTER_INC(&pStats->StatSysRet);
1980 break;
1981 case OP_HLT:
1982 STAM_COUNTER_INC(&pStats->StatHlt);
1983 break;
1984 default:
1985 STAM_COUNTER_INC(&pStats->StatMisc);
1986 Log4(("emR3RawPrivileged: opcode=%d\n", Cpu.pCurInstr->opcode));
1987 break;
1988 }
1989#endif /* VBOX_WITH_STATISTICS */
1990 if ( (pCtx->ss & X86_SEL_RPL) == 0
1991 && !pCtx->eflags.Bits.u1VM
1992 && SELMGetCpuModeFromSelector(pVM, pCtx->eflags, pCtx->cs, &pCtx->csHid) == CPUMODE_32BIT)
1993 {
1994 uint32_t size;
1995
1996 STAM_PROFILE_START(&pVM->em.s.StatPrivEmu, a);
1997 switch (Cpu.pCurInstr->opcode)
1998 {
1999 case OP_CLI:
2000 pCtx->eflags.u32 &= ~X86_EFL_IF;
2001 Assert(Cpu.opsize == 1);
2002 pCtx->rip += Cpu.opsize;
2003 STAM_PROFILE_STOP(&pVM->em.s.StatPrivEmu, a);
2004 return VINF_EM_RESCHEDULE_REM; /* must go to the recompiler now! */
2005
2006 case OP_STI:
2007 pCtx->eflags.u32 |= X86_EFL_IF;
2008 EMSetInhibitInterruptsPC(pVM, pCtx->rip + Cpu.opsize);
2009 Assert(Cpu.opsize == 1);
2010 pCtx->rip += Cpu.opsize;
2011 STAM_PROFILE_STOP(&pVM->em.s.StatPrivEmu, a);
2012 return VINF_SUCCESS;
2013
2014 case OP_HLT:
2015 if (PATMIsPatchGCAddr(pVM, (RTGCPTR)pCtx->eip))
2016 {
2017 PATMTRANSSTATE enmState;
2018 RTGCPTR pOrgInstrGC = PATMR3PatchToGCPtr(pVM, pCtx->eip, &enmState);
2019
2020 if (enmState == PATMTRANS_OVERWRITTEN)
2021 {
2022 rc = PATMR3DetectConflict(pVM, pOrgInstrGC, pOrgInstrGC);
2023 Assert(rc == VERR_PATCH_DISABLED);
2024 /* Conflict detected, patch disabled */
2025 Log(("emR3RawPrivileged: detected conflict -> disabled patch at %VGv\n", pCtx->eip));
2026
2027 enmState = PATMTRANS_SAFE;
2028 }
2029
2030 /* The translation had better be successful. Otherwise we can't recover. */
2031 AssertReleaseMsg(pOrgInstrGC && enmState != PATMTRANS_OVERWRITTEN, ("Unable to translate instruction address at %VGv\n", pCtx->eip));
2032 if (enmState != PATMTRANS_OVERWRITTEN)
2033 pCtx->eip = pOrgInstrGC;
2034 }
2035 /* no break; we could just return VINF_EM_HALT here */
2036
2037 case OP_MOV_CR:
2038 case OP_MOV_DR:
2039#ifdef LOG_ENABLED
2040 if (PATMIsPatchGCAddr(pVM, pCtx->eip))
2041 {
2042 DBGFR3InfoLog(pVM, "cpumguest", "PRIV");
2043 DBGFR3DisasInstrCurrentLog(pVM, "Privileged instr: ");
2044 }
2045#endif
2046
2047 rc = EMInterpretInstructionCPU(pVM, &Cpu, CPUMCTX2CORE(pCtx), 0, &size);
2048 if (VBOX_SUCCESS(rc))
2049 {
2050 pCtx->rip += Cpu.opsize;
2051 STAM_PROFILE_STOP(&pVM->em.s.StatPrivEmu, a);
2052
2053 if ( Cpu.pCurInstr->opcode == OP_MOV_CR
2054 && Cpu.param1.flags == USE_REG_CR /* write */
2055 )
2056 {
2057 /* Deal with CR0 updates inside patch code that force
2058 * us to go to the recompiler.
2059 */
2060 if ( PATMIsPatchGCAddr(pVM, pCtx->rip)
2061 && (pCtx->cr0 & (X86_CR0_WP|X86_CR0_PG|X86_CR0_PE)) != (X86_CR0_WP|X86_CR0_PG|X86_CR0_PE))
2062 {
2063 PATMTRANSSTATE enmState;
2064 RTGCPTR pOrgInstrGC = PATMR3PatchToGCPtr(pVM, pCtx->rip, &enmState);
2065
2066 Assert(pCtx->eflags.Bits.u1IF == 0);
2067 Log(("Force recompiler switch due to cr0 (%VGp) update\n", pCtx->cr0));
2068 if (enmState == PATMTRANS_OVERWRITTEN)
2069 {
2070 rc = PATMR3DetectConflict(pVM, pOrgInstrGC, pOrgInstrGC);
2071 Assert(rc == VERR_PATCH_DISABLED);
2072 /* Conflict detected, patch disabled */
2073 Log(("emR3RawPrivileged: detected conflict -> disabled patch at %VGv\n", pCtx->rip));
2074 enmState = PATMTRANS_SAFE;
2075 }
2076 /* The translation had better be successful. Otherwise we can't recover. */
2077 AssertReleaseMsg(pOrgInstrGC && enmState != PATMTRANS_OVERWRITTEN, ("Unable to translate instruction address at %VGv\n", pCtx->rip));
2078 if (enmState != PATMTRANS_OVERWRITTEN)
2079 pCtx->rip = pOrgInstrGC;
2080 }
2081
2082 /* Reschedule is necessary as the execution/paging mode might have changed. */
2083 return VINF_EM_RESCHEDULE;
2084 }
2085 return rc; /* can return VINF_EM_HALT as well. */
2086 }
2087 AssertMsgReturn(rc == VERR_EM_INTERPRETER, ("%Vrc\n", rc), rc);
2088 break; /* fall back to the recompiler */
2089 }
2090 STAM_PROFILE_STOP(&pVM->em.s.StatPrivEmu, a);
2091 }
2092 }
2093
2094 if (PATMIsPatchGCAddr(pVM, pCtx->eip))
2095 return emR3PatchTrap(pVM, pCtx, VINF_PATM_PATCH_TRAP_GP);
2096
2097 return emR3RawExecuteInstruction(pVM, "PRIV");
2098}
2099
2100
2101/**
2102 * Update the forced rawmode execution modifier.
2103 *
2104 * This function is called when we're returning from the raw-mode loop(s). If we're
2105 * in patch code, it will set a flag forcing execution to be resumed in raw-mode,
2106 * if not in patch code, the flag will be cleared.
2107 *
2108 * We should never interrupt patch code while it's being executed. Cli patches can
2109 * contain big code blocks, but they are always executed with IF=0. Other patches
2110 * replace single instructions and should be atomic.
2111 *
2112 * @returns Updated rc.
2113 *
2114 * @param pVM The VM handle.
2115 * @param pCtx The guest CPU context.
2116 * @param rc The result code.
2117 */
2118DECLINLINE(int) emR3RawUpdateForceFlag(PVM pVM, PCPUMCTX pCtx, int rc)
2119{
2120 if (PATMIsPatchGCAddr(pVM, pCtx->eip)) /** @todo check cs selector base/type */
2121 {
2122 /* ignore reschedule attempts. */
2123 switch (rc)
2124 {
2125 case VINF_EM_RESCHEDULE:
2126 case VINF_EM_RESCHEDULE_REM:
2127 rc = VINF_SUCCESS;
2128 break;
2129 }
2130 pVM->em.s.fForceRAW = true;
2131 }
2132 else
2133 pVM->em.s.fForceRAW = false;
2134 return rc;
2135}
2136
2137
2138/**
2139 * Process a subset of the raw-mode return code.
2140 *
2141 * Since we have to share this with raw-mode single stepping, this inline
2142 * function has been created to avoid code duplication.
2143 *
2144 * @returns VINF_SUCCESS if it's ok to continue raw mode.
2145 * @returns VBox status code to return to the EM main loop.
2146 *
2147 * @param pVM The VM handle
2148 * @param rc The return code.
2149 * @param pCtx The guest cpu context.
2150 */
2151DECLINLINE(int) emR3RawHandleRC(PVM pVM, PCPUMCTX pCtx, int rc)
2152{
2153 switch (rc)
2154 {
2155 /*
2156 * Common & simple ones.
2157 */
2158 case VINF_SUCCESS:
2159 break;
2160 case VINF_EM_RESCHEDULE_RAW:
2161 case VINF_EM_RESCHEDULE_HWACC:
2162 case VINF_EM_RAW_INTERRUPT:
2163 case VINF_EM_RAW_TO_R3:
2164 case VINF_EM_RAW_TIMER_PENDING:
2165 case VINF_EM_PENDING_REQUEST:
2166 rc = VINF_SUCCESS;
2167 break;
2168
2169 /*
2170 * Privileged instruction.
2171 */
2172 case VINF_EM_RAW_EXCEPTION_PRIVILEGED:
2173 case VINF_PATM_PATCH_TRAP_GP:
2174 rc = emR3RawPrivileged(pVM);
2175 break;
2176
2177 /*
2178 * Got a trap which needs dispatching.
2179 */
2180 case VINF_EM_RAW_GUEST_TRAP:
2181 if (PATMR3IsInsidePatchJump(pVM, pCtx->eip, NULL))
2182 {
2183 AssertReleaseMsgFailed(("FATAL ERROR: executing random instruction inside generated patch jump %08X\n", CPUMGetGuestEIP(pVM)));
2184 rc = VERR_EM_RAW_PATCH_CONFLICT;
2185 break;
2186 }
2187 rc = emR3RawGuestTrap(pVM);
2188 break;
2189
2190 /*
2191 * Trap in patch code.
2192 */
2193 case VINF_PATM_PATCH_TRAP_PF:
2194 case VINF_PATM_PATCH_INT3:
2195 rc = emR3PatchTrap(pVM, pCtx, rc);
2196 break;
2197
2198 case VINF_PATM_DUPLICATE_FUNCTION:
2199 Assert(PATMIsPatchGCAddr(pVM, (RTGCPTR)pCtx->eip));
2200 rc = PATMR3DuplicateFunctionRequest(pVM, pCtx);
2201 AssertRC(rc);
2202 rc = VINF_SUCCESS;
2203 break;
2204
2205 case VINF_PATM_CHECK_PATCH_PAGE:
2206 rc = PATMR3HandleMonitoredPage(pVM);
2207 AssertRC(rc);
2208 rc = VINF_SUCCESS;
2209 break;
2210
2211 /*
2212 * Patch manager.
2213 */
2214 case VERR_EM_RAW_PATCH_CONFLICT:
2215 AssertReleaseMsgFailed(("%Vrc handling is not yet implemented\n", rc));
2216 break;
2217
2218#ifdef VBOX_WITH_VMI
2219 /*
2220 * PARAV function.
2221 */
2222 case VINF_EM_RESCHEDULE_PARAV:
2223 rc = PARAVCallFunction(pVM);
2224 break;
2225#endif
2226
2227 /*
2228 * Memory mapped I/O access - attempt to patch the instruction
2229 */
2230 case VINF_PATM_HC_MMIO_PATCH_READ:
2231 rc = PATMR3InstallPatch(pVM, SELMToFlat(pVM, DIS_SELREG_CS, CPUMCTX2CORE(pCtx), pCtx->eip),
2232 PATMFL_MMIO_ACCESS | ((SELMGetCpuModeFromSelector(pVM, pCtx->eflags, pCtx->cs, &pCtx->csHid) == CPUMODE_32BIT) ? PATMFL_CODE32 : 0));
2233 if (VBOX_FAILURE(rc))
2234 rc = emR3RawExecuteInstruction(pVM, "MMIO");
2235 break;
2236
2237 case VINF_PATM_HC_MMIO_PATCH_WRITE:
2238 AssertFailed(); /* not yet implemented. */
2239 rc = emR3RawExecuteInstruction(pVM, "MMIO");
2240 break;
2241
2242 /*
2243 * Conflict or out of page tables.
2244 *
2245 * VM_FF_PGM_SYNC_CR3 is set by the hypervisor and all we need to
2246 * do here is to execute the pending forced actions.
2247 */
2248 case VINF_PGM_SYNC_CR3:
2249 AssertMsg(VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL),
2250 ("VINF_PGM_SYNC_CR3 and no VM_FF_PGM_SYNC_CR3*!\n"));
2251 rc = VINF_SUCCESS;
2252 break;
2253
2254 /*
2255 * Paging mode change.
2256 */
2257 case VINF_PGM_CHANGE_MODE:
2258 rc = PGMChangeMode(pVM, pCtx->cr0, pCtx->cr4, pCtx->msrEFER);
2259 if (VBOX_SUCCESS(rc))
2260 rc = VINF_EM_RESCHEDULE;
2261 break;
2262
2263 /*
2264 * CSAM wants to perform a task in ring-3. It has set an FF action flag.
2265 */
2266 case VINF_CSAM_PENDING_ACTION:
2267 rc = VINF_SUCCESS;
2268 break;
2269
2270 /*
2271 * Invoked Interrupt gate - must directly (!) go to the recompiler.
2272 */
2273 case VINF_EM_RAW_INTERRUPT_PENDING:
2274 case VINF_EM_RAW_RING_SWITCH_INT:
2275 Assert(TRPMHasTrap(pVM));
2276 Assert(!PATMIsPatchGCAddr(pVM, (RTGCPTR)pCtx->eip));
2277
2278 if (TRPMHasTrap(pVM))
2279 {
2280 /* If the guest gate is marked unpatched, then we will check again if we can patch it. */
2281 uint8_t u8Interrupt = TRPMGetTrapNo(pVM);
2282 if (TRPMR3GetGuestTrapHandler(pVM, u8Interrupt) == TRPM_INVALID_HANDLER)
2283 {
2284 CSAMR3CheckGates(pVM, u8Interrupt, 1);
2285 Log(("emR3RawHandleRC: recheck gate %x -> valid=%d\n", u8Interrupt, TRPMR3GetGuestTrapHandler(pVM, u8Interrupt) != TRPM_INVALID_HANDLER));
2286 /* Note: If it was successful, then we could go back to raw mode, but let's keep things simple for now. */
2287 }
2288 }
2289 rc = VINF_EM_RESCHEDULE_REM;
2290 break;
2291
2292 /*
2293 * Other ring switch types.
2294 */
2295 case VINF_EM_RAW_RING_SWITCH:
2296 rc = emR3RawRingSwitch(pVM);
2297 break;
2298
2299 /*
2300 * REMGCNotifyInvalidatePage() failed because of overflow.
2301 */
2302 case VERR_REM_FLUSHED_PAGES_OVERFLOW:
2303 Assert((pCtx->ss & X86_SEL_RPL) != 1);
2304 REMR3ReplayInvalidatedPages(pVM);
2305 rc = VINF_SUCCESS;
2306 break;
2307
2308 /*
2309 * I/O Port access - emulate the instruction.
2310 */
2311 case VINF_IOM_HC_IOPORT_READ:
2312 case VINF_IOM_HC_IOPORT_WRITE:
2313 rc = emR3RawExecuteIOInstruction(pVM);
2314 break;
2315
2316 /*
2317 * Memory mapped I/O access - emulate the instruction.
2318 */
2319 case VINF_IOM_HC_MMIO_READ:
2320 case VINF_IOM_HC_MMIO_WRITE:
2321 case VINF_IOM_HC_MMIO_READ_WRITE:
2322 rc = emR3RawExecuteInstruction(pVM, "MMIO");
2323 break;
2324
2325 /*
2326 * Execute instruction.
2327 */
2328 case VINF_EM_RAW_EMULATE_INSTR_LDT_FAULT:
2329 rc = emR3RawExecuteInstruction(pVM, "LDT FAULT: ");
2330 break;
2331 case VINF_EM_RAW_EMULATE_INSTR_GDT_FAULT:
2332 rc = emR3RawExecuteInstruction(pVM, "GDT FAULT: ");
2333 break;
2334 case VINF_EM_RAW_EMULATE_INSTR_IDT_FAULT:
2335 rc = emR3RawExecuteInstruction(pVM, "IDT FAULT: ");
2336 break;
2337 case VINF_EM_RAW_EMULATE_INSTR_TSS_FAULT:
2338 rc = emR3RawExecuteInstruction(pVM, "TSS FAULT: ");
2339 break;
2340 case VINF_EM_RAW_EMULATE_INSTR_PD_FAULT:
2341 rc = emR3RawExecuteInstruction(pVM, "PD FAULT: ");
2342 break;
2343
2344 case VINF_EM_RAW_EMULATE_INSTR_HLT:
2345 /** @todo skip instruction and go directly to the halt state. (see REM for implementation details) */
2346 rc = emR3RawPrivileged(pVM);
2347 break;
2348
2349 case VINF_PATM_PENDING_IRQ_AFTER_IRET:
2350 rc = emR3RawExecuteInstruction(pVM, "EMUL: ", VINF_PATM_PENDING_IRQ_AFTER_IRET);
2351 break;
2352
2353 case VINF_EM_RAW_EMULATE_INSTR:
2354 case VINF_PATCH_EMULATE_INSTR:
2355 rc = emR3RawExecuteInstruction(pVM, "EMUL: ");
2356 break;
2357
2358 /*
2359 * Stale selector and iret traps => REM.
2360 */
2361 case VINF_EM_RAW_STALE_SELECTOR:
2362 case VINF_EM_RAW_IRET_TRAP:
2363 /* We will not go to the recompiler if EIP points to patch code. */
2364 if (PATMIsPatchGCAddr(pVM, pCtx->eip))
2365 {
2366 pCtx->eip = PATMR3PatchToGCPtr(pVM, (RTGCPTR)pCtx->eip, 0);
2367 }
2368 LogFlow(("emR3RawHandleRC: %Vrc -> %Vrc\n", rc, VINF_EM_RESCHEDULE_REM));
2369 rc = VINF_EM_RESCHEDULE_REM;
2370 break;
2371
2372 /*
2373 * Up a level.
2374 */
2375 case VINF_EM_TERMINATE:
2376 case VINF_EM_OFF:
2377 case VINF_EM_RESET:
2378 case VINF_EM_SUSPEND:
2379 case VINF_EM_HALT:
2380 case VINF_EM_RESUME:
2381 case VINF_EM_RESCHEDULE:
2382 case VINF_EM_RESCHEDULE_REM:
2383 break;
2384
2385 /*
2386 * Up a level and invoke the debugger.
2387 */
2388 case VINF_EM_DBG_STEPPED:
2389 case VINF_EM_DBG_BREAKPOINT:
2390 case VINF_EM_DBG_STEP:
2391 case VINF_EM_DBG_HYPER_BREAKPOINT:
2392 case VINF_EM_DBG_HYPER_STEPPED:
2393 case VINF_EM_DBG_HYPER_ASSERTION:
2394 case VINF_EM_DBG_STOP:
2395 break;
2396
2397 /*
2398 * Up a level, dump and debug.
2399 */
2400 case VERR_TRPM_DONT_PANIC:
2401 case VERR_TRPM_PANIC:
2402 case VERR_VMM_RING0_ASSERTION:
2403 break;
2404
2405 /*
2406 * Up a level, after HwAccM have done some release logging.
2407 */
2408 case VERR_VMX_INVALID_VMCS_FIELD:
2409 case VERR_VMX_INVALID_VMCS_PTR:
2410 case VERR_VMX_INVALID_VMXON_PTR:
2411 case VERR_VMX_UNEXPECTED_INTERRUPTION_EXIT_CODE:
2412 case VERR_VMX_UNEXPECTED_EXCEPTION:
2413 case VERR_VMX_UNEXPECTED_EXIT_CODE:
2414 case VERR_VMX_INVALID_GUEST_STATE:
2415 case VERR_VMX_UNABLE_TO_START_VM:
2416 case VERR_VMX_UNABLE_TO_RESUME_VM:
2417 HWACCMR3CheckError(pVM, rc);
2418 break;
2419 /*
2420 * Anything which is not known to us means an internal error
2421 * and the termination of the VM!
2422 */
2423 default:
2424 AssertMsgFailed(("Unknown GC return code: %Vra\n", rc));
2425 break;
2426 }
2427 return rc;
2428}
2429
2430
2431/**
2432 * Check for pending raw actions
2433 *
2434 * @returns VBox status code.
2435 * @param pVM The VM to operate on.
2436 */
2437VMMR3DECL(int) EMR3CheckRawForcedActions(PVM pVM)
2438{
2439 return emR3RawForcedActions(pVM, pVM->em.s.pCtx);
2440}
2441
2442
2443/**
2444 * Process raw-mode specific forced actions.
2445 *
2446 * This function is called when any FFs in the VM_FF_HIGH_PRIORITY_PRE_RAW_MASK is pending.
2447 *
2448 * @returns VBox status code.
2449 * Only the normal success/failure stuff, no VINF_EM_*.
2450 * @param pVM The VM handle.
2451 * @param pCtx The guest CPUM register context.
2452 */
2453static int emR3RawForcedActions(PVM pVM, PCPUMCTX pCtx)
2454{
2455 /*
2456 * Note that the order is *vitally* important!
2457 * Also note that SELMR3UpdateFromCPUM may trigger VM_FF_SELM_SYNC_TSS.
2458 */
2459
2460
2461 /*
2462 * Sync selector tables.
2463 */
2464 if (VM_FF_ISPENDING(pVM, VM_FF_SELM_SYNC_GDT | VM_FF_SELM_SYNC_LDT))
2465 {
2466 int rc = SELMR3UpdateFromCPUM(pVM);
2467 if (VBOX_FAILURE(rc))
2468 return rc;
2469 }
2470
2471 /*
2472 * Sync IDT.
2473 */
2474 if (VM_FF_ISSET(pVM, VM_FF_TRPM_SYNC_IDT))
2475 {
2476 int rc = TRPMR3SyncIDT(pVM);
2477 if (VBOX_FAILURE(rc))
2478 return rc;
2479 }
2480
2481 /*
2482 * Sync TSS.
2483 */
2484 if (VM_FF_ISSET(pVM, VM_FF_SELM_SYNC_TSS))
2485 {
2486 int rc = SELMR3SyncTSS(pVM);
2487 if (VBOX_FAILURE(rc))
2488 return rc;
2489 }
2490
2491 /*
2492 * Sync page directory.
2493 */
2494 if (VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL))
2495 {
2496 int rc = PGMSyncCR3(pVM, pCtx->cr0, pCtx->cr3, pCtx->cr4, VM_FF_ISSET(pVM, VM_FF_PGM_SYNC_CR3));
2497 if (VBOX_FAILURE(rc))
2498 return rc;
2499
2500 Assert(!VM_FF_ISPENDING(pVM, VM_FF_SELM_SYNC_GDT | VM_FF_SELM_SYNC_LDT));
2501
2502 /* Prefetch pages for EIP and ESP */
2503 /** @todo This is rather expensive. Should investigate if it really helps at all. */
2504 rc = PGMPrefetchPage(pVM, SELMToFlat(pVM, DIS_SELREG_CS, CPUMCTX2CORE(pCtx), pCtx->rip));
2505 if (rc == VINF_SUCCESS)
2506 rc = PGMPrefetchPage(pVM, SELMToFlat(pVM, DIS_SELREG_SS, CPUMCTX2CORE(pCtx), pCtx->rsp));
2507 if (rc != VINF_SUCCESS)
2508 {
2509 if (rc != VINF_PGM_SYNC_CR3)
2510 return rc;
2511 rc = PGMSyncCR3(pVM, pCtx->cr0, pCtx->cr3, pCtx->cr4, VM_FF_ISSET(pVM, VM_FF_PGM_SYNC_CR3));
2512 if (VBOX_FAILURE(rc))
2513 return rc;
2514 }
2515 /** @todo maybe prefetch the supervisor stack page as well */
2516 }
2517
2518 /*
2519 * Allocate handy pages (just in case the above actions have consumed some pages).
2520 */
2521 if (VM_FF_ISSET(pVM, VM_FF_PGM_NEED_HANDY_PAGES))
2522 {
2523 int rc = PGMR3PhysAllocateHandyPages(pVM);
2524 if (VBOX_FAILURE(rc))
2525 return rc;
2526 }
2527
2528 return VINF_SUCCESS;
2529}
2530
2531
2532/**
2533 * Executes raw code.
2534 *
2535 * This function contains the raw-mode version of the inner
2536 * execution loop (the outer loop being in EMR3ExecuteVM()).
2537 *
2538 * @returns VBox status code. The most important ones are: VINF_EM_RESCHEDULE,
2539 * VINF_EM_RESCHEDULE_REM, VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
2540 *
2541 * @param pVM VM handle.
2542 * @param pfFFDone Where to store an indicator telling whether or not
2543 * FFs were done before returning.
2544 */
2545static int emR3RawExecute(PVM pVM, bool *pfFFDone)
2546{
2547 STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatRAWTotal, a);
2548
2549 int rc = VERR_INTERNAL_ERROR;
2550 PCPUMCTX pCtx = pVM->em.s.pCtx;
2551 LogFlow(("emR3RawExecute: (cs:eip=%04x:%08x)\n", pCtx->cs, pCtx->eip));
2552 pVM->em.s.fForceRAW = false;
2553 *pfFFDone = false;
2554
2555
2556 /*
2557 *
2558 * Spin till we get a forced action or raw mode status code resulting in
2559 * in anything but VINF_SUCCESS or VINF_EM_RESCHEDULE_RAW.
2560 *
2561 */
2562 for (;;)
2563 {
2564 STAM_PROFILE_ADV_START(&pVM->em.s.StatRAWEntry, b);
2565
2566 /*
2567 * Check various preconditions.
2568 */
2569#ifdef VBOX_STRICT
2570 Assert(REMR3QueryPendingInterrupt(pVM) == REM_NO_PENDING_IRQ);
2571 Assert(pCtx->eflags.Bits.u1VM || (pCtx->ss & X86_SEL_RPL) == 3 || (pCtx->ss & X86_SEL_RPL) == 0);
2572 AssertMsg( (pCtx->eflags.u32 & X86_EFL_IF)
2573 || PATMShouldUseRawMode(pVM, (RTGCPTR)pCtx->eip),
2574 ("Tried to execute code with IF at EIP=%08x!\n", pCtx->eip));
2575 if ( !VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL)
2576 && PGMR3MapHasConflicts(pVM, pCtx->cr3, pVM->fRawR0Enabled))
2577 {
2578 AssertMsgFailed(("We should not get conflicts any longer!!!\n"));
2579 return VERR_INTERNAL_ERROR;
2580 }
2581#endif /* VBOX_STRICT */
2582
2583 /*
2584 * Process high priority pre-execution raw-mode FFs.
2585 */
2586 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_RAW_MASK))
2587 {
2588 rc = emR3RawForcedActions(pVM, pCtx);
2589 if (VBOX_FAILURE(rc))
2590 break;
2591 }
2592
2593 /*
2594 * If we're going to execute ring-0 code, the guest state needs to
2595 * be modified a bit and some of the state components (IF, SS/CS RPL,
2596 * and perhaps EIP) needs to be stored with PATM.
2597 */
2598 rc = CPUMRawEnter(pVM, NULL);
2599 if (rc != VINF_SUCCESS)
2600 {
2601 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatRAWEntry, b);
2602 break;
2603 }
2604
2605 /*
2606 * Scan code before executing it. Don't bother with user mode or V86 code
2607 */
2608 if ( (pCtx->ss & X86_SEL_RPL) <= 1
2609 && !pCtx->eflags.Bits.u1VM
2610 && !PATMIsPatchGCAddr(pVM, pCtx->eip))
2611 {
2612 STAM_PROFILE_ADV_SUSPEND(&pVM->em.s.StatRAWEntry, b);
2613 CSAMR3CheckCodeEx(pVM, CPUMCTX2CORE(pCtx), pCtx->eip);
2614 STAM_PROFILE_ADV_RESUME(&pVM->em.s.StatRAWEntry, b);
2615 }
2616
2617#ifdef LOG_ENABLED
2618 /*
2619 * Log important stuff before entering GC.
2620 */
2621 PPATMGCSTATE pGCState = PATMR3QueryGCStateHC(pVM);
2622 if (pCtx->eflags.Bits.u1VM)
2623 Log(("RV86: %04X:%08X IF=%d VMFlags=%x\n", pCtx->cs, pCtx->eip, pCtx->eflags.Bits.u1IF, pGCState->uVMFlags));
2624 else if ((pCtx->ss & X86_SEL_RPL) == 1)
2625 {
2626 bool fCSAMScanned = CSAMIsPageScanned(pVM, (RTGCPTR)pCtx->eip);
2627 Log(("RR0: %08X ESP=%08X IF=%d VMFlags=%x PIF=%d CPL=%d (Scanned=%d)\n", pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, pGCState->uVMFlags, pGCState->fPIF, (pCtx->ss & X86_SEL_RPL), fCSAMScanned));
2628 }
2629 else if ((pCtx->ss & X86_SEL_RPL) == 3)
2630 Log(("RR3: %08X ESP=%08X IF=%d VMFlags=%x\n", pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, pGCState->uVMFlags));
2631#endif /* LOG_ENABLED */
2632
2633
2634
2635 /*
2636 * Execute the code.
2637 */
2638 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatRAWEntry, b);
2639 STAM_PROFILE_START(&pVM->em.s.StatRAWExec, c);
2640 VMMR3Unlock(pVM);
2641 rc = VMMR3RawRunGC(pVM);
2642 VMMR3Lock(pVM);
2643 STAM_PROFILE_STOP(&pVM->em.s.StatRAWExec, c);
2644 STAM_PROFILE_ADV_START(&pVM->em.s.StatRAWTail, d);
2645
2646 LogFlow(("RR0-E: %08X ESP=%08X IF=%d VMFlags=%x PIF=%d CPL=%d\n", pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, pGCState->uVMFlags, pGCState->fPIF, (pCtx->ss & X86_SEL_RPL)));
2647 LogFlow(("VMMR3RawRunGC returned %Vrc\n", rc));
2648
2649
2650
2651 /*
2652 * Restore the real CPU state and deal with high priority post
2653 * execution FFs before doing anything else.
2654 */
2655 rc = CPUMRawLeave(pVM, NULL, rc);
2656 VM_FF_CLEAR(pVM, VM_FF_RESUME_GUEST_MASK);
2657 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_POST_MASK))
2658 rc = emR3HighPriorityPostForcedActions(pVM, rc);
2659
2660#ifdef VBOX_STRICT
2661 /*
2662 * Assert TSS consistency & rc vs patch code.
2663 */
2664 if ( !VM_FF_ISPENDING(pVM, VM_FF_SELM_SYNC_TSS | VM_FF_SELM_SYNC_GDT) /* GDT implies TSS at the moment. */
2665 && EMIsRawRing0Enabled(pVM))
2666 SELMR3CheckTSS(pVM);
2667 switch (rc)
2668 {
2669 case VINF_SUCCESS:
2670 case VINF_EM_RAW_INTERRUPT:
2671 case VINF_PATM_PATCH_TRAP_PF:
2672 case VINF_PATM_PATCH_TRAP_GP:
2673 case VINF_PATM_PATCH_INT3:
2674 case VINF_PATM_CHECK_PATCH_PAGE:
2675 case VINF_EM_RAW_EXCEPTION_PRIVILEGED:
2676 case VINF_EM_RAW_GUEST_TRAP:
2677 case VINF_EM_RESCHEDULE_RAW:
2678 break;
2679
2680 default:
2681 if (PATMIsPatchGCAddr(pVM, pCtx->eip) && !(pCtx->eflags.u32 & X86_EFL_TF))
2682 LogIt(NULL, 0, LOG_GROUP_PATM, ("Patch code interrupted at %VRv for reason %Vrc\n", (RTRCPTR)CPUMGetGuestEIP(pVM), rc));
2683 break;
2684 }
2685 /*
2686 * Let's go paranoid!
2687 */
2688 if ( !VM_FF_ISPENDING(pVM, VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL)
2689 && PGMR3MapHasConflicts(pVM, pCtx->cr3, pVM->fRawR0Enabled))
2690 {
2691 AssertMsgFailed(("We should not get conflicts any longer!!!\n"));
2692 return VERR_INTERNAL_ERROR;
2693 }
2694#endif /* VBOX_STRICT */
2695
2696 /*
2697 * Process the returned status code.
2698 */
2699 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
2700 {
2701 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTail, d);
2702 break;
2703 }
2704 rc = emR3RawHandleRC(pVM, pCtx, rc);
2705 if (rc != VINF_SUCCESS)
2706 {
2707 rc = emR3RawUpdateForceFlag(pVM, pCtx, rc);
2708 if (rc != VINF_SUCCESS)
2709 {
2710 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTail, d);
2711 break;
2712 }
2713 }
2714
2715 /*
2716 * Check and execute forced actions.
2717 */
2718#ifdef VBOX_HIGH_RES_TIMERS_HACK
2719 TMTimerPoll(pVM);
2720#endif
2721 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTail, d);
2722 if (VM_FF_ISPENDING(pVM, ~VM_FF_HIGH_PRIORITY_PRE_RAW_MASK))
2723 {
2724 Assert(pCtx->eflags.Bits.u1VM || (pCtx->ss & X86_SEL_RPL) != 1);
2725
2726 STAM_REL_PROFILE_ADV_SUSPEND(&pVM->em.s.StatRAWTotal, a);
2727 rc = emR3ForcedActions(pVM, rc);
2728 STAM_REL_PROFILE_ADV_RESUME(&pVM->em.s.StatRAWTotal, a);
2729 if ( rc != VINF_SUCCESS
2730 && rc != VINF_EM_RESCHEDULE_RAW)
2731 {
2732 rc = emR3RawUpdateForceFlag(pVM, pCtx, rc);
2733 if (rc != VINF_SUCCESS)
2734 {
2735 *pfFFDone = true;
2736 break;
2737 }
2738 }
2739 }
2740 }
2741
2742 /*
2743 * Return to outer loop.
2744 */
2745#if defined(LOG_ENABLED) && defined(DEBUG)
2746 RTLogFlush(NULL);
2747#endif
2748 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatRAWTotal, a);
2749 return rc;
2750}
2751
2752
2753/**
2754 * Executes hardware accelerated raw code. (Intel VMX & AMD SVM)
2755 *
2756 * This function contains the raw-mode version of the inner
2757 * execution loop (the outer loop being in EMR3ExecuteVM()).
2758 *
2759 * @returns VBox status code. The most important ones are: VINF_EM_RESCHEDULE, VINF_EM_RESCHEDULE_RAW,
2760 * VINF_EM_RESCHEDULE_REM, VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
2761 *
2762 * @param pVM VM handle.
2763 * @param pfFFDone Where to store an indicator telling whether or not
2764 * FFs were done before returning.
2765 */
2766static int emR3HwAccExecute(PVM pVM, bool *pfFFDone)
2767{
2768 int rc = VERR_INTERNAL_ERROR;
2769 PCPUMCTX pCtx = pVM->em.s.pCtx;
2770
2771 LogFlow(("emR3HwAccExecute: (cs:eip=%04x:%VGv)\n", pCtx->cs, pCtx->rip));
2772 *pfFFDone = false;
2773
2774 STAM_COUNTER_INC(&pVM->em.s.StatHwAccExecuteEntry);
2775
2776 /*
2777 * Spin till we get a forced action which returns anything but VINF_SUCCESS.
2778 */
2779 for (;;)
2780 {
2781 STAM_PROFILE_ADV_START(&pVM->em.s.StatHwAccEntry, a);
2782
2783 /*
2784 * Check various preconditions.
2785 */
2786 VM_FF_CLEAR(pVM, (VM_FF_SELM_SYNC_GDT | VM_FF_SELM_SYNC_LDT | VM_FF_TRPM_SYNC_IDT | VM_FF_SELM_SYNC_TSS));
2787
2788 /*
2789 * Process high priority pre-execution raw-mode FFs.
2790 */
2791 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_RAW_MASK))
2792 {
2793 rc = emR3RawForcedActions(pVM, pCtx);
2794 if (VBOX_FAILURE(rc))
2795 break;
2796 }
2797
2798#ifdef LOG_ENABLED
2799 /*
2800 * Log important stuff before entering GC.
2801 */
2802 if (TRPMHasTrap(pVM))
2803 Log(("Pending hardware interrupt=0x%x cs:eip=%04X:%VGv\n", TRPMGetTrapNo(pVM), pCtx->cs, pCtx->rip));
2804
2805 uint32_t cpl = CPUMGetGuestCPL(pVM, CPUMCTX2CORE(pCtx));
2806 if (pCtx->eflags.Bits.u1VM)
2807 Log(("HWV86: %08X IF=%d\n", pCtx->eip, pCtx->eflags.Bits.u1IF));
2808 else if (CPUMIsGuestIn64BitCode(pVM, CPUMCTX2CORE(pCtx)))
2809 Log(("HWR%d: %04X:%VGv ESP=%VGv IF=%d CR0=%x CR4=%x EFER=%x\n", cpl, pCtx->cs, pCtx->rip, pCtx->rsp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
2810 else
2811 Log(("HWR%d: %04X:%08X ESP=%08X IF=%d CR0=%x CR4=%x EFER=%x\n", cpl, pCtx->cs, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
2812#endif /* LOG_ENABLED */
2813
2814 /*
2815 * Execute the code.
2816 */
2817 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatHwAccEntry, a);
2818 STAM_PROFILE_START(&pVM->em.s.StatHwAccExec, x);
2819 VMMR3Unlock(pVM);
2820 rc = VMMR3HwAccRunGC(pVM);
2821 VMMR3Lock(pVM);
2822 STAM_PROFILE_STOP(&pVM->em.s.StatHwAccExec, x);
2823
2824 /*
2825 * Deal with high priority post execution FFs before doing anything else.
2826 */
2827 VM_FF_CLEAR(pVM, VM_FF_RESUME_GUEST_MASK);
2828 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_POST_MASK))
2829 rc = emR3HighPriorityPostForcedActions(pVM, rc);
2830
2831 /*
2832 * Process the returned status code.
2833 */
2834 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
2835 break;
2836
2837 rc = emR3RawHandleRC(pVM, pCtx, rc);
2838 if (rc != VINF_SUCCESS)
2839 break;
2840
2841 /*
2842 * Check and execute forced actions.
2843 */
2844#ifdef VBOX_HIGH_RES_TIMERS_HACK
2845 TMTimerPoll(pVM);
2846#endif
2847 if (VM_FF_ISPENDING(pVM, VM_FF_ALL_MASK))
2848 {
2849 rc = emR3ForcedActions(pVM, rc);
2850 if ( rc != VINF_SUCCESS
2851 && rc != VINF_EM_RESCHEDULE_HWACC)
2852 {
2853 *pfFFDone = true;
2854 break;
2855 }
2856 }
2857 }
2858 /*
2859 * Return to outer loop.
2860 */
2861#if defined(LOG_ENABLED) && defined(DEBUG)
2862 RTLogFlush(NULL);
2863#endif
2864 return rc;
2865}
2866
2867
2868/**
2869 * Decides whether to execute RAW, HWACC or REM.
2870 *
2871 * @returns new EM state
2872 * @param pVM The VM.
2873 * @param pCtx The CPU context.
2874 */
2875DECLINLINE(EMSTATE) emR3Reschedule(PVM pVM, PCPUMCTX pCtx)
2876{
2877 /*
2878 * When forcing raw-mode execution, things are simple.
2879 */
2880 if (pVM->em.s.fForceRAW)
2881 return EMSTATE_RAW;
2882
2883 /* !!! THIS MUST BE IN SYNC WITH remR3CanExecuteRaw !!! */
2884 /* !!! THIS MUST BE IN SYNC WITH remR3CanExecuteRaw !!! */
2885 /* !!! THIS MUST BE IN SYNC WITH remR3CanExecuteRaw !!! */
2886
2887 X86EFLAGS EFlags = pCtx->eflags;
2888 if (HWACCMIsEnabled(pVM))
2889 {
2890 /* Hardware accelerated raw-mode:
2891 *
2892 * Typically only 32-bits protected mode, with paging enabled, code is allowed here.
2893 */
2894 if (HWACCMR3CanExecuteGuest(pVM, pCtx) == true)
2895 return EMSTATE_HWACC;
2896
2897 /* Note: Raw mode and hw accelerated mode are incompatible. The latter turns
2898 * off monitoring features essential for raw mode! */
2899 return EMSTATE_REM;
2900 }
2901
2902 /*
2903 * Standard raw-mode:
2904 *
2905 * Here we only support 16 & 32 bits protected mode ring 3 code that has no IO privileges
2906 * or 32 bits protected mode ring 0 code
2907 *
2908 * The tests are ordered by the likelyhood of being true during normal execution.
2909 */
2910 if (EFlags.u32 & (X86_EFL_TF /* | HF_INHIBIT_IRQ_MASK*/))
2911 {
2912 Log2(("raw mode refused: EFlags=%#x\n", EFlags.u32));
2913 return EMSTATE_REM;
2914 }
2915
2916#ifndef VBOX_RAW_V86
2917 if (EFlags.u32 & X86_EFL_VM) {
2918 Log2(("raw mode refused: VM_MASK\n"));
2919 return EMSTATE_REM;
2920 }
2921#endif
2922
2923 /** @todo check up the X86_CR0_AM flag in respect to raw mode!!! We're probably not emulating it right! */
2924 uint32_t u32CR0 = pCtx->cr0;
2925 if ((u32CR0 & (X86_CR0_PG | X86_CR0_PE)) != (X86_CR0_PG | X86_CR0_PE))
2926 {
2927 //Log2(("raw mode refused: %s%s%s\n", (u32CR0 & X86_CR0_PG) ? "" : " !PG", (u32CR0 & X86_CR0_PE) ? "" : " !PE", (u32CR0 & X86_CR0_AM) ? "" : " !AM"));
2928 return EMSTATE_REM;
2929 }
2930
2931 if (pCtx->cr4 & X86_CR4_PAE)
2932 {
2933 uint32_t u32Dummy, u32Features;
2934
2935 CPUMGetGuestCpuId(pVM, 1, &u32Dummy, &u32Dummy, &u32Dummy, &u32Features);
2936 if (!(u32Features & X86_CPUID_FEATURE_EDX_PAE))
2937 return EMSTATE_REM;
2938 }
2939
2940 unsigned uSS = pCtx->ss;
2941 if ( pCtx->eflags.Bits.u1VM
2942 || (uSS & X86_SEL_RPL) == 3)
2943 {
2944 if (!EMIsRawRing3Enabled(pVM))
2945 return EMSTATE_REM;
2946
2947 if (!(EFlags.u32 & X86_EFL_IF))
2948 {
2949 Log2(("raw mode refused: IF (RawR3)\n"));
2950 return EMSTATE_REM;
2951 }
2952
2953 if (!(u32CR0 & X86_CR0_WP) && EMIsRawRing0Enabled(pVM))
2954 {
2955 Log2(("raw mode refused: CR0.WP + RawR0\n"));
2956 return EMSTATE_REM;
2957 }
2958 }
2959 else
2960 {
2961 if (!EMIsRawRing0Enabled(pVM))
2962 return EMSTATE_REM;
2963
2964 /* Only ring 0 supervisor code. */
2965 if ((uSS & X86_SEL_RPL) != 0)
2966 {
2967 Log2(("raw r0 mode refused: CPL %d\n", uSS & X86_SEL_RPL));
2968 return EMSTATE_REM;
2969 }
2970
2971 // Let's start with pure 32 bits ring 0 code first
2972 /** @todo What's pure 32-bit mode? flat? */
2973 if ( !(pCtx->ssHid.Attr.n.u1DefBig)
2974 || !(pCtx->csHid.Attr.n.u1DefBig))
2975 {
2976 Log2(("raw r0 mode refused: SS/CS not 32bit\n"));
2977 return EMSTATE_REM;
2978 }
2979
2980 /* Write protection must be turned on, or else the guest can overwrite our hypervisor code and data. */
2981 if (!(u32CR0 & X86_CR0_WP))
2982 {
2983 Log2(("raw r0 mode refused: CR0.WP=0!\n"));
2984 return EMSTATE_REM;
2985 }
2986
2987 if (PATMShouldUseRawMode(pVM, (RTGCPTR)pCtx->eip))
2988 {
2989 Log2(("raw r0 mode forced: patch code\n"));
2990 return EMSTATE_RAW;
2991 }
2992
2993#if !defined(VBOX_ALLOW_IF0) && !defined(VBOX_RUN_INTERRUPT_GATE_HANDLERS)
2994 if (!(EFlags.u32 & X86_EFL_IF))
2995 {
2996 ////Log2(("R0: IF=0 VIF=%d %08X\n", eip, pVMeflags));
2997 //Log2(("RR0: Interrupts turned off; fall back to emulation\n"));
2998 return EMSTATE_REM;
2999 }
3000#endif
3001
3002 /** @todo still necessary??? */
3003 if (EFlags.Bits.u2IOPL != 0)
3004 {
3005 Log2(("raw r0 mode refused: IOPL %d\n", EFlags.Bits.u2IOPL));
3006 return EMSTATE_REM;
3007 }
3008 }
3009
3010 Assert(PGMPhysIsA20Enabled(pVM));
3011 return EMSTATE_RAW;
3012}
3013
3014
3015/**
3016 * Executes all high priority post execution force actions.
3017 *
3018 * @returns rc or a fatal status code.
3019 *
3020 * @param pVM VM handle.
3021 * @param rc The current rc.
3022 */
3023static int emR3HighPriorityPostForcedActions(PVM pVM, int rc)
3024{
3025 if (VM_FF_ISSET(pVM, VM_FF_PDM_CRITSECT))
3026 PDMR3CritSectFF(pVM);
3027
3028 if (VM_FF_ISSET(pVM, VM_FF_CSAM_PENDING_ACTION))
3029 CSAMR3DoPendingAction(pVM);
3030
3031 return rc;
3032}
3033
3034
3035/**
3036 * Executes all pending forced actions.
3037 *
3038 * Forced actions can cause execution delays and execution
3039 * rescheduling. The first we deal with using action priority, so
3040 * that for instance pending timers aren't scheduled and ran until
3041 * right before execution. The rescheduling we deal with using
3042 * return codes. The same goes for VM termination, only in that case
3043 * we exit everything.
3044 *
3045 * @returns VBox status code of equal or greater importance/severity than rc.
3046 * The most important ones are: VINF_EM_RESCHEDULE,
3047 * VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
3048 *
3049 * @param pVM VM handle.
3050 * @param rc The current rc.
3051 *
3052 */
3053static int emR3ForcedActions(PVM pVM, int rc)
3054{
3055 STAM_REL_PROFILE_START(&pVM->em.s.StatForcedActions, a);
3056#ifdef VBOX_STRICT
3057 int rcIrq = VINF_SUCCESS;
3058#endif
3059 int rc2;
3060#define UPDATE_RC() \
3061 do { \
3062 AssertMsg(rc2 <= 0 || (rc2 >= VINF_EM_FIRST && rc2 <= VINF_EM_LAST), ("Invalid FF return code: %Vra\n", rc2)); \
3063 if (rc2 == VINF_SUCCESS || rc < VINF_SUCCESS) \
3064 break; \
3065 if (!rc || rc2 < rc) \
3066 rc = rc2; \
3067 } while (0)
3068
3069 /*
3070 * Post execution chunk first.
3071 */
3072 if (VM_FF_ISPENDING(pVM, VM_FF_NORMAL_PRIORITY_POST_MASK))
3073 {
3074 /*
3075 * Termination request.
3076 */
3077 if (VM_FF_ISSET(pVM, VM_FF_TERMINATE))
3078 {
3079 Log2(("emR3ForcedActions: returns VINF_EM_TERMINATE\n"));
3080 STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
3081 return VINF_EM_TERMINATE;
3082 }
3083
3084 /*
3085 * Debugger Facility polling.
3086 */
3087 if (VM_FF_ISSET(pVM, VM_FF_DBGF))
3088 {
3089 rc2 = DBGFR3VMMForcedAction(pVM);
3090 UPDATE_RC();
3091 }
3092
3093 /*
3094 * Postponed reset request.
3095 */
3096 if (VM_FF_ISSET(pVM, VM_FF_RESET))
3097 {
3098 rc2 = VMR3Reset(pVM);
3099 UPDATE_RC();
3100 VM_FF_CLEAR(pVM, VM_FF_RESET);
3101 }
3102
3103 /*
3104 * CSAM page scanning.
3105 */
3106 if (VM_FF_ISSET(pVM, VM_FF_CSAM_SCAN_PAGE))
3107 {
3108 PCPUMCTX pCtx = pVM->em.s.pCtx;
3109
3110 /** @todo: check for 16 or 32 bits code! (D bit in the code selector) */
3111 Log(("Forced action VM_FF_CSAM_SCAN_PAGE\n"));
3112
3113 CSAMR3CheckCodeEx(pVM, CPUMCTX2CORE(pCtx), pCtx->eip);
3114 VM_FF_CLEAR(pVM, VM_FF_CSAM_SCAN_PAGE);
3115 }
3116
3117 /* check that we got them all */
3118 Assert(!(VM_FF_NORMAL_PRIORITY_POST_MASK & ~(VM_FF_TERMINATE | VM_FF_DBGF | VM_FF_RESET | VM_FF_CSAM_SCAN_PAGE)));
3119 }
3120
3121 /*
3122 * Normal priority then.
3123 * (Executed in no particular order.)
3124 */
3125 if (VM_FF_ISPENDING(pVM, VM_FF_NORMAL_PRIORITY_MASK))
3126 {
3127 /*
3128 * PDM Queues are pending.
3129 */
3130 if (VM_FF_ISSET(pVM, VM_FF_PDM_QUEUES))
3131 PDMR3QueueFlushAll(pVM);
3132
3133 /*
3134 * PDM DMA transfers are pending.
3135 */
3136 if (VM_FF_ISSET(pVM, VM_FF_PDM_DMA))
3137 PDMR3DmaRun(pVM);
3138
3139 /*
3140 * Requests from other threads.
3141 */
3142 if (VM_FF_ISSET(pVM, VM_FF_REQUEST))
3143 {
3144 rc2 = VMR3ReqProcessU(pVM->pUVM, VMREQDEST_ANY);
3145 if (rc2 == VINF_EM_OFF || rc2 == VINF_EM_TERMINATE)
3146 {
3147 Log2(("emR3ForcedActions: returns %Vrc\n", rc2));
3148 STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
3149 return rc2;
3150 }
3151 UPDATE_RC();
3152 }
3153
3154 /* Replay the handler notification changes. */
3155 if (VM_FF_ISSET(pVM, VM_FF_REM_HANDLER_NOTIFY))
3156 REMR3ReplayHandlerNotifications(pVM);
3157
3158 /* check that we got them all */
3159 Assert(!(VM_FF_NORMAL_PRIORITY_MASK & ~(VM_FF_REQUEST | VM_FF_PDM_QUEUES | VM_FF_PDM_DMA | VM_FF_REM_HANDLER_NOTIFY)));
3160 }
3161
3162 /*
3163 * Execute polling function ever so often.
3164 * THIS IS A HACK, IT WILL BE *REPLACED* BY PROPER ASYNC NETWORKING "SOON"!
3165 */
3166 static unsigned cLast = 0;
3167 if (!((++cLast) % 4))
3168 PDMR3Poll(pVM);
3169
3170 /*
3171 * High priority pre execution chunk last.
3172 * (Executed in ascending priority order.)
3173 */
3174 if (VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_MASK))
3175 {
3176 /*
3177 * Timers before interrupts.
3178 */
3179 if (VM_FF_ISSET(pVM, VM_FF_TIMER))
3180 TMR3TimerQueuesDo(pVM);
3181
3182 /*
3183 * The instruction following an emulated STI should *always* be executed!
3184 */
3185 if (VM_FF_ISSET(pVM, VM_FF_INHIBIT_INTERRUPTS))
3186 {
3187 Log(("VM_FF_EMULATED_STI at %VGv successor %VGv\n", (RTGCPTR)CPUMGetGuestRIP(pVM), EMGetInhibitInterruptsPC(pVM)));
3188 if (CPUMGetGuestEIP(pVM) != EMGetInhibitInterruptsPC(pVM))
3189 {
3190 /* Note: we intentionally don't clear VM_FF_INHIBIT_INTERRUPTS here if the eip is the same as the inhibited instr address.
3191 * Before we are able to execute this instruction in raw mode (iret to guest code) an external interrupt might
3192 * force a world switch again. Possibly allowing a guest interrupt to be dispatched in the process. This could
3193 * break the guest. Sounds very unlikely, but such timing sensitive problem are not as rare as you might think.
3194 */
3195 VM_FF_CLEAR(pVM, VM_FF_INHIBIT_INTERRUPTS);
3196 }
3197 if (HWACCMR3IsActive(pVM))
3198 rc2 = VINF_EM_RESCHEDULE_HWACC;
3199 else
3200 rc2 = PATMAreInterruptsEnabled(pVM) ? VINF_EM_RESCHEDULE_RAW : VINF_EM_RESCHEDULE_REM;
3201
3202 UPDATE_RC();
3203 }
3204
3205 /*
3206 * Interrupts.
3207 */
3208 if ( !VM_FF_ISSET(pVM, VM_FF_INHIBIT_INTERRUPTS)
3209 && (!rc || rc >= VINF_EM_RESCHEDULE_RAW)
3210 && !TRPMHasTrap(pVM) /* an interrupt could already be scheduled for dispatching in the recompiler. */
3211 && PATMAreInterruptsEnabled(pVM)
3212 && !HWACCMR3IsEventPending(pVM))
3213 {
3214 if (VM_FF_ISPENDING(pVM, VM_FF_INTERRUPT_APIC | VM_FF_INTERRUPT_PIC))
3215 {
3216 /* Note: it's important to make sure the return code from TRPMR3InjectEvent isn't ignored! */
3217 /** @todo this really isn't nice, should properly handle this */
3218 rc2 = TRPMR3InjectEvent(pVM, TRPM_HARDWARE_INT);
3219#ifdef VBOX_STRICT
3220 rcIrq = rc2;
3221#endif
3222 UPDATE_RC();
3223 }
3224 /** @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. */
3225 else if (REMR3QueryPendingInterrupt(pVM) != REM_NO_PENDING_IRQ)
3226 {
3227 rc2 = VINF_EM_RESCHEDULE_REM;
3228 UPDATE_RC();
3229 }
3230 }
3231
3232 /*
3233 * Allocate handy pages.
3234 */
3235 if (VM_FF_ISSET(pVM, VM_FF_PGM_NEED_HANDY_PAGES))
3236 {
3237 rc2 = PGMR3PhysAllocateHandyPages(pVM);
3238 UPDATE_RC();
3239 }
3240
3241 /*
3242 * Debugger Facility request.
3243 */
3244 if (VM_FF_ISSET(pVM, VM_FF_DBGF))
3245 {
3246 rc2 = DBGFR3VMMForcedAction(pVM);
3247 UPDATE_RC();
3248 }
3249
3250 /*
3251 * Termination request.
3252 */
3253 if (VM_FF_ISSET(pVM, VM_FF_TERMINATE))
3254 {
3255 Log2(("emR3ForcedActions: returns VINF_EM_TERMINATE\n"));
3256 STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
3257 return VINF_EM_TERMINATE;
3258 }
3259
3260#ifdef DEBUG
3261 /*
3262 * Debug, pause the VM.
3263 */
3264 if (VM_FF_ISSET(pVM, VM_FF_DEBUG_SUSPEND))
3265 {
3266 VM_FF_CLEAR(pVM, VM_FF_DEBUG_SUSPEND);
3267 Log(("emR3ForcedActions: returns VINF_EM_SUSPEND\n"));
3268 return VINF_EM_SUSPEND;
3269 }
3270
3271#endif
3272 /* check that we got them all */
3273 Assert(!(VM_FF_HIGH_PRIORITY_PRE_MASK & ~(VM_FF_TIMER | VM_FF_INTERRUPT_APIC | VM_FF_INTERRUPT_PIC | VM_FF_DBGF | VM_FF_PGM_SYNC_CR3 | VM_FF_PGM_SYNC_CR3_NON_GLOBAL | VM_FF_SELM_SYNC_TSS | VM_FF_TRPM_SYNC_IDT | VM_FF_SELM_SYNC_GDT | VM_FF_SELM_SYNC_LDT | VM_FF_TERMINATE | VM_FF_DEBUG_SUSPEND | VM_FF_INHIBIT_INTERRUPTS | VM_FF_PGM_NEED_HANDY_PAGES)));
3274 }
3275
3276#undef UPDATE_RC
3277 Log2(("emR3ForcedActions: returns %Vrc\n", rc));
3278 STAM_REL_PROFILE_STOP(&pVM->em.s.StatForcedActions, a);
3279 Assert(rcIrq == VINF_SUCCESS || rcIrq == rc);
3280 return rc;
3281}
3282
3283
3284/**
3285 * Execute VM.
3286 *
3287 * This function is the main loop of the VM. The emulation thread
3288 * calls this function when the VM has been successfully constructed
3289 * and we're ready for executing the VM.
3290 *
3291 * Returning from this function means that the VM is turned off or
3292 * suspended (state already saved) and deconstruction in next in line.
3293 *
3294 * All interaction from other thread are done using forced actions
3295 * and signaling of the wait object.
3296 *
3297 * @returns VBox status code, informational status codes may indicate failure.
3298 * @param pVM The VM to operate on.
3299 */
3300VMMR3DECL(int) EMR3ExecuteVM(PVM pVM)
3301{
3302 LogFlow(("EMR3ExecuteVM: pVM=%p enmVMState=%d enmState=%d (%s) fForceRAW=%d\n", pVM, pVM->enmVMState,
3303 pVM->em.s.enmState, EMR3GetStateName(pVM->em.s.enmState), pVM->em.s.fForceRAW));
3304 VM_ASSERT_EMT(pVM);
3305 Assert(pVM->em.s.enmState == EMSTATE_NONE || pVM->em.s.enmState == EMSTATE_SUSPENDED);
3306
3307 VMMR3Lock(pVM);
3308
3309 int rc = setjmp(pVM->em.s.u.FatalLongJump);
3310 if (rc == 0)
3311 {
3312 /*
3313 * Start the virtual time.
3314 */
3315 rc = TMVirtualResume(pVM);
3316 Assert(rc == VINF_SUCCESS);
3317 rc = TMCpuTickResume(pVM);
3318 Assert(rc == VINF_SUCCESS);
3319
3320 /*
3321 * The Outer Main Loop.
3322 */
3323 bool fFFDone = false;
3324 rc = VINF_EM_RESCHEDULE;
3325 pVM->em.s.enmState = EMSTATE_REM;
3326 STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatTotal, x);
3327 for (;;)
3328 {
3329 /*
3330 * Before we can schedule anything (we're here because
3331 * scheduling is required) we must service any pending
3332 * forced actions to avoid any pending action causing
3333 * immediate rescheduling upon entering an inner loop
3334 *
3335 * Do forced actions.
3336 */
3337 if ( !fFFDone
3338 && rc != VINF_EM_TERMINATE
3339 && rc != VINF_EM_OFF
3340 && VM_FF_ISPENDING(pVM, VM_FF_ALL_BUT_RAW_MASK))
3341 {
3342 rc = emR3ForcedActions(pVM, rc);
3343 if ( ( rc == VINF_EM_RESCHEDULE_REM
3344 || rc == VINF_EM_RESCHEDULE_HWACC)
3345 && pVM->em.s.fForceRAW)
3346 rc = VINF_EM_RESCHEDULE_RAW;
3347 }
3348 else if (fFFDone)
3349 fFFDone = false;
3350
3351 /*
3352 * Now what to do?
3353 */
3354 Log2(("EMR3ExecuteVM: rc=%Vrc\n", rc));
3355 switch (rc)
3356 {
3357 /*
3358 * Keep doing what we're currently doing.
3359 */
3360 case VINF_SUCCESS:
3361 break;
3362
3363 /*
3364 * Reschedule - to raw-mode execution.
3365 */
3366 case VINF_EM_RESCHEDULE_RAW:
3367 Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_RAW: %d -> %d (EMSTATE_RAW)\n", pVM->em.s.enmState, EMSTATE_RAW));
3368 pVM->em.s.enmState = EMSTATE_RAW;
3369 break;
3370
3371 /*
3372 * Reschedule - to hardware accelerated raw-mode execution.
3373 */
3374 case VINF_EM_RESCHEDULE_HWACC:
3375 Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_HWACC: %d -> %d (EMSTATE_HWACC)\n", pVM->em.s.enmState, EMSTATE_HWACC));
3376 Assert(!pVM->em.s.fForceRAW);
3377 pVM->em.s.enmState = EMSTATE_HWACC;
3378 break;
3379
3380 /*
3381 * Reschedule - to recompiled execution.
3382 */
3383 case VINF_EM_RESCHEDULE_REM:
3384 Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_REM: %d -> %d (EMSTATE_REM)\n", pVM->em.s.enmState, EMSTATE_REM));
3385 pVM->em.s.enmState = EMSTATE_REM;
3386 break;
3387
3388#ifdef VBOX_WITH_VMI
3389 /*
3390 * Reschedule - parav call.
3391 */
3392 case VINF_EM_RESCHEDULE_PARAV:
3393 Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE_PARAV: %d -> %d (EMSTATE_PARAV)\n", pVM->em.s.enmState, EMSTATE_PARAV));
3394 pVM->em.s.enmState = EMSTATE_PARAV;
3395 break;
3396#endif
3397
3398 /*
3399 * Resume.
3400 */
3401 case VINF_EM_RESUME:
3402 Log2(("EMR3ExecuteVM: VINF_EM_RESUME: %d -> VINF_EM_RESCHEDULE\n", pVM->em.s.enmState));
3403 /* fall through and get scheduled. */
3404
3405 /*
3406 * Reschedule.
3407 */
3408 case VINF_EM_RESCHEDULE:
3409 {
3410 EMSTATE enmState = emR3Reschedule(pVM, pVM->em.s.pCtx);
3411 Log2(("EMR3ExecuteVM: VINF_EM_RESCHEDULE: %d -> %d (%s)\n", pVM->em.s.enmState, enmState, EMR3GetStateName(enmState)));
3412 pVM->em.s.enmState = enmState;
3413 break;
3414 }
3415
3416 /*
3417 * Halted.
3418 */
3419 case VINF_EM_HALT:
3420 Log2(("EMR3ExecuteVM: VINF_EM_HALT: %d -> %d\n", pVM->em.s.enmState, EMSTATE_HALTED));
3421 pVM->em.s.enmState = EMSTATE_HALTED;
3422 break;
3423
3424 /*
3425 * Suspend.
3426 */
3427 case VINF_EM_SUSPEND:
3428 Log2(("EMR3ExecuteVM: VINF_EM_SUSPEND: %d -> %d\n", pVM->em.s.enmState, EMSTATE_SUSPENDED));
3429 pVM->em.s.enmState = EMSTATE_SUSPENDED;
3430 break;
3431
3432 /*
3433 * Reset.
3434 * We might end up doing a double reset for now, we'll have to clean up the mess later.
3435 */
3436 case VINF_EM_RESET:
3437 Log2(("EMR3ExecuteVM: VINF_EM_RESET: %d -> %d\n", pVM->em.s.enmState, EMSTATE_REM));
3438 pVM->em.s.enmState = EMSTATE_REM;
3439 break;
3440
3441 /*
3442 * Power Off.
3443 */
3444 case VINF_EM_OFF:
3445 pVM->em.s.enmState = EMSTATE_TERMINATING;
3446 Log2(("EMR3ExecuteVM: returns VINF_EM_OFF (%d -> %d)\n", pVM->em.s.enmState, EMSTATE_TERMINATING));
3447 TMVirtualPause(pVM);
3448 TMCpuTickPause(pVM);
3449 VMMR3Unlock(pVM);
3450 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3451 return rc;
3452
3453 /*
3454 * Terminate the VM.
3455 */
3456 case VINF_EM_TERMINATE:
3457 pVM->em.s.enmState = EMSTATE_TERMINATING;
3458 Log(("EMR3ExecuteVM returns VINF_EM_TERMINATE (%d -> %d)\n", pVM->em.s.enmState, EMSTATE_TERMINATING));
3459 TMVirtualPause(pVM);
3460 TMCpuTickPause(pVM);
3461 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3462 return rc;
3463
3464 /*
3465 * Guest debug events.
3466 */
3467 case VINF_EM_DBG_STEPPED:
3468 AssertMsgFailed(("VINF_EM_DBG_STEPPED cannot be here!"));
3469 case VINF_EM_DBG_STOP:
3470 case VINF_EM_DBG_BREAKPOINT:
3471 case VINF_EM_DBG_STEP:
3472 if (pVM->em.s.enmState == EMSTATE_RAW)
3473 {
3474 Log2(("EMR3ExecuteVM: %Vrc: %d -> %d\n", rc, pVM->em.s.enmState, EMSTATE_DEBUG_GUEST_RAW));
3475 pVM->em.s.enmState = EMSTATE_DEBUG_GUEST_RAW;
3476 }
3477 else
3478 {
3479 Log2(("EMR3ExecuteVM: %Vrc: %d -> %d\n", rc, pVM->em.s.enmState, EMSTATE_DEBUG_GUEST_REM));
3480 pVM->em.s.enmState = EMSTATE_DEBUG_GUEST_REM;
3481 }
3482 break;
3483
3484 /*
3485 * Hypervisor debug events.
3486 */
3487 case VINF_EM_DBG_HYPER_STEPPED:
3488 case VINF_EM_DBG_HYPER_BREAKPOINT:
3489 case VINF_EM_DBG_HYPER_ASSERTION:
3490 Log2(("EMR3ExecuteVM: %Rrc: %d -> %d\n", rc, pVM->em.s.enmState, EMSTATE_DEBUG_HYPER));
3491 pVM->em.s.enmState = EMSTATE_DEBUG_HYPER;
3492 break;
3493
3494 /*
3495 * Guru mediations.
3496 */
3497 case VERR_VMM_RING0_ASSERTION:
3498 Log(("EMR3ExecuteVM: %Rrc: %d -> %d (EMSTATE_GURU_MEDITATION)\n", rc, pVM->em.s.enmState, EMSTATE_GURU_MEDITATION));
3499 pVM->em.s.enmState = EMSTATE_GURU_MEDITATION;
3500 break;
3501
3502 /*
3503 * Any error code showing up here other than the ones we
3504 * know and process above are considered to be FATAL.
3505 *
3506 * Unknown warnings and informational status codes are also
3507 * included in this.
3508 */
3509 default:
3510 if (VBOX_SUCCESS(rc))
3511 {
3512 AssertMsgFailed(("Unexpected warning or informational status code %Vra!\n", rc));
3513 rc = VERR_EM_INTERNAL_ERROR;
3514 }
3515 pVM->em.s.enmState = EMSTATE_GURU_MEDITATION;
3516 Log(("EMR3ExecuteVM returns %d\n", rc));
3517 break;
3518 }
3519
3520
3521 /*
3522 * Any waiters can now be woken up
3523 */
3524 VMMR3Unlock(pVM);
3525 VMMR3Lock(pVM);
3526
3527 STAM_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x); /* (skip this in release) */
3528 STAM_PROFILE_ADV_START(&pVM->em.s.StatTotal, x);
3529
3530 /*
3531 * Act on the state.
3532 */
3533 switch (pVM->em.s.enmState)
3534 {
3535 /*
3536 * Execute raw.
3537 */
3538 case EMSTATE_RAW:
3539 rc = emR3RawExecute(pVM, &fFFDone);
3540 break;
3541
3542 /*
3543 * Execute hardware accelerated raw.
3544 */
3545 case EMSTATE_HWACC:
3546 rc = emR3HwAccExecute(pVM, &fFFDone);
3547 break;
3548
3549 /*
3550 * Execute recompiled.
3551 */
3552 case EMSTATE_REM:
3553 rc = emR3RemExecute(pVM, &fFFDone);
3554 Log2(("EMR3ExecuteVM: emR3RemExecute -> %Vrc\n", rc));
3555 break;
3556
3557#ifdef VBOX_WITH_VMI
3558 /*
3559 * Execute PARAV function.
3560 */
3561 case EMSTATE_PARAV:
3562 rc = PARAVCallFunction(pVM);
3563 pVM->em.s.enmState = EMSTATE_REM;
3564 break;
3565#endif
3566
3567 /*
3568 * hlt - execution halted until interrupt.
3569 */
3570 case EMSTATE_HALTED:
3571 {
3572 STAM_REL_PROFILE_START(&pVM->em.s.StatHalted, y);
3573 rc = VMR3WaitHalted(pVM, !(CPUMGetGuestEFlags(pVM) & X86_EFL_IF));
3574 STAM_REL_PROFILE_STOP(&pVM->em.s.StatHalted, y);
3575 break;
3576 }
3577
3578 /*
3579 * Suspended - return to VM.cpp.
3580 */
3581 case EMSTATE_SUSPENDED:
3582 TMVirtualPause(pVM);
3583 TMCpuTickPause(pVM);
3584 VMMR3Unlock(pVM);
3585 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3586 return VINF_EM_SUSPEND;
3587
3588 /*
3589 * Debugging in the guest.
3590 */
3591 case EMSTATE_DEBUG_GUEST_REM:
3592 case EMSTATE_DEBUG_GUEST_RAW:
3593 TMVirtualPause(pVM);
3594 TMCpuTickPause(pVM);
3595 rc = emR3Debug(pVM, rc);
3596 TMVirtualResume(pVM);
3597 TMCpuTickResume(pVM);
3598 Log2(("EMR3ExecuteVM: enmr3Debug -> %Vrc (state %d)\n", rc, pVM->em.s.enmState));
3599 break;
3600
3601 /*
3602 * Debugging in the hypervisor.
3603 */
3604 case EMSTATE_DEBUG_HYPER:
3605 {
3606 TMVirtualPause(pVM);
3607 TMCpuTickPause(pVM);
3608 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3609
3610 rc = emR3Debug(pVM, rc);
3611 Log2(("EMR3ExecuteVM: enmr3Debug -> %Vrc (state %d)\n", rc, pVM->em.s.enmState));
3612 if (rc != VINF_SUCCESS)
3613 {
3614 /* switch to guru meditation mode */
3615 pVM->em.s.enmState = EMSTATE_GURU_MEDITATION;
3616 VMMR3FatalDump(pVM, rc);
3617 return rc;
3618 }
3619
3620 STAM_REL_PROFILE_ADV_START(&pVM->em.s.StatTotal, x);
3621 TMVirtualResume(pVM);
3622 TMCpuTickResume(pVM);
3623 break;
3624 }
3625
3626 /*
3627 * Guru meditation takes place in the debugger.
3628 */
3629 case EMSTATE_GURU_MEDITATION:
3630 {
3631 TMVirtualPause(pVM);
3632 TMCpuTickPause(pVM);
3633 VMMR3FatalDump(pVM, rc);
3634 emR3Debug(pVM, rc);
3635 VMMR3Unlock(pVM);
3636 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3637 return rc;
3638 }
3639
3640 /*
3641 * The states we don't expect here.
3642 */
3643 case EMSTATE_NONE:
3644 case EMSTATE_TERMINATING:
3645 default:
3646 AssertMsgFailed(("EMR3ExecuteVM: Invalid state %d!\n", pVM->em.s.enmState));
3647 pVM->em.s.enmState = EMSTATE_GURU_MEDITATION;
3648 TMVirtualPause(pVM);
3649 TMCpuTickPause(pVM);
3650 VMMR3Unlock(pVM);
3651 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3652 return VERR_EM_INTERNAL_ERROR;
3653 }
3654 } /* The Outer Main Loop */
3655 }
3656 else
3657 {
3658 /*
3659 * Fatal error.
3660 */
3661 LogFlow(("EMR3ExecuteVM: returns %Vrc (longjmp / fatal error)\n", rc));
3662 TMVirtualPause(pVM);
3663 TMCpuTickPause(pVM);
3664 VMMR3FatalDump(pVM, rc);
3665 emR3Debug(pVM, rc);
3666 VMMR3Unlock(pVM);
3667 STAM_REL_PROFILE_ADV_STOP(&pVM->em.s.StatTotal, x);
3668 /** @todo change the VM state! */
3669 return rc;
3670 }
3671
3672 /* (won't ever get here). */
3673 AssertFailed();
3674}
3675
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