[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v5 08/21] gdbstub: Implement remove breakpoint (z pk
From: |
Jon Doron |
Subject: |
[Qemu-devel] [PATCH v5 08/21] gdbstub: Implement remove breakpoint (z pkt) with new infra |
Date: |
Wed, 24 Apr 2019 22:38:46 +0300 |
Signed-off-by: Jon Doron <address@hidden>
---
gdbstub.c | 49 ++++++++++++++++++++++++++++++++-----------------
1 file changed, 32 insertions(+), 17 deletions(-)
diff --git a/gdbstub.c b/gdbstub.c
index 8e0446d305..80f2a92da6 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -1612,6 +1612,29 @@ static void handle_insert_bp(GdbCmdContext *gdb_ctx,
void *user_ctx)
put_packet(gdb_ctx->s, "E22");
}
+static void handle_remove_bp(GdbCmdContext *gdb_ctx, void *user_ctx)
+{
+ int res;
+
+ if (gdb_ctx->num_params < 3) {
+ put_packet(gdb_ctx->s, "E22");
+ return;
+ }
+
+ res = gdb_breakpoint_remove(gdb_ctx->params[1].val_ull,
+ gdb_ctx->params[2].val_ull,
+ gdb_ctx->params[0].val_ul);
+ if (res >= 0) {
+ put_packet(gdb_ctx->s, "OK");
+ return;
+ } else if (res == -ENOSYS) {
+ put_packet(gdb_ctx->s, "");
+ return;
+ }
+
+ put_packet(gdb_ctx->s, "E22");
+}
+
static int gdb_handle_packet(GDBState *s, const char *line_buf)
{
CPUState *cpu;
@@ -1878,23 +1901,15 @@ static int gdb_handle_packet(GDBState *s, const char
*line_buf)
}
break;
case 'z':
- type = strtoul(p, (char **)&p, 16);
- if (*p == ',')
- p++;
- addr = strtoull(p, (char **)&p, 16);
- if (*p == ',')
- p++;
- len = strtoull(p, (char **)&p, 16);
- if (ch == 'Z')
- res = gdb_breakpoint_insert(addr, len, type);
- else
- res = gdb_breakpoint_remove(addr, len, type);
- if (res >= 0)
- put_packet(s, "OK");
- else if (res == -ENOSYS)
- put_packet(s, "");
- else
- put_packet(s, "E22");
+ {
+ static const GdbCmdParseEntry remove_bp_cmd_desc = {
+ .handler = handle_remove_bp,
+ .cmd = "z",
+ .cmd_startswith = 1,
+ .schema = "l?L?L0"
+ };
+ cmd_parser = &remove_bp_cmd_desc;
+ }
break;
case 'H':
{
--
2.20.1
- [Qemu-devel] [PATCH v5 01/21] gdbstub: Add infrastructure to parse cmd packets, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 03/21] gdbstub: Implement thread_alive (T pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 04/21] gdbstub: Implement continue (c pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 02/21] gdbstub: Implement deatch (D pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 09/21] gdbstub: Implement set register (P pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 06/21] gdbstub: Implement set_thread (H pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 07/21] gdbstub: Implement insert breakpoint (Z pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 10/21] gdbstub: Implement get register (p pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 08/21] gdbstub: Implement remove breakpoint (z pkt) with new infra,
Jon Doron <=
- [Qemu-devel] [PATCH v5 12/21] gdbstub: Implement read memory (m pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 14/21] gdbstub: Implement read all registers (g pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 05/21] gdbstub: Implement continue with signal (C pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 11/21] gdbstub: Implement write memory (M pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 13/21] gdbstub: Implement write all registers (G pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 15/21] gdbstub: Implement file io (F pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 16/21] gdbstub: Implement step (s pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 17/21] gdbstub: Implement v commands with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 18/21] gdbstub: Implement generic query (q pkt) with new infra, Jon Doron, 2019/04/24
- [Qemu-devel] [PATCH v5 19/21] gdbstub: Implement generic set (Q pkt) with new infra, Jon Doron, 2019/04/24