From: Michael Snyder <Michael.Snyder@palmsource.com>
To: Rajesh Warange <warange.rajesh@gmail.com>
Cc: gdb@sourceware.org
Subject: Re: Debugging GDB with GDB
Date: Thu, 31 Aug 2006 17:43:00 -0000 [thread overview]
Message-ID: <1157046205.4466.7.camel@localhost.localdomain> (raw)
In-Reply-To: <bbdda8b0608310917pea7d956y7128513eb481b4ca@mail.gmail.com>
On Thu, 2006-08-31 at 21:47 +0530, Rajesh Warange wrote:
> Hi all,
> Thanks Jim and Michael for giving me a start to GDB.
>
> I am trying to debug GDB with GDB. I have built a target for ARM (gdb-arm).
> So I am debugging gdb-arm with gdb.
Congratulations. You are entering a domain where few dare to go.
;-)
> Below is a session output I had.
> I have explained my problem below.
Two suggestions will make your work much easier.
1) The "set prompt" command changes the gdb prompt.
I use it so that I always know which gdb's prompt I am
looking at. My personal habit is to set the "outer" gdb
to "(GDB)", but this is of course a matter of preference.
2) Build your arm gdb with optimization turned off.
Optimization is what is causing the "jumping around"
behavior that you're experiencing. This should be
as simple as:
a) make clean
b) make CFLAGS=-g
(since by default, CFLAGS is "-g -O2", you are overriding the -O2).
You aren't going to be bothered by poor performance debugging
an un-optimized gdb, but you *will* be bothered by many little
issues with debugging optimized code.
> ----------------------------------------------------------
> <start_session>
>
> GNU gdb Red Hat Linux (6.3.0.0-1.63rh)
> Copyright 2004 Free Software Foundation, Inc.
> GDB is free software, covered by the GNU General Public License, and you are
> welcome to change it and/or distribute copies of it under certain conditions.
> Type "show copying" to see the conditions.
> There is absolutely no warranty for GDB. Type "show warranty" for details.
> This GDB was configured as "x86_64-redhat-linux-gnu".
> Setting up the environment for debugging gdb.
> No symbol table is loaded. Use the "file" command.
> No symbol table is loaded. Use the "file" command.
> .gdbinit:8: Error in sourced command file:
> No breakpoint number 0.
> (gdb) file gdb
> Reading symbols from /home/warangr/gdb-6.5-build/gdb/gdb...done.
> Using host libthread_db library "/lib64/tls/libthread_db.so.1".
> (gdb) break _initialize_arm_tdep
> Breakpoint 1 at 0x414b80: file ../../gdb-6.5/gdb/arm-tdep.c, line 2871.
> (gdb) run
> Starting program: /home/warangr/gdb-6.5-build/gdb/gdb
>
> Breakpoint 1, _initialize_arm_tdep () at ../../gdb-6.5/gdb/arm-tdep.c:2871
> 2871 {
> (gdb) s
> During symbol reading, Incomplete CFI data; unspecified register rax
> at 0x0000000000414b82.
> 2883 gdbarch_register (bfd_arch_arm, arm_gdbarch_init, arm_dump_tdep);
> (gdb) s
> 2871 {
> (gdb) s
> 2881 size_t rest = sizeof (regdesc);
> (gdb) s
> 2871 {
> (gdb) s
> 2909 for (i = 0; i < num_disassembly_options; i++)
> (gdb)
>
> <end_session>
> ----------------------------------------------------------
>
> I started with setting a breakpoint at the function
> _initialize_arm_tdep (defined in arm-tdep.c - line 2871).
> When doing a single-step it jumped to line 2883 to a function
> gdbarch_register (bfd_arch_arm, arm_gdbarch_init, arm_dump_tdep);
> Now single stepping into this function would mean executing the first
> line of the function gdbarch_register(bfd_....).
> But it again jumps to line 2871 ... which is the start of the function
> _initialize_arm_tdep.
> Again after single-stepping, the debugger jumps to line 2909 executing
> the "for loop".
> There were some functions in between which it skipped entirely.
>
> I 'm pretty badly foxed by this behaviour.
> Could anyone please explain me this
>
> Thanks.
next prev parent reply other threads:[~2006-08-31 17:43 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-31 16:17 Rajesh Warange
2006-08-31 16:34 ` Daniel Jacobowitz
2006-08-31 17:43 ` Michael Snyder [this message]
2006-08-31 21:24 ` Andreas Schwab
2006-08-31 22:54 ` Michael Snyder
-- strict thread matches above, loose matches on Subject: below --
2002-11-15 0:51 James Sampson
2002-11-14 6:13 James Sampson
2002-11-14 6:58 ` Tim Combs
2002-02-01 8:25 Debugging gdb with gdb Salman Khilji
2002-02-01 9:26 ` Daniel Jacobowitz
2002-02-03 12:29 ` Joel Brobecker
2002-02-04 1:32 ` Christophe PLANAT
2002-02-04 12:24 ` Piet/Pete Delaney
2002-02-04 14:02 ` Kevin Buettner
2002-02-04 15:00 ` Piet/Pete Delaney
2002-02-04 15:13 ` Piet/Pete Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1157046205.4466.7.camel@localhost.localdomain \
--to=michael.snyder@palmsource.com \
--cc=gdb@sourceware.org \
--cc=warange.rajesh@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox