From: Andreas Arnez <arnez@linux.ibm.com>
To: Tom de Vries <tdevries@suse.de>
Cc: gdb-patches@sourceware.org
Subject: Re: [PATCH v2 1/2] [gdb/tdep] Use symbolic constants in s390_prologue_frame_unwind_cache
Date: Thu, 09 Jan 2025 14:20:51 +0100 [thread overview]
Message-ID: <878qrkrumk.fsf@li-07e5db4c-3052-11b2-a85c-815382633c95.ibm.com> (raw)
In-Reply-To: <20250109104406.30675-1-tdevries@suse.de> (Tom de Vries's message of "Thu, 9 Jan 2025 11:44:05 +0100")
Hi Tom,
On Thu, Jan 09 2025, Tom de Vries wrote:
> In s390_prologue_frame_unwind_cache there are two loops using a hardcoded
> constant 16:
> ...
> for (i = 0; i < 16; i++)
> if (s390_register_call_saved (gdbarch, S390_R0_REGNUM + i)
> ...
> for (i = 0; i < 16; i++)
> if (s390_register_call_saved (gdbarch, S390_F0_REGNUM + i)
> ...
>
> Fix this by using symbolic constants S390_NUM_GPRS and S390_NUM_FPRS instead.
>
> Tested on s390x-linux, by rebuilding.
> ---
> gdb/s390-tdep.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c
> index 3a672b3869d..70affc914c2 100644
> --- a/gdb/s390-tdep.c
> +++ b/gdb/s390-tdep.c
> @@ -2532,12 +2532,12 @@ s390_prologue_frame_unwind_cache (const frame_info_ptr &this_frame,
> ABI; for call-clobbered registers the parser may have recognized
> spurious stores. */
>
> - for (i = 0; i < 16; i++)
> + for (i = 0; i < S390_NUM_GPRS; i++)
> if (s390_register_call_saved (gdbarch, S390_R0_REGNUM + i)
> && data.gpr_slot[i] != 0)
> info->saved_regs[S390_R0_REGNUM + i].set_addr (cfa - data.gpr_slot[i]);
>
> - for (i = 0; i < 16; i++)
> + for (i = 0; i < S390_NUM_FPRS; i++)
> if (s390_register_call_saved (gdbarch, S390_F0_REGNUM + i)
> && data.fpr_slot[i] != 0)
> info->saved_regs[S390_F0_REGNUM + i].set_addr (cfa - data.fpr_slot[i]);
>
> base-commit: 42bcf692abd52ec1cb9d4bf3eca545e3b33fe536
This is OK.
Approved-By: Andreas Arnez <arnez@linux.ibm.com>
--
Andreas
prev parent reply other threads:[~2025-01-09 13:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-09 10:44 Tom de Vries
2025-01-09 10:44 ` [PATCH v2 2/2] [gdb/tdep] Fix gdb.base/readnever.exp on s390x Tom de Vries
2025-01-09 13:25 ` Andreas Arnez
2025-01-09 13:33 ` Tom de Vries
2025-01-09 13:20 ` Andreas Arnez [this message]
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=878qrkrumk.fsf@li-07e5db4c-3052-11b2-a85c-815382633c95.ibm.com \
--to=arnez@linux.ibm.com \
--cc=gdb-patches@sourceware.org \
--cc=tdevries@suse.de \
/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