From: "Ulrich Weigand" <uweigand@de.ibm.com>
To: drow@false.org (Daniel Jacobowitz),
mark.kettenis@xs4all.nl, deuling@de.ibm.com
Cc: gdb-patches@sourceware.org
Subject: Re: [rfc] [04/09] Get rid of current_gdbarch (SIZEOF_FRAME_SAVED_REGS macro)
Date: Mon, 05 Nov 2007 15:14:00 -0000 [thread overview]
Message-ID: <200711051513.lA5FDqfb007670@d12av02.megacenter.de.ibm.com> (raw)
In-Reply-To: <20071105140039.GA30087@caradoc.them.org> from "Daniel Jacobowitz" at Nov 05, 2007 09:00:39 AM
Daniel Jacobowitz wrote:
> On Mon, Nov 05, 2007 at 02:43:29PM +0100, Mark Kettenis wrote:
> > > Date: Mon, 05 Nov 2007 13:21:29 +0100
> > > From: Markus Deuling <deuling@de.ibm.com>
> > >
> > > Hi,
> > >
> > > this patch replaces SIZEOF_FRAME_SAVED_REGS macro by its expression.
> > >
> > > Tested by gdb_mbuild with alpha target. Is this ok to commit?
> >
> > I'm not thrilled, since this replaces a #define that has a sensible
> > name with some sort of complicated expression, and therefore makes the
> > code much more difficult to read.
>
> Ditto. frame_zalloc_saved_regs (frame)?
As far as I can see SIZEOF_FRAME_SAVED_REGS is really just a remainder
of the old frame logic that happens to be still in local use on alpha
for some reason -- I do not think it makes sense to "generalize" it
like that, it should be removed from common code.
Note that the expression
#define SIZEOF_FRAME_SAVED_REGS \
(sizeof (CORE_ADDR) * (gdbarch_num_regs (current_gdbarch)\
+ gdbarch_num_pseudo_regs (current_gdbarch)))
would likely be incorrect on most other platforms anyway nowadays.
However, on the alpha, this is actually constant: num_regs is alway
ALPHA_NUM_REGS, pseudo registers are not used, and sizeof (CORE_ADDR)
should always be 8 in a gdb build targetting the alpha.
In fact, there exists already an alpha-specific macro that should
have just the correct value:
#define ALPHA_REGISTER_BYTES (ALPHA_NUM_REGS * 8)
Why not just replace SIZEOF_FRAME_SAVED_REGS with ALPHA_REGISTER_BYTES
in the alpha files and remove it from common code?
Bye,
Ulrich
--
Dr. Ulrich Weigand
GNU Toolchain for Linux on System z and Cell BE
Ulrich.Weigand@de.ibm.com
prev parent reply other threads:[~2007-11-05 15:14 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-05 12:23 Markus Deuling
2007-11-05 13:44 ` Mark Kettenis
2007-11-05 14:00 ` Daniel Jacobowitz
2007-11-05 15:14 ` Ulrich Weigand [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=200711051513.lA5FDqfb007670@d12av02.megacenter.de.ibm.com \
--to=uweigand@de.ibm.com \
--cc=deuling@de.ibm.com \
--cc=drow@false.org \
--cc=gdb-patches@sourceware.org \
--cc=mark.kettenis@xs4all.nl \
/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