qemu-e2k/gdb-xml
aurel32 d2c753454e 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 <froydnj@codesourcery.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6770 c046a42c-6fe2-441c-8c8c-71466251a162
2009-03-07 22:00:56 +00:00
..
arm-core.xml Add GDB XML register description support. 2008-10-11 17:55:29 +00:00
arm-neon.xml The different VFP variants will never occur at the same time, and giving them 2009-03-04 12:18:15 +00:00
arm-vfp.xml Add GDB XML register description support. 2008-10-11 17:55:29 +00:00
arm-vfp3.xml The different VFP variants will never occur at the same time, and giving them 2009-03-04 12:18:15 +00:00
cf-core.xml Add GDB XML register description support. 2008-10-11 17:55:29 +00:00
cf-fp.xml Add GDB XML register description support. 2008-10-11 17:55:29 +00:00
power-altivec.xml target-ppc: Add XML files for PowerPC registers 2009-01-24 15:07:34 +00:00
power-core.xml Work around QEMU GDB stub suboptimality 2009-03-07 22:00:56 +00:00
power-fpu.xml target-ppc: Add XML files for PowerPC registers 2009-01-24 15:07:34 +00:00
power-spe.xml target-ppc: Add XML files for PowerPC registers 2009-01-24 15:07:34 +00:00
power64-core.xml Work around QEMU GDB stub suboptimality 2009-03-07 22:00:56 +00:00