You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vasily Zakharov (JIRA)" <ji...@apache.org> on 2007/06/20 15:19:26 UTC

[jira] Closed: (HARMONY-2614) [drlvm][jit] Line numbers in stack trace are incorrect

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

Vasily Zakharov closed HARMONY-2614.
------------------------------------

    Resolution: Cannot Reproduce

Confirmed, I can't reproduce it also.

Closing the issue as 'Cannot Reproduce'.


> [drlvm][jit] Line numbers in stack trace are incorrect
> ------------------------------------------------------
>
>                 Key: HARMONY-2614
>                 URL: https://issues.apache.org/jira/browse/HARMONY-2614
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>            Reporter: Vasily Zakharov
>            Priority: Minor
>         Attachments: LineNumberTest.java
>
>
> When JIT is enabled and exception is thrown in some method, the line number for the exception in incorrect: in some cases, it points not to the line where
> exception has occured, but to the first line of that method.
> The code to reproduce is attached, here's the output. Note the line numbers for RI and DRLVM interpreter (11, 23, 35) and DRLVM JIT (11, 19, 31).
> RI:
> C:\> java LineNumberTest
> Exception in thread "main" java.lang.RuntimeException
>         at LineNumberTest.check2(LineNumberTest.java:11)
>         at LineNumberTest.check1(LineNumberTest.java:23)
>         at LineNumberTest.main(LineNumberTest.java:35)
> DRLVM:
> C:\> java -Xint LineNumberTest
> Uncaught exception in main:
> java.lang.RuntimeException
>         at LineNumberTest.check2(LineNumberTest.java:11)
>         at LineNumberTest.check1(LineNumberTest.java:23)
>         at LineNumberTest.main(LineNumberTest.java:35)
> C:\> java LineNumberTest
> Uncaught exception in main:
> java.lang.RuntimeException
>         at LineNumberTest.check2(LineNumberTest.java:11)
>         at LineNumberTest.check1(LineNumberTest.java:19)
>         at LineNumberTest.main(LineNumberTest.java:31)

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