This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [RFA] The MIPS/Linux port


Daniel Jacobowitz wrote:

>On Wed, Jul 04, 2001 at 11:51:27PM +0200, Mark Kettenis wrote:
>
>>Looks like the MIPS port was started before a bit of reformatting of
>>the sources and conversion to ISO C took place.  Please
>>
>
><snip>
>
>Fixed.  Do you see any other formatting problems?
>
Hi Daniel,

You have a bug in your  supply_fpregset() and fill_fpregset()
routines.  You are being passed an elf_fpregset_t * and incrementing
the counter by 264 od bytes each time through the loops.  You
need to offload the arguement something like the following before
using it with regi.

  elf_fpreg_t  *fpregp = &(*fpregsetp)[0];


This wont show up very well until you try and load a core dump
files which will actually cause gdb to die as it spins off into invalid
memory.    I would be surprised if your floating point regs in
gdb look any good the way the code is at the moment.
I had to look at the assembler to work this out a few days ago.

Cheers

John Court


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]