VirtualBox

Changeset 78483 in vbox for trunk/src/VBox/VMM/VMMAll


Ignore:
Timestamp:
May 13, 2019 10:52:16 AM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
130518
Message:

VMM: Nested SVM: bugref:7243 Renamed a couple of functions and doxygen to be more consistent.

Location:
trunk/src/VBox/VMM/VMMAll
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp

    r78454 r78483  
    33043304
    33053305/**
    3306  * Determines whether an IOIO intercept is active for the nested-guest or not.
     3306 * Determines whether the given I/O access should cause a nested-guest \#VMEXIT.
    33073307 *
    33083308 * @param   pvIoBitmap      Pointer to the nested-guest IO bitmap.
     
    33173317 *                          Optional, can be NULL.
    33183318 */
    3319 VMM_INT_DECL(bool) CPUMIsSvmIoInterceptActive(void *pvIoBitmap, uint16_t u16Port, SVMIOIOTYPE enmIoType, uint8_t cbReg,
    3320                                               uint8_t cAddrSizeBits, uint8_t iEffSeg, bool fRep, bool fStrIo,
    3321                                               PSVMIOIOEXITINFO pIoExitInfo)
     3319VMM_INT_DECL(bool) CPUMIsSvmIoInterceptSet(void *pvIoBitmap, uint16_t u16Port, SVMIOIOTYPE enmIoType, uint8_t cbReg,
     3320                                           uint8_t cAddrSizeBits, uint8_t iEffSeg, bool fRep, bool fStrIo,
     3321                                           PSVMIOIOEXITINFO pIoExitInfo)
    33223322{
    33233323    Assert(cAddrSizeBits == 16 || cAddrSizeBits == 32 || cAddrSizeBits == 64);
  • trunk/src/VBox/VMM/VMMAll/IEMAllCImplSvmInstr.cpp.h

    r78371 r78483  
    990990    SVMIOIOEXITINFO IoExitInfo;
    991991    void *pvIoBitmap = pVCpu->cpum.GstCtx.hwvirt.svm.CTX_SUFF(pvIoBitmap);
    992     bool const fIntercept = CPUMIsSvmIoInterceptActive(pvIoBitmap, u16Port, enmIoType, cbReg, cAddrSizeBits, iEffSeg, fRep,
    993                                                        fStrIo, &IoExitInfo);
     992    bool const fIntercept = CPUMIsSvmIoInterceptSet(pvIoBitmap, u16Port, enmIoType, cbReg, cAddrSizeBits, iEffSeg, fRep,
     993                                                    fStrIo, &IoExitInfo);
    994994    if (fIntercept)
    995995    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette