feat: export gdbstub api to be used by difftest
Some checks failed
Build abstract machine with nix / build-abstract-machine (push) Failing after 1m41s
Run CTests within npc / npc-test (push) Failing after 2m25s

This commit is contained in:
xinyangli 2024-07-16 14:40:01 +08:00
parent 5a97fab28f
commit 8ffab061ed
Signed by: xin
SSH key fingerprint: SHA256:qZ/tzd8lYRtUFSrfBDBMcUqV4GHKxqeqRA3huItgvbk
4 changed files with 71 additions and 40 deletions

View file

@ -14,9 +14,10 @@
***************************************************************************************/ ***************************************************************************************/
#include "local-include/reg.h" #include "local-include/reg.h"
#include "gdbstub.h"
#include "macro.h" #include "macro.h"
#include <difftest-def.h>
#include <errno.h> #include <errno.h>
#include <gdbstub.h>
#include <isa.h> #include <isa.h>
const char *regs[] = {"$0", "ra", "sp", "gp", "tp", "t0", "t1", "t2", const char *regs[] = {"$0", "ra", "sp", "gp", "tp", "t0", "t1", "t2",
@ -76,6 +77,6 @@ int isa_write_reg(void *args, int regno, size_t data) {
return 0; return 0;
} }
arch_info_t isa_arch_info = {.reg_num = 33, __EXPORT arch_info_t isa_arch_info = {.reg_num = 32,
.reg_byte = MUXDEF(CONFIG_RV64, 8, 4), .reg_byte = MUXDEF(CONFIG_RV64, 8, 4),
.target_desc = TARGET_RV32}; .target_desc = TARGET_RV32};

View file

@ -1,3 +1,4 @@
DIRS-y += src/monitor DIRS-y += src/monitor
CXXSRC += src/monitor/gdbstub.cc CXXSRC += src/monitor/gdbstub.cc
LIBS += -lgdbstub

View file

@ -4,27 +4,27 @@
extern "C" { extern "C" {
#include <cpu/cpu.h> #include <cpu/cpu.h>
#include <debug.h> #include <debug.h>
#include <difftest-def.h>
#include <errno.h> #include <errno.h>
#include <gdbstub.h> #include <gdbstub.h>
#include <isa.h> #include <isa.h>
#include <memory/paddr.h> #include <memory/paddr.h>
#include <stddef.h> #include <stddef.h>
#include <stdlib.h> #include <stdlib.h>
}
typedef struct { typedef struct {
std::vector<breakpoint_t> *bp; std::vector<breakpoint_t> *bp;
bool halt; bool halt;
} DbgState; } DbgState;
int nemu_read_mem(void *args, size_t addr, size_t len, void *val) { __EXPORT int nemu_read_mem(void *args, size_t addr, size_t len, void *val) {
if (!in_pmem(addr)) if (!in_pmem(addr))
return EINVAL; return EINVAL;
memcpy(val, guest_to_host(addr), len); memcpy(val, guest_to_host(addr), len);
return 0; return 0;
} }
int nemu_write_mem(void *args, size_t addr, size_t len, void *val) { __EXPORT int nemu_write_mem(void *args, size_t addr, size_t len, void *val) {
if (!in_pmem(addr)) if (!in_pmem(addr))
return EINVAL; return EINVAL;
memcpy(guest_to_host(addr), val, len); memcpy(guest_to_host(addr), val, len);
@ -35,21 +35,25 @@ static void nemu_is_stopped(gdb_action_t *act, breakpoint_t *stopped_at) {
switch (nemu_state.state) { switch (nemu_state.state) {
case NEMU_RUNNING: case NEMU_RUNNING:
nemu_state.state = NEMU_STOP; nemu_state.state = NEMU_STOP;
switch (stopped_at->type) { if (stopped_at == NULL) {
case BP_SOFTWARE: act->reason = gdb_action_t::ACT_NONE;
act->reason = gdb_action_t::ACT_BREAKPOINT; } else {
break; switch (stopped_at->type) {
case BP_ACCESS: case BP_SOFTWARE:
act->reason = gdb_action_t::ACT_WATCH; act->reason = gdb_action_t::ACT_BREAKPOINT;
break; break;
case BP_WRITE: case BP_ACCESS:
act->reason = gdb_action_t::ACT_WWATCH; act->reason = gdb_action_t::ACT_WATCH;
break; break;
case BP_READ: case BP_WRITE:
act->reason = gdb_action_t::ACT_RWATCH; act->reason = gdb_action_t::ACT_WWATCH;
break; break;
case BP_READ:
act->reason = gdb_action_t::ACT_RWATCH;
break;
}
act->data = stopped_at->addr;
} }
act->data = stopped_at->addr;
break; break;
default: default:
@ -58,21 +62,21 @@ static void nemu_is_stopped(gdb_action_t *act, breakpoint_t *stopped_at) {
} }
} }
void nemu_cont(void *args, gdb_action_t *res) { __EXPORT void nemu_cont(void *args, gdb_action_t *res) {
DbgState *dbg_state = (DbgState *)args; DbgState *dbg_state = (DbgState *)args;
breakpoint_t *stopped_at = breakpoint_t *stopped_at =
cpu_exec_with_bp(-1, dbg_state->bp->data(), dbg_state->bp->size()); cpu_exec_with_bp(-1, dbg_state->bp->data(), dbg_state->bp->size());
nemu_is_stopped(res, stopped_at); nemu_is_stopped(res, stopped_at);
} }
void nemu_stepi(void *args, gdb_action_t *res) { __EXPORT void nemu_stepi(void *args, gdb_action_t *res) {
DbgState *dbg_state = (DbgState *)args; DbgState *dbg_state = (DbgState *)args;
breakpoint_t *stopped_at = breakpoint_t *stopped_at =
cpu_exec_with_bp(1, dbg_state->bp->data(), dbg_state->bp->size()); cpu_exec_with_bp(1, dbg_state->bp->data(), dbg_state->bp->size());
nemu_is_stopped(res, stopped_at); nemu_is_stopped(res, stopped_at);
} }
bool nemu_set_bp(void *args, size_t addr, bp_type_t type) { __EXPORT bool nemu_set_bp(void *args, size_t addr, bp_type_t type) {
DbgState *dbg_state = (DbgState *)args; DbgState *dbg_state = (DbgState *)args;
for (const auto &bp : *dbg_state->bp) { for (const auto &bp : *dbg_state->bp) {
if (bp.addr == addr && bp.type == type) { if (bp.addr == addr && bp.type == type) {
@ -83,7 +87,7 @@ bool nemu_set_bp(void *args, size_t addr, bp_type_t type) {
return true; return true;
} }
bool nemu_del_bp(void *args, size_t addr, bp_type_t type) { __EXPORT bool nemu_del_bp(void *args, size_t addr, bp_type_t type) {
DbgState *dbg_state = (DbgState *)args; DbgState *dbg_state = (DbgState *)args;
for (auto it = dbg_state->bp->begin(); it != dbg_state->bp->end(); it++) { for (auto it = dbg_state->bp->begin(); it != dbg_state->bp->end(); it++) {
if (it->addr == addr && it->type == type) { if (it->addr == addr && it->type == type) {
@ -95,24 +99,44 @@ bool nemu_del_bp(void *args, size_t addr, bp_type_t type) {
return false; return false;
} }
void nemu_on_interrupt(void *args) { __EXPORT void nemu_on_interrupt(void *args) {
// fputs("Not implemented", stderr); // fputs("Not implemented", stderr);
} }
__EXPORT int nemu_read_reg(void *args, int regno, size_t *data) {
return isa_read_reg(args, regno, data);
}
__EXPORT int nemu_write_reg(void *args, int regno, size_t data) {
return isa_write_reg(args, regno, data);
}
__EXPORT size_t argsize = sizeof(DbgState);
static struct target_ops nemu_gdbstub_ops = {.cont = nemu_cont, static struct target_ops nemu_gdbstub_ops = {.cont = nemu_cont,
.stepi = nemu_stepi, .stepi = nemu_stepi,
.read_reg = isa_read_reg, .read_reg = nemu_read_reg,
.write_reg = isa_write_reg, .write_reg = nemu_write_reg,
.read_mem = nemu_read_mem, .read_mem = nemu_read_mem,
.write_mem = nemu_write_mem, .write_mem = nemu_write_mem,
.set_bp = nemu_set_bp, .set_bp = nemu_set_bp,
.del_bp = nemu_del_bp, .del_bp = nemu_del_bp,
.on_interrupt = NULL}; .on_interrupt = NULL};
static DbgState dbg; static DbgState dbg;
extern "C" {
static gdbstub_t gdbstub_priv; static gdbstub_t gdbstub_priv;
#define SOCKET_ADDR "127.0.0.1:1234" #define SOCKET_ADDR "127.0.0.1:1234"
int nemu_gdbstub_init() {
__EXPORT void nemu_init(void *args) {
DbgState *dbg_state = (DbgState *)args;
dbg_state->bp = new std::vector<breakpoint_t>();
dbg_state->halt = 0;
Assert(dbg_state->bp != NULL, "Failed to allocate breakpoint");
void init_mem();
init_mem();
/* Perform ISA dependent initialization. */
init_isa();
}
__EXPORT int nemu_gdbstub_init() {
dbg.bp = new std::vector<breakpoint_t>(); dbg.bp = new std::vector<breakpoint_t>();
assert(dbg.bp); assert(dbg.bp);
if (!gdbstub_init(&gdbstub_priv, &nemu_gdbstub_ops, if (!gdbstub_init(&gdbstub_priv, &nemu_gdbstub_ops,
@ -121,7 +145,8 @@ int nemu_gdbstub_init() {
} }
return 0; return 0;
} }
int nemu_gdbstub_run() {
__EXPORT int nemu_gdbstub_run() {
puts("Waiting for gdb connection at " SOCKET_ADDR); puts("Waiting for gdb connection at " SOCKET_ADDR);
bool success = gdbstub_run(&gdbstub_priv, &dbg); bool success = gdbstub_run(&gdbstub_priv, &dbg);
gdbstub_close(&gdbstub_priv); gdbstub_close(&gdbstub_priv);

View file

@ -25,7 +25,7 @@ void init_mem();
void init_difftest(char *ref_so_file, long img_size, int port); void init_difftest(char *ref_so_file, long img_size, int port);
void init_device(); void init_device();
void init_disasm(const char *triple); void init_disasm(const char *triple);
int nemu_gdbstub_init(); void nemu_init();
static void welcome() { static void welcome() {
Log("Trace: %s", MUXDEF(CONFIG_TRACE, ANSI_FMT("ON", ANSI_FG_GREEN), Log("Trace: %s", MUXDEF(CONFIG_TRACE, ANSI_FMT("ON", ANSI_FG_GREEN),
@ -60,7 +60,8 @@ static long load_img() {
// Image file is searched from paths in environment variable NEMU_IMAGES_PATH if it's a relative path // Image file is searched from paths in environment variable NEMU_IMAGES_PATH if it's a relative path
if (img_file[0] != '/') { if (img_file[0] != '/') {
char *search_paths = getenv("NEMU_IMAGES_PATH"); char *search_paths = getenv("NEMU_IMAGES_PATH");
if(search_paths == NULL) search_paths = "./"; if (search_paths == NULL)
search_paths = "./";
search_paths = strdup(search_paths); search_paths = strdup(search_paths);
Trace("NEMU_IMAGES_PATH=%s", search_paths); Trace("NEMU_IMAGES_PATH=%s", search_paths);
@ -68,8 +69,10 @@ static long load_img() {
char *p_start = search_paths; char *p_start = search_paths;
do { do {
char *p = strchr(p_start, ':'); char *p = strchr(p_start, ':');
if (p != NULL) *p = '\0'; if (p != NULL)
else p = paths_end; *p = '\0';
else
p = paths_end;
char *file_path = malloc(p - p_start + img_filename_len + 2); char *file_path = malloc(p - p_start + img_filename_len + 2);
strcpy(file_path, p_start); strcpy(file_path, p_start);
@ -86,7 +89,7 @@ static long load_img() {
Assert(fp != NULL || errno == ENOENT, "Cannot open '%s'", img_file); Assert(fp != NULL || errno == ENOENT, "Cannot open '%s'", img_file);
p_start = p + 1; p_start = p + 1;
} while(p_start < paths_end); } while (p_start < paths_end);
free(search_paths); free(search_paths);
Assert(fp, "Cannot find '%s'", img_file); Assert(fp, "Cannot find '%s'", img_file);
@ -178,10 +181,11 @@ void init_monitor(int argc, char *argv[]) {
init_difftest(diff_so_file, img_size, difftest_port); init_difftest(diff_so_file, img_size, difftest_port);
/* Initialize debugger */ /* Initialize debugger */
if (nemu_gdbstub_init()) { // if (nemu_init()) {
Error("Failed to init"); // Error("Failed to init");
exit(1); // exit(1);
} // }
nemu_init();
// printf("elf_file: %s\n", elf_file); // printf("elf_file: %s\n", elf_file);
if (elf_file != NULL) { if (elf_file != NULL) {