Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Pedro Alves <pedro@codesourcery.com>
To: gdb-patches@sourceware.org
Cc: Mark Kettenis <mark.kettenis@xs4all.nl>
Subject: $zero on alpha should always be available
Date: Mon, 23 May 2011 17:36:00 -0000	[thread overview]
Message-ID: <201105231835.54370.pedro@codesourcery.com> (raw)
In-Reply-To: <201105221217.12418.pedro@codesourcery.com>

On Sunday 22 May 2011 12:17:12, Pedro Alves wrote:
> On Saturday 21 May 2011 20:19:49, Mark Kettenis wrote:
> > Many RISC CPUs have a register that's hardwired to 0.  Typically GDB
> > code uses regcache_raw_supply(..., ..., NULL) to "transfer" the value
> > of such a register.  However these days, that marks the register as
> > unavailable.  This diff fixes that for %g0 on SPARC.
> > 
> > Committed as obvious.
> 
> Thanks!  The <unavailable> stuff is going into 7.3 as well.  Want
> to put the patch there too?
> 
> (I see alpha-tdep.c needs the same treatment for ALPHA_ZERO_REGNUM.)

Here's what I came up with by inspection.  I have no alpha machine to test
this on.  The alpha-nat.c change would need
checking on an alpha running OSF if we wanted to test this...


Pedro Alves

2011-05-23  Pedro Alves  <pedro@codesourcery.com>

	gdb/
	* alpha-tdep.c (alpha_cannot_fetch_register): Don't return true
	for ALPHA_ZERO_REGNUM.
	(alpha_supply_int_regs): Explicitly supply zero as the value for
	ALPHA_ZERO_REGNUM in the register cache.
	* alpha-nat.c (fetch_osf_core_registers): Ditto.

---
 gdb/alpha-nat.c  |    9 +++++++++
 gdb/alpha-tdep.c |    9 ++++++---
 2 files changed, 15 insertions(+), 3 deletions(-)

Index: src/gdb/alpha-tdep.c
===================================================================
--- src.orig/gdb/alpha-tdep.c	2011-04-20 16:22:32.000000000 +0100
+++ src/gdb/alpha-tdep.c	2011-05-23 18:24:29.448753681 +0100
@@ -111,8 +111,7 @@ alpha_register_name (struct gdbarch *gdb
 static int
 alpha_cannot_fetch_register (struct gdbarch *gdbarch, int regno)
 {
-  return (regno == ALPHA_ZERO_REGNUM
-          || strlen (alpha_register_name (gdbarch, regno)) == 0);
+  return (strlen (alpha_register_name (gdbarch, regno)) == 0);
 }
 
 static int
@@ -1424,7 +1423,11 @@ alpha_supply_int_regs (struct regcache *
       regcache_raw_supply (regcache, i, regs + i * 8);
 
   if (regno == ALPHA_ZERO_REGNUM || regno == -1)
-    regcache_raw_supply (regcache, ALPHA_ZERO_REGNUM, NULL);
+    {
+      const gdb_byte zero[8] = { 0 };
+
+      regcache_raw_supply (regcache, ALPHA_ZERO_REGNUM, zero);
+    }
 
   if (regno == ALPHA_PC_REGNUM || regno == -1)
     regcache_raw_supply (regcache, ALPHA_PC_REGNUM, pc);
Index: src/gdb/alpha-nat.c
===================================================================
--- src.orig/gdb/alpha-nat.c	2011-01-13 15:07:16.000000000 +0000
+++ src/gdb/alpha-nat.c	2011-05-23 18:28:14.428753680 +0100
@@ -101,6 +101,15 @@ fetch_osf_core_registers (struct regcach
 	  regcache_raw_supply (regcache, regno, NULL);
 	  continue;
 	}
+
+      if (regno == ALPHA_ZERO_REGNUM)
+	{
+	  const gdb_byte zero[8] = { 0 };
+
+	  regcache_raw_supply (regcache, regno, zero);
+	  continue;
+	}
+
       addr = 8 * core_reg_mapping[regno];
       if (addr < 0 || addr >= core_reg_size)
 	{


  reply	other threads:[~2011-05-23 17:36 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-21 19:20 [PATCH] %g0 on sparc " Mark Kettenis
2011-05-22 11:17 ` Pedro Alves
2011-05-23 17:36   ` Pedro Alves [this message]
2011-05-24  4:44     ` $zero on alpha " Joel Brobecker
2011-05-24 11:16       ` Pedro Alves
2011-05-25 20:51         ` Joel Brobecker
2011-05-26 14:16           ` Pedro Alves

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=201105231835.54370.pedro@codesourcery.com \
    --to=pedro@codesourcery.com \
    --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