diff options
author | Tom Tromey <tom@tromey.com> | 2022-07-25 14:06:35 -0300 |
---|---|---|
committer | Bruno Larsen <blarsen@redhat.com> | 2022-10-10 11:57:10 +0200 |
commit | bd2b40ac129b167f1a709589dee9c009a04a6e21 (patch) | |
tree | 675eb8430a923c94353eca0ec2e7b56cfc1eae37 /gdb/ia64-libunwind-tdep.h | |
parent | ba380b3e5162e89c4c81a73f4fb9fcbbbbe75e24 (diff) | |
download | gdb-bd2b40ac129b167f1a709589dee9c009a04a6e21.zip gdb-bd2b40ac129b167f1a709589dee9c009a04a6e21.tar.gz gdb-bd2b40ac129b167f1a709589dee9c009a04a6e21.tar.bz2 |
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>
Diffstat (limited to 'gdb/ia64-libunwind-tdep.h')
-rw-r--r-- | gdb/ia64-libunwind-tdep.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/ia64-libunwind-tdep.h b/gdb/ia64-libunwind-tdep.h index 56425d0..a4e20f6 100644 --- a/gdb/ia64-libunwind-tdep.h +++ b/gdb/ia64-libunwind-tdep.h @@ -22,7 +22,7 @@ #ifndef IA64_LIBUNWIND_TDEP_H #define IA64_LIBUNWIND_TDEP_H 1 -struct frame_info; +class frame_info_ptr; struct frame_id; struct regcache; struct gdbarch; @@ -48,21 +48,21 @@ struct libunwind_descr }; int libunwind_frame_sniffer (const struct frame_unwind *self, - struct frame_info *this_frame, + frame_info_ptr this_frame, void **this_cache); int libunwind_sigtramp_frame_sniffer (const struct frame_unwind *self, - struct frame_info *this_frame, + frame_info_ptr this_frame, void **this_cache); void libunwind_frame_set_descr (struct gdbarch *arch, struct libunwind_descr *descr); -void libunwind_frame_this_id (struct frame_info *this_frame, void **this_cache, +void libunwind_frame_this_id (frame_info_ptr this_frame, void **this_cache, struct frame_id *this_id); -struct value *libunwind_frame_prev_register (struct frame_info *this_frame, +struct value *libunwind_frame_prev_register (frame_info_ptr this_frame, void **this_cache, int regnum); -void libunwind_frame_dealloc_cache (struct frame_info *self, void *cache); +void libunwind_frame_dealloc_cache (frame_info_ptr self, void *cache); int libunwind_is_initialized (void); |