VirtualBox

Ignore:
Timestamp:
Jul 5, 2012 12:10:53 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
78914
Message:

VMM: RDTSCP support on Intel. Segregated some common CPU features from the AMD superset into Extended features as they're now available on Intel too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPDrv.c

    r41755 r42024  
    31063106        if (cr4 & X86_CR4_PAE)
    31073107        {
    3108             uint32_t fAmdFeatures = ASMCpuId_EDX(0x80000001);
    3109             if (fAmdFeatures & (X86_CPUID_AMD_FEATURE_EDX_NX | X86_CPUID_AMD_FEATURE_EDX_LONG_MODE))
     3108            uint32_t fExtFeatures = ASMCpuId_EDX(0x80000001);
     3109            if (fExtFeatures & (X86_CPUID_EXT_FEATURE_EDX_NX | X86_CPUID_EXT_FEATURE_EDX_LONG_MODE))
    31103110            {
    31113111                uint64_t efer = ASMRdMsr(MSR_K6_EFER);
    3112                 if ((fAmdFeatures & X86_CPUID_AMD_FEATURE_EDX_NX)        && (efer & MSR_K6_EFER_NXE))
     3112                if ((fExtFeatures & X86_CPUID_EXT_FEATURE_EDX_NX)        && (efer & MSR_K6_EFER_NXE))
    31133113                    fNXEPlusLMA |= RT_BIT(0);
    3114                 if ((fAmdFeatures & X86_CPUID_AMD_FEATURE_EDX_LONG_MODE) && (efer & MSR_K6_EFER_LMA))
     3114                if ((fExtFeatures & X86_CPUID_EXT_FEATURE_EDX_LONG_MODE) && (efer & MSR_K6_EFER_LMA))
    31153115                    fNXEPlusLMA |= RT_BIT(1);
    31163116            }
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