public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* RFC: PATCH: Remove 26 element limit in XVECEXP
@ 2011-03-30 15:05 H.J. Lu
  2011-03-30 18:55 ` RFC: PATCH: Remove 26 element limit in vector H.J. Lu
  0 siblings, 1 reply; 7+ messages in thread
From: H.J. Lu @ 2011-03-30 15:05 UTC (permalink / raw)
  To: gcc-patches

Hi,

Currently, we limit XVECEXP to 26 elements in machine description
since we use letters 'a' to 'z' to encode them.  I don't see any
reason why we can't go beyond 'z'.  This patch removes this restriction.
Any comments?

Thanks.


H.J.
---
2011-03-30  H.J. Lu  <hongjiu.lu@intel.com>

	* genextract.c (gen_insn): Use encode_xvecexp.
	(walk_rtx): Likewise.
	(print_path): Use is_xvecexp and decode_xvecexp.
	* genpreds.c (write_extract_subexp): Likewise.

	* genrecog.c (add_to_sequence): Add assert.  Use encode_xvecexp.
	(change_state): Use is_xvecexp and decode_xvecexp.

	* gensupport.h (is_xvecexp): New.
	(encode_xvecexp): Likewise.
	(decode_xvecexp): Likewise.

diff --git a/gcc/genextract.c b/gcc/genextract.c
index 09e7cde..2afeec0 100644
--- a/gcc/genextract.c
+++ b/gcc/genextract.c
@@ -108,7 +108,7 @@ gen_insn (rtx insn, int insn_code_number)
   else
     for (i = XVECLEN (insn, 1) - 1; i >= 0; i--)
       {
-	VEC_safe_push (char,heap, acc.pathstr, 'a' + i);
+	VEC_safe_push (char,heap, acc.pathstr, encode_xvecexp (i));
 	walk_rtx (XVECEXP (insn, 1, i), &acc);
 	VEC_pop (char, acc.pathstr);
       }
@@ -222,7 +222,7 @@ static void
 walk_rtx (rtx x, struct accum_extract *acc)
 {
   RTX_CODE code;
-  int i, len, base;
+  int i, len, val;
   const char *fmt;
 
   if (x == 0)
@@ -248,10 +248,13 @@ walk_rtx (rtx x, struct accum_extract *acc)
       VEC_safe_set_locstr (&acc->oplocs, XINT (x, 0),
 			   VEC_char_to_string (acc->pathstr));
 
-      base = (code == MATCH_OPERATOR ? '0' : 'a');
       for (i = XVECLEN (x, 2) - 1; i >= 0; i--)
 	{
-	  VEC_safe_push (char,heap, acc->pathstr, base + i);
+	  if (code == MATCH_OPERATOR)
+	    val = '0' + i;
+	  else
+	    val = encode_xvecexp (i);
+	  VEC_safe_push (char,heap, acc->pathstr, val);
 	  walk_rtx (XVECEXP (x, 2, i), acc);
 	  VEC_pop (char, acc->pathstr);
         }
@@ -267,10 +270,13 @@ walk_rtx (rtx x, struct accum_extract *acc)
       if (code == MATCH_DUP)
 	break;
 
-      base = (code == MATCH_OP_DUP ? '0' : 'a');
       for (i = XVECLEN (x, 1) - 1; i >= 0; i--)
         {
-	  VEC_safe_push (char,heap, acc->pathstr, base + i);
+	  if (code == MATCH_OP_DUP)
+	    val = '0' + i;
+	  else
+	    val = encode_xvecexp (i);
+	  VEC_safe_push (char,heap, acc->pathstr, val);
 	  walk_rtx (XVECEXP (x, 1, i), acc);
 	  VEC_pop (char, acc->pathstr);
         }
@@ -295,7 +301,8 @@ walk_rtx (rtx x, struct accum_extract *acc)
 	  int j;
 	  for (j = XVECLEN (x, i) - 1; j >= 0; j--)
 	    {
-	      VEC_safe_push (char,heap, acc->pathstr, 'a' + j);
+	      VEC_safe_push (char,heap, acc->pathstr,
+			     encode_xvecexp (j));
 	      walk_rtx (XVECEXP (x, i, j), acc);
 	      VEC_pop (char, acc->pathstr);
 	    }
@@ -326,7 +333,7 @@ print_path (const char *path)
 
   for (i = len - 1; i >= 0 ; i--)
     {
-      if (ISLOWER (path[i]))
+      if (is_xvecexp (path[i]))
 	fputs ("XVECEXP (", stdout);
       else if (ISDIGIT (path[i]))
 	fputs ("XEXP (", stdout);
@@ -338,8 +345,8 @@ print_path (const char *path)
 
   for (i = 0; i < len; i++)
     {
-      if (ISLOWER (path[i]))
-	printf (", 0, %d)", path[i] - 'a');
+      if (is_xvecexp (path[i]))
+	printf (", 0, %d)", decode_xvecexp (path[i]));
       else if (ISDIGIT(path[i]))
 	printf (", %d)", path[i] - '0');
       else
diff --git a/gcc/genpreds.c b/gcc/genpreds.c
index fba4372..d5e1ddc 100644
--- a/gcc/genpreds.c
+++ b/gcc/genpreds.c
@@ -433,7 +433,7 @@ write_extract_subexp (const char *path)
      order, then write "op", then the indices in forward order.  */
   for (i = len - 1; i >= 0; i--)
     {
-      if (ISLOWER (path[i]))
+      if (is_xvecexp (path[i]))
 	fputs ("XVECEXP (", stdout);
       else if (ISDIGIT (path[i]))
 	fputs ("XEXP (", stdout);
@@ -445,8 +445,8 @@ write_extract_subexp (const char *path)
 
   for (i = 0; i < len; i++)
     {
-      if (ISLOWER (path[i]))
-	printf (", 0, %d)", path[i] - 'a');
+      if (is_xvecexp (path[i]))
+	printf (", 0, %d)", decode_xvecexp (path[i]));
       else if (ISDIGIT (path[i]))
 	printf (", %d)", path[i] - '0');
       else
diff --git a/gcc/genrecog.c b/gcc/genrecog.c
index 74dd0a7..b65eb4f 100644
--- a/gcc/genrecog.c
+++ b/gcc/genrecog.c
@@ -912,6 +912,7 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
 	      /* Which insn we're looking at is represented by A-Z. We don't
 	         ever use 'A', however; it is always implied.  */
 
+	      gcc_assert (i < 26);
 	      subpos[depth] = (i > 0 ? 'A' + i : 0);
 	      sub = add_to_sequence (XVECEXP (pattern, 0, i),
 				     last, subpos, insn_type, 0);
@@ -999,10 +1000,17 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
 
 	if (was_code == MATCH_OPERATOR || was_code == MATCH_PARALLEL)
 	  {
-	    char base = (was_code == MATCH_OPERATOR ? '0' : 'a');
+	    int val;
 	    for (i = 0; i < (size_t) XVECLEN (pattern, 2); i++)
 	      {
-		subpos[depth] = i + base;
+		if (was_code == MATCH_OPERATOR)
+		  {
+		    val = '0' + i;
+		    gcc_assert (ISDIGIT (val));
+		  }
+		else
+		  val = encode_xvecexp (i);
+		subpos[depth] = val;
 		sub = add_to_sequence (XVECEXP (pattern, 2, i),
 				       &sub->success, subpos, insn_type, 0);
 	      }
@@ -1102,7 +1110,7 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
 	    int j;
 	    for (j = 0; j < XVECLEN (pattern, i); j++)
 	      {
-		subpos[depth] = 'a' + j;
+		subpos[depth] = encode_xvecexp (j);
 		sub = add_to_sequence (XVECEXP (pattern, i, j),
 				       &sub->success, subpos, insn_type, 0);
 	      }
@@ -1776,9 +1784,10 @@ change_state (const char *oldpos, const char *newpos, const char *indent)
 		  indent, newpos[depth] - 'A');
 	  printf ("%sx%d = PATTERN (tem);\n", indent, depth + 1);
 	}
-      else if (ISLOWER (newpos[depth]))
+      else if (is_xvecexp (newpos[depth]))
 	printf ("%sx%d = XVECEXP (x%d, 0, %d);\n",
-		indent, depth + 1, depth, newpos[depth] - 'a');
+		indent, depth + 1, depth,
+		decode_xvecexp (newpos[depth]));
       else
 	printf ("%sx%d = XEXP (x%d, %c);\n",
 		indent, depth + 1, depth, newpos[depth]);
@@ -2528,6 +2537,7 @@ make_insn_sequence (rtx insn, enum routine_type type)
 	}
       XVECLEN (x, 0) = j;
 
+      gcc_assert ((j - 1) < 26);
       c_test_pos[0] = 'A' + j - 1;
       c_test_pos[1] = '\0';
     }
diff --git a/gcc/gensupport.h b/gcc/gensupport.h
index 999c222..59eaec6 100644
--- a/gcc/gensupport.h
+++ b/gcc/gensupport.h
@@ -83,4 +83,25 @@ extern void add_predicate (struct pred_data *);
 
 #define FOR_ALL_PREDICATES(p) for (p = first_predicate; p; p = p->next)
 
+static inline bool
+is_xvecexp (unsigned char v)
+{
+  return v >= 'a';
+}
+
+static inline int
+encode_xvecexp (int v)
+{
+  v += 'a';
+  gcc_assert (v >= 'a' && v <= 255);
+  return v;
+}
+
+static inline int
+decode_xvecexp (int v)
+{
+  v -= 'a';
+  return v;
+}
+
 #endif /* GCC_GENSUPPORT_H */

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RFC: PATCH: Remove 26 element limit in vector
  2011-03-30 15:05 RFC: PATCH: Remove 26 element limit in XVECEXP H.J. Lu
@ 2011-03-30 18:55 ` H.J. Lu
  2011-03-31  8:47   ` Richard Guenther
  0 siblings, 1 reply; 7+ messages in thread
From: H.J. Lu @ 2011-03-30 18:55 UTC (permalink / raw)
  To: gcc-patches

On Wed, Mar 30, 2011 at 08:02:38AM -0700, H.J. Lu wrote:
> Hi,
> 
> Currently, we limit XVECEXP to 26 elements in machine description
> since we use letters 'a' to 'z' to encode them.  I don't see any
> reason why we can't go beyond 'z'.  This patch removes this restriction.
> Any comments?
> 

That was wrong.  The problem is in vector elements.  This patch passes
bootstrap.  Any comments?

Thanks.


H.J.
---
2011-03-30  H.J. Lu  <hongjiu.lu@intel.com>

	* genrecog.c (VECTOR_ELEMENT_BASE): New.
	(add_to_sequence): Add assert.  Use VECTOR_ELEMENT_BASE to
	encode vector elements.
	(change_state): Check and support VECTOR_ELEMENT_BASE.
	(make_insn_sequence): Add assert.

diff --git a/gcc/genrecog.c b/gcc/genrecog.c
index 74dd0a7..40e9c4d 100644
--- a/gcc/genrecog.c
+++ b/gcc/genrecog.c
@@ -465,6 +465,9 @@ extern void debug_decision
   (struct decision *);
 extern void debug_decision_list
   (struct decision *);
+
+/* The base of vector element.  */
+#define VECTOR_ELEMENT_BASE 0x80
 \f
 /* Create a new node in sequence after LAST.  */
 
@@ -912,6 +915,7 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
 	      /* Which insn we're looking at is represented by A-Z. We don't
 	         ever use 'A', however; it is always implied.  */
 
+	      gcc_assert (i < 26);
 	      subpos[depth] = (i > 0 ? 'A' + i : 0);
 	      sub = add_to_sequence (XVECEXP (pattern, 0, i),
 				     last, subpos, insn_type, 0);
@@ -1002,6 +1006,9 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
 	    char base = (was_code == MATCH_OPERATOR ? '0' : 'a');
 	    for (i = 0; i < (size_t) XVECLEN (pattern, 2); i++)
 	      {
+		gcc_assert (was_code == MATCH_OPERATOR
+			    ? ISDIGIT (i + base)
+			    : ISLOWER (i + base));
 		subpos[depth] = i + base;
 		sub = add_to_sequence (XVECEXP (pattern, 2, i),
 				       &sub->success, subpos, insn_type, 0);
@@ -1102,7 +1109,9 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
 	    int j;
 	    for (j = 0; j < XVECLEN (pattern, i); j++)
 	      {
-		subpos[depth] = 'a' + j;
+		int val = j + VECTOR_ELEMENT_BASE;
+		gcc_assert (val <= UCHAR_MAX);
+		subpos[depth] = val;
 		sub = add_to_sequence (XVECEXP (pattern, i, j),
 				       &sub->success, subpos, insn_type, 0);
 	      }
@@ -1779,6 +1788,10 @@ change_state (const char *oldpos, const char *newpos, const char *indent)
       else if (ISLOWER (newpos[depth]))
 	printf ("%sx%d = XVECEXP (x%d, 0, %d);\n",
 		indent, depth + 1, depth, newpos[depth] - 'a');
+      else if (((unsigned char) newpos[depth]) >= VECTOR_ELEMENT_BASE)
+	printf ("%sx%d = XVECEXP (x%d, 0, %d);\n",
+		indent, depth + 1, depth,
+		((unsigned char) newpos[depth]) - VECTOR_ELEMENT_BASE);
       else
 	printf ("%sx%d = XEXP (x%d, %c);\n",
 		indent, depth + 1, depth, newpos[depth]);
@@ -2528,6 +2541,7 @@ make_insn_sequence (rtx insn, enum routine_type type)
 	}
       XVECLEN (x, 0) = j;
 
+      gcc_assert ((j - 1) < 26);
       c_test_pos[0] = 'A' + j - 1;
       c_test_pos[1] = '\0';
     }

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFC: PATCH: Remove 26 element limit in vector
  2011-03-30 18:55 ` RFC: PATCH: Remove 26 element limit in vector H.J. Lu
@ 2011-03-31  8:47   ` Richard Guenther
  2011-03-31  9:58     ` Richard Sandiford
  2011-03-31 10:20     ` Mike Stump
  0 siblings, 2 replies; 7+ messages in thread
From: Richard Guenther @ 2011-03-31  8:47 UTC (permalink / raw)
  To: H.J. Lu; +Cc: H.J. Lu, gcc-patches

On Wed, Mar 30, 2011 at 8:09 PM, H.J. Lu <hongjiu.lu@intel.com> wrote:
> On Wed, Mar 30, 2011 at 08:02:38AM -0700, H.J. Lu wrote:
>> Hi,
>>
>> Currently, we limit XVECEXP to 26 elements in machine description
>> since we use letters 'a' to 'z' to encode them.  I don't see any
>> reason why we can't go beyond 'z'.  This patch removes this restriction.
>> Any comments?
>>
>
> That was wrong.  The problem is in vector elements.  This patch passes
> bootstrap.  Any comments?

Do you really need it?

Richard.

> Thanks.
>
>
> H.J.
> ---
> 2011-03-30  H.J. Lu  <hongjiu.lu@intel.com>
>
>        * genrecog.c (VECTOR_ELEMENT_BASE): New.
>        (add_to_sequence): Add assert.  Use VECTOR_ELEMENT_BASE to
>        encode vector elements.
>        (change_state): Check and support VECTOR_ELEMENT_BASE.
>        (make_insn_sequence): Add assert.
>
> diff --git a/gcc/genrecog.c b/gcc/genrecog.c
> index 74dd0a7..40e9c4d 100644
> --- a/gcc/genrecog.c
> +++ b/gcc/genrecog.c
> @@ -465,6 +465,9 @@ extern void debug_decision
>   (struct decision *);
>  extern void debug_decision_list
>   (struct decision *);
> +
> +/* The base of vector element.  */
> +#define VECTOR_ELEMENT_BASE 0x80
>
>  /* Create a new node in sequence after LAST.  */
>
> @@ -912,6 +915,7 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
>              /* Which insn we're looking at is represented by A-Z. We don't
>                 ever use 'A', however; it is always implied.  */
>
> +             gcc_assert (i < 26);
>              subpos[depth] = (i > 0 ? 'A' + i : 0);
>              sub = add_to_sequence (XVECEXP (pattern, 0, i),
>                                     last, subpos, insn_type, 0);
> @@ -1002,6 +1006,9 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
>            char base = (was_code == MATCH_OPERATOR ? '0' : 'a');
>            for (i = 0; i < (size_t) XVECLEN (pattern, 2); i++)
>              {
> +               gcc_assert (was_code == MATCH_OPERATOR
> +                           ? ISDIGIT (i + base)
> +                           : ISLOWER (i + base));
>                subpos[depth] = i + base;
>                sub = add_to_sequence (XVECEXP (pattern, 2, i),
>                                       &sub->success, subpos, insn_type, 0);
> @@ -1102,7 +1109,9 @@ add_to_sequence (rtx pattern, struct decision_head *last, const char *position,
>            int j;
>            for (j = 0; j < XVECLEN (pattern, i); j++)
>              {
> -               subpos[depth] = 'a' + j;
> +               int val = j + VECTOR_ELEMENT_BASE;
> +               gcc_assert (val <= UCHAR_MAX);
> +               subpos[depth] = val;
>                sub = add_to_sequence (XVECEXP (pattern, i, j),
>                                       &sub->success, subpos, insn_type, 0);
>              }
> @@ -1779,6 +1788,10 @@ change_state (const char *oldpos, const char *newpos, const char *indent)
>       else if (ISLOWER (newpos[depth]))
>        printf ("%sx%d = XVECEXP (x%d, 0, %d);\n",
>                indent, depth + 1, depth, newpos[depth] - 'a');
> +      else if (((unsigned char) newpos[depth]) >= VECTOR_ELEMENT_BASE)
> +       printf ("%sx%d = XVECEXP (x%d, 0, %d);\n",
> +               indent, depth + 1, depth,
> +               ((unsigned char) newpos[depth]) - VECTOR_ELEMENT_BASE);
>       else
>        printf ("%sx%d = XEXP (x%d, %c);\n",
>                indent, depth + 1, depth, newpos[depth]);
> @@ -2528,6 +2541,7 @@ make_insn_sequence (rtx insn, enum routine_type type)
>        }
>       XVECLEN (x, 0) = j;
>
> +      gcc_assert ((j - 1) < 26);
>       c_test_pos[0] = 'A' + j - 1;
>       c_test_pos[1] = '\0';
>     }
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFC: PATCH: Remove 26 element limit in vector
  2011-03-31  8:47   ` Richard Guenther
@ 2011-03-31  9:58     ` Richard Sandiford
  2011-03-31 10:20     ` Mike Stump
  1 sibling, 0 replies; 7+ messages in thread
From: Richard Sandiford @ 2011-03-31  9:58 UTC (permalink / raw)
  To: Richard Guenther; +Cc: H.J. Lu, H.J. Lu, gcc-patches

Richard Guenther <richard.guenther@gmail.com> writes:
> On Wed, Mar 30, 2011 at 8:09 PM, H.J. Lu <hongjiu.lu@intel.com> wrote:
>> On Wed, Mar 30, 2011 at 08:02:38AM -0700, H.J. Lu wrote:
>>> Hi,
>>>
>>> Currently, we limit XVECEXP to 26 elements in machine description
>>> since we use letters 'a' to 'z' to encode them.  I don't see any
>>> reason why we can't go beyond 'z'.  This patch removes this restriction.
>>> Any comments?
>>>
>>
>> That was wrong.  The problem is in vector elements.  This patch passes
>> bootstrap.  Any comments?
>
> Do you really need it?

ISTR at least two separate projects have hit the limit.  This solution
seems very hackish though (as well as being ASCII-specific).  A better
fix might be to replace "char" with a proper type, such as a union and
discriminator.

Richard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFC: PATCH: Remove 26 element limit in vector
  2011-03-31  8:47   ` Richard Guenther
  2011-03-31  9:58     ` Richard Sandiford
@ 2011-03-31 10:20     ` Mike Stump
  2011-03-31 12:14       ` Kenneth Zadeck
  1 sibling, 1 reply; 7+ messages in thread
From: Mike Stump @ 2011-03-31 10:20 UTC (permalink / raw)
  To: Richard Guenther; +Cc: H.J. Lu, H.J. Lu, gcc-patches Patches, Kenneth Zadeck

On Mar 31, 2011, at 1:41 AM, Richard Guenther wrote:
> On Wed, Mar 30, 2011 at 8:09 PM, H.J. Lu <hongjiu.lu@intel.com> wrote:
>> On Wed, Mar 30, 2011 at 08:02:38AM -0700, H.J. Lu wrote:
>>> Hi,
>>> 
>>> Currently, we limit XVECEXP to 26 elements in machine description
>>> since we use letters 'a' to 'z' to encode them.  I don't see any
>>> reason why we can't go beyond 'z'.  This patch removes this restriction.
>>> Any comments?
>>> 
>> 
>> That was wrong.  The problem is in vector elements.  This patch passes
>> bootstrap.  Any comments?
> 
> Do you really need it?

I'm trying to recall if this is the limit Kenny and I hit....  If so, annoying.  Kenny could confirm if it was.  gcc's general strategy of, no fixed N gives gcc a certain flexibility that is very nice to have, on those general grounds, I kinda liked this patch.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFC: PATCH: Remove 26 element limit in vector
  2011-03-31 10:20     ` Mike Stump
@ 2011-03-31 12:14       ` Kenneth Zadeck
  2011-04-05  1:05         ` H.J. Lu
  0 siblings, 1 reply; 7+ messages in thread
From: Kenneth Zadeck @ 2011-03-31 12:14 UTC (permalink / raw)
  To: Mike Stump; +Cc: Richard Guenther, H.J. Lu, H.J. Lu, gcc-patches Patches

we hit this limit trying to write the explicit semantics for a 
vec_interleave_evenv32qi.

;;(define_insn "vec_interleave_evenv32qi"
;;  [(set (match_operand:V32QI 0 "register_operand" "=r")
;;    (vec_select:V32QI
;;      (vec_concat:V64QI
;;        (match_operand:V32QI 1 "register_operand" "0")
;;        (match_operand:V32QI 2 "register_operand" "r"))
;;      (parallel [(const_int  0) (const_int 32)
;;             (const_int  2) (const_int 34)
;;             (const_int  4) (const_int 36)
;;             (const_int  6) (const_int 38)
;;             (const_int  8) (const_int 40)
;;             (const_int 10) (const_int 42)
;;             (const_int 12) (const_int 44)
;;             (const_int 14) (const_int 46)
;;             (const_int 16) (const_int 48)
;;             (const_int 18) (const_int 50)
;;             (const_int 20) (const_int 52)
;;             (const_int 22) (const_int 54)
;;             (const_int 24) (const_int 56)
;;             (const_int 26) (const_int 58)
;;             (const_int 28) (const_int 60)
;;             (const_int 30) (const_int 62)])))]
;;  ""
;;  "rimihv\t%0,%2,8,15,8"
;;  [(set_attr "type" "rimi")])


kenny

On 03/31/2011 06:16 AM, Mike Stump wrote:
> On Mar 31, 2011, at 1:41 AM, Richard Guenther wrote:
>> On Wed, Mar 30, 2011 at 8:09 PM, H.J. Lu<hongjiu.lu@intel.com>  wrote:
>>> On Wed, Mar 30, 2011 at 08:02:38AM -0700, H.J. Lu wrote:
>>>> Hi,
>>>>
>>>> Currently, we limit XVECEXP to 26 elements in machine description
>>>> since we use letters 'a' to 'z' to encode them.  I don't see any
>>>> reason why we can't go beyond 'z'.  This patch removes this restriction.
>>>> Any comments?
>>>>
>>> That was wrong.  The problem is in vector elements.  This patch passes
>>> bootstrap.  Any comments?
>> Do you really need it?
> I'm trying to recall if this is the limit Kenny and I hit....  If so, annoying.  Kenny could confirm if it was.  gcc's general strategy of, no fixed N gives gcc a certain flexibility that is very nice to have, on those general grounds, I kinda liked this patch.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: RFC: PATCH: Remove 26 element limit in vector
  2011-03-31 12:14       ` Kenneth Zadeck
@ 2011-04-05  1:05         ` H.J. Lu
  0 siblings, 0 replies; 7+ messages in thread
From: H.J. Lu @ 2011-04-05  1:05 UTC (permalink / raw)
  To: Kenneth Zadeck; +Cc: Mike Stump, Richard Guenther, gcc-patches Patches

On Thu, Mar 31, 2011 at 5:05 AM, Kenneth Zadeck
<zadeck@naturalbridge.com> wrote:
> we hit this limit trying to write the explicit semantics for a
> vec_interleave_evenv32qi.
>
> ;;(define_insn "vec_interleave_evenv32qi"
> ;;  [(set (match_operand:V32QI 0 "register_operand" "=r")
> ;;    (vec_select:V32QI
> ;;      (vec_concat:V64QI
> ;;        (match_operand:V32QI 1 "register_operand" "0")
> ;;        (match_operand:V32QI 2 "register_operand" "r"))
> ;;      (parallel [(const_int  0) (const_int 32)
> ;;             (const_int  2) (const_int 34)
> ;;             (const_int  4) (const_int 36)
> ;;             (const_int  6) (const_int 38)
> ;;             (const_int  8) (const_int 40)
> ;;             (const_int 10) (const_int 42)
> ;;             (const_int 12) (const_int 44)
> ;;             (const_int 14) (const_int 46)
> ;;             (const_int 16) (const_int 48)
> ;;             (const_int 18) (const_int 50)
> ;;             (const_int 20) (const_int 52)
> ;;             (const_int 22) (const_int 54)
> ;;             (const_int 24) (const_int 56)
> ;;             (const_int 26) (const_int 58)
> ;;             (const_int 28) (const_int 60)
> ;;             (const_int 30) (const_int 62)])))]
> ;;  ""
> ;;  "rimihv\t%0,%2,8,15,8"
> ;;  [(set_attr "type" "rimi")])
>
>
> kenny
>
> On 03/31/2011 06:16 AM, Mike Stump wrote:
>>
>> On Mar 31, 2011, at 1:41 AM, Richard Guenther wrote:
>>>
>>> On Wed, Mar 30, 2011 at 8:09 PM, H.J. Lu<hongjiu.lu@intel.com>  wrote:
>>>>
>>>> On Wed, Mar 30, 2011 at 08:02:38AM -0700, H.J. Lu wrote:
>>>>>
>>>>> Hi,
>>>>>
>>>>> Currently, we limit XVECEXP to 26 elements in machine description
>>>>> since we use letters 'a' to 'z' to encode them.  I don't see any
>>>>> reason why we can't go beyond 'z'.  This patch removes this
>>>>> restriction.
>>>>> Any comments?
>>>>>
>>>> That was wrong.  The problem is in vector elements.  This patch passes
>>>> bootstrap.  Any comments?
>>>
>>> Do you really need it?
>>
>> I'm trying to recall if this is the limit Kenny and I hit....  If so,
>> annoying.  Kenny could confirm if it was.  gcc's general strategy of, no
>> fixed N gives gcc a certain flexibility that is very nice to have, on those
>> general grounds, I kinda liked this patch.
>

Is my patch OK to install?

Thanks.

-- 
H.J.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-04-05  1:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-30 15:05 RFC: PATCH: Remove 26 element limit in XVECEXP H.J. Lu
2011-03-30 18:55 ` RFC: PATCH: Remove 26 element limit in vector H.J. Lu
2011-03-31  8:47   ` Richard Guenther
2011-03-31  9:58     ` Richard Sandiford
2011-03-31 10:20     ` Mike Stump
2011-03-31 12:14       ` Kenneth Zadeck
2011-04-05  1:05         ` H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).