Changeset 91291 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Sep 16, 2021 10:04:16 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146951
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h
r91289 r91291 563 563 * Copy the IO permission bitmap into the cache. 564 564 */ 565 Assert (pVCpu->cpum.GstCtx.hwvirt.svm.CTX_SUFF(pvIoBitmap));566 rc = PGMPhysSimpleReadGCPhys(pVM, pVCpu->cpum.GstCtx.hwvirt.svm. CTX_SUFF(pvIoBitmap), GCPhysIOBitmap,567 SVM_IOPM_PAGES * X86_PAGE_4K_SIZE);565 AssertCompile(sizeof(pVCpu->cpum.GstCtx.hwvirt.svm.abIoBitmap) == SVM_IOPM_PAGES * X86_PAGE_4K_SIZE); 566 rc = PGMPhysSimpleReadGCPhys(pVM, pVCpu->cpum.GstCtx.hwvirt.svm.abIoBitmap, GCPhysIOBitmap, 567 sizeof(pVCpu->cpum.GstCtx.hwvirt.svm.abIoBitmap)); 568 568 if (RT_FAILURE(rc)) 569 569 { … … 989 989 990 990 SVMIOIOEXITINFO IoExitInfo; 991 void *pvIoBitmap = pVCpu->cpum.GstCtx.hwvirt.svm.CTX_SUFF(pvIoBitmap); 992 bool const fIntercept = CPUMIsSvmIoInterceptSet(pvIoBitmap, u16Port, enmIoType, cbReg, cAddrSizeBits, iEffSeg, fRep, 993 fStrIo, &IoExitInfo); 991 bool const fIntercept = CPUMIsSvmIoInterceptSet(pVCpu->cpum.GstCtx.hwvirt.svm.abMsrBitmap, u16Port, enmIoType, cbReg, 992 cAddrSizeBits, iEffSeg, fRep, fStrIo, &IoExitInfo); 994 993 if (fIntercept) 995 994 {
Note:
See TracChangeset
for help on using the changeset viewer.