Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Corinna Vinschen <vinschen@redhat.com>
To: gdb-patches@sources.redhat.com
Subject: [RFA] sh-tdep.c: optimize and rename virtual register conversion functions
Date: Tue, 10 Feb 2004 16:14:00 -0000	[thread overview]
Message-ID: <20040210161422.GI4162@cygbert.vinschen.de> (raw)

Hi,

the functions sh_sh4_register_convert_to_virtual and
sh_sh4_register_convert_to_raw are only called once each.  In both
cases, the register numbers are already tested for the correct range,
before the function is actually called.  Therefore it's possible to
optimize the register number tests away from both functions.

Also, I'd like to propose to rename both functions to get rid of the
"sh4" in the name.  The functions are universal so I'd like to reuse
them for an upcoming SH variant with different virtual register numbering,
if that's ok.


Thanks in advance,
Corinna


ChangeLog:

	* sh-tdep.c (sh_register_convert_to_virtual): Rename from
	sh_sh4_register_convert_to_virtual.  Remove register number test.
	(sh_register_convert_to_raw): Rename from
	sh_sh4_register_convert_to_raw.  Remove register number test.

Index: sh-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/sh-tdep.c,v
retrieving revision 1.156
diff -u -p -r1.156 sh-tdep.c
--- sh-tdep.c	26 Jan 2004 20:52:12 -0000	1.156
+++ sh-tdep.c	10 Feb 2004 15:58:04 -0000
@@ -1541,33 +1541,22 @@ sh_default_register_type (struct gdbarch
    because they are stored as 4 individual FP elements. */
 
 static void
-sh_sh4_register_convert_to_virtual (int regnum, struct type *type,
+sh_register_convert_to_virtual (int regnum, struct type *type,
 				    char *from, char *to)
 {
-  if (regnum >= DR0_REGNUM && regnum <= DR_LAST_REGNUM)
-    {
-      DOUBLEST val;
-      floatformat_to_doublest (&floatformat_ieee_double_littlebyte_bigword,
-			       from, &val);
-      store_typed_floating (to, type, val);
-    }
-  else
-    error
-      ("sh_register_convert_to_virtual called with non DR register number");
+  DOUBLEST val;
+  floatformat_to_doublest (&floatformat_ieee_double_littlebyte_bigword,
+			   from, &val);
+  store_typed_floating (to, type, val);
 }
 
 static void
-sh_sh4_register_convert_to_raw (struct type *type, int regnum,
+sh_register_convert_to_raw (struct type *type, int regnum,
 				const void *from, void *to)
 {
-  if (regnum >= DR0_REGNUM && regnum <= DR_LAST_REGNUM)
-    {
-      DOUBLEST val = extract_typed_floating (from, type);
-      floatformat_from_doublest (&floatformat_ieee_double_littlebyte_bigword,
-				 &val, to);
-    }
-  else
-    error ("sh_register_convert_to_raw called with non DR register number");
+  DOUBLEST val = extract_typed_floating (from, type);
+  floatformat_from_doublest (&floatformat_ieee_double_littlebyte_bigword,
+			     &val, to);
 }
 
 /* For vectors of 4 floating point registers. */
@@ -1609,7 +1598,7 @@ sh_pseudo_register_read (struct gdbarch 
 			    + register_size (gdbarch,
 					     base_regnum) * portion));
       /* We must pay attention to the endiannes. */
-      sh_sh4_register_convert_to_virtual (reg_nr,
+      sh_register_convert_to_virtual (reg_nr,
 					  gdbarch_register_type (gdbarch,
 								 reg_nr),
 					  temp_buffer, buffer);
@@ -1639,7 +1628,7 @@ sh_pseudo_register_write (struct gdbarch
       base_regnum = dr_reg_base_num (reg_nr);
 
       /* We must pay attention to the endiannes. */
-      sh_sh4_register_convert_to_raw (gdbarch_register_type (gdbarch, reg_nr),
+      sh_register_convert_to_raw (gdbarch_register_type (gdbarch, reg_nr),
 				      reg_nr, buffer, temp_buffer);
 
       /* Write the real regs for which this one is an alias.  */

-- 
Corinna Vinschen
Cygwin Developer
Red Hat, Inc.


             reply	other threads:[~2004-02-10 16:14 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-02-10 16:14 Corinna Vinschen [this message]
2004-02-10 16:17 ` Corinna Vinschen
2004-02-16 15:29 ` Elena Zannoni
2004-02-16 15:55   ` Corinna Vinschen
2004-02-16 16:20     ` Elena Zannoni
2004-02-16 16:52       ` Corinna Vinschen

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=20040210161422.GI4162@cygbert.vinschen.de \
    --to=vinschen@redhat.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