Changeset 77899 in vbox
- Timestamp:
- Mar 27, 2019 6:43:09 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 129605
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllCImplVmxInstr.cpp.h
r77879 r77899 2796 2796 2797 2797 /* Ensure VM-entry interruption information valid bit isn't set. */ 2798 Assert(!VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo) ;2798 Assert(!VMX_ENTRY_INT_INFO_IS_VALID(pVmcs->u32EntryIntInfo)); 2799 2799 2800 2800 /* Update the VM-exit reason, the other relevant data fields are expected to be updated by the caller already. */ … … 7388 7388 IEM_STATIC int iemVmxVmentryInjectEvent(PVMCPU pVCpu, const char *pszInstr) 7389 7389 { 7390 PVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs); 7391 7390 7392 /* 7391 7393 * Inject events. … … 7397 7399 * See Intel spec. 26.5 "Event Injection". 7398 7400 */ 7399 PCVMXVVMCS pVmcs = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs);7400 7401 uint32_t const uEntryIntInfo = pVCpu->cpum.GstCtx.hwvirt.vmx.CTX_SUFF(pVmcs)->u32EntryIntInfo; 7401 7402 bool const fEntryIntInfoValid = VMX_ENTRY_INT_INFO_IS_VALID(uEntryIntInfo);
Note:
See TracChangeset
for help on using the changeset viewer.