You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vera Petrashkova (JIRA)" <ji...@apache.org> on 2007/01/24 08:51:49 UTC

[jira] Commented: (HARMONY-1802) [drlvm][jit] Jitrino.OPT does not handle unresolved method parameters properly

    [ https://issues.apache.org/jira/browse/HARMONY-1802?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12466933 ] 

Vera Petrashkova commented on HARMONY-1802:
-------------------------------------------

This bug should be reoped because Test (which demonstrates the problem of unresolvable parameter type) fails on Jitrino.OPT.

On Windows VM shows debug window, on Linux output is:
classloader.cpp:1521: virtual Class* UserDefinedClassLoader::DoLoadClass(Global_Env*, const String*): Assertion `!exn_raised()' failed.
SIGABRT in VM code.
Stack trace:
        1: ?? (??:-1)
        2: raise (??:-1)
        3: ?? (??:-1)
        4: abort (??:-1)
<end of stack trace>


> [drlvm][jit] Jitrino.OPT does not handle unresolved method parameters properly
> ------------------------------------------------------------------------------
>
>                 Key: HARMONY-1802
>                 URL: https://issues.apache.org/jira/browse/HARMONY-1802
>             Project: Harmony
>          Issue Type: Bug
>            Reporter: Mikhail Fursov
>         Assigned To: Geir Magnusson Jr
>         Attachments: HARMONY-1802.diff
>
>
> Jitrino.OPT does not handle unresolved method parameters properly. Here is the testcase.
> compile this code:
> public class Test {
> public static void main(String[] args) {
> foo(null);
> }
> static void foo(X x) {}
> }
> class X {
> }
> delete X.class file and run the test with -Xem:opt cmdline option.
> The same problem occurs if class X is exception handler parameter.

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