[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v4 07/22] RISC-V GDB Stub
From: |
Michael Clark |
Subject: |
[Qemu-devel] [PATCH v4 07/22] RISC-V GDB Stub |
Date: |
Mon, 5 Feb 2018 19:22:32 +1300 |
GDB Register read and write routines.
Reviewed-by: Richard Henderson <address@hidden>
Signed-off-by: Michael Clark <address@hidden>
---
target/riscv/gdbstub.c | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
create mode 100644 target/riscv/gdbstub.c
diff --git a/target/riscv/gdbstub.c b/target/riscv/gdbstub.c
new file mode 100644
index 0000000..500bd5f
--- /dev/null
+++ b/target/riscv/gdbstub.c
@@ -0,0 +1,60 @@
+/*
+ * RISC-V GDB Server Stub
+ *
+ * Author: Sagar Karandikar, address@hidden
+ *
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "qemu/osdep.h"
+#include "qemu-common.h"
+#include "exec/gdbstub.h"
+#include "cpu.h"
+
+int riscv_cpu_gdb_read_register(CPUState *cs, uint8_t *mem_buf, int n)
+{
+ RISCVCPU *cpu = RISCV_CPU(cs);
+ CPURISCVState *env = &cpu->env;
+
+ if (n < 32) {
+ return gdb_get_regl(mem_buf, env->gpr[n]);
+ } else if (n == 32) {
+ return gdb_get_regl(mem_buf, env->pc);
+ } else if (n < 65) {
+ return gdb_get_reg64(mem_buf, env->fpr[n - 33]);
+ }
+ return 0;
+}
+
+int riscv_cpu_gdb_write_register(CPUState *cs, uint8_t *mem_buf, int n)
+{
+ RISCVCPU *cpu = RISCV_CPU(cs);
+ CPURISCVState *env = &cpu->env;
+
+ if (n == 0) {
+ /* discard writes to x0 */
+ return sizeof(target_ulong);
+ } else if (n < 32) {
+ env->gpr[n] = ldtul_p(mem_buf);
+ return sizeof(target_ulong);
+ } else if (n == 32) {
+ env->pc = ldtul_p(mem_buf);
+ return sizeof(target_ulong);
+ } else if (n < 65) {
+ env->fpr[n - 33] = ldq_p(mem_buf); /* always 64-bit */
+ return sizeof(uint64_t);
+ }
+ return 0;
+}
--
2.7.0
- Re: [Qemu-devel] [PATCH v4 03/22] RISC-V CPU Core Definition, (continued)
[Qemu-devel] [PATCH v4 06/22] RISC-V FPU Support, Michael Clark, 2018/02/05
[Qemu-devel] [PATCH v4 07/22] RISC-V GDB Stub,
Michael Clark <=
[Qemu-devel] [PATCH v4 05/22] RISC-V CPU Helpers, Michael Clark, 2018/02/05
[Qemu-devel] [PATCH v4 04/22] RISC-V Disassembler, Michael Clark, 2018/02/05
[Qemu-devel] [PATCH v4 09/22] RISC-V Physical Memory Protection, Michael Clark, 2018/02/05
[Qemu-devel] [PATCH v4 10/22] RISC-V Linux User Emulation, Michael Clark, 2018/02/05
[Qemu-devel] [PATCH v4 08/22] RISC-V TCG Code Generation, Michael Clark, 2018/02/05
[Qemu-devel] [PATCH v4 11/22] RISC-V HTIF Console, Michael Clark, 2018/02/05