2022-05-30 23:35:01 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
#include <optional>
|
|
|
|
#include <string_view>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "core/debugger/debugger_interface.h"
|
|
|
|
#include "core/debugger/gdbstub_arch.h"
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
class System;
|
|
|
|
|
|
|
|
class GDBStub : public DebuggerFrontend {
|
|
|
|
public:
|
|
|
|
explicit GDBStub(DebuggerBackend& backend, Core::System& system);
|
2022-06-01 06:27:48 +00:00
|
|
|
~GDBStub() override;
|
2022-05-30 23:35:01 +00:00
|
|
|
|
|
|
|
void Connected() override;
|
|
|
|
void Stopped(Kernel::KThread* thread) override;
|
2022-06-10 13:17:12 +00:00
|
|
|
void ShuttingDown() override;
|
2022-06-06 16:56:01 +00:00
|
|
|
void Watchpoint(Kernel::KThread* thread, const Kernel::DebugWatchpoint& watch) override;
|
2022-05-30 23:35:01 +00:00
|
|
|
std::vector<DebuggerAction> ClientData(std::span<const u8> data) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void ProcessData(std::vector<DebuggerAction>& actions);
|
|
|
|
void ExecuteCommand(std::string_view packet, std::vector<DebuggerAction>& actions);
|
2022-05-31 18:37:37 +00:00
|
|
|
void HandleVCont(std::string_view command, std::vector<DebuggerAction>& actions);
|
2022-05-30 23:35:01 +00:00
|
|
|
void HandleQuery(std::string_view command);
|
2022-06-06 16:56:01 +00:00
|
|
|
void HandleBreakpointInsert(std::string_view command);
|
|
|
|
void HandleBreakpointRemove(std::string_view command);
|
2022-05-30 23:35:01 +00:00
|
|
|
std::vector<char>::const_iterator CommandEnd() const;
|
|
|
|
std::optional<std::string> DetachCommand();
|
|
|
|
Kernel::KThread* GetThreadByID(u64 thread_id);
|
|
|
|
|
|
|
|
void SendReply(std::string_view data);
|
|
|
|
void SendStatus(char status);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Core::System& system;
|
|
|
|
std::unique_ptr<GDBStubArch> arch;
|
|
|
|
std::vector<char> current_command;
|
|
|
|
std::map<VAddr, u32> replaced_instructions;
|
2022-05-31 18:37:37 +00:00
|
|
|
bool no_ack{};
|
2022-05-30 23:35:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core
|