diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2020-03-16 17:21:43 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2020-03-17 17:38:38 +0000 |
commit | 32d6e32afa694ebedf2c5f3bf6f013c5debb5959 (patch) | |
tree | cf5979974f7b81cd6b3907f1ddad32c044c7bd58 /target/arm/cpu.h | |
parent | 448d4d146b788898d56131d21001542f39681c9b (diff) | |
download | qemu-32d6e32afa694ebedf2c5f3bf6f013c5debb5959.zip qemu-32d6e32afa694ebedf2c5f3bf6f013c5debb5959.tar.gz qemu-32d6e32afa694ebedf2c5f3bf6f013c5debb5959.tar.bz2 |
target/arm: explicitly encode regnum in our XML
This is described as optional but I'm not convinced of the numbering
when multiple target fragments are sent.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200316172155.971-17-alex.bennee@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 0ab82c9..fbfd73a 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -980,7 +980,7 @@ int arm_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg); /* Dynamically generates for gdb stub an XML description of the sysregs from * the cp_regs hashtable. Returns the registered sysregs number. */ -int arm_gen_dynamic_sysreg_xml(CPUState *cpu); +int arm_gen_dynamic_sysreg_xml(CPUState *cpu, int base_reg); /* Returns the dynamically generated XML for the gdb stub. * Returns a pointer to the XML contents for the specified XML file or NULL |