Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Daniel Jacobowitz <drow@mvista.com>
To: Andrew Cagney <ac131313@redhat.com>
Cc: GDB Patches <gdb-patches@sources.redhat.com>
Subject: Re: [patch/rfc] Add a sentinel frame
Date: Wed, 19 Feb 2003 20:39:00 -0000	[thread overview]
Message-ID: <20030219203937.GA14890@nevyn.them.org> (raw)
In-Reply-To: <3E53E8B8.10203@redhat.com>

On Wed, Feb 19, 2003 at 03:27:36PM -0500, Andrew Cagney wrote:
> >You've lost the call to inside_entry_func.  Why?  You've changed the
> >inside_entry_file check to check the PC for the next frame instead of
> >the forthcoming frame, which is not at all the same thing.  Why?
> 
> Dig up old notes.
> 
> This is the test you added.  It stops the unwind past main:
> 
>   if (next_frame->level >= 0
>       && !backtrace_below_main
>       && inside_main_func (get_frame_pc (next_frame)))
>     /* Don't unwind past main(), bug always unwind the sentinel frame.
>        Note, this is done _before_ the frame has been marked as
>        previously unwound.  That way if the user later decides to
>        allow unwinds past main(), that just happens.  */
>     return NULL;
> 
> It occures first (as it should).  It occures before any 
> frame_id_unwind() as needed by frame_chain_valid.  It also occures 
> before the test:
> 
>   /* Only try to do the unwind once.  */
>   if (next_frame->prev_p)
>     return next_frame->prev;
>   next_frame->prev_p = 1;
> 
> so that frame flush code was eliminated (ya!).

OK.

> On the other hand, if GDB is to unwind past main (presumably, if 
> s/backtrace_below_main/unwind_past_main/ is false) it does the test:
> 
>   if (inside_entry_file (get_frame_pc (next_frame)))
> 
> (note the comments about how, if this becomes optional, it should also 
> be moved to before `next_frame->prev_p = 1').
> 
> Anyway, now that missing test.  frame_chain_valid() also contained:
> 
>   /* If we're inside the entry file, it isn't valid.  */
>   if (inside_entry_file (frame_pc_unwind (fi)))
>       return 0;
> 
> Note the frame_pc_unwind().  This test is looking one level along the 
> stack frame to determine if it should unwind to that level.  That is, 
> when FI->prev->pc is in the entry_file, don't unwind to FI->prev.  The 
> problem is, FI->prev->pc is in entry_file when FI->pc is in main.
> 
> Even when unwind-past-main is disabled, GDB refuses to unwind past main! 
>  Consequently, on the branch, I dropped the test.
> 
> (It also unwinds the PC when we're probably not ready).

Oh, but you're misunderstanding.  There's more than one frame in there. 
The call stack in glibc looks like:
  _start
  calls __libc_start_main
  calls main

_start is written in assembly; it generally doesn't have a frame worth
talking about.  Even if we want to show __libc_start_main, we can't
safely backtrace into _start.  That's what the inside_entry_file
(frame_pc_unwind (fi)) is for.

Now, if we want to do this anyway, that's different.  But it's a
change, not a redundancy.


The missing test I mentioned above inside_entry_func, not
inside_entry_file.  Where'd that go?

> As things progress, and more targets switch to the new code, the tests 
> in get_prev_frame will most likely evolve.  However, I don't know that 
> we want to be adding tests without hard evidence that they are needed :-/
> 
> Having said that, sanity checks that the frame didn't go backwards:
> 	!frame_id_inner (frame_id, get_frame_id (next_frame))?

Yes.

> and that they changed:
> 	!frame_id_eq (frame_id, get_frame_id (next_frame))?

Can we do that?  Hmm, we probably can.  A frame ID has a PC in it and a
stack pointer, and if neither has changed we're probably stuck in a
rut.

-- 
Daniel Jacobowitz
MontaVista Software                         Debian GNU/Linux Developer


  reply	other threads:[~2003-02-19 20:39 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-01-23 20:54 Andrew Cagney
2003-01-27 21:42 ` Andrew Cagney
2003-02-10 23:36 ` Michal Ludvig
2003-02-11 16:48   ` Andrew Cagney
2003-02-18 11:21     ` Michal Ludvig
2003-02-19 13:27       ` Andrew Cagney
2003-02-19 14:04         ` Daniel Jacobowitz
2003-02-19 16:46           ` Andrew Cagney
2003-02-19 16:56             ` Daniel Jacobowitz
2003-02-19 17:11               ` Andrew Cagney
2003-02-19 17:17                 ` Daniel Jacobowitz
2003-02-19 17:46                   ` Andrew Cagney
2003-02-19 17:56                     ` Daniel Jacobowitz
2003-02-19 18:36                       ` Andrew Cagney
2003-02-19 18:52                         ` Daniel Jacobowitz
2003-02-19 20:22                           ` Andrew Cagney
2003-02-19 20:39                             ` Daniel Jacobowitz [this message]
2003-02-19 21:21                               ` Andrew Cagney
2003-02-20 19:32                                 ` Daniel Jacobowitz
2003-02-19 21:45                               ` Andrew Cagney
2003-02-20 19:32                                 ` Daniel Jacobowitz
2003-02-25 16:24         ` Michal Ludvig
2003-02-25 19:43           ` Andrew Cagney
2003-02-25 21:00             ` Michal Ludvig
2003-02-25 21:12               ` Andrew Cagney
2003-02-26  8:04                 ` Michal Ludvig
2003-02-27 18:27                   ` Andrew Cagney
2003-02-28 13:02                     ` Michal Ludvig
2003-02-28 15:48                       ` Andrew Cagney
2003-03-05 17:38                         ` Michal Ludvig
2003-03-05 18:25                           ` Andrew Cagney
2003-03-06 16:00                             ` Michal Ludvig
2003-03-06 20:13                               ` Andrew Cagney
2003-03-06 22:42                                 ` [RFA] Dummy frames on x86-64 Michal Ludvig
2003-03-07 14:50                                   ` Andrew Cagney
2003-02-25 22:41               ` [patch/rfc] Add a sentinel frame Andrew Cagney
2003-02-25 21:21 Michael Elizabeth Chastain

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=20030219203937.GA14890@nevyn.them.org \
    --to=drow@mvista.com \
    --cc=ac131313@redhat.com \
    --cc=gdb-patches@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