Patch for IcedTea7-2.1 on ARM 32bit (mixed mode) TCK method handle invoke failures

Andrew Dinn adinn at redhat.com
Thu May 3 09:36:37 PDT 2012


Attached is a patch for IcedTea7-2.1 which fixes some observed TCK
failures associated with dynamic method handle invocation. The attached
reproducer tests manifest the problems -- Test1 and Test2 fail with a
SEGV, Test3 fails with a call to ShouldNotReachHere.

The first two tests fail with a SEGV because because the unbox method
handle adapter code fails to check for a null argument. The fix traps
this case and throws a NullPointerException to the caller of
MethodHandle.invoke.

The third test fails because the retype method handle adapter code
allows for widening of results from BOOLEAN, BYTE, CHAR and SHORT to INT
but does not allow narrowing from INT to a shorter integral type.
However, execution of Test3 results in generation of retype method
handle adapters which attempt narrowing from INT to BYTE. The fix makes
the adapter code more permissive so that these narrowing returns are
allowed.

The patch has been applied to the IcedTea7-2.1 tree and found to fix all
three tests. Comments welcome.

regards,


Andrew Dinn
-----------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Test1.java
Type: text/x-java
Size: 911 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20120503/8070bbd6/Test1.java 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Test2.java
Type: text/x-java
Size: 909 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20120503/8070bbd6/Test2.java 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Test3.java
Type: text/x-java
Size: 733 bytes
Desc: not available
Url : http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20120503/8070bbd6/Test3.java 
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: patch.txt
Url: http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20120503/8070bbd6/patch.txt 


More information about the distro-pkg-dev mailing list