mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-25 19:58:06 +08:00
Refactor gdbarch method print_float_info
This patch is to change print_float_info gdbarch method for the following two reasons, 1. we want to add a default implementation of print_float_info to dump the float pointer registers. It can be reused by backend to print something more than float point registers. 2. we want to simplify the caller of print_float_info, infcmd.c:print_float_info. gdb: 2014-12-18 Yao Qi <yao@codesourcery.com> * gdbarch.sh (print_float_info): Change its type from 'M' to 'm'. * gdbarch.c: Re-generated. * gdbarch.h: Likewise. * infcmd.c (default_print_float_info): New function. (print_float_info): Removed. Move code to default_print_float_info. (float_info): Adjust to call gdbarch_print_float_info. * inferior.h (default_print_float_info): Declare it.
This commit is contained in:
@ -1,3 +1,14 @@
|
|||||||
|
2014-12-18 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
|
* gdbarch.sh (print_float_info): Change its type from 'M' to 'm'.
|
||||||
|
* gdbarch.c: Re-generated.
|
||||||
|
* gdbarch.h: Likewise.
|
||||||
|
* infcmd.c (default_print_float_info): New function.
|
||||||
|
(print_float_info): Removed. Move code to
|
||||||
|
default_print_float_info.
|
||||||
|
(float_info): Adjust to call gdbarch_print_float_info.
|
||||||
|
* inferior.h (default_print_float_info): Declare it.
|
||||||
|
|
||||||
2014-12-18 Yao Qi <yao@codesourcery.com>
|
2014-12-18 Yao Qi <yao@codesourcery.com>
|
||||||
|
|
||||||
* h8300-tdep.c (h8300_print_float_info): Remove.
|
* h8300-tdep.c (h8300_print_float_info): Remove.
|
||||||
|
@ -379,6 +379,7 @@ gdbarch_alloc (const struct gdbarch_info *info,
|
|||||||
gdbarch->deprecated_fp_regnum = -1;
|
gdbarch->deprecated_fp_regnum = -1;
|
||||||
gdbarch->call_dummy_location = AT_ENTRY_POINT;
|
gdbarch->call_dummy_location = AT_ENTRY_POINT;
|
||||||
gdbarch->print_registers_info = default_print_registers_info;
|
gdbarch->print_registers_info = default_print_registers_info;
|
||||||
|
gdbarch->print_float_info = default_print_float_info;
|
||||||
gdbarch->register_sim_regno = legacy_register_sim_regno;
|
gdbarch->register_sim_regno = legacy_register_sim_regno;
|
||||||
gdbarch->cannot_fetch_register = cannot_register_not;
|
gdbarch->cannot_fetch_register = cannot_register_not;
|
||||||
gdbarch->cannot_store_register = cannot_register_not;
|
gdbarch->cannot_store_register = cannot_register_not;
|
||||||
@ -531,7 +532,7 @@ verify_gdbarch (struct gdbarch *gdbarch)
|
|||||||
/* Skip verify of call_dummy_location, invalid_p == 0 */
|
/* Skip verify of call_dummy_location, invalid_p == 0 */
|
||||||
/* Skip verify of push_dummy_code, has predicate. */
|
/* Skip verify of push_dummy_code, has predicate. */
|
||||||
/* Skip verify of print_registers_info, invalid_p == 0 */
|
/* Skip verify of print_registers_info, invalid_p == 0 */
|
||||||
/* Skip verify of print_float_info, has predicate. */
|
/* Skip verify of print_float_info, invalid_p == 0 */
|
||||||
/* Skip verify of print_vector_info, has predicate. */
|
/* Skip verify of print_vector_info, has predicate. */
|
||||||
/* Skip verify of register_sim_regno, invalid_p == 0 */
|
/* Skip verify of register_sim_regno, invalid_p == 0 */
|
||||||
/* Skip verify of cannot_fetch_register, invalid_p == 0 */
|
/* Skip verify of cannot_fetch_register, invalid_p == 0 */
|
||||||
@ -1088,9 +1089,6 @@ gdbarch_dump (struct gdbarch *gdbarch, struct ui_file *file)
|
|||||||
fprintf_unfiltered (file,
|
fprintf_unfiltered (file,
|
||||||
"gdbarch_dump: pointer_to_address = <%s>\n",
|
"gdbarch_dump: pointer_to_address = <%s>\n",
|
||||||
host_address_to_string (gdbarch->pointer_to_address));
|
host_address_to_string (gdbarch->pointer_to_address));
|
||||||
fprintf_unfiltered (file,
|
|
||||||
"gdbarch_dump: gdbarch_print_float_info_p() = %d\n",
|
|
||||||
gdbarch_print_float_info_p (gdbarch));
|
|
||||||
fprintf_unfiltered (file,
|
fprintf_unfiltered (file,
|
||||||
"gdbarch_dump: print_float_info = <%s>\n",
|
"gdbarch_dump: print_float_info = <%s>\n",
|
||||||
host_address_to_string (gdbarch->print_float_info));
|
host_address_to_string (gdbarch->print_float_info));
|
||||||
@ -2235,13 +2233,6 @@ set_gdbarch_print_registers_info (struct gdbarch *gdbarch,
|
|||||||
gdbarch->print_registers_info = print_registers_info;
|
gdbarch->print_registers_info = print_registers_info;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
|
||||||
gdbarch_print_float_info_p (struct gdbarch *gdbarch)
|
|
||||||
{
|
|
||||||
gdb_assert (gdbarch != NULL);
|
|
||||||
return gdbarch->print_float_info != NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
|
gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args)
|
||||||
{
|
{
|
||||||
|
@ -377,8 +377,6 @@ typedef void (gdbarch_print_registers_info_ftype) (struct gdbarch *gdbarch, stru
|
|||||||
extern void gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all);
|
extern void gdbarch_print_registers_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, int regnum, int all);
|
||||||
extern void set_gdbarch_print_registers_info (struct gdbarch *gdbarch, gdbarch_print_registers_info_ftype *print_registers_info);
|
extern void set_gdbarch_print_registers_info (struct gdbarch *gdbarch, gdbarch_print_registers_info_ftype *print_registers_info);
|
||||||
|
|
||||||
extern int gdbarch_print_float_info_p (struct gdbarch *gdbarch);
|
|
||||||
|
|
||||||
typedef void (gdbarch_print_float_info_ftype) (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
|
typedef void (gdbarch_print_float_info_ftype) (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
|
||||||
extern void gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
|
extern void gdbarch_print_float_info (struct gdbarch *gdbarch, struct ui_file *file, struct frame_info *frame, const char *args);
|
||||||
extern void set_gdbarch_print_float_info (struct gdbarch *gdbarch, gdbarch_print_float_info_ftype *print_float_info);
|
extern void set_gdbarch_print_float_info (struct gdbarch *gdbarch, gdbarch_print_float_info_ftype *print_float_info);
|
||||||
|
@ -479,7 +479,7 @@ v:int:call_dummy_location::::AT_ENTRY_POINT::0
|
|||||||
M:CORE_ADDR:push_dummy_code:CORE_ADDR sp, CORE_ADDR funaddr, struct value **args, int nargs, struct type *value_type, CORE_ADDR *real_pc, CORE_ADDR *bp_addr, struct regcache *regcache:sp, funaddr, args, nargs, value_type, real_pc, bp_addr, regcache
|
M:CORE_ADDR:push_dummy_code:CORE_ADDR sp, CORE_ADDR funaddr, struct value **args, int nargs, struct type *value_type, CORE_ADDR *real_pc, CORE_ADDR *bp_addr, struct regcache *regcache:sp, funaddr, args, nargs, value_type, real_pc, bp_addr, regcache
|
||||||
|
|
||||||
m:void:print_registers_info:struct ui_file *file, struct frame_info *frame, int regnum, int all:file, frame, regnum, all::default_print_registers_info::0
|
m:void:print_registers_info:struct ui_file *file, struct frame_info *frame, int regnum, int all:file, frame, regnum, all::default_print_registers_info::0
|
||||||
M:void:print_float_info:struct ui_file *file, struct frame_info *frame, const char *args:file, frame, args
|
m:void:print_float_info:struct ui_file *file, struct frame_info *frame, const char *args:file, frame, args::default_print_float_info::0
|
||||||
M:void:print_vector_info:struct ui_file *file, struct frame_info *frame, const char *args:file, frame, args
|
M:void:print_vector_info:struct ui_file *file, struct frame_info *frame, const char *args:file, frame, args
|
||||||
# MAP a GDB RAW register number onto a simulator register number. See
|
# MAP a GDB RAW register number onto a simulator register number. See
|
||||||
# also include/...-sim.h.
|
# also include/...-sim.h.
|
||||||
|
44
gdb/infcmd.c
44
gdb/infcmd.c
@ -2867,43 +2867,41 @@ interrupt_command (char *args, int from_tty)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
/* See inferior.h. */
|
||||||
print_float_info (struct ui_file *file,
|
|
||||||
struct frame_info *frame, const char *args)
|
void
|
||||||
|
default_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
|
||||||
|
struct frame_info *frame, const char *args)
|
||||||
{
|
{
|
||||||
struct gdbarch *gdbarch = get_frame_arch (frame);
|
int regnum;
|
||||||
|
int printed_something = 0;
|
||||||
|
|
||||||
if (gdbarch_print_float_info_p (gdbarch))
|
for (regnum = 0;
|
||||||
gdbarch_print_float_info (gdbarch, file, frame, args);
|
regnum < gdbarch_num_regs (gdbarch)
|
||||||
else
|
+ gdbarch_num_pseudo_regs (gdbarch);
|
||||||
|
regnum++)
|
||||||
{
|
{
|
||||||
int regnum;
|
if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
|
||||||
int printed_something = 0;
|
|
||||||
|
|
||||||
for (regnum = 0;
|
|
||||||
regnum < gdbarch_num_regs (gdbarch)
|
|
||||||
+ gdbarch_num_pseudo_regs (gdbarch);
|
|
||||||
regnum++)
|
|
||||||
{
|
{
|
||||||
if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
|
printed_something = 1;
|
||||||
{
|
gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
|
||||||
printed_something = 1;
|
|
||||||
gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if (!printed_something)
|
|
||||||
fprintf_filtered (file, "No floating-point info "
|
|
||||||
"available for this processor.\n");
|
|
||||||
}
|
}
|
||||||
|
if (!printed_something)
|
||||||
|
fprintf_filtered (file, "No floating-point info "
|
||||||
|
"available for this processor.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
float_info (char *args, int from_tty)
|
float_info (char *args, int from_tty)
|
||||||
{
|
{
|
||||||
|
struct frame_info *frame;
|
||||||
|
|
||||||
if (!target_has_registers)
|
if (!target_has_registers)
|
||||||
error (_("The program has no registers now."));
|
error (_("The program has no registers now."));
|
||||||
|
|
||||||
print_float_info (gdb_stdout, get_selected_frame (NULL), args);
|
frame = get_selected_frame (NULL);
|
||||||
|
gdbarch_print_float_info (get_frame_arch (frame), gdb_stdout, frame, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -106,6 +106,14 @@ extern void default_print_registers_info (struct gdbarch *gdbarch,
|
|||||||
struct frame_info *frame,
|
struct frame_info *frame,
|
||||||
int regnum, int all);
|
int regnum, int all);
|
||||||
|
|
||||||
|
/* Default implementation of gdbarch_print_float_info. Print
|
||||||
|
the values of all floating point registers. */
|
||||||
|
|
||||||
|
extern void default_print_float_info (struct gdbarch *gdbarch,
|
||||||
|
struct ui_file *file,
|
||||||
|
struct frame_info *frame,
|
||||||
|
const char *args);
|
||||||
|
|
||||||
extern void child_terminal_info (struct target_ops *self, const char *, int);
|
extern void child_terminal_info (struct target_ops *self, const char *, int);
|
||||||
|
|
||||||
extern void term_info (char *, int);
|
extern void term_info (char *, int);
|
||||||
|
Reference in New Issue
Block a user