re PR java/12586 (gnu.java.net name mangling bug)
authorBryce McKinlay <bryce@mckinlay.net.nz>
Tue, 21 Oct 2003 23:59:46 +0000 (23:59 +0000)
committerBryce McKinlay <bryce@gcc.gnu.org>
Tue, 21 Oct 2003 23:59:46 +0000 (00:59 +0100)
        Fix for PR java/12586.
        * mangle.c (find_compression_record_match): Don't iterate through
        package namespace elements unless they all match compression_table
        entries.

From-SVN: r72779

gcc/java/ChangeLog
gcc/java/mangle.c

index 326e8e8db34ed421ac87bc070dd9d8ad032a62a9..35dce1c3b8b6ab80bc4ffa7625c5d376142a7f0d 100644 (file)
@@ -1,3 +1,10 @@
+2003-10-22  Bryce McKinlay  <bryce@mckinlay.net.nz>
+
+       Fix for PR java/12586.
+       * mangle.c (find_compression_record_match): Don't iterate through
+       package namespace elements unless they all match compression_table
+       entries.
+
 2003-10-20  Kelley Cook  <kcook@gcc.gnu.org>
 
        * Make-lang.in (info): Honor $(parsedir) and $(docobjdir).
index e545cbc1fac1f070144241ebaf0f06428765700f..0c8435cb71c970f5b0101628e49d2cbdc7751724 100644 (file)
@@ -287,38 +287,29 @@ find_compression_array_template_match (tree string)
 static int
 find_compression_record_match (tree type, tree *next_current)
 {
-  int i, match;
+  int i, match = -1;
   tree current, saved_current = NULL_TREE;
 
-  /* Search from the beginning for something that matches TYPE, even
-     partially. */
-  for (current = TYPE_PACKAGE_LIST (type), i = 0, match = -1; current;
-       current = TREE_CHAIN (current))
+  current = TYPE_PACKAGE_LIST (type);
+      
+  for (i = 0; i < compression_next; i++)
     {
-      int j;
-      for (j = i; j < compression_next; j++)
-       if (TREE_VEC_ELT (compression_table, j) == TREE_PURPOSE (current))
-         {
-           match = i = j;
-           saved_current = current;
-           i++;
-           break;
-         }
-        else if (atms && TREE_VEC_ELT (compression_table, j) == atms)
-          {
-            /* Skip over a "6JArray". */
-          }
-       else
-         {
-           /* We don't want to match an element that appears in the middle
-           of a package name, so skip forward to the next complete type name.
-           IDENTIFIER_NODEs (except for a "6JArray") are partial package
-            names while RECORD_TYPEs represent complete type names. */
-           while (j < compression_next 
-                  && TREE_CODE (TREE_VEC_ELT (compression_table, j)) == 
-                     IDENTIFIER_NODE)
-             j++;
-         }
+      tree compression_entry = TREE_VEC_ELT (compression_table, i);
+      if (current && compression_entry == TREE_PURPOSE (current))
+        {
+         match = i;
+         saved_current = current;
+         current = TREE_CHAIN (current);
+       }
+      else
+       /* We don't want to match an element that appears in the middle
+          of a package name, so skip forward to the next complete type name.
+          IDENTIFIER_NODEs (except for a "6JArray") are partial package
+          names while RECORD_TYPEs represent complete type names. */
+       while (i < compression_next 
+              && TREE_CODE (compression_entry) == IDENTIFIER_NODE
+              && compression_entry != atms)
+         compression_entry = TREE_VEC_ELT (compression_table, ++i);
     }
 
   if (!next_current)