Changeset 78951 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Jun 4, 2019 7:41:40 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 131074
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r78920 r78951 15788 15788 15789 15789 VBOXSTRICTRC rcStrict; 15790 if (!fWrite) 15790 if (fWrite) 15791 rcStrict = iemVmxVirtApicAccessMsrWrite(pVCpu, idMsr, *pu64Value); 15792 else 15791 15793 rcStrict = iemVmxVirtApicAccessMsrRead(pVCpu, idMsr, pu64Value); 15792 else 15793 rcStrict = iemVmxVirtApicAccessMsrWrite(pVCpu, idMsr, *pu64Value); 15794 if (pVCpu->iem.s.cActiveMappings) 15795 iemMemRollback(pVCpu); 15794 Assert(!pVCpu->iem.s.cActiveMappings); 15796 15795 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15797 15796 … … 15807 15806 * 15808 15807 * @param pVCpu The cross context virtual CPU structure of the calling EMT. 15809 * @param offAccess The offset of the register being accessed (within the 15810 * APIC-access page). 15811 * @param cbAccess The size of the access in bytes. 15812 * @param pvData Pointer to the data being written or where to store the data 15813 * being read. 15814 * @param fWrite Whether this is a write or read access. 15808 * @param pExitInfo Pointer to the VM-exit information. 15809 * @param pExitEventInfo Pointer to the VM-exit event information. 15815 15810 * @thread EMT(pVCpu) 15816 15811 */ 15817 VMM_INT_DECL(VBOXSTRICTRC) IEMExecVmxVirtApicAccessMem(PVMCPU pVCpu, uint16_t offAccess, size_t cbAccess, void *pvData, 15818 bool fWrite) 15819 { 15820 Assert(pvData); 15821 15822 /** @todo NSTVMX: Unfortunately, the caller has no idea about instruction fetch 15823 * accesses, so we only use read/write here. Maybe in the future the PGM 15824 * physical handler will be extended to include this information? */ 15825 uint32_t const fAccess = fWrite ? IEM_ACCESS_TYPE_WRITE : IEM_ACCESS_TYPE_READ; 15826 VBOXSTRICTRC rcStrict = iemVmxVirtApicAccessMem(pVCpu, offAccess, cbAccess, pvData, fAccess); 15827 if (pVCpu->iem.s.cActiveMappings) 15828 iemMemRollback(pVCpu); 15812 VMM_INT_DECL(VBOXSTRICTRC) IEMExecVmxVmexitApicAccess(PVMCPU pVCpu, PCVMXVEXITINFO pExitInfo, PCVMXVEXITEVENTINFO pExitEventInfo) 15813 { 15814 Assert(pExitInfo); 15815 Assert(pExitEventInfo); 15816 VBOXSTRICTRC rcStrict = iemVmxVmexitApicAccessWithInfo(pVCpu, pExitInfo, pExitEventInfo); 15817 Assert(!pVCpu->iem.s.cActiveMappings); 15829 15818 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15819 15830 15820 } 15831 15821 … … 15842 15832 { 15843 15833 VBOXSTRICTRC rcStrict = iemVmxApicWriteEmulation(pVCpu); 15844 if (pVCpu->iem.s.cActiveMappings) 15845 iemMemRollback(pVCpu); 15834 Assert(!pVCpu->iem.s.cActiveMappings); 15846 15835 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15847 15836 } … … 15858 15847 { 15859 15848 VBOXSTRICTRC rcStrict = iemVmxVmexitPreemptTimer(pVCpu); 15860 if (pVCpu->iem.s.cActiveMappings) 15861 iemMemRollback(pVCpu); 15849 Assert(!pVCpu->iem.s.cActiveMappings); 15862 15850 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15863 15851 } … … 15878 15866 { 15879 15867 VBOXSTRICTRC rcStrict = iemVmxVmexitExtInt(pVCpu, uVector, fIntPending); 15880 if (pVCpu->iem.s.cActiveMappings) 15881 iemMemRollback(pVCpu); 15868 Assert(!pVCpu->iem.s.cActiveMappings); 15882 15869 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15883 15870 } … … 15894 15881 { 15895 15882 VBOXSTRICTRC rcStrict = iemVmxVmexitNmi(pVCpu); 15896 if (pVCpu->iem.s.cActiveMappings) 15897 iemMemRollback(pVCpu); 15883 Assert(!pVCpu->iem.s.cActiveMappings); 15898 15884 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15899 15885 } … … 15910 15896 { 15911 15897 VBOXSTRICTRC rcStrict = iemVmxVmexitTripleFault(pVCpu); 15912 if (pVCpu->iem.s.cActiveMappings) 15913 iemMemRollback(pVCpu); 15898 Assert(!pVCpu->iem.s.cActiveMappings); 15914 15899 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15915 15900 } … … 15927 15912 { 15928 15913 VBOXSTRICTRC rcStrict = iemVmxVmexitStartupIpi(pVCpu, uVector); 15929 if (pVCpu->iem.s.cActiveMappings) 15930 iemMemRollback(pVCpu); 15914 Assert(!pVCpu->iem.s.cActiveMappings); 15931 15915 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15932 15916 } … … 15948 15932 iemVmxVmcsSetExitQual(pVCpu, uExitQual); 15949 15933 VBOXSTRICTRC rcStrict = iemVmxVmexit(pVCpu, uExitReason); 15950 if (pVCpu->iem.s.cActiveMappings) 15951 iemMemRollback(pVCpu); 15934 Assert(!pVCpu->iem.s.cActiveMappings); 15952 15935 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15953 15936 } … … 15968 15951 { 15969 15952 VBOXSTRICTRC rcStrict = iemVmxVmexitInstrWithInfo(pVCpu, pExitInfo); 15970 if (pVCpu->iem.s.cActiveMappings) 15971 iemMemRollback(pVCpu); 15953 Assert(!pVCpu->iem.s.cActiveMappings); 15972 15954 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15973 15955 } … … 15989 15971 { 15990 15972 VBOXSTRICTRC rcStrict = iemVmxVmexitInstr(pVCpu, uExitReason, cbInstr); 15991 if (pVCpu->iem.s.cActiveMappings) 15992 iemMemRollback(pVCpu); 15973 Assert(!pVCpu->iem.s.cActiveMappings); 15993 15974 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 15994 15975 } … … 16004 15985 * @thread EMT(pVCpu) 16005 15986 */ 16006 VMM_INT_DECL(VBOXSTRICTRC) IEMExecVmxVmexitTaskSwitch(PVMCPU pVCpu, P VMXVEXITINFO pExitInfo, PVMXVEXITEVENTINFO pExitEventInfo)15987 VMM_INT_DECL(VBOXSTRICTRC) IEMExecVmxVmexitTaskSwitch(PVMCPU pVCpu, PCVMXVEXITINFO pExitInfo, PCVMXVEXITEVENTINFO pExitEventInfo) 16007 15988 { 16008 15989 VBOXSTRICTRC rcStrict = iemVmxVmexitTaskSwitchWithInfo(pVCpu, pExitInfo, pExitEventInfo); 16009 if (pVCpu->iem.s.cActiveMappings) 16010 iemMemRollback(pVCpu); 15990 Assert(!pVCpu->iem.s.cActiveMappings); 16011 15991 return iemExecStatusCodeFiddling(pVCpu, rcStrict); 16012 15992 } -
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r78927 r78951 3691 3691 * @param pExitEventInfo Pointer to the VM-exit event information. 3692 3692 */ 3693 IEM_STATIC VBOXSTRICTRC iemVmxVmexitTaskSwitchWithInfo(PVMCPU pVCpu, PVMXVEXITINFO pExitInfo, PVMXVEXITEVENTINFO pExitEventInfo) 3693 IEM_STATIC VBOXSTRICTRC iemVmxVmexitTaskSwitchWithInfo(PVMCPU pVCpu, PCVMXVEXITINFO pExitInfo, 3694 PCVMXVEXITEVENTINFO pExitEventInfo) 3694 3695 { 3695 3696 Assert(pExitInfo); … … 4105 4106 4106 4107 /** 4107 * VMX VM-exit handler for APIC -accesses.4108 * VMX VM-exit handler for APIC accesses. 4108 4109 * 4109 4110 * @param pVCpu The cross context virtual CPU structure. … … 4130 4131 | RT_BF_MAKE(VMX_BF_EXIT_QUAL_APIC_ACCESS_TYPE, enmAccess); 4131 4132 iemVmxVmcsSetExitQual(pVCpu, uExitQual); 4133 return iemVmxVmexit(pVCpu, VMX_EXIT_APIC_ACCESS); 4134 } 4135 4136 4137 /** 4138 * VMX VM-exit handler for APIC accesses. 4139 * 4140 * This is intended for APIC accesses where the caller provides all the 4141 * relevant VM-exit information. 4142 * 4143 * @returns VBox strict status code. 4144 * @param pVCpu The cross context virtual CPU structure. 4145 * @param pExitInfo Pointer to the VM-exit information. 4146 * @param pExitEventInfo Pointer to the VM-exit event information. 4147 */ 4148 IEM_STATIC VBOXSTRICTRC iemVmxVmexitApicAccessWithInfo(PVMCPU pVCpu, PCVMXVEXITINFO pExitInfo, 4149 PCVMXVEXITEVENTINFO pExitEventInfo) 4150 { 4151 Assert(pExitInfo); 4152 Assert(pExitEventInfo); 4153 4154 /* VM-exit interruption information should not be valid for APIC-access VM-exits. */ 4155 Assert(!VMX_EXIT_INT_INFO_IS_VALID(pExitEventInfo->uExitIntInfo)); 4156 iemVmxVmcsSetExitIntInfo(pVCpu, 0); 4157 iemVmxVmcsSetExitIntErrCode(pVCpu, 0); 4158 iemVmxVmcsSetExitQual(pVCpu, pExitInfo->u64Qual); 4159 iemVmxVmcsSetIdtVectoringInfo(pVCpu, pExitEventInfo->uIdtVectoringInfo); 4160 iemVmxVmcsSetIdtVectoringErrCode(pVCpu, pExitEventInfo->uIdtVectoringErrCode); 4132 4161 return iemVmxVmexit(pVCpu, VMX_EXIT_APIC_ACCESS); 4133 4162 } … … 4540 4569 } 4541 4570 4542 /* The APIC -access is virtualized, does not cause a VM-exit. */4571 /* The APIC access is virtualized, does not cause a VM-exit. */ 4543 4572 return false; 4544 4573 } … … 4546 4575 4547 4576 /** 4548 * Virtualizes a memory-based APIC -access where the address is not used to access4577 * Virtualizes a memory-based APIC access where the address is not used to access 4549 4578 * memory. 4550 4579 * … … 4584 4613 4585 4614 /** 4586 * Virtualizes a memory-based APIC -access.4615 * Virtualizes a memory-based APIC access. 4587 4616 * 4588 4617 * @returns VBox strict status code.
Note:
See TracChangeset
for help on using the changeset viewer.