[patch] config/h8300/h8300.c: Clean up shift algorithm determination.

Kazu Hirata kazu@hxi.com
Wed Jan 3 14:19:00 GMT 2001


Hi,

Attached is a patch to clean up the shift algorithm determination in
the h8300 port.

1) Argument 'cpu' of get_shift_alg is not really useful as it is
   merely a copy of a global variable 'cpu_type', so it is removed.

2) An extra error check on the shift count is removed as it is done in
   the caller of get_shift_alg, namely emit_a_shift.

3) 'mode' would be more useful if it is of shift_mode rather than of
   machine_mode.

OK to apply?

Thanks,

Kazu Hirata

2001-01-03  Kazu Hirata  <kazu@hxi.com>

	* config/h8300/h8300.c (get_shift_alg): Remove an argument cpu.
	Change an argument mode of machine_mode to shift_mode of
	shift_mode.  Remove an extra error check.
	(emit_a_shift): Adopt to the new calling prototype of
	get_shift_alg.

Index: h8300.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/h8300/h8300.c,v
retrieving revision 1.48
diff -u -r1.48 h8300.c
--- h8300.c	2000/12/26 18:14:54	1.48
+++ h8300.c	2001/01/03 22:05:42
@@ -1961,8 +1961,8 @@
     }
 };
 
-static enum shift_alg get_shift_alg PARAMS ((enum attr_cpu, enum shift_type,
-					     enum machine_mode, int,
+static enum shift_alg get_shift_alg PARAMS ((enum shift_type,
+					     enum shift_mode, int,
 					     const char **, const char **,
 					     int *));
 
@@ -1980,47 +1980,23 @@
    1,2,3,4 will be inlined (1,2 for SI).  */
 
 static enum shift_alg
-get_shift_alg (cpu, shift_type, mode, count, assembler_p,
+get_shift_alg (shift_type, shift_mode, count, assembler_p,
 	       assembler2_p, cc_valid_p)
-     enum attr_cpu cpu;
      enum shift_type shift_type;
-     enum machine_mode mode;
+     enum shift_mode shift_mode;
      int count;
      const char **assembler_p;
      const char **assembler2_p;
      int *cc_valid_p;
 {
-  enum shift_mode shift_mode;
-
-  /* We don't handle negative shifts or shifts greater than the word size,
-     they should have been handled already.  */
-
-  if (count < 0 || (unsigned int) count > GET_MODE_BITSIZE (mode))
-    abort ();
-
-  switch (mode)
-    {
-    case QImode:
-      shift_mode = QIshift;
-      break;
-    case HImode:
-      shift_mode = HIshift;
-      break;
-    case SImode:
-      shift_mode = SIshift;
-      break;
-    default:
-      abort ();
-    }
-
   /* Assume either SHIFT_LOOP or SHIFT_INLINE.
      It is up to the caller to know that looping clobbers cc.  */
-  *assembler_p = shift_one[cpu][shift_type][shift_mode].assembler;
+  *assembler_p = shift_one[cpu_type][shift_type][shift_mode].assembler;
   if (TARGET_H8300S)
     *assembler2_p = shift_two[shift_type][shift_mode].assembler;
   else
     *assembler2_p = NULL;
-  *cc_valid_p = shift_one[cpu][shift_type][shift_mode].cc_valid;
+  *cc_valid_p = shift_one[cpu_type][shift_type][shift_mode].cc_valid;
 
   /* Now look for cases we want to optimize.  */
 
@@ -2050,7 +2026,7 @@
 	    return SHIFT_LOOP;
 
 	  /* Other shifts by 5, 6, or 7 bits use SHIFT_ROT_AND.  */
-	  *assembler_p = rotate_one[cpu][shift_type][shift_mode];
+	  *assembler_p = rotate_one[cpu_type][shift_type][shift_mode];
 	  if (TARGET_H8300S)
 	    *assembler2_p = rotate_two[shift_type][shift_mode];
 	  *cc_valid_p = 0;
@@ -2239,7 +2215,7 @@
 	    }
 	  else if (shift_type != SHIFT_ASHIFTRT)
 	    {
-	      *assembler_p = rotate_one[cpu][shift_type][shift_mode];
+	      *assembler_p = rotate_one[cpu_type][shift_type][shift_mode];
 	      if (TARGET_H8300S)
 	        *assembler2_p = rotate_two[shift_type][shift_mode];
 	      else
@@ -2428,7 +2404,7 @@
 	    }
 	  else
 	    {
-	      *assembler_p = rotate_one[cpu][shift_type][shift_mode];
+	      *assembler_p = rotate_one[cpu_type][shift_type][shift_mode];
 	      if (TARGET_H8300S)
 		*assembler2_p = rotate_two[shift_type][shift_mode];
 	      else
@@ -2461,7 +2437,7 @@
 		}
 	      else
 		{
-		  *assembler_p = rotate_one[cpu][shift_type][shift_mode];
+		  *assembler_p = rotate_one[cpu_type][shift_type][shift_mode];
 		  if (TARGET_H8300S)
 		    *assembler2_p = rotate_two[shift_type][shift_mode];
 		  else
@@ -2537,7 +2513,7 @@
       fprintf (asm_out_file, "\tble	.Lle%d\n", loopend_lab);
 
       /* Get the assembler code to do one shift.  */
-      get_shift_alg (cpu_type, shift_type, mode, 1, &assembler,
+      get_shift_alg (shift_type, shift_mode, 1, &assembler,
 		     &assembler2, &cc_valid);
 
       fprintf (asm_out_file, ".Llt%d:\n", loopend_lab);
@@ -2562,7 +2538,7 @@
       else if ((unsigned int) n > GET_MODE_BITSIZE (mode))
 	n = GET_MODE_BITSIZE (mode);
 
-      alg = get_shift_alg (cpu_type, shift_type, mode, n, &assembler,
+      alg = get_shift_alg (shift_type, shift_mode, n, &assembler,
 			   &assembler2, &cc_valid);
 
       switch (alg)



More information about the Gcc-patches mailing list