VirtualBox

Ignore:
Timestamp:
Aug 6, 2019 4:27:32 AM (5 years ago)
Author:
vboxsync
Message:

VMM/IEM: Nested VMX: bugref:9180 Naming nit.

File:
1 edited

Legend:

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

    r79946 r80146  
    14881488        &&  uExitReason != VMX_EXIT_SMI
    14891489        &&  uExitReason != VMX_EXIT_ERR_MACHINE_CHECK
    1490         && !HMVmxIsVmexitTrapLike(uExitReason))
     1490        && !VMXIsVmexitTrapLike(uExitReason))
    14911491    {
    14921492        /** @todo NSTVMX: also must exclude VM-exits caused by debug exceptions when
     
    60306030        uint8_t const uRsvd   = RT_BF_GET(uIntInfo, VMX_BF_ENTRY_INT_INFO_RSVD_12_30);
    60316031        if (   !uRsvd
    6032             && HMVmxIsEntryIntInfoTypeValid(IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxMonitorTrapFlag, uType)
    6033             && HMVmxIsEntryIntInfoVectorValid(uVector, uType))
     6032            && VMXIsEntryIntInfoTypeValid(IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxMonitorTrapFlag, uType)
     6033            && VMXIsEntryIntInfoVectorValid(uVector, uType))
    60346034        { /* likely */ }
    60356035        else
     
    67616761     * See Intel spec. 26.6.1 "Interruptibility State".
    67626762     */
    6763     bool const fEntryVectoring = HMVmxIsVmentryVectoring(pVmcs->u32EntryIntInfo, NULL /* puEntryIntInfoType */);
     6763    bool const fEntryVectoring = VMXIsVmentryVectoring(pVmcs->u32EntryIntInfo, NULL /* puEntryIntInfoType */);
    67646764    if (   !fEntryVectoring
    67656765        && (pVmcs->u32GuestIntrState & (VMX_VMCS_GUEST_INT_STATE_BLOCK_STI | VMX_VMCS_GUEST_INT_STATE_BLOCK_MOVSS)))
     
    68506850    {
    68516851        uint8_t uEntryIntInfoType;
    6852         bool const fEntryVectoring = HMVmxIsVmentryVectoring(pVmcs->u32EntryIntInfo, &uEntryIntInfoType);
     6852        bool const fEntryVectoring = VMXIsVmentryVectoring(pVmcs->u32EntryIntInfo, &uEntryIntInfoType);
    68536853        if (fEntryVectoring)
    68546854        {
     
    74727472    uint8_t const *pbVmcs    = (uint8_t const *)pVmcs;
    74737473    uint8_t const *pbField   = pbVmcs + offField;
    7474     uint8_t const  uEffWidth = HMVmxGetVmcsFieldWidthEff(VmcsField.u);
     7474    uint8_t const  uEffWidth = VMXGetVmcsFieldWidthEff(VmcsField.u);
    74757475    switch (uEffWidth)
    74767476    {
     
    77017701    uint8_t      *pbVmcs    = (uint8_t *)pVmcs;
    77027702    uint8_t      *pbField   = pbVmcs + offField;
    7703     uint8_t const uEffWidth = HMVmxGetVmcsFieldWidthEff(VmcsField.u);
     7703    uint8_t const uEffWidth = VMXGetVmcsFieldWidthEff(VmcsField.u);
    77047704    switch (uEffWidth)
    77057705    {
     
    78157815
    78167816    /* Read-only VMCS field. */
    7817     bool const fIsFieldReadOnly = HMVmxIsVmcsFieldReadOnly(u64VmcsField);
     7817    bool const fIsFieldReadOnly = VMXIsVmcsFieldReadOnly(u64VmcsField);
    78187818    if (   !fIsFieldReadOnly
    78197819        ||  IEM_GET_GUEST_CPU_FEATURES(pVCpu)->fVmxVmwriteAll)
Note: See TracChangeset for help on using the changeset viewer.

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