Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLI option to toggle gdb breakOnStart #2178

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions src/frontend/qt_sdl/CLI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ CommandLineOptions* ManageArgs(QApplication& melon)
parser.addOption(QCommandLineOption({"b", "boot"}, "Whether to boot firmware on startup. Defaults to \"auto\" (boot if NDS rom given)", "auto/always/never", "auto"));
parser.addOption(QCommandLineOption({"f", "fullscreen"}, "Start melonDS in fullscreen mode"));

#ifdef GDBSTUB_ENABLED
parser.addOption(QCommandLineOption("break-arm9", "Yield ARM9 execution to the GDB stub immediately on startup"));
parser.addOption(QCommandLineOption("break-arm7", "Yield ARM7 execution to the GDB stub immediately on startup"));
parser.addOption(QCommandLineOption("no-break-arm9", "Do not wait for GDB on ARM9 startup, even if the option to do so is enabled"));
parser.addOption(QCommandLineOption("no-break-arm7", "Do not wait for GDB on ARM9 startup, even if the option to do so is enabled"));
#endif

#ifdef ARCHIVE_SUPPORT_ENABLED
parser.addOption(QCommandLineOption({"a", "archive-file"}, "Specify file to load inside an archive given (NDS)", "rom"));
parser.addOption(QCommandLineOption({"A", "archive-file-gba"}, "Specify file to load inside an archive given (GBA)", "rom"));
Expand All @@ -55,6 +62,25 @@ CommandLineOptions* ManageArgs(QApplication& melon)

options->fullscreen = parser.isSet("fullscreen");

#ifdef GDBSTUB_ENABLED
if (parser.isSet("break-arm9"))
{
options->arm9BreakOnStartup = true;
}
if (parser.isSet("no-break-arm9"))
{
options->arm9BreakOnStartup = false;
}
if (parser.isSet("break-arm7"))
{
options->arm7BreakOnStartup = true;
}
if (parser.isSet("no-break-arm7"))
{
options->arm7BreakOnStartup = false;
}
#endif

QStringList posargs = parser.positionalArguments();
switch (posargs.size())
{
Expand Down
4 changes: 4 additions & 0 deletions src/frontend/qt_sdl/CLI.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ struct CommandLineOptions
std::optional<QString> gbaRomArchivePath;
bool fullscreen;
bool boot;
#ifdef GDBSTUB_ENABLED
std::optional<bool> arm9BreakOnStartup;
std::optional<bool> arm7BreakOnStartup;
#endif
};

extern CommandLineOptions* ManageArgs(QApplication& melon);
Expand Down
17 changes: 14 additions & 3 deletions src/frontend/qt_sdl/EmuInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ const string kWifiSettingsPath = "wfcsettings.bin";
extern Net net;


EmuInstance::EmuInstance(int inst) : deleting(false),
EmuInstance::EmuInstance(int inst, std::optional<bool> arm9BreakOnStart, std::optional<bool> arm7BreakOnStart) :
#ifdef GDBSTUB_ENABLED
overrideArm9BreakOnStart(arm9BreakOnStart),
overrideArm7BreakOnStart(arm7BreakOnStart),
#endif
deleting(false),
instanceID(inst),
globalCfg(Config::GetGlobalTable()),
localCfg(Config::GetLocalTable(inst))
Expand Down Expand Up @@ -149,6 +154,12 @@ EmuInstance::EmuInstance(int inst) : deleting(false),
}
}

EmuInstance::EmuInstance(int inst) :
EmuInstance(inst, std::nullopt, std::nullopt)
{

}

EmuInstance::~EmuInstance()
{
deleting = true;
Expand Down Expand Up @@ -1287,8 +1298,8 @@ bool EmuInstance::updateConsole(UpdateConsoleNDSArgs&& _ndsargs, UpdateConsoleGB
GDBArgs _gdbargs {
static_cast<u16>(gdbopt.GetInt("ARM7.Port")),
static_cast<u16>(gdbopt.GetInt("ARM9.Port")),
gdbopt.GetBool("ARM7.BreakOnStartup"),
gdbopt.GetBool("ARM9.BreakOnStartup"),
overrideArm7BreakOnStart.value_or(gdbopt.GetBool("ARM7.BreakOnStartup")),
overrideArm9BreakOnStart.value_or(gdbopt.GetBool("ARM9.BreakOnStartup")),
};
auto gdbargs = gdbopt.GetBool("Enabled") ? std::make_optional(_gdbargs) : std::nullopt;
#else
Expand Down
6 changes: 6 additions & 0 deletions src/frontend/qt_sdl/EmuInstance.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class EmuInstance
{
public:
EmuInstance(int inst);
EmuInstance(int inst, std::optional<bool> arm9BreakOnStart, std::optional<bool> arm7BreakOnStart);
~EmuInstance();

int getInstanceID() { return instanceID; }
Expand Down Expand Up @@ -260,6 +261,11 @@ class EmuInstance
std::string baseGBAROMName;
std::string baseGBAAssetName;

#ifdef GDBSTUB_ENABLED
std::optional<bool> overrideArm9BreakOnStart = std::nullopt;
std::optional<bool> overrideArm7BreakOnStart = std::nullopt;
#endif

// HACK
public:
std::unique_ptr<SaveManager> ndsSave;
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@ void MainWindow::onOpenTitleManager()

void MainWindow::onMPNewInstance()
{
createEmuInstance();
createEmuInstance(std::nullopt, std::nullopt);
}

void MainWindow::onLANStartHost()
Expand Down
14 changes: 10 additions & 4 deletions src/frontend/qt_sdl/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void NetInit()
}


bool createEmuInstance()
bool createEmuInstance(std::optional<bool> arm9BreakOnStartup, std::optional<bool> arm7BreakOnStartup)
{
int id = -1;
for (int i = 0; i < kMaxEmuInstances; i++)
Expand All @@ -133,7 +133,11 @@ bool createEmuInstance()
if (id == -1)
return false;

#ifdef GDBSTUB_ENABLED
auto inst = new EmuInstance(id, arm9BreakOnStartup, arm7BreakOnStartup);
#else
auto inst = new EmuInstance(id);
#endif
emuInstances[id] = inst;

return true;
Expand Down Expand Up @@ -348,9 +352,11 @@ int main(int argc, char** argv)
setMPInterface(MPInterface_Local);

NetInit();

createEmuInstance();

#ifdef GDBSTUB_ENABLED
createEmuInstance(options->arm9BreakOnStartup, options->arm7BreakOnStartup);
#else
createEmuInstance(std::nullopt, std::nullopt);
#endif
{
MainWindow* win = emuInstances[0]->getMainWindow();
bool memberSyntaxUsed = false;
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ extern QString emuDirectory;

extern QElapsedTimer sysTimer;

bool createEmuInstance();
bool createEmuInstance(std::optional<bool> arm9BreakOnStartup, std::optional<bool> arm7BreakOnStartup);
void deleteEmuInstance(int id);
void deleteAllEmuInstances(int first = 0);
int numEmuInstances();
Expand Down
Loading