d2c753454e
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
59 lines
2.7 KiB
XML
59 lines
2.7 KiB
XML
<?xml version="1.0"?>
|
|
<!-- Copyright (C) 2007, 2008 Free Software Foundation, Inc.
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
are permitted in any medium without royalty provided the copyright
|
|
notice and this notice are preserved. -->
|
|
|
|
<!DOCTYPE feature SYSTEM "gdb-target.dtd">
|
|
<feature name="org.gnu.gdb.power.core">
|
|
<reg name="r0" bitsize="64" type="uint64"/>
|
|
<reg name="r1" bitsize="64" type="uint64"/>
|
|
<reg name="r2" bitsize="64" type="uint64"/>
|
|
<reg name="r3" bitsize="64" type="uint64"/>
|
|
<reg name="r4" bitsize="64" type="uint64"/>
|
|
<reg name="r5" bitsize="64" type="uint64"/>
|
|
<reg name="r6" bitsize="64" type="uint64"/>
|
|
<reg name="r7" bitsize="64" type="uint64"/>
|
|
<reg name="r8" bitsize="64" type="uint64"/>
|
|
<reg name="r9" bitsize="64" type="uint64"/>
|
|
<reg name="r10" bitsize="64" type="uint64"/>
|
|
<reg name="r11" bitsize="64" type="uint64"/>
|
|
<reg name="r12" bitsize="64" type="uint64"/>
|
|
<reg name="r13" bitsize="64" type="uint64"/>
|
|
<reg name="r14" bitsize="64" type="uint64"/>
|
|
<reg name="r15" bitsize="64" type="uint64"/>
|
|
<reg name="r16" bitsize="64" type="uint64"/>
|
|
<reg name="r17" bitsize="64" type="uint64"/>
|
|
<reg name="r18" bitsize="64" type="uint64"/>
|
|
<reg name="r19" bitsize="64" type="uint64"/>
|
|
<reg name="r20" bitsize="64" type="uint64"/>
|
|
<reg name="r21" bitsize="64" type="uint64"/>
|
|
<reg name="r22" bitsize="64" type="uint64"/>
|
|
<reg name="r23" bitsize="64" type="uint64"/>
|
|
<reg name="r24" bitsize="64" type="uint64"/>
|
|
<reg name="r25" bitsize="64" type="uint64"/>
|
|
<reg name="r26" bitsize="64" type="uint64"/>
|
|
<reg name="r27" bitsize="64" type="uint64"/>
|
|
<reg name="r28" bitsize="64" type="uint64"/>
|
|
<reg name="r29" bitsize="64" type="uint64"/>
|
|
<reg name="r30" bitsize="64" type="uint64"/>
|
|
<reg name="r31" bitsize="64" type="uint64"/>
|
|
|
|
<reg name="pc" bitsize="64" type="code_ptr" regnum="64"/>
|
|
<reg name="msr" bitsize="64" type="uint64"/>
|
|
<reg name="cr" bitsize="32" type="uint32"/>
|
|
<reg name="lr" bitsize="64" type="code_ptr"/>
|
|
<reg name="ctr" bitsize="64" type="uint64"/>
|
|
<reg name="xer" bitsize="32" type="uint32"/>
|
|
<!-- HACK: The way the QEMU GDB stub code is currently written requires
|
|
the "integer" registers from the XML file to span the entirety of
|
|
NUM_CORE_REGS that non-XML-aware GDB requires. Otherwise, XML-aware
|
|
GDB thinks that "coprocessor" registers from XML, such as the
|
|
floating-point registers, have register numbers less than
|
|
NUM_CORE_REGS. This can lead to problems. Work around it by using
|
|
an unnamed register as padding; NUM_CORE_REGS on Power is 71 and
|
|
this register is 70. It would be fpscr for non-XML-aware GDB. -->
|
|
<reg name="" bitsize="32" type="uint32"/>
|
|
</feature>
|