Changeset 97196 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Oct 18, 2022 10:42:52 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 154171
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r97193 r97196 8556 8556 * handler expects. See AMD spec. 15.12.2 "#DB (Debug)". 8557 8557 */ 8558 PVMCC 8558 PVMCC pVM = pVCpu->CTX_SUFF(pVM); 8559 8559 PSVMVMCB pVmcb = pVCpu->hmr0.s.svm.pVmcb; 8560 PCPUMCTX pCtx = &pVCpu->cpum.GstCtx; 8561 int rc = DBGFTrap01Handler(pVM, pVCpu, CPUMCTX2CORE(pCtx), pVmcb->guest.u64DR6, pVCpu->hm.s.fSingleInstruction); 8560 int rc = DBGFTrap01Handler(pVM, pVCpu, &pVCpu->cpum.GstCtx, pVmcb->guest.u64DR6, pVCpu->hm.s.fSingleInstruction); 8562 8561 if (rc == VINF_EM_RAW_GUEST_TRAP) 8563 8562 { … … 8622 8621 STAM_COUNTER_INC(&pVCpu->hm.s.StatExitGuestBP); 8623 8622 8624 PCPUMCTX pCtx = &pVCpu->cpum.GstCtx; 8625 VBOXSTRICTRC rc = DBGFTrap03Handler(pVCpu->CTX_SUFF(pVM), pVCpu, CPUMCTX2CORE(pCtx)); 8623 VBOXSTRICTRC rc = DBGFTrap03Handler(pVCpu->CTX_SUFF(pVM), pVCpu, &pVCpu->cpum.GstCtx); 8626 8624 if (rc == VINF_EM_RAW_GUEST_TRAP) 8627 8625 {
Note:
See TracChangeset
for help on using the changeset viewer.