From patchwork Thu Dec 11 11:49:48 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Arnez X-Patchwork-Id: 4176 Received: (qmail 29782 invoked by alias); 11 Dec 2014 11:49:56 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 29759 invoked by uid 89); 11 Dec 2014 11:49:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL, BAYES_00, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: e06smtp12.uk.ibm.com Received: from e06smtp12.uk.ibm.com (HELO e06smtp12.uk.ibm.com) (195.75.94.108) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Thu, 11 Dec 2014 11:49:54 +0000 Received: from /spool/local by e06smtp12.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 11 Dec 2014 11:49:51 -0000 Received: from d06dlp02.portsmouth.uk.ibm.com (9.149.20.14) by e06smtp12.uk.ibm.com (192.168.101.142) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Thu, 11 Dec 2014 11:49:50 -0000 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id 0A9F0219005C for ; Thu, 11 Dec 2014 11:49:21 +0000 (GMT) Received: from d06av05.portsmouth.uk.ibm.com (d06av05.portsmouth.uk.ibm.com [9.149.37.229]) by b06cxnps4074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id sBBBnoil48562250 for ; Thu, 11 Dec 2014 11:49:50 GMT Received: from d06av05.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id sBBBnnr7021992 for ; Thu, 11 Dec 2014 04:49:49 -0700 Received: from br87z6lw.boeblingen.de.ibm.com (dyn-9-152-212-196.boeblingen.de.ibm.com [9.152.212.196]) by d06av05.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id sBBBnn7C021968 for ; Thu, 11 Dec 2014 04:49:49 -0700 From: Andreas Arnez To: gdb-patches@sourceware.org Subject: [PATCH v4 1/2] Add new GDB command "maint print user-registers" Date: Thu, 11 Dec 2014 12:49:48 +0100 Message-Id: <1418298589-23120-2-git-send-email-arnez@linux.vnet.ibm.com> In-Reply-To: <1418298589-23120-1-git-send-email-arnez@linux.vnet.ibm.com> References: <1418298589-23120-1-git-send-email-arnez@linux.vnet.ibm.com> X-TM-AS-MML: disable X-Content-Scanned: Fidelis XPS MAILER x-cbid: 14121111-0009-0000-0000-00000257B5A6 X-IsSubscribed: yes This adds a command for listing the "user" registers. So far GDB offered no means of determining the set of user registers and omitted them from all other register listings. gdb/ChangeLog: * user-regs.c: Include "arch-utils.h", "command.h", and "cli/cli-cmds.h". (maintenance_print_user_registers): New. (_initialize_user_regs): Register new "maint print user-registers" subcommand. * NEWS: Mention new GDB command "maint print user-registers". gdb/doc/ChangeLog: * gdb.texinfo: Document "maint print user-registers". --- gdb/NEWS | 3 +++ gdb/doc/gdb.texinfo | 12 ++++++++++++ gdb/user-regs.c | 24 ++++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/gdb/NEWS b/gdb/NEWS index 6a2cb9b..a47dfbf 100644 --- a/gdb/NEWS +++ b/gdb/NEWS @@ -45,6 +45,9 @@ add-auto-load-scripts-directory directory Add entries to the list of directories from which to load auto-loaded scripts. +maint print user-registers + List all currently available "user" registers. + * On resume, GDB now always passes the signal the program had stopped for to the thread the signal was sent to, even if the user changed threads before resuming. Previously GDB would often (but not diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 670c369..4986a68 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -10256,6 +10256,7 @@ the selected stack frame. The @var{regname} may be any register name valid on the machine you are using, with or without the initial @samp{$}. @end table +@anchor{standard registers} @cindex stack pointer register @cindex program counter register @cindex process status register @@ -33435,6 +33436,17 @@ If @var{regexp} is specified, only print object files whose names match @var{regexp}. For each object file, this command prints its name, address in memory, and all of its psymtabs and symtabs. +@kindex maint print user-registers +@cindex user registers +@item maint print user-registers +List all currently available @dfn{user registers}. User registers +typically provide alternate names for actual hardware registers. They +include the four ``standard'' registers @code{$fp}, @code{$pc}, +@code{$sp}, and @code{$ps}. @xref{standard registers}. User +registers can be used in expressions in the same way as the canonical +register names, but only the latter are listed by the @code{info +registers} and @code{maint print registers} commands. + @kindex maint print section-scripts @cindex info for known .debug_gdb_scripts-loaded scripts @item maint print section-scripts [@var{regexp}] diff --git a/gdb/user-regs.c b/gdb/user-regs.c index 35d64ec..adaa959 100644 --- a/gdb/user-regs.c +++ b/gdb/user-regs.c @@ -23,6 +23,9 @@ #include "user-regs.h" #include "gdbtypes.h" #include "frame.h" +#include "arch-utils.h" +#include "command.h" +#include "cli/cli-cmds.h" /* A table of user registers. @@ -215,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, " Nr Name\n"); + for (reg = regs->first; reg != NULL; reg = reg->next, ++regnum) + fprintf_unfiltered (gdb_stdout, "%3d %s\n", regnum, reg->name); +} + 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); }