Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Kevin Buettner <kevinb@redhat.com>
To: Andrew Cagney <ac131313@cygnus.com>
Cc: gdb-patches@sources.redhat.com
Subject: Re: [RFA] ppc-linux-nat.c: Don't use regmap[] anymore.
Date: Thu, 29 Nov 2001 16:01:00 -0000	[thread overview]
Message-ID: <1011129235941.ZM19970@ocotillo.lan> (raw)
Message-ID: <20011129160100.veSCPp3eEAp8BKIBhLFB33SMGhMQSDZQlfRA8J1e3l4@z> (raw)
In-Reply-To: <3C06BD1F.2070809@cygnus.com>

On Nov 29,  5:56pm, Andrew Cagney wrote:
> > On Nov 29,  4:45pm, Andrew Cagney wrote:
> > 
> >> I suspect a few more targets could do with the same treatment. 
> >> Eliminating that hardwired regmap[] would probably help a few more targets.
> > 
> > Perhaps.  But, I think each target better have good reasons for doing
> > so before undertaking such a transformation.  Replacing the hardwired
> > regmap[] with a function with the same constants hardwired into it
> > doesn't accomplish much (aside from slowing things somewhat).
> 
> The problem is, they are not constant.  Because of limitations in the 
> way other parts of GDB currently work, an architecture change can cause 
> those offsets to change :-(  Check x86-64 vs i386.

Just to make sure we're talking about the same thing...  regmap[] maps
GDB register numbers to ``struct user'' offsets.  These are used when
calling ptrace() and are sometimes used for obtaining struct offsets
within a gregset.

I don't know much about Linux/x86-64, but I would imagine that its
``struct user'' is different than that used for Linux/x86.  (Which, I
gather, is what you mean by these offsets not being constant.)  If it's
somehow possible to debug Linux/x86 programs on Linux/x86-64, then we
would indeed need a mechanism to pick the right regmap[].  Certainly,
using a function in this case would make sense.  However, it might
well be implemented something like this:

static int
regmap (int regno)
{
  static int x86_regmap[] = { ... };
  static int x86_64_regmap[] = { ... };
  if (target_is_x86_64 ())
    return x86_64_regmap[regno];
  else
    return x86_regmap[regno];
}

I did look at x86-64-linux-nat.c and it does appear to be amazingly
similar to i386-linux-nat.c.  It would be nice if the same file could
be used for both architectures.  If making a more dynamic regmap[]
is what's needed, then I'm all for it.

Kevin


  parent reply	other threads:[~2001-11-29 16:01 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-11-12 13:12 Elena Zannoni
2001-11-19 15:56 ` Kevin Buettner
2001-11-19 18:25   ` Andrew Cagney
2001-11-29 13:45     ` Andrew Cagney
2001-11-29 14:01     ` Kevin Buettner
2001-11-19 19:26       ` Kevin Buettner
2001-11-29 14:56       ` Andrew Cagney
2001-11-20  8:47         ` Andrew Cagney
2001-11-20 11:10         ` Kevin Buettner [this message]
2001-11-29 16:01           ` Kevin Buettner
2001-11-29 16:38           ` Andrew Cagney
2001-11-20 16:11             ` Andrew Cagney
2001-11-29 12:59   ` Kevin Buettner
2001-11-29 18:14   ` Elena Zannoni
2001-11-21  3:54     ` Elena Zannoni
2001-11-26 10:13 ` Elena Zannoni

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=1011129235941.ZM19970@ocotillo.lan \
    --to=kevinb@redhat.com \
    --cc=ac131313@cygnus.com \
    --cc=gdb-patches@sources.redhat.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