Changeset 70861 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Feb 5, 2018 10:49:59 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r70733 r70861 15276 15276 15277 15277 /** @todo Maybe someday we can centralize this under CPUMCanInjectInterrupt()? */ 15278 # if defined(VBOX_WITH_NESTED_HWVIRT)15278 # if defined(VBOX_WITH_NESTED_HWVIRT) 15279 15279 bool fIntrEnabled = pCtx->hwvirt.Gif; 15280 15280 if (fIntrEnabled) … … 15285 15285 fIntrEnabled = pCtx->eflags.Bits.u1IF; 15286 15286 } 15287 # else15287 # else 15288 15288 bool fIntrEnabled = pCtx->eflags.Bits.u1IF; 15289 # endif15289 # endif 15290 15290 if ( fIntrEnabled 15291 15291 && TRPMHasTrap(pVCpu) … … 15342 15342 15343 15343 /** @todo Can we centralize this under CPUMCanInjectInterrupt()? */ 15344 # if defined(VBOX_WITH_NESTED_HWVIRT)15344 # if defined(VBOX_WITH_NESTED_HWVIRT) 15345 15345 bool fIntrEnabled = pCtx->hwvirt.fGif; 15346 15346 if (fIntrEnabled) … … 15351 15351 fIntrEnabled = pCtx->eflags.Bits.u1IF; 15352 15352 } 15353 # else15353 # else 15354 15354 bool fIntrEnabled = pCtx->eflags.Bits.u1IF; 15355 # endif15355 # endif 15356 15356 if ( fIntrEnabled 15357 15357 && TRPMHasTrap(pVCpu) … … 15472 15472 # endif 15473 15473 } 15474 # 15474 # ifdef VBOX_WITH_NESTED_HWVIRT 15475 15475 else 15476 15476 { … … 15481 15481 rcStrict = iemExecStatusCodeFiddling(pVCpu, rcStrict); 15482 15482 } 15483 # 15483 # endif 15484 15484 15485 15485 /*
Note:
See TracChangeset
for help on using the changeset viewer.