Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4498624

crashes out when no. of methods defined exceeds an internal threshold

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P4 P4
    • 1.4.1
    • 1.3.1, 1.4.0
    • tools
    • hopper
    • generic, sparc
    • generic, solaris_7, solaris_9
    • Verified

      Javac crashes out with an exception when the no. of methods defined exceeds internally set thresholds.

      Please use this program attached below to generate the testcase
      ===============================================================
      public class gen
      {
              public static void main (String args[])
              {
                      int i;

                      System.out.println ("public class t");
                      System.out.println ("{");

                      for (i = 0; i < 2048 ; i ++)
                      {
                              System.out.println (" public int fIntValue"+i+" ;");
                              System.out.println (" public void doNothing"+i+" () {}");
                      }

                      System.out.println ("}");
              }
      }
      ===============================================

      please compile the gen.java

      javac gen.java

      java gen > t.java

      javac t.java to produce the error. The stack-trace is too huge to be attached here. Kindly follow the steps listed above to reproduce this bug.

            gafter Neal Gafter (Inactive)
            rvijayansunw Ra Vijayan (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: