- Timestamp:
- Aug 7, 2013 12:19:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMVMXR0.cpp
r47512 r47586 3298 3298 * @remarks No-long-jump zone!!! 3299 3299 */ 3300 static int hmR0VmxLoadGuestDebug Regs(PVMCPU pVCpu, PCPUMCTX pMixedCtx)3300 static int hmR0VmxLoadGuestDebugState(PVMCPU pVCpu, PCPUMCTX pMixedCtx) 3301 3301 { 3302 3302 if (!(pVCpu->hm.s.fContextUseFlags & HM_CHANGED_GUEST_DEBUG)) … … 6825 6825 AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestSegmentRegs: rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc); 6826 6826 6827 rc = hmR0VmxLoadGuestDebug Regs(pVCpu, pMixedCtx);6828 AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestDebug Regs: rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc);6827 rc = hmR0VmxLoadGuestDebugState(pVCpu, pMixedCtx); 6828 AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestDebugState: rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc); 6829 6829 6830 6830 rc = hmR0VmxLoadGuestMsrs(pVCpu, pMixedCtx); … … 6834 6834 AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestApicState! rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc); 6835 6835 6836 /* Must be done after hmR0VmxLoadGuestDebug Regs() as it may updateeflags.TF for debugging purposes. */6836 /* Must be done after hmR0VmxLoadGuestDebugState() as it may have updated eflags.TF for debugging purposes. */ 6837 6837 rc = hmR0VmxLoadGuestRipRspRflags(pVCpu, pMixedCtx); 6838 6838 AssertLogRelMsgRCReturn(rc, ("hmR0VmxLoadGuestRipRspRflags! rc=%Rrc (pVM=%p pVCpu=%p)\n", rc, pVM, pVCpu), rc);
Note:
See TracChangeset
for help on using the changeset viewer.