Changeset 97231 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 19, 2022 9:12:57 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154207
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM.cpp
r97219 r97231 145 145 #include <iprt/mem.h> 146 146 #include <iprt/mp.h> 147 #include <iprt/rand.h> 147 148 #include <iprt/string.h> 148 149 … … 2205 2206 2206 2207 /* 2208 * Generate the RFLAGS cookie. 2209 */ 2210 pVM->cpum.s.fReservedRFlagsCookie = RTRandU64() & ~(CPUMX86EFLAGS_HW_MASK_64 | CPUMX86EFLAGS_INT_MASK_64); 2211 2212 /* 2207 2213 * Init the VMX/SVM state. 2208 2214 * … … 2220 2226 Assert(pVM->apCpusR3[0]->cpum.s.Guest.hwvirt.enmHwvirt == CPUMHWVIRT_NONE); 2221 2227 2228 /* 2229 * Initialize the general guest CPU state. 2230 */ 2222 2231 CPUMR3Reset(pVM); 2232 2223 2233 return VINF_SUCCESS; 2224 2234 } … … 2303 2313 pCtx->eip = 0x0000fff0; 2304 2314 pCtx->edx = 0x00000600; /* P6 processor */ 2305 pCtx->eflags.Bits.u1Reserved0 = 1; 2315 2316 Assert((pVM->cpum.s.fReservedRFlagsCookie & (X86_EFL_LIVE_MASK | X86_EFL_RAZ_LO_MASK | X86_EFL_RA1_MASK)) == 0); 2317 pCtx->rflags.uBoth = pVM->cpum.s.fReservedRFlagsCookie | X86_EFL_RA1_MASK; 2306 2318 2307 2319 pCtx->cs.Sel = 0xf000; … … 2495 2507 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++) 2496 2508 { 2497 PVMCPU pVCpu = pVM->apCpusR3[idCpu]; 2498 2509 PVMCPU const pVCpu = pVM->apCpusR3[idCpu]; 2510 PCPUMCTX const pGstCtx = &pVCpu->cpum.s.Guest; 2511 2512 /** @todo ditch this the next time we change the saved state. */ 2499 2513 SSMR3PutStructEx(pSSM, &DummyHyperCtx, sizeof(DummyHyperCtx), 0, g_aCpumCtxFields, NULL); 2500 2514 2501 PCPUMCTX pGstCtx = &pVCpu->cpum.s.Guest; 2515 uint64_t const fSavedRFlags = pGstCtx->rflags.uBoth; 2516 pGstCtx->rflags.uBoth &= CPUMX86EFLAGS_HW_MASK_64; /* Temporarily clear the non-hardware bits in RFLAGS while saving. */ 2502 2517 SSMR3PutStructEx(pSSM, pGstCtx, sizeof(*pGstCtx), 0, g_aCpumCtxFields, NULL); 2518 pGstCtx->rflags.uBoth = fSavedRFlags; 2519 2503 2520 SSMR3PutStructEx(pSSM, &pGstCtx->XState.x87, sizeof(pGstCtx->XState.x87), 0, g_aCpumX87Fields, NULL); 2504 2521 if (pGstCtx->fXStateMask != 0) … … 2922 2939 AssertRCReturn(rc, rc); 2923 2940 2941 /* Deal with the reusing of reserved RFLAGS bits. */ 2942 pGstCtx->rflags.uBoth |= pVM->cpum.s.fReservedRFlagsCookie; 2943 2924 2944 /* REM and other may have cleared must-be-one fields in DR6 and 2925 2945 DR7, fix these. */ -
trunk/src/VBox/VMM/VMMR3/EM.cpp
r97178 r97231 2210 2210 fFFDone = false; 2211 2211 2212 #ifdef VBOX_STRICT 2213 CPUMAssertGuestRFlagsCookie(pVM, pVCpu); 2214 #endif 2215 2212 2216 /* 2213 2217 * Now what to do?
Note:
See TracChangeset
for help on using the changeset viewer.