Changeset 94901 in vbox
- Timestamp:
- May 6, 2022 6:59:14 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151307
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r93931 r94901 2022 2022 return VERR_UNSUPPORTED_CPU; 2023 2023 } 2024 2025 pVM->cpum.s.fHostMxCsrMask = CPUMR3DeterminHostMxCsrMask(); 2024 2026 #endif 2025 2026 pVM->cpum.s.fHostMxCsrMask = CPUMR3DeterminHostMxCsrMask();2027 2027 2028 2028 CPUMMSRS HostMsrs; -
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r93924 r94901 4583 4583 : rc; 4584 4584 4585 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 4585 4586 if (pCpum->GuestInfo.fMxCsrMask & ~pVM->cpum.s.fHostMxCsrMask) 4586 4587 { … … 4590 4591 } 4591 4592 LogRel(("CPUM: MXCSR_MASK=%#x (host: %#x)\n", pCpum->GuestInfo.fMxCsrMask, pVM->cpum.s.fHostMxCsrMask)); 4593 #else 4594 LogRel(("CPUM: MXCSR_MASK=%#x\n", pCpum->GuestInfo.fMxCsrMask)); 4595 #endif 4592 4596 4593 4597 /** @cfgm{/CPUM/MSRs/[Name]/[First|Last|Type|Value|...],} -
trunk/src/VBox/VMM/include/CPUMInternal.h
r93115 r94901 366 366 uint64_t fXStateHostMask; 367 367 368 #if defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64) 368 369 /** The host MXCSR mask (determined at init). */ 369 370 uint32_t fHostMxCsrMask; 371 #else 372 uint32_t u32UnusedOnNonX86; 373 #endif 370 374 /** Nested VMX: Whether to expose VMX-preemption timer to the guest. */ 371 375 bool fNestedVmxPreemptTimer;
Note:
See TracChangeset
for help on using the changeset viewer.