From d2c753454eadaf82027c634247554533b8e3544c Mon Sep 17 00:00:00 2001 From: aurel32 Date: Sat, 7 Mar 2009 22:00:56 +0000 Subject: Work around QEMU GDB stub suboptimality The current XML files claim, on floating point-supporting Power chips, that $f0 is register 70. This would be fine, except that register 70 for non-XML-aware GDB is FPSCR. More importantly, 70 is less than NUM_CORE_REGS (71) for Power, so a request for register 70 goes to the "core" register reading routines, rather than the floating-point register read routine we registered with gdb_register_coprocessor. Therefore, when we are talking to an XML-aware GDB, we claim that register has zero width, which causes the rest of QEMU's GDB stub to send an error back to GDB, which causes GDB to be unable to read the floating-point registers. (The problem is also present for SPE registers and occurs in a slightly different way for Altivec registers.) The best way to fix this is to have the "core register" XML files for PPC32 and PPC64 claim that there is a 4-byte register 70, which causes $f0 to be register 71, and everything works just fine from that point forward. Signed-off-by: Nathan Froyd Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6770 c046a42c-6fe2-441c-8c8c-71466251a162 --- gdb-xml/power-core.xml | 9 +++++++++ gdb-xml/power64-core.xml | 9 +++++++++ 2 files changed, 18 insertions(+) (limited to 'gdb-xml') diff --git a/gdb-xml/power-core.xml b/gdb-xml/power-core.xml index 0c69e8c8a7..dae13a67ef 100644 --- a/gdb-xml/power-core.xml +++ b/gdb-xml/power-core.xml @@ -46,4 +46,13 @@ + + diff --git a/gdb-xml/power64-core.xml b/gdb-xml/power64-core.xml index 6cc1531201..fef42e4166 100644 --- a/gdb-xml/power64-core.xml +++ b/gdb-xml/power64-core.xml @@ -46,4 +46,13 @@ + + -- cgit v1.2.1