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

> 
> 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.

Yes, a given nat file will use constant offsets to find a given register 
in the ptrace / corefile / ....  The ``regnum'' assigned to that 
register, however, can change.

> 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];
> }

Yes.  This would handle two of the possible REGNUM -> OFFSET mappings. 
I think a more robust way of doing it is:

	if (regnum in I386_FP0_REGNUM to MAX)
	  DO SOMETHING;
	else if regnum in someother register range;
	  do something else;

which means you're insulated from a problem such as the regnum's being 
re-aranged (Hmm, lets slip MMX registers in between FP and XMM registers).

> 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.

I suspect Mark K has thoughts of doing that :-)

There are other ways this could be handled, however, for the moment I 
think the run-time test is safest.  I'm getting ready to post a really 
nasty regcache.[hc] patch that will hopefully illustrate one of the 
problems - NUM_REGS and REGISTER_BYTES.

enjoy,
Andrew



  parent reply	other threads:[~2001-11-30  0:38 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
2001-11-29 16:01           ` Kevin Buettner
2001-11-29 16:38           ` Andrew Cagney [this message]
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=3C06D501.8010805@cygnus.com \
    --to=ac131313@cygnus.com \
    --cc=gdb-patches@sources.redhat.com \
    --cc=kevinb@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