Changeset 97193 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Oct 18, 2022 10:18:45 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r97178 r97193 7414 7414 { 7415 7415 PDISCPUSTATE pDis = &pVCpu->hmr0.s.svm.DisState; 7416 int rc = EMInterpretDisasCurrent(pVCpu ->CTX_SUFF(pVM), pVCpu, pDis, &cbInstr);7416 int rc = EMInterpretDisasCurrent(pVCpu, pDis, &cbInstr); 7417 7417 if ( rc == VINF_SUCCESS 7418 7418 && pDis->pCurInstr->uOpcode == OP_WRMSR) … … 8115 8115 { 8116 8116 PDISCPUSTATE pDis = &pVCpu->hmr0.s.svm.DisState; 8117 int rc = EMInterpretDisasCurrent(pVCpu ->CTX_SUFF(pVM), pVCpu, pDis, &cbInstr);8117 int rc = EMInterpretDisasCurrent(pVCpu, pDis, &cbInstr); 8118 8118 if ( rc == VINF_SUCCESS 8119 8119 && pDis->pCurInstr->uOpcode == OP_VMMCALL) … … 8159 8159 { 8160 8160 PDISCPUSTATE pDis = &pVCpu->hmr0.s.svm.DisState; 8161 int rc = EMInterpretDisasCurrent(pVCpu ->CTX_SUFF(pVM), pVCpu, pDis, &cbInstr);8161 int rc = EMInterpretDisasCurrent(pVCpu, pDis, &cbInstr); 8162 8162 if ( rc == VINF_SUCCESS 8163 8163 && pDis->pCurInstr->uOpcode == OP_PAUSE) … … 8512 8512 if (!(pCtx->cr0 & X86_CR0_NE)) 8513 8513 { 8514 PVMCC pVM = pVCpu->CTX_SUFF(pVM);8515 8514 PDISSTATE pDis = &pVCpu->hmr0.s.svm.DisState; 8516 8515 unsigned cbInstr; 8517 int rc = EMInterpretDisasCurrent(pV M, pVCpu, pDis, &cbInstr);8516 int rc = EMInterpretDisasCurrent(pVCpu, pDis, &cbInstr); 8518 8517 if (RT_SUCCESS(rc)) 8519 8518 {
Note:
See TracChangeset
for help on using the changeset viewer.