[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v11 04/20] gdbstub: Implement continue (c pkt) with
From: |
Jon Doron |
Subject: |
[Qemu-devel] [PATCH v11 04/20] gdbstub: Implement continue (c pkt) with new infra |
Date: |
Fri, 24 May 2019 19:01:02 +0300 |
Signed-off-by: Jon Doron <address@hidden>
Reviewed-by: Alex Bennée <address@hidden>
---
gdbstub.c | 25 +++++++++++++++++++------
1 file changed, 19 insertions(+), 6 deletions(-)
diff --git a/gdbstub.c b/gdbstub.c
index b4c4bd4b08..698d6f558a 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -1517,6 +1517,16 @@ static void handle_thread_alive(GdbCmdContext *gdb_ctx,
void *user_ctx)
put_packet(gdb_ctx->s, "OK");
}
+static void handle_continue(GdbCmdContext *gdb_ctx, void *user_ctx)
+{
+ if (gdb_ctx->num_params) {
+ gdb_set_cpu_pc(gdb_ctx->s, gdb_ctx->params[0].val_ull);
+ }
+
+ gdb_ctx->s->signal = 0;
+ gdb_continue(gdb_ctx->s);
+}
+
static int gdb_handle_packet(GDBState *s, const char *line_buf)
{
CPUState *cpu;
@@ -1553,13 +1563,16 @@ static int gdb_handle_packet(GDBState *s, const char
*line_buf)
gdb_breakpoint_remove_all();
break;
case 'c':
- if (*p != '\0') {
- addr = strtoull(p, (char **)&p, 16);
- gdb_set_cpu_pc(s, addr);
+ {
+ static const GdbCmdParseEntry continue_cmd_desc = {
+ .handler = handle_continue,
+ .cmd = "c",
+ .cmd_startswith = 1,
+ .schema = "L0"
+ };
+ cmd_parser = &continue_cmd_desc;
}
- s->signal = 0;
- gdb_continue(s);
- return RS_IDLE;
+ break;
case 'C':
s->signal = gdb_signal_to_target (strtoul(p, (char **)&p, 16));
if (s->signal == -1)
--
2.21.0
- [Qemu-devel] [PATCH v11 00/20] gdbstub: Refactor command packets handler, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 04/20] gdbstub: Implement continue (c pkt) with new infra,
Jon Doron <=
- [Qemu-devel] [PATCH v11 06/20] gdbstub: Implement set_thread (H pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 05/20] gdbstub: Implement continue with signal (C pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 03/20] gdbstub: Implement thread_alive (T pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 08/20] gdbstub: Implement set register (P pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 07/20] gdbstub: Implement breakpoint commands (Z/z pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 01/20] gdbstub: Add infrastructure to parse cmd packets, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 09/20] gdbstub: Implement get register (p pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 11/20] gdbstub: Implement read memory (m pkt) with new infra, Jon Doron, 2019/05/24
- [Qemu-devel] [PATCH v11 12/20] gdbstub: Implement write all registers (G pkt) with new infra, Jon Doron, 2019/05/24