Changeset 45552 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Apr 15, 2013 2:54:15 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85038
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r45548 r45552 5882 5882 /* Get the current interruptibility-state of the guest and then figure out what can be injected. */ 5883 5883 uint32_t uIntrState = hmR0VmxGetGuestIntrState(pVCpu, pMixedCtx); 5884 const bool fBlockMovSS = (uIntrState & VMX_VMCS_GUEST_INTERRUPTIBILITY_STATE_BLOCK_MOVSS);5885 const bool fBlockSti = (uIntrState & VMX_VMCS_GUEST_INTERRUPTIBILITY_STATE_BLOCK_STI);5884 const bool fBlockMovSS = !!(uIntrState & VMX_VMCS_GUEST_INTERRUPTIBILITY_STATE_BLOCK_MOVSS); 5885 const bool fBlockSti = !!(uIntrState & VMX_VMCS_GUEST_INTERRUPTIBILITY_STATE_BLOCK_STI); 5886 5886 5887 5887 Assert(!fBlockSti || (pVCpu->hm.s.vmx.fUpdatedGuestState & VMX_UPDATED_GUEST_RFLAGS));
Note:
See TracChangeset
for help on using the changeset viewer.