VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/IEMR3.cpp@ 57008

Last change on this file since 57008 was 56628, checked in by vboxsync, 10 years ago

IEM: Postpone INS memory writes to ring-3 if we hit an access handler. We cannot redo the read, that will only mess things us. This introduces a new per-cpu forced flag, VMCPU_FF_IEM, that must cause immediate return to ring-3 where it will be serviced ASAP. IEM will try return VINF_EM_RAW_TO_R3 as well to help make sure we get back to ring-3.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/* $Id: IEMR3.cpp 56628 2015-06-24 19:44:56Z vboxsync $ */
2/** @file
3 * IEM - Interpreted Execution Manager.
4 */
5
6/*
7 * Copyright (C) 2011-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#define LOG_GROUP LOG_GROUP_EM
22#include <VBox/vmm/iem.h>
23#include <VBox/vmm/cpum.h>
24#include "IEMInternal.h"
25#include <VBox/vmm/vm.h>
26#include <VBox/err.h>
27
28#include <iprt/asm-amd64-x86.h>
29#include <iprt/assert.h>
30
31
32
33/**
34 * Initializes the interpreted execution manager.
35 *
36 * This must be called after CPUM as we're quering information from CPUM about
37 * the guest and host CPUs.
38 *
39 * @returns VBox status code.
40 * @param pVM The cross context VM structure.
41 */
42VMMR3DECL(int) IEMR3Init(PVM pVM)
43{
44 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
45 {
46 PVMCPU pVCpu = &pVM->aCpus[idCpu];
47 pVCpu->iem.s.offVM = -RT_OFFSETOF(VM, aCpus[idCpu].iem.s);
48 pVCpu->iem.s.offVMCpu = -RT_OFFSETOF(VMCPU, iem.s);
49 pVCpu->iem.s.pCtxR3 = CPUMQueryGuestCtxPtr(pVCpu);
50 pVCpu->iem.s.pCtxR0 = VM_R0_ADDR(pVM, pVCpu->iem.s.pCtxR3);
51 pVCpu->iem.s.pCtxRC = VM_RC_ADDR(pVM, pVCpu->iem.s.pCtxR3);
52
53 STAMR3RegisterF(pVM, &pVCpu->iem.s.cInstructions, STAMTYPE_U32, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,
54 "Instructions interpreted", "/IEM/CPU%u/cInstructions", idCpu);
55 STAMR3RegisterF(pVM, &pVCpu->iem.s.cPotentialExits, STAMTYPE_U32, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,
56 "Potential exits", "/IEM/CPU%u/cPotentialExits", idCpu);
57 STAMR3RegisterF(pVM, &pVCpu->iem.s.cRetAspectNotImplemented, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,
58 "VERR_IEM_ASPECT_NOT_IMPLEMENTED", "/IEM/CPU%u/cRetAspectNotImplemented", idCpu);
59 STAMR3RegisterF(pVM, &pVCpu->iem.s.cRetInstrNotImplemented, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,
60 "VERR_IEM_INSTR_NOT_IMPLEMENTED", "/IEM/CPU%u/cRetInstrNotImplemented", idCpu);
61 STAMR3RegisterF(pVM, &pVCpu->iem.s.cRetInfStatuses, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,
62 "Informational statuses returned", "/IEM/CPU%u/cRetInfStatuses", idCpu);
63 STAMR3RegisterF(pVM, &pVCpu->iem.s.cRetErrStatuses, STAMTYPE_U32_RESET, STAMVISIBILITY_ALWAYS, STAMUNIT_COUNT,
64 "Error statuses returned", "/IEM/CPU%u/cRetErrStatuses", idCpu);
65 STAMR3RegisterF(pVM, &pVCpu->iem.s.cbWritten, STAMTYPE_U32, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES,
66 "Approx bytes written", "/IEM/CPU%u/cbWritten", idCpu);
67 STAMR3RegisterF(pVM, &pVCpu->iem.s.cPendingCommit, STAMTYPE_U32, STAMVISIBILITY_ALWAYS, STAMUNIT_BYTES,
68 "Times RC/R0 had to postpone instruction committing to ring-3", "/IEM/CPU%u/cPendingCommit", idCpu);
69
70 /*
71 * Host and guest CPU information.
72 */
73 if (idCpu == 0)
74 {
75 pVCpu->iem.s.enmCpuVendor = CPUMGetGuestCpuVendor(pVM);
76 pVCpu->iem.s.enmHostCpuVendor = CPUMGetHostCpuVendor(pVM);
77 }
78 else
79 {
80 pVCpu->iem.s.enmCpuVendor = pVM->aCpus[0].iem.s.enmCpuVendor;
81 pVCpu->iem.s.enmHostCpuVendor = pVM->aCpus[0].iem.s.enmHostCpuVendor;
82 }
83
84 /*
85 * Mark all buffers free.
86 */
87 uint32_t iMemMap = RT_ELEMENTS(pVCpu->iem.s.aMemMappings);
88 while (iMemMap-- > 0)
89 pVCpu->iem.s.aMemMappings[iMemMap].fAccess = IEM_ACCESS_INVALID;
90 }
91 return VINF_SUCCESS;
92}
93
94
95VMMR3DECL(int) IEMR3Term(PVM pVM)
96{
97 NOREF(pVM);
98 return VINF_SUCCESS;
99}
100
101
102VMMR3DECL(void) IEMR3Relocate(PVM pVM)
103{
104 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
105 pVM->aCpus[idCpu].iem.s.pCtxRC = VM_RC_ADDR(pVM, pVM->aCpus[idCpu].iem.s.pCtxR3);
106}
107
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