[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v16 02/18] gdbstub: Introduce gdb_find_static_feature()
From: |
Akihiko Odaki |
Subject: |
[PATCH v16 02/18] gdbstub: Introduce gdb_find_static_feature() |
Date: |
Wed, 25 Oct 2023 18:31:02 +0900 |
This function is useful to determine the number of registers exposed to
GDB from the XML name.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
include/exec/gdbstub.h | 8 ++++++++
gdbstub/gdbstub.c | 13 +++++++++++++
2 files changed, 21 insertions(+)
diff --git a/include/exec/gdbstub.h b/include/exec/gdbstub.h
index a43aa34dad..7fe00506c7 100644
--- a/include/exec/gdbstub.h
+++ b/include/exec/gdbstub.h
@@ -44,6 +44,14 @@ void gdb_register_coprocessor(CPUState *cpu,
*/
int gdbserver_start(const char *port_or_device);
+/**
+ * gdb_find_static_feature() - Find a static feature.
+ * @xmlname: The name of the XML.
+ *
+ * Return: The static feature.
+ */
+const GDBFeature *gdb_find_static_feature(const char *xmlname);
+
void gdb_set_stop_cpu(CPUState *cpu);
/* in gdbstub-xml.c, generated by scripts/feature_to_c.py */
diff --git a/gdbstub/gdbstub.c b/gdbstub/gdbstub.c
index 29540a0284..ae24c4848f 100644
--- a/gdbstub/gdbstub.c
+++ b/gdbstub/gdbstub.c
@@ -422,6 +422,19 @@ static const char *get_feature_xml(const char *p, const
char **newp,
return NULL;
}
+const GDBFeature *gdb_find_static_feature(const char *xmlname)
+{
+ const GDBFeature *feature;
+
+ for (feature = gdb_static_features; feature->xmlname; feature++) {
+ if (!strcmp(feature->xmlname, xmlname)) {
+ return feature;
+ }
+ }
+
+ g_assert_not_reached();
+}
+
static int gdb_read_register(CPUState *cpu, GByteArray *buf, int reg)
{
CPUClass *cc = CPU_GET_CLASS(cpu);
--
2.42.0
- [PATCH v16 00/18] plugins: Allow to read registers, Akihiko Odaki, 2023/10/25
- [PATCH v16 01/18] gdbstub: Add num_regs member to GDBFeature, Akihiko Odaki, 2023/10/25
- [PATCH v16 02/18] gdbstub: Introduce gdb_find_static_feature(),
Akihiko Odaki <=
- [PATCH v16 03/18] gdbstub: Introduce GDBFeatureBuilder, Akihiko Odaki, 2023/10/25
- [PATCH v16 04/18] target/arm: Use GDBFeature for dynamic XML, Akihiko Odaki, 2023/10/25
- [PATCH v16 05/18] target/ppc: Use GDBFeature for dynamic XML, Akihiko Odaki, 2023/10/25
- [PATCH v16 06/18] target/riscv: Use GDBFeature for dynamic XML, Akihiko Odaki, 2023/10/25
- [PATCH v16 07/18] gdbstub: Use GDBFeature for gdb_register_coprocessor, Akihiko Odaki, 2023/10/25
- [PATCH v16 10/18] gdbstub: Simplify XML lookup, Akihiko Odaki, 2023/10/25
- [PATCH v16 08/18] gdbstub: Use GDBFeature for GDBRegisterState, Akihiko Odaki, 2023/10/25
- [PATCH v16 09/18] gdbstub: Change gdb_get_reg_cb and gdb_set_reg_cb, Akihiko Odaki, 2023/10/25
- [PATCH v16 11/18] gdbstub: Infer number of core registers from XML, Akihiko Odaki, 2023/10/25
- [PATCH v16 12/18] hw/core/cpu: Remove gdb_get_dynamic_xml member, Akihiko Odaki, 2023/10/25