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 2007/10/17 15:19:51 UTC

[jira] Resolved: (HARMONY-4667) [drlvm][jit][jet][x86-64] Missed exception in the JET on x86_64.

     [ https://issues.apache.org/jira/browse/HARMONY-4667?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mikhail Fursov resolved HARMONY-4667.
-------------------------------------

    Resolution: Fixed

Committed revision 585483

> [drlvm][jit][jet][x86-64] Missed exception in the JET on x86_64.
> ----------------------------------------------------------------
>
>                 Key: HARMONY-4667
>                 URL: https://issues.apache.org/jira/browse/HARMONY-4667
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>            Reporter: Pavel Afremov
>            Assignee: Mikhail Fursov
>         Attachments: fix.diff, test.java, test_2a.java, test_2b.java
>
>
> On x86-64 platform test failed in default and jet mode. Interpreter and Opt work OK.
> Looks Like bug is in the Jet.
> To reproduce the bug copy test.java, test_2a.java & test_2b.java to you test directory.
> Compile  test_2a.java, then test.java and after it test_2b.java, like in example:
> 	$ javac test_2a.java
> 	$ javac test.java
> 	$ javac test_2b.java
> Outputs are following:
> 1. RI:
> 	$ java test
> 	PASSED Exception was thrown: java.lang.NoSuchMethodError: <init>
> 2. DRLVM default
> 	$ ./drlvm/build/lnx_em64t_gcc_debug/deploy/jdk/jre/bin/java test
> 	FAILED No exception was thrown
> 3. DRLVM interpreter
> 	$ ./drlvm/build/lnx_em64t_gcc_debug/deploy/jdk/jre/bin/java -Xint test
> 	PASSED Exception was thrown: java.lang.NoSuchMethodError: <init>
> 4. DRLVM jet
> 	$ ./drlvm/build/lnx_em64t_gcc_debug/deploy/jdk/jre/bin/java -Xem:jet test
> 	FAILED No exception was thrown
> 5. DRLVM opt
> 	$ ./drlvm/build/lnx_em64t_gcc_debug/deploy/jdk/jre/bin/java -Xem:opt test
> 	PASSED Exception was thrown: java.lang.NoSuchMethodError: <init>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.