From: Vladimir Prus <ghost@cs.msu.su>
To: Daniel Jacobowitz <drow@false.org>
Cc: gdb@sources.redhat.com
Subject: Re: problem debugging assembler functions
Date: Thu, 14 Jul 2005 08:54:00 -0000 [thread overview]
Message-ID: <200507141254.42149.ghost@cs.msu.su> (raw)
In-Reply-To: <20050614152726.GA5039@nevyn.them.org>
[-- Attachment #1: Type: text/plain, Size: 537 bytes --]
On Tuesday 14 June 2005 19:27, Daniel Jacobowitz wrote:
> > So, moving 'find_pc_line' above will reasult in extra lookup only if
> > - the command is stepi/nexti, or
> > - the first condition evaluates to true (which means we've entered
> > undebuggable code)
> >
> > I have no idea is that's bad or not performance-wise, just clarifying
> > what's going on.
>
> Hmm, that's encouraging! This might be a good improvement, then.
So, is this change going in?
I attach the patch I'm using locally for your reference.
Thanks,
Volodya
[-- Attachment #2: debug_assembler_functions.diff --]
[-- Type: text/x-diff, Size: 933 bytes --]
Index: gdb/infrun.c
===================================================================
--- gdb/infrun.c (revision 1678)
+++ gdb/infrun.c (revision 1679)
@@ -2420,11 +2420,12 @@
}
}
+ ecs->sal = find_pc_line (stop_pc, 0);
/* NOTE: tausq/2004-05-24: This if block used to be done before all
the trampoline processing logic, however, there are some trampolines
that have no names, so we should do trampoline handling first. */
if (step_over_calls == STEP_OVER_UNDEBUGGABLE
- && ecs->stop_func_name == NULL)
+ && ecs->sal.line == 0)
{
/* The inferior just stepped into, or returned to, an
undebuggable function (where there is no symbol, not even a
@@ -2461,9 +2462,7 @@
stop_stepping (ecs);
return;
}
-
- ecs->sal = find_pc_line (stop_pc, 0);
-
+
if (ecs->sal.line == 0)
{
/* We have no line number information. That means to stop
next prev parent reply other threads:[~2005-07-14 8:54 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-06-14 9:23 Vladimir Prus
2005-06-14 14:37 ` Daniel Jacobowitz
2005-06-14 14:54 ` Vladimir Prus
2005-06-14 14:58 ` Daniel Jacobowitz
2005-06-14 15:19 ` Vladimir Prus
2005-06-14 15:27 ` Daniel Jacobowitz
2005-07-14 8:54 ` Vladimir Prus [this message]
2005-07-14 14:11 ` Daniel Jacobowitz
2005-07-14 14:08 ` Vladimir Prus
2005-07-14 14:11 ` Daniel Jacobowitz
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=200507141254.42149.ghost@cs.msu.su \
--to=ghost@cs.msu.su \
--cc=drow@false.org \
--cc=gdb@sources.redhat.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