VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/EMHM.cpp@ 45578

Last change on this file since 45578 was 45533, checked in by vboxsync, 12 years ago

#ifdef the raw-mode force flags to find more code to #ifdef out.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 20.6 KB
Line 
1/* $Id: EMHM.cpp 45533 2013-04-13 16:13:22Z vboxsync $ */
2/** @file
3 * EM - Execution Monitor / Manager - hardware virtualization
4 */
5
6/*
7 * Copyright (C) 2006-2013 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#define LOG_GROUP LOG_GROUP_EM
22#include <VBox/vmm/em.h>
23#include <VBox/vmm/vmm.h>
24#include <VBox/vmm/csam.h>
25#include <VBox/vmm/selm.h>
26#include <VBox/vmm/trpm.h>
27#include <VBox/vmm/iem.h>
28#include <VBox/vmm/iom.h>
29#include <VBox/vmm/dbgf.h>
30#include <VBox/vmm/pgm.h>
31#ifdef VBOX_WITH_REM
32# include <VBox/vmm/rem.h>
33#endif
34#include <VBox/vmm/tm.h>
35#include <VBox/vmm/mm.h>
36#include <VBox/vmm/ssm.h>
37#include <VBox/vmm/pdmapi.h>
38#include <VBox/vmm/pdmcritsect.h>
39#include <VBox/vmm/pdmqueue.h>
40#include <VBox/vmm/hm.h>
41#include "EMInternal.h"
42#include <VBox/vmm/vm.h>
43#include <VBox/vmm/cpumdis.h>
44#include <VBox/dis.h>
45#include <VBox/disopcode.h>
46#include <VBox/vmm/dbgf.h>
47#include "VMMTracing.h"
48
49#include <iprt/asm.h>
50
51
52/*******************************************************************************
53* Defined Constants And Macros *
54*******************************************************************************/
55#if 0 /* Disabled till after 2.1.0 when we've time to test it. */
56#define EM_NOTIFY_HM
57#endif
58
59
60/*******************************************************************************
61* Internal Functions *
62*******************************************************************************/
63DECLINLINE(int) emR3ExecuteInstruction(PVM pVM, PVMCPU pVCpu, const char *pszPrefix, int rcGC = VINF_SUCCESS);
64static int emR3ExecuteIOInstruction(PVM pVM, PVMCPU pVCpu);
65static int emR3HmForcedActions(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
66
67#define EMHANDLERC_WITH_HM
68#include "EMHandleRCTmpl.h"
69
70
71#if defined(DEBUG) && defined(SOME_UNUSED_FUNCTIONS)
72
73/**
74 * Steps hardware accelerated mode.
75 *
76 * @returns VBox status code.
77 * @param pVM Pointer to the VM.
78 * @param pVCpu Pointer to the VMCPU.
79 */
80static int emR3HmStep(PVM pVM, PVMCPU pVCpu)
81{
82 Assert(pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_HM);
83
84 int rc;
85 PCPUMCTX pCtx = pVCpu->em.s.pCtx;
86 VMCPU_FF_CLEAR(pVCpu, (VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT | VMCPU_FF_TRPM_SYNC_IDT | VMCPU_FF_SELM_SYNC_TSS));
87
88 /*
89 * Check vital forced actions, but ignore pending interrupts and timers.
90 */
91 if ( VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_RAW_MASK)
92 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_HIGH_PRIORITY_PRE_RAW_MASK))
93 {
94 rc = emR3HmForcedActions(pVM, pVCpu, pCtx);
95 if (rc != VINF_SUCCESS)
96 return rc;
97 }
98 /*
99 * Set flags for single stepping.
100 */
101 CPUMSetGuestEFlags(pVCpu, CPUMGetGuestEFlags(pVCpu) | X86_EFL_TF | X86_EFL_RF);
102
103 /*
104 * Single step.
105 * We do not start time or anything, if anything we should just do a few nanoseconds.
106 */
107 do
108 {
109 rc = VMMR3HmRunGC(pVM, pVCpu);
110 } while ( rc == VINF_SUCCESS
111 || rc == VINF_EM_RAW_INTERRUPT);
112 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_RESUME_GUEST_MASK);
113
114 /*
115 * Make sure the trap flag is cleared.
116 * (Too bad if the guest is trying to single step too.)
117 */
118 CPUMSetGuestEFlags(pVCpu, CPUMGetGuestEFlags(pVCpu) & ~X86_EFL_TF);
119
120 /*
121 * Deal with the return codes.
122 */
123 rc = emR3HighPriorityPostForcedActions(pVM, pVCpu, rc);
124 rc = emR3HmHandleRC(pVM, pVCpu, pCtx, rc);
125 return rc;
126}
127
128
129static int emR3SingleStepExecHm(PVM pVM, PVMCPU pVCpu, uint32_t cIterations)
130{
131 int rc = VINF_SUCCESS;
132 EMSTATE enmOldState = pVCpu->em.s.enmState;
133 pVCpu->em.s.enmState = EMSTATE_DEBUG_GUEST_HM;
134
135 Log(("Single step BEGIN:\n"));
136 for (uint32_t i = 0; i < cIterations; i++)
137 {
138 DBGFR3PrgStep(pVCpu);
139 DBGFR3_DISAS_INSTR_CUR_LOG(pVCpu, "RSS");
140 rc = emR3HmStep(pVM, pVCpu);
141 if ( rc != VINF_SUCCESS
142 || !HMR3CanExecuteGuest(pVM, pVCpu->em.s.pCtx))
143 break;
144 }
145 Log(("Single step END: rc=%Rrc\n", rc));
146 CPUMSetGuestEFlags(pVCpu, CPUMGetGuestEFlags(pVCpu) & ~X86_EFL_TF);
147 pVCpu->em.s.enmState = enmOldState;
148 return rc == VINF_SUCCESS ? VINF_EM_RESCHEDULE_REM : rc;
149}
150
151#endif /* DEBUG */
152
153
154/**
155 * Executes one (or perhaps a few more) instruction(s).
156 *
157 * @returns VBox status code suitable for EM.
158 *
159 * @param pVM Pointer to the VM.
160 * @param pVCpu Pointer to the VMCPU.
161 * @param rcRC Return code from RC.
162 * @param pszPrefix Disassembly prefix. If not NULL we'll disassemble the
163 * instruction and prefix the log output with this text.
164 */
165#ifdef LOG_ENABLED
166static int emR3ExecuteInstructionWorker(PVM pVM, PVMCPU pVCpu, int rcRC, const char *pszPrefix)
167#else
168static int emR3ExecuteInstructionWorker(PVM pVM, PVMCPU pVCpu, int rcRC)
169#endif
170{
171#ifdef LOG_ENABLED
172 PCPUMCTX pCtx = pVCpu->em.s.pCtx;
173#endif
174 int rc;
175 NOREF(rcRC);
176
177 /*
178 *
179 * The simple solution is to use the recompiler.
180 * The better solution is to disassemble the current instruction and
181 * try handle as many as possible without using REM.
182 *
183 */
184
185#ifdef LOG_ENABLED
186 /*
187 * Disassemble the instruction if requested.
188 */
189 if (pszPrefix)
190 {
191 DBGFR3_INFO_LOG(pVM, "cpumguest", pszPrefix);
192 DBGFR3_DISAS_INSTR_CUR_LOG(pVCpu, pszPrefix);
193 }
194#endif /* LOG_ENABLED */
195
196#if 0
197 /* Try our own instruction emulator before falling back to the recompiler. */
198 DISCPUSTATE Cpu;
199 rc = CPUMR3DisasmInstrCPU(pVM, pVCpu, pCtx, pCtx->rip, &Cpu, "GEN EMU");
200 if (RT_SUCCESS(rc))
201 {
202 switch (Cpu.pCurInstr->uOpcode)
203 {
204 /* @todo we can do more now */
205 case OP_MOV:
206 case OP_AND:
207 case OP_OR:
208 case OP_XOR:
209 case OP_POP:
210 case OP_INC:
211 case OP_DEC:
212 case OP_XCHG:
213 STAM_PROFILE_START(&pVCpu->em.s.StatMiscEmu, a);
214 rc = EMInterpretInstructionCpuUpdtPC(pVM, pVCpu, &Cpu, CPUMCTX2CORE(pCtx), 0);
215 if (RT_SUCCESS(rc))
216 {
217#ifdef EM_NOTIFY_HM
218 if (pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_HM)
219 HMR3NotifyEmulated(pVCpu);
220#endif
221 STAM_PROFILE_STOP(&pVCpu->em.s.StatMiscEmu, a);
222 return rc;
223 }
224 if (rc != VERR_EM_INTERPRETER)
225 AssertMsgFailedReturn(("rc=%Rrc\n", rc), rc);
226 STAM_PROFILE_STOP(&pVCpu->em.s.StatMiscEmu, a);
227 break;
228 }
229 }
230#endif /* 0 */
231 STAM_PROFILE_START(&pVCpu->em.s.StatREMEmu, a);
232 Log(("EMINS: %04x:%RGv RSP=%RGv\n", pCtx->cs.Sel, (RTGCPTR)pCtx->rip, (RTGCPTR)pCtx->rsp));
233#ifdef VBOX_WITH_REM
234 EMRemLock(pVM);
235 /* Flush the recompiler TLB if the VCPU has changed. */
236 if (pVM->em.s.idLastRemCpu != pVCpu->idCpu)
237 CPUMSetChangedFlags(pVCpu, CPUM_CHANGED_ALL);
238 pVM->em.s.idLastRemCpu = pVCpu->idCpu;
239
240 rc = REMR3EmulateInstruction(pVM, pVCpu);
241 EMRemUnlock(pVM);
242#else
243 rc = VBOXSTRICTRC_TODO(IEMExecOne(pVCpu)); NOREF(pVM);
244#endif
245 STAM_PROFILE_STOP(&pVCpu->em.s.StatREMEmu, a);
246
247#ifdef EM_NOTIFY_HM
248 if (pVCpu->em.s.enmState == EMSTATE_DEBUG_GUEST_HM)
249 HMR3NotifyEmulated(pVCpu);
250#endif
251 return rc;
252}
253
254
255/**
256 * Executes one (or perhaps a few more) instruction(s).
257 * This is just a wrapper for discarding pszPrefix in non-logging builds.
258 *
259 * @returns VBox status code suitable for EM.
260 * @param pVM Pointer to the VM.
261 * @param pVCpu Pointer to the VMCPU.
262 * @param pszPrefix Disassembly prefix. If not NULL we'll disassemble the
263 * instruction and prefix the log output with this text.
264 * @param rcGC GC return code
265 */
266DECLINLINE(int) emR3ExecuteInstruction(PVM pVM, PVMCPU pVCpu, const char *pszPrefix, int rcGC)
267{
268#ifdef LOG_ENABLED
269 return emR3ExecuteInstructionWorker(pVM, pVCpu, rcGC, pszPrefix);
270#else
271 return emR3ExecuteInstructionWorker(pVM, pVCpu, rcGC);
272#endif
273}
274
275/**
276 * Executes one (or perhaps a few more) IO instruction(s).
277 *
278 * @returns VBox status code suitable for EM.
279 * @param pVM Pointer to the VM.
280 * @param pVCpu Pointer to the VMCPU.
281 */
282static int emR3ExecuteIOInstruction(PVM pVM, PVMCPU pVCpu)
283{
284 PCPUMCTX pCtx = pVCpu->em.s.pCtx;
285
286 STAM_PROFILE_START(&pVCpu->em.s.StatIOEmu, a);
287
288 /* Try to restart the io instruction that was refused in ring-0. */
289 VBOXSTRICTRC rcStrict = HMR3RestartPendingIOInstr(pVM, pVCpu, pCtx);
290 if (IOM_SUCCESS(rcStrict))
291 {
292 STAM_COUNTER_INC(&pVCpu->em.s.CTX_SUFF(pStats)->StatIoRestarted);
293 STAM_PROFILE_STOP(&pVCpu->em.s.StatIOEmu, a);
294 return VBOXSTRICTRC_TODO(rcStrict); /* rip already updated. */
295 }
296 AssertMsgReturn(rcStrict == VERR_NOT_FOUND, ("%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)),
297 RT_SUCCESS_NP(rcStrict) ? VERR_IPE_UNEXPECTED_INFO_STATUS : VBOXSTRICTRC_TODO(rcStrict));
298
299 /** @todo probably we should fall back to the recompiler; otherwise we'll go back and forth between HC & GC
300 * as io instructions tend to come in packages of more than one
301 */
302 DISCPUSTATE Cpu;
303 int rc2 = CPUMR3DisasmInstrCPU(pVM, pVCpu, pCtx, pCtx->rip, &Cpu, "IO EMU");
304 if (RT_SUCCESS(rc2))
305 {
306 rcStrict = VINF_EM_RAW_EMULATE_INSTR;
307
308 if (!(Cpu.fPrefix & (DISPREFIX_REP | DISPREFIX_REPNE)))
309 {
310 switch (Cpu.pCurInstr->uOpcode)
311 {
312 case OP_IN:
313 {
314 STAM_COUNTER_INC(&pVCpu->em.s.CTX_SUFF(pStats)->StatIn);
315 rcStrict = IOMInterpretIN(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu);
316 break;
317 }
318
319 case OP_OUT:
320 {
321 STAM_COUNTER_INC(&pVCpu->em.s.CTX_SUFF(pStats)->StatOut);
322 rcStrict = IOMInterpretOUT(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu);
323 break;
324 }
325 }
326 }
327 else if (Cpu.fPrefix & DISPREFIX_REP)
328 {
329 switch (Cpu.pCurInstr->uOpcode)
330 {
331 case OP_INSB:
332 case OP_INSWD:
333 {
334 STAM_COUNTER_INC(&pVCpu->em.s.CTX_SUFF(pStats)->StatIn);
335 rcStrict = IOMInterpretINS(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu);
336 break;
337 }
338
339 case OP_OUTSB:
340 case OP_OUTSWD:
341 {
342 STAM_COUNTER_INC(&pVCpu->em.s.CTX_SUFF(pStats)->StatOut);
343 rcStrict = IOMInterpretOUTS(pVM, pVCpu, CPUMCTX2CORE(pCtx), &Cpu);
344 break;
345 }
346 }
347 }
348
349 /*
350 * Handled the I/O return codes.
351 * (The unhandled cases end up with rcStrict == VINF_EM_RAW_EMULATE_INSTR.)
352 */
353 if (IOM_SUCCESS(rcStrict))
354 {
355 pCtx->rip += Cpu.cbInstr;
356 STAM_PROFILE_STOP(&pVCpu->em.s.StatIOEmu, a);
357 return VBOXSTRICTRC_TODO(rcStrict);
358 }
359
360 if (rcStrict == VINF_EM_RAW_GUEST_TRAP)
361 {
362 /* The active trap will be dispatched. */
363 Assert(TRPMHasTrap(pVCpu));
364 STAM_PROFILE_STOP(&pVCpu->em.s.StatIOEmu, a);
365 return VINF_SUCCESS;
366 }
367 AssertMsg(rcStrict != VINF_TRPM_XCPT_DISPATCHED, ("Handle VINF_TRPM_XCPT_DISPATCHED\n"));
368
369 if (RT_FAILURE(rcStrict))
370 {
371 STAM_PROFILE_STOP(&pVCpu->em.s.StatIOEmu, a);
372 return VBOXSTRICTRC_TODO(rcStrict);
373 }
374 AssertMsg(rcStrict == VINF_EM_RAW_EMULATE_INSTR || rcStrict == VINF_EM_RESCHEDULE_REM, ("rcStrict=%Rrc\n", VBOXSTRICTRC_VAL(rcStrict)));
375 }
376
377 STAM_PROFILE_STOP(&pVCpu->em.s.StatIOEmu, a);
378 return emR3ExecuteInstruction(pVM, pVCpu, "IO: ");
379}
380
381
382/**
383 * Process raw-mode specific forced actions.
384 *
385 * This function is called when any FFs in the VM_FF_HIGH_PRIORITY_PRE_RAW_MASK is pending.
386 *
387 * @returns VBox status code. May return VINF_EM_NO_MEMORY but none of the other
388 * EM statuses.
389 * @param pVM Pointer to the VM.
390 * @param pVCpu Pointer to the VMCPU.
391 * @param pCtx Pointer to the guest CPU context.
392 */
393static int emR3HmForcedActions(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx)
394{
395 /*
396 * Sync page directory.
397 */
398 if (VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_PGM_SYNC_CR3 | VMCPU_FF_PGM_SYNC_CR3_NON_GLOBAL))
399 {
400 Assert(pVCpu->em.s.enmState != EMSTATE_WAIT_SIPI);
401 int rc = PGMSyncCR3(pVCpu, pCtx->cr0, pCtx->cr3, pCtx->cr4, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_PGM_SYNC_CR3));
402 if (RT_FAILURE(rc))
403 return rc;
404
405#ifdef VBOX_WITH_RAW_MODE
406 Assert(!VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT));
407#endif
408
409 /* Prefetch pages for EIP and ESP. */
410 /** @todo This is rather expensive. Should investigate if it really helps at all. */
411 rc = PGMPrefetchPage(pVCpu, SELMToFlat(pVM, DISSELREG_CS, CPUMCTX2CORE(pCtx), pCtx->rip));
412 if (rc == VINF_SUCCESS)
413 rc = PGMPrefetchPage(pVCpu, SELMToFlat(pVM, DISSELREG_SS, CPUMCTX2CORE(pCtx), pCtx->rsp));
414 if (rc != VINF_SUCCESS)
415 {
416 if (rc != VINF_PGM_SYNC_CR3)
417 {
418 AssertLogRelMsgReturn(RT_FAILURE(rc), ("%Rrc\n", rc), VERR_IPE_UNEXPECTED_INFO_STATUS);
419 return rc;
420 }
421 rc = PGMSyncCR3(pVCpu, pCtx->cr0, pCtx->cr3, pCtx->cr4, VMCPU_FF_ISSET(pVCpu, VMCPU_FF_PGM_SYNC_CR3));
422 if (RT_FAILURE(rc))
423 return rc;
424 }
425 /** @todo maybe prefetch the supervisor stack page as well */
426#ifdef VBOX_WITH_RAW_MODE
427 Assert(!VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT));
428#endif
429 }
430
431 /*
432 * Allocate handy pages (just in case the above actions have consumed some pages).
433 */
434 if (VM_FF_IS_PENDING_EXCEPT(pVM, VM_FF_PGM_NEED_HANDY_PAGES, VM_FF_PGM_NO_MEMORY))
435 {
436 int rc = PGMR3PhysAllocateHandyPages(pVM);
437 if (RT_FAILURE(rc))
438 return rc;
439 }
440
441 /*
442 * Check whether we're out of memory now.
443 *
444 * This may stem from some of the above actions or operations that has been executed
445 * since we ran FFs. The allocate handy pages must for instance always be followed by
446 * this check.
447 */
448 if (VM_FF_ISPENDING(pVM, VM_FF_PGM_NO_MEMORY))
449 return VINF_EM_NO_MEMORY;
450
451 return VINF_SUCCESS;
452}
453
454
455/**
456 * Executes hardware accelerated raw code. (Intel VT-x & AMD-V)
457 *
458 * This function contains the raw-mode version of the inner
459 * execution loop (the outer loop being in EMR3ExecuteVM()).
460 *
461 * @returns VBox status code. The most important ones are: VINF_EM_RESCHEDULE, VINF_EM_RESCHEDULE_RAW,
462 * VINF_EM_RESCHEDULE_REM, VINF_EM_SUSPEND, VINF_EM_RESET and VINF_EM_TERMINATE.
463 *
464 * @param pVM Pointer to the VM.
465 * @param pVCpu Pointer to the VMCPU.
466 * @param pfFFDone Where to store an indicator telling whether or not
467 * FFs were done before returning.
468 */
469int emR3HmExecute(PVM pVM, PVMCPU pVCpu, bool *pfFFDone)
470{
471 int rc = VERR_IPE_UNINITIALIZED_STATUS;
472 PCPUMCTX pCtx = pVCpu->em.s.pCtx;
473
474 LogFlow(("emR3HmExecute%d: (cs:eip=%04x:%RGv)\n", pVCpu->idCpu, pCtx->cs.Sel, (RTGCPTR)pCtx->rip));
475 *pfFFDone = false;
476
477 STAM_COUNTER_INC(&pVCpu->em.s.StatHmExecuteEntry);
478
479#ifdef EM_NOTIFY_HM
480 HMR3NotifyScheduled(pVCpu);
481#endif
482
483 /*
484 * Spin till we get a forced action which returns anything but VINF_SUCCESS.
485 */
486 for (;;)
487 {
488 STAM_PROFILE_ADV_START(&pVCpu->em.s.StatHmEntry, a);
489
490 /* Check if a forced reschedule is pending. */
491 if (HMR3IsRescheduleRequired(pVM, pCtx))
492 {
493 rc = VINF_EM_RESCHEDULE;
494 break;
495 }
496
497 /*
498 * Process high priority pre-execution raw-mode FFs.
499 */
500#ifdef VBOX_WITH_RAW_MODE
501 /** @todo change this FF hack into an assertion, they simply SHALL NOT be set in
502 * HM mode. */
503 VMCPU_FF_CLEAR(pVCpu, (VMCPU_FF_SELM_SYNC_GDT | VMCPU_FF_SELM_SYNC_LDT | VMCPU_FF_TRPM_SYNC_IDT | VMCPU_FF_SELM_SYNC_TSS)); /* not relevant in HM mode; shouldn't be set really. */
504#endif
505 if ( VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_PRE_RAW_MASK)
506 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_HIGH_PRIORITY_PRE_RAW_MASK))
507 {
508 rc = emR3HmForcedActions(pVM, pVCpu, pCtx);
509 if (rc != VINF_SUCCESS)
510 break;
511 }
512
513#ifdef LOG_ENABLED
514 /*
515 * Log important stuff before entering GC.
516 */
517 if (TRPMHasTrap(pVCpu))
518 Log(("CPU%d: Pending hardware interrupt=0x%x cs:rip=%04X:%RGv\n", pVCpu->idCpu, TRPMGetTrapNo(pVCpu), pCtx->cs.Sel, (RTGCPTR)pCtx->rip));
519
520 uint32_t cpl = CPUMGetGuestCPL(pVCpu);
521
522 if (pVM->cCpus == 1)
523 {
524 if (pCtx->eflags.Bits.u1VM)
525 Log(("HWV86: %08X IF=%d\n", pCtx->eip, pCtx->eflags.Bits.u1IF));
526 else if (CPUMIsGuestIn64BitCodeEx(pCtx))
527 Log(("HWR%d: %04X:%RGv ESP=%RGv IF=%d IOPL=%d CR0=%x CR4=%x EFER=%x\n", cpl, pCtx->cs.Sel, (RTGCPTR)pCtx->rip, pCtx->rsp, pCtx->eflags.Bits.u1IF, pCtx->eflags.Bits.u2IOPL, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
528 else
529 Log(("HWR%d: %04X:%08X ESP=%08X IF=%d IOPL=%d CR0=%x CR4=%x EFER=%x\n", cpl, pCtx->cs.Sel, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, pCtx->eflags.Bits.u2IOPL, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
530 }
531 else
532 {
533 if (pCtx->eflags.Bits.u1VM)
534 Log(("HWV86-CPU%d: %08X IF=%d\n", pVCpu->idCpu, pCtx->eip, pCtx->eflags.Bits.u1IF));
535 else if (CPUMIsGuestIn64BitCodeEx(pCtx))
536 Log(("HWR%d-CPU%d: %04X:%RGv ESP=%RGv IF=%d IOPL=%d CR0=%x CR4=%x EFER=%x\n", cpl, pVCpu->idCpu, pCtx->cs.Sel, (RTGCPTR)pCtx->rip, pCtx->rsp, pCtx->eflags.Bits.u1IF, pCtx->eflags.Bits.u2IOPL, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
537 else
538 Log(("HWR%d-CPU%d: %04X:%08X ESP=%08X IF=%d IOPL=%d CR0=%x CR4=%x EFER=%x\n", cpl, pVCpu->idCpu, pCtx->cs.Sel, pCtx->eip, pCtx->esp, pCtx->eflags.Bits.u1IF, pCtx->eflags.Bits.u2IOPL, (uint32_t)pCtx->cr0, (uint32_t)pCtx->cr4, (uint32_t)pCtx->msrEFER));
539 }
540#endif /* LOG_ENABLED */
541
542 /*
543 * Execute the code.
544 */
545 STAM_PROFILE_ADV_STOP(&pVCpu->em.s.StatHmEntry, a);
546
547 if (RT_LIKELY(EMR3IsExecutionAllowed(pVM, pVCpu)))
548 {
549 STAM_PROFILE_START(&pVCpu->em.s.StatHmExec, x);
550 rc = VMMR3HmRunGC(pVM, pVCpu);
551 STAM_PROFILE_STOP(&pVCpu->em.s.StatHmExec, x);
552 }
553 else
554 {
555 /* Give up this time slice; virtual time continues */
556 STAM_REL_PROFILE_ADV_START(&pVCpu->em.s.StatCapped, u);
557 RTThreadSleep(5);
558 STAM_REL_PROFILE_ADV_STOP(&pVCpu->em.s.StatCapped, u);
559 rc = VINF_SUCCESS;
560 }
561
562
563 /*
564 * Deal with high priority post execution FFs before doing anything else.
565 */
566 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_RESUME_GUEST_MASK);
567 if ( VM_FF_ISPENDING(pVM, VM_FF_HIGH_PRIORITY_POST_MASK)
568 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_HIGH_PRIORITY_POST_MASK))
569 rc = emR3HighPriorityPostForcedActions(pVM, pVCpu, rc);
570
571 /*
572 * Process the returned status code.
573 */
574 if (rc >= VINF_EM_FIRST && rc <= VINF_EM_LAST)
575 break;
576
577 rc = emR3HmHandleRC(pVM, pVCpu, pCtx, rc);
578 if (rc != VINF_SUCCESS)
579 break;
580
581 /*
582 * Check and execute forced actions.
583 */
584#ifdef VBOX_HIGH_RES_TIMERS_HACK
585 TMTimerPollVoid(pVM, pVCpu);
586#endif
587 if ( VM_FF_ISPENDING(pVM, VM_FF_ALL_MASK)
588 || VMCPU_FF_ISPENDING(pVCpu, VMCPU_FF_ALL_MASK))
589 {
590 rc = emR3ForcedActions(pVM, pVCpu, rc);
591 VBOXVMM_EM_FF_ALL_RET(pVCpu, rc);
592 if ( rc != VINF_SUCCESS
593 && rc != VINF_EM_RESCHEDULE_HM)
594 {
595 *pfFFDone = true;
596 break;
597 }
598 }
599 }
600
601 /*
602 * Return to outer loop.
603 */
604#if defined(LOG_ENABLED) && defined(DEBUG)
605 RTLogFlush(NULL);
606#endif
607 return rc;
608}
609
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