2013-07-06 20:38:11 +00:00
|
|
|
#ifndef __debugger_h__
|
|
|
|
#define __debugger_h__
|
|
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
2013-07-08 03:39:53 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <functional>
|
|
|
|
#include <string>
|
2013-07-06 20:38:11 +00:00
|
|
|
|
|
|
|
// Debugger is a function in MacTypes.h
|
|
|
|
namespace Debug {
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
cmdNull,
|
|
|
|
cmdContinue,
|
|
|
|
cmdStep,
|
|
|
|
cmdRun,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Command {
|
|
|
|
bool valid;
|
|
|
|
int action;
|
|
|
|
uint32_t argc;
|
|
|
|
uint32_t argv[10];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
bool ParseLine(const char *iter, Command *command);
|
|
|
|
|
2013-07-14 19:17:35 +00:00
|
|
|
std::unordered_map<std::string, uint32_t> LoadTrapFile(const std::string &path);
|
2013-07-08 03:39:53 +00:00
|
|
|
|
2013-07-14 19:17:35 +00:00
|
|
|
uint32_t EnvLookup(const std::string &);
|
2013-07-08 03:39:53 +00:00
|
|
|
|
|
|
|
|
2013-07-06 20:38:11 +00:00
|
|
|
void Shell();
|
|
|
|
void Help();
|
|
|
|
|
|
|
|
uint32_t ReadLong(uint32_t);
|
|
|
|
uint16_t ReadWord(uint32_t);
|
|
|
|
uint8_t ReadByte(uint32_t);
|
|
|
|
|
|
|
|
void Print(uint32_t value);
|
|
|
|
void PrintRegisters();
|
|
|
|
|
|
|
|
void Dump(uint32_t address, int count = 256);
|
|
|
|
void List(uint32_t address, int count = 20);
|
|
|
|
void List(uint32_t pc, uint32_t endpc);
|
|
|
|
|
|
|
|
void SetARegister(unsigned reg, uint32_t value);
|
|
|
|
void SetDRegister(unsigned reg, uint32_t value);
|
|
|
|
void SetXRegister(unsigned reg, uint32_t value);
|
|
|
|
|
|
|
|
void ToolBreak(int32_t tool);
|
2013-07-08 03:39:53 +00:00
|
|
|
void ToolBreak();
|
|
|
|
|
2013-07-06 20:38:11 +00:00
|
|
|
void Break(int32_t address);
|
2013-07-08 03:39:53 +00:00
|
|
|
void Break();
|
2013-07-06 20:38:11 +00:00
|
|
|
|
2013-07-13 17:42:19 +00:00
|
|
|
void ReadBreak();
|
|
|
|
void ReadBreak(int32_t address);
|
|
|
|
|
|
|
|
void WriteBreak();
|
|
|
|
void WriteBreak(int32_t address);
|
|
|
|
|
|
|
|
void ReadWriteBreak();
|
|
|
|
void ReadWriteBreak(int32_t address);
|
|
|
|
|
2013-07-06 20:38:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|