X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fuser-regs.c;h=526814b2e325a9183be9f91249f90bd7a3c53628;hb=7da5b897c96faa3c520662d2b0bd4837567bfb1d;hp=01073771af54ce4662ebae391b9b95bd936ee384;hpb=5d5021647dbce1a933576243b9d54281a88eb3b5;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/user-regs.c b/gdb/user-regs.c index 01073771af..526814b2e3 100644 --- a/gdb/user-regs.c +++ b/gdb/user-regs.c @@ -1,7 +1,6 @@ /* User visible, per-frame registers, for GDB, the GNU debugger. - Copyright (C) 2002, 2003, 2004, 2007, 2008, 2009, 2010 - Free Software Foundation, Inc. + Copyright (C) 2002-2015 Free Software Foundation, Inc. Contributed by Red Hat. @@ -23,9 +22,10 @@ #include "defs.h" #include "user-regs.h" #include "gdbtypes.h" -#include "gdb_string.h" -#include "gdb_assert.h" #include "frame.h" +#include "arch-utils.h" +#include "command.h" +#include "cli/cli-cmds.h" /* A table of user registers. @@ -77,14 +77,16 @@ append_user_reg (struct gdb_user_regs *regs, const char *name, /* An array of the builtin user registers. */ -static struct gdb_user_regs builtin_user_regs = { NULL, &builtin_user_regs.first }; +static struct gdb_user_regs builtin_user_regs = { + NULL, &builtin_user_regs.first +}; void user_reg_add_builtin (const char *name, user_reg_read_ftype *read, const void *baton) { append_user_reg (&builtin_user_regs, name, read, baton, - XMALLOC (struct user_reg)); + XNEW (struct user_reg)); } /* Per-architecture user registers. Start with the builtin user @@ -216,10 +218,31 @@ value_of_user_reg (int regnum, struct frame_info *frame) return reg->read (frame, reg->baton); } +static void +maintenance_print_user_registers (char *args, int from_tty) +{ + struct gdbarch *gdbarch = get_current_arch (); + struct gdb_user_regs *regs; + struct user_reg *reg; + int regnum; + + regs = gdbarch_data (gdbarch, user_regs_data); + regnum = gdbarch_num_regs (gdbarch) + gdbarch_num_pseudo_regs (gdbarch); + + fprintf_unfiltered (gdb_stdout, " %-11s %3s\n", "Name", "Nr"); + for (reg = regs->first; reg != NULL; reg = reg->next, ++regnum) + fprintf_unfiltered (gdb_stdout, " %-11s %3d\n", reg->name, regnum); +} + extern initialize_file_ftype _initialize_user_regs; /* -Wmissing-prototypes */ void _initialize_user_regs (void) { user_regs_data = gdbarch_data_register_post_init (user_regs_init); + + add_cmd ("user-registers", class_maintenance, + maintenance_print_user_registers, + _("List the names of the current user registers.\n"), + &maintenanceprintlist); }