VirtualBox

Changeset 50163 in vbox for trunk/src/VBox/VMM/VMMR3


Ignore:
Timestamp:
Jan 22, 2014 4:19:08 PM (11 years ago)
Author:
vboxsync
Message:

CPUM.cpp: Enable SSE4.1 and SSE4.2 by default for trunk.

File:
1 edited

Legend:

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

    r50162 r50163  
    11041104    AssertLogRelRCReturn(rc, rc);
    11051105
    1106     /** @cfgm{/CPUM/SSE4.1, boolean, false}
     1106    /** @cfgm{/CPUM/SSE4.1, boolean, true}
    11071107     * Expose SSE4.1 to the guest if available.
    11081108     */
    11091109    bool fSse41;
    1110     rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.1", &fSse41, false);
     1110    rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.1", &fSse41, true);
    11111111    AssertLogRelRCReturn(rc, rc);
    11121112
    1113     /** @cfgm{/CPUM/SSE4.2, boolean, false}
     1113    /** @cfgm{/CPUM/SSE4.2, boolean, true}
    11141114     * Expose SSE4.2 to the guest if available.
    11151115     */
    11161116    bool fSse42;
    1117     rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.2", &fSse42, false);
     1117    rc = CFGMR3QueryBoolDef(pCpumCfg, "SSE4.2", &fSse42, true);
    11181118    AssertLogRelRCReturn(rc, rc);
    11191119
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