mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-01 20:12:01 +08:00
* frame.c (frame_unwind_id): Renamed to ...
(frame_unwind_caller_id): ... this. All callers updated. (frame_pc_unwind): Renamed to ... (frame_unwind_caller_pc): ... this. All callers updated. * frame.h: Document frame_unwind_caller_WHAT functions. (frame_unwind_id): Renamed to ... (frame_unwind_caller_id): ... this. (frame_pc_unwind): Renamed to ... (frame_unwind_caller_pc): ... this. * hppa-tdep.c (hppa_find_unwind_entry_in_block): Correct comment. * stack.c (parse_frame_specification_1): Do not rely on frame_unwind_id.
This commit is contained in:
@ -271,7 +271,7 @@ get_frame_id (struct frame_info *fi)
|
||||
}
|
||||
|
||||
struct frame_id
|
||||
frame_unwind_id (struct frame_info *next_frame)
|
||||
frame_unwind_caller_id (struct frame_info *next_frame)
|
||||
{
|
||||
/* Use prev_frame, and not get_prev_frame. The latter will truncate
|
||||
the frame chain, leading to this function unintentionally
|
||||
@ -460,7 +460,7 @@ frame_find_by_id (struct frame_id id)
|
||||
}
|
||||
|
||||
CORE_ADDR
|
||||
frame_pc_unwind (struct frame_info *this_frame)
|
||||
frame_unwind_caller_pc (struct frame_info *this_frame)
|
||||
{
|
||||
if (!this_frame->prev_pc.p)
|
||||
{
|
||||
@ -491,7 +491,7 @@ frame_pc_unwind (struct frame_info *this_frame)
|
||||
this_frame->prev_pc.p = 1;
|
||||
if (frame_debug)
|
||||
fprintf_unfiltered (gdb_stdlog,
|
||||
"{ frame_pc_unwind (this_frame=%d) -> 0x%s }\n",
|
||||
"{ frame_unwind_caller_pc (this_frame=%d) -> 0x%s }\n",
|
||||
this_frame->level,
|
||||
paddr_nz (this_frame->prev_pc.value));
|
||||
}
|
||||
@ -1564,7 +1564,7 @@ CORE_ADDR
|
||||
get_frame_pc (struct frame_info *frame)
|
||||
{
|
||||
gdb_assert (frame->next != NULL);
|
||||
return frame_pc_unwind (frame->next);
|
||||
return frame_unwind_caller_pc (frame->next);
|
||||
}
|
||||
|
||||
/* Return an address that falls within THIS_FRAME's code block. */
|
||||
|
Reference in New Issue
Block a user