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

Argument to method corrupted in the catch block (x.3.00.066 symcjit.dll).

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.1.7
    • 1.2.0
    • vm-legacy
    • None
    • b01
    • generic
    • windows_nt
    • Not verified

        The following program produces incorrect results -

        class test2
        {
            static public void main(String args[])
            {
                new test2();
            }

            test2()
            {
                Object cols[] = { null, null, null, null, null, null, null, null};

        int i = 0;
        int j = 0;
        int k = 0;

                for (k=0; k<10; k++) {
        for (i=0; i<11; i++)
        for (j=0; j<12; j++)
        try {
        drawImage(i,j,k,cols[k%8]);
        } catch(Throwable e) {
        System.out.println("k="+k + " i="+i + " j="+j + "e="+e);
        return;
        }
        }
            }

            private void drawImage(int i,int j,int k,Object c)
            {
        if (k == 1 && i == 2 && j == 3)
        throw new java.lang.Error("I'm an Error");
            }
        }

        Result with the JIT -

        Symantec Java! JustInTime Compiler Version 3.00.066(x) for JDK 1.2
        Copyright (C) 1996-98 Symantec Corporation

        k=81653608 i=2 j=3 e=java.lang.Error: I'm an Error
        ^^^^^^^^^^

        Without the JIT, the result is ok:

        k=1 i=2 j=3 e=java.lang.Error: I'm an Error

              dviswanasunw Deepa Viswanathan (Inactive)
              dviswanasunw Deepa Viswanathan (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: