Changeset 83771 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Apr 17, 2020 4:26:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImpl.cpp.h
r82968 r83771 5599 5599 if (IEM_VMX_IS_ROOT_MODE(pVCpu)) 5600 5600 { 5601 uint 32_t const uCr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0;5601 uint64_t const uCr0Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed0; 5602 5602 if ((uNewCrX & uCr0Fixed0) != uCr0Fixed0) 5603 5603 { … … 5606 5606 } 5607 5607 5608 uint 32_t const uCr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1;5608 uint64_t const uCr0Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr0Fixed1; 5609 5609 if (uNewCrX & ~uCr0Fixed1) 5610 5610 { … … 5809 5809 if (IEM_VMX_IS_ROOT_MODE(pVCpu)) 5810 5810 { 5811 uint 32_t const uCr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0;5811 uint64_t const uCr4Fixed0 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed0; 5812 5812 if ((uNewCrX & uCr4Fixed0) != uCr4Fixed0) 5813 5813 { … … 5816 5816 } 5817 5817 5818 uint 32_t const uCr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1;5818 uint64_t const uCr4Fixed1 = pVCpu->cpum.GstCtx.hwvirt.vmx.Msrs.u64Cr4Fixed1; 5819 5819 if (uNewCrX & ~uCr4Fixed1) 5820 5820 {
Note:
See TracChangeset
for help on using the changeset viewer.