Changeset 55713 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- May 7, 2015 11:56:39 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r55691 r55713 3633 3633 AssertLogRelRCReturn(rc, rc); 3634 3634 3635 /* Currently excluding older AMDs as we're seeing trouble booting 32-bit windows 7, due to 3636 KiTrap07++ assuming the high 128-bit YMM component is in init state. Leading to a page fault. */ 3635 3637 bool const fMayHaveXSave = fNestedPagingAndFullGuestExec 3636 3638 && pVM->cpum.s.HostFeatures.fXSaveRstor 3637 && pVM->cpum.s.HostFeatures.fOpSysXSaveRstor; 3639 && pVM->cpum.s.HostFeatures.fOpSysXSaveRstor 3640 && !CPUMMICROARCH_IS_AMD_FAM_15H(pVM->cpum.s.HostFeatures.enmMicroarch); 3638 3641 /** @cfgm{/CPUM/IsaExts/XSAVE, boolean, depends} 3639 3642 * Expose XSAVE/XRSTOR to the guest if available. For the time being the
Note:
See TracChangeset
for help on using the changeset viewer.