From: "Schimpe, Christina" <christina.schimpe@intel.com>
To: Tom Tromey <tromey@adacore.com>,
"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: RE: [PATCH] Compute register name once in default_print_one_register_info
Date: Fri, 27 Feb 2026 15:55:50 +0000 [thread overview]
Message-ID: <SN7PR11MB7638AD48E85017E4936B746CF973A@SN7PR11MB7638.namprd11.prod.outlook.com> (raw)
In-Reply-To: <20260227143344.333820-1-tromey@adacore.com>
> -----Original Message-----
> From: Tom Tromey <tromey@adacore.com>
> Sent: Freitag, 27. Februar 2026 15:34
> To: gdb-patches@sourceware.org
> Cc: Tom Tromey <tromey@adacore.com>
> Subject: [PATCH] Compute register name once in
> default_print_one_register_info
>
> PR gdb/9884 points out that default_print_one_register_info could call
> gdbarch_register_name a single time. The current code seems harmless but
> OTOH the proposed change is also harmless and perhaps slightly faster, so
> why not.
>
> Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=9884
> ---
> gdb/infcmd.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 319d17d95eb..d0d1c142041
> 100644
> --- a/gdb/infcmd.c
> +++ b/gdb/infcmd.c
> @@ -2505,11 +2505,12 @@ default_print_registers_info (struct gdbarch
> *gdbarch,
>
> /* If the register name is empty, it is undefined for this
> processor, so don't display anything. */
> - if (*(gdbarch_register_name (gdbarch, i)) == '\0')
> + const char *regname = gdbarch_register_name (gdbarch, i);
> + if (*regname == '\0')
> continue;
>
> default_print_one_register_info
> - (file, gdbarch_register_name (gdbarch, i),
> + (file, regname,
> value_of_register (i, get_next_frame_sentinel_okay (frame)));
> }
> }
>
> base-commit: e302db71359c85e3c1f1eb90e8f0aaa06ee81752
> --
> 2.53.0
>
Good that we can finally close this issue. I only wondered why you called it
default_print_*one*_register_info in the commit message header, it should
be default_print_register_info I think.
With that fixed LGTM.
Reviewed-By: Christina Schimpe <christina.schimpe@intel.com>
Thanks,
Christina
Intel Deutschland GmbH
Registered Address: Dornacher Straße 1, 85622 Feldkirchen, Germany
Tel: +49 89 991 430, www.intel.de
Managing Directors: Harry Demas, Jeffrey Schneiderman, Yin Chong Sorrell
Chairperson of the Supervisory Board: Nicole Lau
Registered Seat: Munich
Commercial Register: Amtsgericht München HRB 186928
next prev parent reply other threads:[~2026-02-27 15:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-27 14:33 Tom Tromey
2026-02-27 15:46 ` Tom de Vries
2026-02-27 15:55 ` Schimpe, Christina [this message]
2026-02-27 16:09 ` Tom Tromey
2026-02-27 16:19 ` Schimpe, Christina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=SN7PR11MB7638AD48E85017E4936B746CF973A@SN7PR11MB7638.namprd11.prod.outlook.com \
--to=christina.schimpe@intel.com \
--cc=gdb-patches@sourceware.org \
--cc=tromey@adacore.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox