33 lines
803 B
C++
33 lines
803 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <optional>
|
||
|
|
|
||
|
|
#include "CommandPacket.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::DebugServers::Gdb::CommandPackets
|
||
|
|
{
|
||
|
|
using namespace Bloom::DebugServers::Gdb;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The StepExecution class implements the structure for "s" command packets. Upon receiving this command, the
|
||
|
|
* server is expected to step execution on the target.
|
||
|
|
*/
|
||
|
|
class StepExecution: public CommandPacket
|
||
|
|
{
|
||
|
|
private:
|
||
|
|
void init();
|
||
|
|
|
||
|
|
public:
|
||
|
|
/**
|
||
|
|
* The address from which to begin the step.
|
||
|
|
*/
|
||
|
|
std::optional<size_t> fromProgramCounter;
|
||
|
|
|
||
|
|
StepExecution(std::vector<unsigned char> rawPacket) : CommandPacket(rawPacket) {
|
||
|
|
init();
|
||
|
|
};
|
||
|
|
|
||
|
|
virtual void dispatchToHandler(Gdb::GdbRspDebugServer& gdbRspDebugServer) override;
|
||
|
|
};
|
||
|
|
}
|