This is the mail archive of the gdb-patches@sourceware.org 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]
Other format: [Raw text]

Re: patch: fix stack unwind through uClibc syscall() on mips


On Sat, Mar 27, 2010 at 06:55:18PM +0100, JÃn StanÄek wrote:
> uClibc syscall() is macro which modifies stack before syscall
> instruction, gdb is only looking at function prologue and misses the
> stack modification made in syscall(). Because of this unwind doesn't
> work. Attached is a patch, which is looking at actual $pc and $pc-4,
> and in case of syscall it modifies $sp, so mip32_scan_prologue finds
> correct values.
> 
> Description of bug is also available here:
> http://www.listware.net/201003/gnu-gdb/26893.html

Have you considered just annotating the syscall routine with DWARF-2
tables?  That's how GLIBC solves this problem.  And it doesn't take up
any space in a stripped binary.

[Hmm, good wiki topic?]

It looks like this patch detects the syscall instruction followed by a
single instruction that adjusts sp.  It will break if the opposite
SP adjustment was already found by the prologue analyzer.

-- 
Daniel Jacobowitz
CodeSourcery


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