From: Nicholas Sherlock <n.sherlock@gmail.com>
To: Ulrich Weigand <uweigand@de.ibm.com>, gdb@sourceware.org
Subject: Re: ARM EABI Linux, breakpoints cause SIGILL and target dies
Date: Mon, 23 Jan 2012 01:29:00 -0000 [thread overview]
Message-ID: <CADwwaza3w48QX8SsEicGOxD7ek6jQbY-i_7GiSipWCaQcZWoBw@mail.gmail.com> (raw)
In-Reply-To: <CADwwazYiS3O01f8rG_x3-ASbTakoaSCW4YmmKDsUunE2TsX22g@mail.gmail.com>
So, I patched this line in infrun.c which is supposed to check that
the SIGILL was caused by a breakpoint:
if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
regcache_read_pc (regcache)))
And changed it to:
if (ecs->ws.value.sig == TARGET_SIGNAL_ILL ||
breakpoint_inserted_here_p (get_regcache_aspace (regcache),
regcache_read_pc (regcache)))
Now the signal is corrected reinterpreted as SIGTRAP:
Program received signal SIGTRAP, Trace/breakpoint trap.
0x000081f6 in main () at test.c:4
4 printf("Hello, world!\n");
But the break address is incorrect, it's halfway through the code for
calling printf:
81f4: f24b 60a4 movw r0, #46756 ; 0xb6a4
81f8: f2c0 0004 movt r0, #4
81fc: f000 fce8 bl 8bd0 <_IO_puts>
So now I'm trying to fix the code for adjusting the PC after the trap.
Cheers,
Nicholas Sherlock
next prev parent reply other threads:[~2012-01-23 1:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CADwwazYuWuicgqL=4JyxbdoN+6MmVg354bD6UTzC=Ew-po8JzA@mail.gmail.com>
2012-01-20 2:45 ` Nicholas Sherlock
2012-01-20 10:45 ` Ulrich Weigand
2012-01-22 23:34 ` Nicholas Sherlock
2012-01-23 1:29 ` Nicholas Sherlock [this message]
2012-01-23 13:29 ` Ulrich Weigand
2012-01-24 2:44 ` Nicholas Sherlock
2012-01-24 3:02 ` Nicholas Sherlock
2012-01-24 13:37 ` Ulrich Weigand
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=CADwwaza3w48QX8SsEicGOxD7ek6jQbY-i_7GiSipWCaQcZWoBw@mail.gmail.com \
--to=n.sherlock@gmail.com \
--cc=gdb@sourceware.org \
--cc=uweigand@de.ibm.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