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

Deutsch-Schiffman inlining problem in 1.3.1RC

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.3.1_01
    • 1.3.1
    • hotspot
    • None
    • 01
    • generic
    • solaris_7

        Test case is attached to this bug
        You'll have to download xerces from the apache website.

          This is a bug in the C2 compiler
          The java source code that leads to the problem
          can be found in method scanSystemLiteral() in file
          XMLDTDScanner.java. The problem is with the save and restore
          of instance field fScannerState. The method changes this
          field as follows:
          
          int previousState = setScannerState(SCANNER_STATE_SYSTEMLITERAL);
          
          This should set the private instance field fScannerState to
          the value SCANNER_STATE_SYSTEMLITERAL (0x3b) and return the
          old value (0x33). At the end of the method, the original
          value is restored by a call to restoreScannerState().
          
          If you try putting a println of the value of previousState
          into method scanSystemLiteral() just after calling
          setScannerState(), it will display 0x33 and the code will
          work correctly. If you instead put the println just before
          the call to restoreScannerState(), then you will see that it
          claims the value in previousState is 0x3b and the observed
          error occurs.
          
          Here is the generated inline SPARC for the unmodified
         (failing case):
          
          mov 0x3b, %l2
          st %l2, [%i0+0x68] // location of fScannerState
          
          And here is the code that appears to call restoreScannerState():
          
          mov 0x3b, %o1
          mov %i0, %o0
          mov %o1, %l0
          call 0xeb0012a0
          nop
          
          This is appallingly bad.
          
          With the printf in place, here is the inlined code for
          setScannerState():
          
          ld [%i1+0x68], %l2 // Current value of fScannerState
          mov 0x3b, %l1
          st %l1, [%i1+0x68] // Update
          
          Then later, to restore it (%l2 has not been modified at any
          time in between):
          
          mov %i1, %o0
          mov %l2, %o1
          call 0xeb0012a0
          nop
          
          This is fine.
          
          Looks like some over-enthusiastic and completely
          inappropriate optimization.

         Further analysis of this problem reveals that it is triggered
         in the Deutsch-Schiffman inlining code in the hotspot
         compiler. Turning off Deutsch-Schiffman inlining (by use of
         the -XX:-UseTypeProfile java command line option) corrects
         the problem. SetScannerState() still gets inlined inside
         method scanSystemLiteral() but the Deutsch-Schiffman analysis
         is not applied.

        The error is
        /opt/java-1.3.1b15/bin/java -server -classpath . -Xint EvilJVMTest
              ....[ debug output deleted ]...
           Okay!
        /opt/java-1.3.1b15/bin/java -server -classpath . -Xbatch EvilJVMTest
            ....[debug output deleted ]...
        Exception in thread "main" java.lang.RuntimeException: FWK004
        cannot happen 18 18 at
           org.apache.xerces.framework.XMLParser.parse(XMLParser.java:965)
            at EvilJVMTest.main(EvilJVMTest.java:32)
           make: *** [evil] Error 1

              mpalecznsunw Michael Paleczny (Inactive)
              msusko Mark Susko (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: