Changeset 106728 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 27, 2024 9:40:07 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-win-armv8.cpp
r106592 r106728 177 177 /** NEM_WIN_PAGE_STATE_XXX names. */ 178 178 NEM_TMPL_STATIC const char * const g_apszPageStates[4] = { "not-set", "unmapped", "readable", "writable" }; 179 #ifdef LOG_ENABLED 179 180 /** HV_INTERCEPT_ACCESS_TYPE names. */ 180 181 static const char * const g_apszHvInterceptAccessTypes[4] = { "read", "write", "exec", "!undefined!" }; 182 #endif 181 183 182 184 … … 1867 1869 AssertRCReturn(rc, rc); 1868 1870 1871 #ifdef LOG_ENABLED 1869 1872 uint8_t const cbInstr = pExit->MemoryAccess.InstructionByteCount; 1870 1873 RTGCPTR const GCPtrVa = pExit->MemoryAccess.Gva; 1874 #endif 1871 1875 RTGCPHYS const GCPhys = pExit->MemoryAccess.Gpa; 1872 1876 uint64_t const uIss = pExit->MemoryAccess.Syndrome;
Note:
See TracChangeset
for help on using the changeset viewer.