2003-02-25 Andrew Cagney <cagney@redhat.com>
* frame.c (get_prev_frame): Add comment on check for inside_entry_func. Only check for inside_entry_file when not a dummy and not a sentinel. Check that the new frame is not inner to the old frame.
This commit is contained in:
parent
ac2bd0a91c
commit
b14185ce10
2 changed files with 47 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2003-02-25 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* frame.c (get_prev_frame): Add comment on check for
|
||||||
|
inside_entry_func. Only check for inside_entry_file when not a
|
||||||
|
dummy and not a sentinel. Check that the new frame is not inner
|
||||||
|
to the old frame.
|
||||||
|
|
||||||
2003-02-25 Andrew Cagney <cagney@redhat.com>
|
2003-02-25 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
* frame.c (frame_debug): New variable.
|
* frame.c (frame_debug): New variable.
|
||||||
|
|
42
gdb/frame.c
42
gdb/frame.c
|
@ -1239,7 +1239,10 @@ get_prev_frame (struct frame_info *next_frame)
|
||||||
return next_frame->prev;
|
return next_frame->prev;
|
||||||
next_frame->prev_p = 1;
|
next_frame->prev_p = 1;
|
||||||
|
|
||||||
/* If we're inside the entry file, it isn't valid. */
|
/* If we're inside the entry file, it isn't valid. Don't apply this
|
||||||
|
test to a dummy frame - dummy frame PC's typically land in the
|
||||||
|
entry file. Don't apply this test to the sentinel frame.
|
||||||
|
Sentinel frames should always be allowed to unwind. */
|
||||||
/* NOTE: drow/2002-12-25: should there be a way to disable this
|
/* NOTE: drow/2002-12-25: should there be a way to disable this
|
||||||
check? It assumes a single small entry file, and the way some
|
check? It assumes a single small entry file, and the way some
|
||||||
debug readers (e.g. dbxread) figure out which object is the
|
debug readers (e.g. dbxread) figure out which object is the
|
||||||
|
@ -1247,7 +1250,8 @@ get_prev_frame (struct frame_info *next_frame)
|
||||||
/* NOTE: cagney/2003-01-10: If there is a way of disabling this test
|
/* NOTE: cagney/2003-01-10: If there is a way of disabling this test
|
||||||
then it should probably be moved to before the ->prev_p test,
|
then it should probably be moved to before the ->prev_p test,
|
||||||
above. */
|
above. */
|
||||||
if (inside_entry_file (get_frame_pc (next_frame)))
|
if (next_frame->type != DUMMY_FRAME && next_frame->level >= 0
|
||||||
|
&& inside_entry_file (get_frame_pc (next_frame)))
|
||||||
{
|
{
|
||||||
if (frame_debug)
|
if (frame_debug)
|
||||||
fprintf_unfiltered (gdb_stdlog,
|
fprintf_unfiltered (gdb_stdlog,
|
||||||
|
@ -1255,6 +1259,23 @@ get_prev_frame (struct frame_info *next_frame)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If we're already inside the entry function for the main objfile,
|
||||||
|
then it isn't valid. Don't apply this test to a dummy frame -
|
||||||
|
dummy frame PC's typically land in the entry func. Don't apply
|
||||||
|
this test to the sentinel frame. Sentinel frames should always
|
||||||
|
be allowed to unwind. */
|
||||||
|
/* NOTE: cagney/2003-02-25: Don't enable until someone has found
|
||||||
|
hard evidence that this is needed. */
|
||||||
|
if (0
|
||||||
|
&& next_frame->type != DUMMY_FRAME && next_frame->level >= 0
|
||||||
|
&& inside_entry_func (get_frame_pc (next_frame)))
|
||||||
|
{
|
||||||
|
if (frame_debug)
|
||||||
|
fprintf_unfiltered (gdb_stdlog,
|
||||||
|
"Outermost frame - inside entry func\n");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* If any of the old frame initialization methods are around, use
|
/* If any of the old frame initialization methods are around, use
|
||||||
the legacy get_prev_frame method. Just don't try to unwind a
|
the legacy get_prev_frame method. Just don't try to unwind a
|
||||||
sentinel frame using that method - it doesn't work. All sentinal
|
sentinel frame using that method - it doesn't work. All sentinal
|
||||||
|
@ -1324,6 +1345,9 @@ get_prev_frame (struct frame_info *next_frame)
|
||||||
/* FIXME: cagney/2002-12-18: Instead of this hack, should just
|
/* FIXME: cagney/2002-12-18: Instead of this hack, should just
|
||||||
save the frame ID directly. */
|
save the frame ID directly. */
|
||||||
struct frame_id id = frame_id_unwind (next_frame);
|
struct frame_id id = frame_id_unwind (next_frame);
|
||||||
|
/* Check that the unwound ID is valid. As of 2003-02-24 the
|
||||||
|
x86-64 was returning an invalid frame ID when trying to do an
|
||||||
|
unwind a sentinel frame that belonged to a frame dummy. */
|
||||||
if (!frame_id_p (id))
|
if (!frame_id_p (id))
|
||||||
{
|
{
|
||||||
if (frame_debug)
|
if (frame_debug)
|
||||||
|
@ -1331,6 +1355,20 @@ get_prev_frame (struct frame_info *next_frame)
|
||||||
"Outermost frame - unwound frame ID invalid\n");
|
"Outermost frame - unwound frame ID invalid\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
/* Check that the new frame isn't inner to (younger, below, next)
|
||||||
|
the old frame. If that happens the frame unwind is going
|
||||||
|
backwards. */
|
||||||
|
/* FIXME: cagney/2003-02-25: Ignore the sentinel frame since that
|
||||||
|
doesn't have a valid frame ID. Should instead set the sentinel
|
||||||
|
frame's frame ID to a `sentinel'. Leave it until after the
|
||||||
|
switch to storing the frame ID, instead of the frame base, in
|
||||||
|
the frame object. */
|
||||||
|
if (next_frame->level >= 0
|
||||||
|
&& frame_id_inner (id, get_frame_id (next_frame)))
|
||||||
|
error ("Unwound frame inner-to selected frame (corrupt stack?)");
|
||||||
|
/* Note that, due to frameless functions, the stronger test of the
|
||||||
|
new frame being outer to the old frame can't be used -
|
||||||
|
frameless functions differ by only their PC value. */
|
||||||
prev_frame->frame = id.base;
|
prev_frame->frame = id.base;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue