Changeset 66319 in vbox
- Timestamp:
- Mar 29, 2017 6:33:37 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 114248
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMSVMAll.cpp
r66318 r66319 652 652 pCtx->rsp = pHostState->uRsp; 653 653 pCtx->rax = pHostState->uRax; 654 /* The spec says "Disables all hardware breakpoints in DR7"... */655 654 pCtx->dr[7] &= ~(X86_DR7_ENABLED_MASK | X86_DR7_RAZ_MASK | X86_DR7_MBZ_MASK); 656 655 pCtx->dr[7] |= X86_DR7_RA1_MASK; 656 657 /** @todo if RIP is not canonical or outside the CS segment limit, we need to 658 * raise #GP(0) in the guest. */ 659 660 /** @todo check the loaded host-state for consistency. Figure out what 661 * exactly this involves? */ 657 662 658 663 rc = VINF_SVM_VMEXIT;
Note:
See TracChangeset
for help on using the changeset viewer.