VirtualBox

Changeset 22042 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Aug 6, 2009 4:58:57 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
50780
Message:

VMM: refactor CPUID limitation, passed OSType

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

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/CPUM.cpp

    r22037 r22042  
    534534     * info too in these leaves (like words about having a constant TSC).
    535535     */
    536     if (pCPUM->aGuestCpuIdStd[0].eax > pVM->cCpuidLeafs)
    537         pCPUM->aGuestCpuIdStd[0].eax = pVM->cCpuidLeafs;
     536    {
     537        bool fNt4LeafLimit;
     538        PCFGMNODE pNode = CFGMR3GetRoot(pVM);
     539        int rc = CFGMR3QueryBoolDef(pNode, "NT4LeafLimit", &fNt4LeafLimit, false);
     540        if (RT_SUCCESS(rc) && fNt4LeafLimit)
     541            pCPUM->aGuestCpuIdStd[0].eax = 2;
     542    }
     543    if (pCPUM->aGuestCpuIdStd[0].eax > 5)
     544        pCPUM->aGuestCpuIdStd[0].eax = 5;
    538545
    539546    for (i = pCPUM->aGuestCpuIdStd[0].eax + 1; i < RT_ELEMENTS(pCPUM->aGuestCpuIdStd); i++)
     
    11211128                              );
    11221129
    1123         /* Make sure we don't forget to update the masks when enabling 
    1124          * features in the future. 
     1130        /* Make sure we don't forget to update the masks when enabling
     1131         * features in the future.
    11251132         */
    1126         AssertRelease(!(pVM->cpum.s.aGuestCpuIdStd[1].ecx & 
     1133        AssertRelease(!(pVM->cpum.s.aGuestCpuIdStd[1].ecx &
    11271134                              (   X86_CPUID_FEATURE_ECX_DTES64
    11281135                               |  X86_CPUID_FEATURE_ECX_VMX
  • trunk/src/VBox/VMM/VM.cpp

    r22037 r22042  
    594594                    rc = VERR_INVALID_PARAMETER;
    595595                }
    596             }
    597             /*
    598              * Set correct CPUID leafs limit, some guests types,
    599              * notably Win NT 4.0 may wish to override this value.
    600              */
    601             if (RT_SUCCESS(rc))
    602             {
    603                  uint32_t cCpuidLeafs;
    604                  rc = CFGMR3QueryU32Def(CFGMR3GetRoot(pVM), "CpuidLeafs", &cCpuidLeafs, 5);
    605                  pVM->cCpuidLeafs = cCpuidLeafs;
    606596            }
    607597            if (RT_SUCCESS(rc))
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