2015-09-02 12:56:38 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
// Originally written by Sven Peter <sven@fail0verflow.com> for anergistic.
|
|
|
|
|
|
|
|
#pragma once
|
2016-12-15 21:19:30 +00:00
|
|
|
|
2016-03-20 12:55:08 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
2015-09-02 12:56:38 +00:00
|
|
|
namespace GDBStub {
|
|
|
|
|
|
|
|
/// Breakpoint Method
|
|
|
|
enum class BreakpointType {
|
2016-09-18 00:38:01 +00:00
|
|
|
None, ///< None
|
|
|
|
Execute, ///< Execution Breakpoint
|
|
|
|
Read, ///< Read Breakpoint
|
|
|
|
Write, ///< Write Breakpoint
|
|
|
|
Access ///< Access (R/W) Breakpoint
|
2015-09-02 12:56:38 +00:00
|
|
|
};
|
|
|
|
|
2015-10-04 15:22:31 +00:00
|
|
|
struct BreakpointAddress {
|
|
|
|
PAddr address;
|
|
|
|
BreakpointType type;
|
|
|
|
};
|
|
|
|
|
2015-09-02 12:56:38 +00:00
|
|
|
/**
|
|
|
|
* Set the port the gdbstub should use to listen for connections.
|
|
|
|
*
|
|
|
|
* @param port Port to listen for connection
|
|
|
|
*/
|
|
|
|
void SetServerPort(u16 port);
|
|
|
|
|
|
|
|
/**
|
2016-12-15 21:19:30 +00:00
|
|
|
* Starts or stops the server if possible.
|
2015-09-02 12:56:38 +00:00
|
|
|
*
|
|
|
|
* @param status Set the server to enabled or disabled.
|
|
|
|
*/
|
|
|
|
void ToggleServer(bool status);
|
|
|
|
|
|
|
|
/// Start the gdbstub server.
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
/// Stop gdbstub server.
|
2015-10-12 00:07:58 +00:00
|
|
|
void Shutdown();
|
2015-09-02 12:56:38 +00:00
|
|
|
|
2016-12-15 21:19:30 +00:00
|
|
|
/// Checks if the gdbstub server is enabled.
|
|
|
|
bool IsServerEnabled();
|
|
|
|
|
2015-09-02 12:56:38 +00:00
|
|
|
/// Returns true if there is an active socket connection.
|
|
|
|
bool IsConnected();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal to the gdbstub server that it should halt CPU execution.
|
|
|
|
*
|
|
|
|
* @param is_memory_break If true, the break resulted from a memory breakpoint.
|
|
|
|
*/
|
|
|
|
void Break(bool is_memory_break = false);
|
|
|
|
|
|
|
|
/// Determine if there was a memory breakpoint.
|
|
|
|
bool IsMemoryBreak();
|
|
|
|
|
|
|
|
/// Read and handle packet from gdb client.
|
|
|
|
void HandlePacket();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the nearest breakpoint of the specified type at the given address.
|
|
|
|
*
|
|
|
|
* @param addr Address to search from.
|
|
|
|
* @param type Type of breakpoint.
|
|
|
|
*/
|
2017-08-29 01:09:42 +00:00
|
|
|
BreakpointAddress GetNextBreakpointFromAddress(PAddr addr, GDBStub::BreakpointType type);
|
2015-09-02 12:56:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if a breakpoint of the specified type exists at the given address.
|
|
|
|
*
|
|
|
|
* @param addr Address of breakpoint.
|
|
|
|
* @param type Type of breakpoint.
|
|
|
|
*/
|
2017-08-29 01:09:42 +00:00
|
|
|
bool CheckBreakpoint(PAddr addr, GDBStub::BreakpointType type);
|
2015-09-02 12:56:38 +00:00
|
|
|
|
|
|
|
// If set to true, the CPU will halt at the beginning of the next CPU loop.
|
|
|
|
bool GetCpuHaltFlag();
|
|
|
|
|
|
|
|
// If set to true and the CPU is halted, the CPU will step one instruction.
|
|
|
|
bool GetCpuStepFlag();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When set to true, the CPU will step one instruction when the CPU is halted next.
|
|
|
|
*
|
|
|
|
* @param is_step
|
|
|
|
*/
|
|
|
|
void SetCpuStepFlag(bool is_step);
|
2018-01-20 07:48:02 +00:00
|
|
|
} // namespace GDBStub
|