Changeset 95088 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 25, 2022 6:58:51 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151561
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r94943 r95088 520 520 Assert(!(pVCpu->cpum.s.fUseFlags & CPUM_USED_FPU_GUEST)); 521 521 522 /* Notify the support driver prior to loading the guest-FPU register state. */ 523 SUPR0FpuBegin(false /* unused */); 524 522 525 if (!pVM->cpum.s.HostFeatures.fLeakyFxSR) 523 526 { … … 565 568 if (pVCpu->cpum.s.fUseFlags & (CPUM_USED_FPU_GUEST | CPUM_USED_FPU_HOST)) 566 569 { 570 /* Notify the support driver prior to loading the host-FPU register state. */ 571 SUPR0FpuEnd(false /* unused */); 572 567 573 fSavedGuest = RT_BOOL(pVCpu->cpum.s.fUseFlags & CPUM_USED_FPU_GUEST); 568 574 Assert(fSavedGuest == pVCpu->cpum.s.Guest.fUsedFpuGuest);
Note:
See TracChangeset
for help on using the changeset viewer.