mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 02:50:08 +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:
@ -85,7 +85,7 @@ static const gdb_byte linux_sigtramp_code[] = {
|
||||
the routine. Otherwise, return 0. */
|
||||
|
||||
static CORE_ADDR
|
||||
m32r_linux_sigtramp_start (CORE_ADDR pc, struct frame_info *this_frame)
|
||||
m32r_linux_sigtramp_start (CORE_ADDR pc, frame_info_ptr this_frame)
|
||||
{
|
||||
gdb_byte buf[4];
|
||||
|
||||
@ -133,7 +133,7 @@ static const gdb_byte linux_rt_sigtramp_code[] = {
|
||||
of the routine. Otherwise, return 0. */
|
||||
|
||||
static CORE_ADDR
|
||||
m32r_linux_rt_sigtramp_start (CORE_ADDR pc, struct frame_info *this_frame)
|
||||
m32r_linux_rt_sigtramp_start (CORE_ADDR pc, frame_info_ptr this_frame)
|
||||
{
|
||||
gdb_byte buf[4];
|
||||
|
||||
@ -173,7 +173,7 @@ m32r_linux_rt_sigtramp_start (CORE_ADDR pc, struct frame_info *this_frame)
|
||||
|
||||
static int
|
||||
m32r_linux_pc_in_sigtramp (CORE_ADDR pc, const char *name,
|
||||
struct frame_info *this_frame)
|
||||
frame_info_ptr this_frame)
|
||||
{
|
||||
/* If we have NAME, we can optimize the search. The trampolines are
|
||||
named __restore and __restore_rt. However, they aren't dynamically
|
||||
@ -223,7 +223,7 @@ struct m32r_frame_cache
|
||||
};
|
||||
|
||||
static struct m32r_frame_cache *
|
||||
m32r_linux_sigtramp_frame_cache (struct frame_info *this_frame,
|
||||
m32r_linux_sigtramp_frame_cache (frame_info_ptr this_frame,
|
||||
void **this_cache)
|
||||
{
|
||||
struct m32r_frame_cache *cache;
|
||||
@ -266,7 +266,7 @@ m32r_linux_sigtramp_frame_cache (struct frame_info *this_frame,
|
||||
}
|
||||
|
||||
static void
|
||||
m32r_linux_sigtramp_frame_this_id (struct frame_info *this_frame,
|
||||
m32r_linux_sigtramp_frame_this_id (frame_info_ptr this_frame,
|
||||
void **this_cache,
|
||||
struct frame_id *this_id)
|
||||
{
|
||||
@ -277,7 +277,7 @@ m32r_linux_sigtramp_frame_this_id (struct frame_info *this_frame,
|
||||
}
|
||||
|
||||
static struct value *
|
||||
m32r_linux_sigtramp_frame_prev_register (struct frame_info *this_frame,
|
||||
m32r_linux_sigtramp_frame_prev_register (frame_info_ptr this_frame,
|
||||
void **this_cache, int regnum)
|
||||
{
|
||||
struct m32r_frame_cache *cache =
|
||||
@ -288,7 +288,7 @@ m32r_linux_sigtramp_frame_prev_register (struct frame_info *this_frame,
|
||||
|
||||
static int
|
||||
m32r_linux_sigtramp_frame_sniffer (const struct frame_unwind *self,
|
||||
struct frame_info *this_frame,
|
||||
frame_info_ptr this_frame,
|
||||
void **this_cache)
|
||||
{
|
||||
CORE_ADDR pc = get_frame_pc (this_frame);
|
||||
|
Reference in New Issue
Block a user