Changeset 106592 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 22, 2024 11:56:52 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-win-armv8.cpp
r106548 r106592 1459 1459 AssertReturn(VM_IS_NEM_ENABLED(pVM), VERR_NEM_IPE_9); 1460 1460 1461 #pragma message("NEMHCQueryCpuTick: Implement it!") 1461 1462 #if 0 /** @todo */ 1462 1463 /* Call the offical API. */ … … 1472 1473 if (puAux) 1473 1474 *puAux = pVCpu->cpum.GstCtx.fExtrn & CPUMCTX_EXTRN_TSC_AUX ? aValues[1].Reg64 : CPUMGetGuestTscAux(pVCpu); 1475 #else 1476 RT_NOREF(pVCpu, pcTicks, puAux); 1474 1477 #endif 1475 1478 return VINF_SUCCESS; … … 1498 1501 RTThreadYield(); /* Try decrease the chance that we get rescheduled in the middle. */ 1499 1502 1503 #pragma message("NEMHCResumeCpuTickOnAll: Implement it!") 1500 1504 #if 0 /** @todo */ 1501 1505 /* Start with the first CPU. */ … … 1523 1527 , VERR_NEM_SET_TSC); 1524 1528 } 1529 #else 1530 RT_NOREF(uPausedTscValue); 1525 1531 #endif 1526 1532 … … 1854 1860 : EMEXIT_MAKE_FT(EMEXIT_F_KIND_EM, EMEXITTYPE_MMIO_READ), 1855 1861 pHdr->Pc, uHostTsc); 1862 #pragma message("nemR3WinHandleExitMemory: Why not calling nemR3WinCopyStateFromArmHeader?") 1863 /** @todo r=bird: Why is nemR3WinCopyStateFromArmHeader commented out? */ 1856 1864 //nemR3WinCopyStateFromArmHeader(pVCpu, &pExit->MemoryAccess.Header); 1865 RT_NOREF_PV(pExitRec); 1857 1866 rc = nemHCWinCopyStateFromHyperV(pVM, pVCpu, IEM_CPUMCTX_EXTRN_MUST_MASK); 1858 1867 AssertRCReturn(rc, rc);
Note:
See TracChangeset
for help on using the changeset viewer.