Changeset 75759 in vbox for trunk/src/VBox/VMM/VMMR3/EM.cpp
- Timestamp:
- Nov 27, 2018 7:10:10 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EM.cpp
r75683 r75759 1825 1825 *pfInjected = false; 1826 1826 1827 PVM pVM = pVCpu->CTX_SUFF(pVM); 1828 Assert(pVCpu->cpum.GstCtx.hwvirt.fGif); 1829 bool fVirtualGif = CPUMGetSvmNstGstVGif(&pVCpu->cpum.GstCtx); 1827 PVM pVM = pVCpu->CTX_SUFF(pVM); 1828 bool fGif = pVCpu->cpum.GstCtx.hwvirt.fGif; 1830 1829 #ifdef VBOX_WITH_RAW_MODE 1831 f VirtualGif&= !PATMIsPatchGCAddr(pVM, pVCpu->cpum.GstCtx.eip);1832 #endif 1833 if (f VirtualGif)1830 fGif &= !PATMIsPatchGCAddr(pVM, pVCpu->cpum.GstCtx.eip); 1831 #endif 1832 if (fGif) 1834 1833 { 1835 1834 if (CPUMCanSvmNstGstTakePhysIntr(pVCpu, &pVCpu->cpum.GstCtx))
Note:
See TracChangeset
for help on using the changeset viewer.