Changeset 103196 in vbox for trunk/src/VBox/ValidationKit/testboxscript
- Timestamp:
- Feb 5, 2024 9:40:14 AM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161463
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/TestBoxHelper.cpp
r103159 r103196 668 668 669 669 670 /** Print the 'true' if long modeguests are supported, 'false' if not and670 /** Print the 'true' if 64-bits guests are supported, 'false' if not and 671 671 * 'dunno' if we cannot tell. */ 672 static RTEXITCODE handlerCpu LongMode(int argc, char **argv)672 static RTEXITCODE handlerCpu64BitGuest(int argc, char **argv) 673 673 { 674 674 NOREF(argc); NOREF(argv); 675 HWVIRTTYPE enmHwVirt = isHwVirtSupported(); 676 bool fNativeApi = isNativeApiSupported(); 677 int fSupported = 0; 678 679 if ( enmHwVirt != HWVIRTTYPE_NONE 680 || fNativeApi) 681 { 682 #if defined(RT_ARCH_AMD64) 683 fSupported = 1; /* We're running long mode, so it must be supported. */ 675 int fSupported = 0; 676 677 if ( isHwVirtSupported() != HWVIRTTYPE_NONE 678 || isNativeApiSupported()) 679 { 680 #if ARCH_BITS == 64 681 fSupported = 1; /* We're running in 64-bit mode, so it must be supported. */ 684 682 685 683 #elif defined(RT_ARCH_X86) … … 716 714 } 717 715 } 718 #elif defined(RT_ARCH_ARM64)719 fSupported = 1; /** @todo LongMode is a misnomer here but in general means 64-bit guest capable. */720 716 #endif 721 717 } … … 817 813 { "cpuhwvirt", handlerCpuHwVirt, true }, 818 814 { "nestedpaging", handlerCpuNestedPaging, true }, 819 { "longmode", handlerCpuLongMode, true }, 815 { "64bitguest", handlerCpu64BitGuest, true }, 816 { "longmode", handlerCpu64BitGuest, true }, /* legacy name */ 820 817 { "nativeapi", handlerNativeApi, true }, 821 818 { "memsize", handlerMemSize, true },
Note:
See TracChangeset
for help on using the changeset viewer.