- Timestamp:
- Nov 13, 2024 9:50:08 PM (2 weeks ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/iem-armv8.h
r106591 r106996 64 64 | CPUMCTX_EXTRN_ELR \ 65 65 | CPUMCTX_EXTRN_SP \ 66 | CPUMCTX_EXTRN_PSTATE ) 66 | CPUMCTX_EXTRN_PSTATE \ 67 | CPUMCTX_EXTRN_SCTLR_TCR_TTBR ) 67 68 /** The CPUMCTX_EXTRN_XXX mask needed when injecting an exception/interrupt. 68 69 * IEM will import missing bits, callers are encouraged to make these registers -
trunk/src/VBox/VMM/VMMR3/NEMR3Native-win-armv8.cpp
r106992 r106996 2494 2494 for (unsigned iLoop = 0;; iLoop++) 2495 2495 { 2496 /* Ensure that Hyper-V has the whole state. */2497 int rc2 = nemHCWinCopyStateToHyperV(pVM, pVCpu);2498 AssertRCReturn(rc2, rc2);2499 2500 2496 /* 2501 2497 * Poll timers and run for a bit. … … 2514 2510 if (VMCPU_CMPXCHG_STATE(pVCpu, VMCPUSTATE_STARTED_EXEC_NEM_WAIT, VMCPUSTATE_STARTED_EXEC_NEM)) 2515 2511 { 2512 /* Ensure that Hyper-V has the whole state. */ 2513 int rc2 = nemHCWinCopyStateToHyperV(pVM, pVCpu); 2514 AssertRCReturn(rc2, rc2); 2515 2516 2516 #ifdef LOG_ENABLED 2517 2517 if (LogIsFlowEnabled())
Note:
See TracChangeset
for help on using the changeset viewer.