mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 14:39:09 +08:00
Change GDB to use frame_info_ptr
This changes GDB to use frame_info_ptr instead of frame_info * The substitution was done with multiple sequential `sed` commands: sed 's/^struct frame_info;/class frame_info_ptr;/' sed 's/struct frame_info \*/frame_info_ptr /g' - which left some issues in a few files, that were manually fixed. sed 's/\<frame_info \*/frame_info_ptr /g' sed 's/frame_info_ptr $/frame_info_ptr/g' - used to remove whitespace problems. The changed files were then manually checked and some 'sed' changes undone, some constructors and some gets were added, according to what made sense, and what Tromey originally did Co-Authored-By: Bruno Larsen <blarsen@redhat.com> Approved-by: Tom Tomey <tom@tromey.com>
This commit is contained in:
@ -275,7 +275,7 @@ public:
|
||||
|
||||
/* See language.h. */
|
||||
|
||||
CORE_ADDR skip_trampoline (struct frame_info *frame,
|
||||
CORE_ADDR skip_trampoline (frame_info_ptr frame,
|
||||
CORE_ADDR stop_pc) const override
|
||||
{
|
||||
struct gdbarch *gdbarch = get_frame_arch (frame);
|
||||
@ -1458,7 +1458,7 @@ find_implementation (struct gdbarch *gdbarch,
|
||||
static int
|
||||
resolve_msgsend (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
{
|
||||
struct frame_info *frame = get_current_frame ();
|
||||
frame_info_ptr frame = get_current_frame ();
|
||||
struct gdbarch *gdbarch = get_frame_arch (frame);
|
||||
struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
|
||||
|
||||
@ -1480,7 +1480,7 @@ resolve_msgsend (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
static int
|
||||
resolve_msgsend_stret (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
{
|
||||
struct frame_info *frame = get_current_frame ();
|
||||
frame_info_ptr frame = get_current_frame ();
|
||||
struct gdbarch *gdbarch = get_frame_arch (frame);
|
||||
struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
|
||||
|
||||
@ -1502,7 +1502,7 @@ resolve_msgsend_stret (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
static int
|
||||
resolve_msgsend_super (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
{
|
||||
struct frame_info *frame = get_current_frame ();
|
||||
frame_info_ptr frame = get_current_frame ();
|
||||
struct gdbarch *gdbarch = get_frame_arch (frame);
|
||||
struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
|
||||
|
||||
@ -1530,7 +1530,7 @@ resolve_msgsend_super (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
static int
|
||||
resolve_msgsend_super_stret (CORE_ADDR pc, CORE_ADDR *new_pc)
|
||||
{
|
||||
struct frame_info *frame = get_current_frame ();
|
||||
frame_info_ptr frame = get_current_frame ();
|
||||
struct gdbarch *gdbarch = get_frame_arch (frame);
|
||||
struct type *ptr_type = builtin_type (gdbarch)->builtin_func_ptr;
|
||||
|
||||
|
Reference in New Issue
Block a user