Changeset 49285 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Oct 25, 2013 9:50:20 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r49284 r49285 3638 3638 bool fInterceptDB = false; 3639 3639 bool fInterceptMovDRx = false; 3640 if (pVCpu->hm.s.fSingleInstruction || DBGFIsStepping(pVCpu)) 3640 if ( pVCpu->hm.s.fSingleInstruction 3641 || DBGFIsStepping(pVCpu)) 3641 3642 { 3642 3643 /* If the CPU supports the monitor trap flag, use it for single stepping in DBGF and avoid intercepting #DB. */ … … 3657 3658 } 3658 3659 3659 if (fInterceptDB || (CPUMGetHyperDR7(pVCpu) & X86_DR7_ENABLED_MASK)) 3660 if ( fInterceptDB 3661 || (CPUMGetHyperDR7(pVCpu) & X86_DR7_ENABLED_MASK)) 3660 3662 { 3661 3663 /* … … 6873 6875 || fBlockMovSS) 6874 6876 { 6875 if (!pVCpu->hm.s.fSingleInstruction && !DBGFIsStepping(pVCpu)) 6877 if ( !pVCpu->hm.s.fSingleInstruction 6878 && !DBGFIsStepping(pVCpu)) 6876 6879 { 6877 6880 Assert(pVCpu->hm.s.vmx.fUpdatedGuestState & HMVMX_UPDATED_GUEST_RFLAGS);
Note:
See TracChangeset
for help on using the changeset viewer.