VirtualBox

Changeset 93901 in vbox for trunk/src/VBox/Frontends/VBoxSDL


Ignore:
Timestamp:
Feb 23, 2022 3:35:26 PM (3 years ago)
Author:
vboxsync
Message:

VMM,Main,++: Removed VM_IS_RAW_MODE_ENABLED/VM_EXEC_ENGINE_RAW_MODE and added VM_IS_EXEC_ENGINE_IEM/VM_EXEC_ENGINE_IEM instead. In IMachineDebugger::getExecutionEngine VMExecutionEngine_RawMode was removed and VMExecutionEngine_Emulated added. Removed dead code and updated frontends accordingly. On darwin.arm64 HM now falls back on IEM execution since neither HM or NEM is availble there. bugref:9898

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp

    r93460 r93901  
    42974297                            " [STEP=%d LOG=%d EXEC=%s",
    42984298                            singlestepEnabled == TRUE, logEnabled == TRUE,
    4299                             enmExecEngine == VMExecutionEngine_NotSet ? "NotSet"
    4300                             : enmExecEngine == VMExecutionEngine_RawMode ? "RAW"
    4301                             : enmExecEngine == VMExecutionEngine_HwVirt ? "HM"
     4299                            enmExecEngine == VMExecutionEngine_NotSet      ? "NotSet"
     4300                            : enmExecEngine == VMExecutionEngine_Emulated  ? "IEM"
     4301                            : enmExecEngine == VMExecutionEngine_HwVirt    ? "HM"
    43024302                            : enmExecEngine == VMExecutionEngine_NativeApi ? "NEM" : "UNK");
    43034303                char *psz = strchr(szTitle, '\0');
Note: See TracChangeset for help on using the changeset viewer.

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