Changeset 97225 in vbox
- Timestamp:
- Oct 18, 2022 10:56:43 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r97202 r97225 2413 2413 pVmcb->guest.u64RIP = pCtx->rip; 2414 2414 pVmcb->guest.u64RSP = pCtx->rsp; 2415 pVmcb->guest.u64RFlags = pCtx->eflags.u 32;2415 pVmcb->guest.u64RFlags = pCtx->eflags.u; 2416 2416 pVmcb->guest.u64RAX = pCtx->rax; 2417 2417 … … 2699 2699 if (fWhat & CPUMCTX_EXTRN_RFLAGS) 2700 2700 { 2701 pCtx->eflags.u 32= pVmcbGuest->u64RFlags;2701 pCtx->eflags.u = pVmcbGuest->u64RFlags; 2702 2702 if (pVCpu->hmr0.s.fClearTrapFlag) 2703 2703 { … … 3631 3631 && !pVCpu->hm.s.fSingleInstruction) 3632 3632 { 3633 bool const fBlockInt = !pSvmTransient->fIsNestedGuest ? !(pCtx->eflags.u 32& X86_EFL_IF)3633 bool const fBlockInt = !pSvmTransient->fIsNestedGuest ? !(pCtx->eflags.u & X86_EFL_IF) 3634 3634 : CPUMIsGuestSvmPhysIntrEnabled(pVCpu, pCtx); 3635 3635 if ( fGif … … 3708 3708 fAllowInt = CPUMIsGuestSvmPhysIntrEnabled(pVCpu, pCtx) || CPUMIsGuestSvmVirtIntrEnabled(pVCpu, pCtx); 3709 3709 else 3710 fAllowInt = RT_BOOL(pCtx->eflags.u 32& X86_EFL_IF);3710 fAllowInt = RT_BOOL(pCtx->eflags.u & X86_EFL_IF); 3711 3711 } 3712 3712 #endif
Note:
See TracChangeset
for help on using the changeset viewer.