VirtualBox

Ignore:
Timestamp:
Feb 5, 2024 9:40:14 AM (14 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
161463
Message:

ValKit/TestBoxHelper.cpp: longmode -> 64bitguest. bugref:10592

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ValidationKit/testboxscript/TestBoxHelper.cpp

    r103159 r103196  
    668668
    669669
    670 /** Print the 'true' if long mode guests are supported, 'false' if not and
     670/** Print the 'true' if 64-bits guests are supported, 'false' if not and
    671671 * 'dunno' if we cannot tell. */
    672 static RTEXITCODE handlerCpuLongMode(int argc, char **argv)
     672static RTEXITCODE handlerCpu64BitGuest(int argc, char **argv)
    673673{
    674674    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. */
    684682
    685683#elif defined(RT_ARCH_X86)
     
    716714            }
    717715        }
    718 #elif defined(RT_ARCH_ARM64)
    719         fSupported = 1; /** @todo LongMode is a misnomer here but in general means 64-bit guest capable. */
    720716#endif
    721717    }
     
    817813        { "cpuhwvirt",      handlerCpuHwVirt,       true },
    818814        { "nestedpaging",   handlerCpuNestedPaging, true },
    819         { "longmode",       handlerCpuLongMode,     true },
     815        { "64bitguest",     handlerCpu64BitGuest,   true },
     816        { "longmode",       handlerCpu64BitGuest,   true }, /* legacy name */
    820817        { "nativeapi",      handlerNativeApi,       true },
    821818        { "memsize",        handlerMemSize,         true },
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette