indy.txt
author jrose
Mon Apr 06 03:27:56 2009 -0700 (4 years ago)
changeset 42 d88356a6b5e8
parent 10ad4e40228a6a
permissions -rw-r--r--
indy: more demos work
        1 6655646: dynamic languages need dynamically linked call sites
        2 Summary: invokedynamic instruction (JSR 292 RI)
        3 
        4 http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6655646
        5 
        6 Features:
        7 - enabled via -XX:+EnableInvokeDynamic
        8 
        9 Notes:
       10 
       11 If you get an error like this:
       12   Exception in thread "main" java.lang.VerifyError: (class: Foo, method: ...) Illegal instruction found at offset 39
       13 then you need a JDK with a patch to the old verifier plugin, see ../jdk/indy.verify.patch
       14 As a workaround, use this JVM flag to turn off the (unpatched) verifier:
       15   -Xverify:none
       16 or else put your classes on the BCP: -Xbootclasspath/a:my/classes:my.jar