Changeset 101103 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Sep 13, 2023 11:42:14 AM (20 months ago)
- svn:sync-xref-src-repo-rev:
- 159072
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUM-armv8.cpp
r100755 r101103 128 128 * Global Variables * 129 129 *********************************************************************************************************************************/ 130 #if defined(RT_ARCH_ARM64) 131 /** Host CPU features. */ 132 DECL_HIDDEN_DATA(CPUHOSTFEATURES) g_CpumHostFeatures; 133 #endif 134 130 135 /** 131 136 * System register ranges. … … 375 380 DBGFR3InfoRegisterInternalEx(pVM, "cpumguest", "Displays the guest cpu state.", 376 381 &cpumR3InfoGuest, DBGFINFO_FLAGS_ALL_EMTS); 382 DBGFR3InfoRegisterInternalEx(pVM, "cpumguestinstr", "Displays the current guest instruction.", 383 &cpumR3InfoGuestInstr, DBGFINFO_FLAGS_ALL_EMTS); 384 DBGFR3InfoRegisterInternal( pVM, "cpuid", "Displays the guest cpuid information.", 385 &cpumR3CpuIdInfo); 377 386 378 387 rc = cpumR3DbgInit(pVM); … … 949 958 if (cCores) 950 959 LogRel(("CPUM: Physical host cores: %u\n", (unsigned)cCores)); 951 RT_NOREF(pVM);952 #if 0 /** @todo Someting similar. */953 960 LogRel(("************************* CPUID dump ************************\n")); 954 961 DBGFR3Info(pVM->pUVM, "cpuid", "verbose", DBGFR3InfoLogRelHlp()); … … 956 963 DBGFR3_INFO_LOG_SAFE(pVM, "cpuid", "verbose"); /* macro */ 957 964 LogRel(("******************** End of CPUID dump **********************\n")); 958 #endif959 965 960 966 /*
Note:
See TracChangeset
for help on using the changeset viewer.