You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mikhail Fursov (JIRA)" <ji...@apache.org> on 2006/10/13 17:27:35 UTC

[jira] Created: (HARMONY-1868) [drlvm][jit] Jitrino.OPT fails for some tausimp positions in the optimizer's path

[drlvm][jit] Jitrino.OPT fails for some tausimp positions in the optimizer's path
---------------------------------------------------------------------------------

                 Key: HARMONY-1868
                 URL: http://issues.apache.org/jira/browse/HARMONY-1868
             Project: Harmony
          Issue Type: Bug
          Components: DRLVM
            Reporter: Mikhail Fursov
            Priority: Minor


Options to run:
java.exe -Xem:opt -Djit.CS_OPT.path.optimizer=ssa,simplify,uce,dce,statprof,devirt,inline,simplify,uce,dce,tausimp,dessa,statprof   Test


Test.java:

import java.util.*;

public class Test {
        public static void main(String[] args) throws Exception {
                new Test().foo(null);
        }


        private void foo(Set localValues) {
        for(Iterator it = localValues.iterator(); it.hasNext();) {
            InheritableThreadLocal local = (InheritableThreadLocal)it.next();
                        local.childValue();
        }
        }
}


class InheritableThreadLocal {
        Object childValue() {return null;}
}


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira