You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Pavel Afremov (JIRA)" <ji...@apache.org> on 2006/10/31 14:28:17 UTC

[jira] Updated: (HARMONY-2018) [DRLVM] Fix support of SOE and other runtime exceptions in VM native code

     [ http://issues.apache.org/jira/browse/HARMONY-2018?page=all ]

Pavel Afremov updated HARMONY-2018:
-----------------------------------

    Attachment: Fix-support-of-SOE-and-other-runtime-exceptions-in-VM-native-code.txt

Fix support of SOE and other runtime exceptions in VM native code.

The fix consists in:
    enable lazy exception scheme,
    remove fake assertions,
    provide separate way of throwing exception for native code from exn_athrow_regs,
    add test excetion.FinalizeStackTest to smoke tests to check this changes.


> [DRLVM] Fix support of SOE and other runtime exceptions in VM native code
> -------------------------------------------------------------------------
>
>                 Key: HARMONY-2018
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2018
>             Project: Harmony
>          Issue Type: Bug
>          Components: DRLVM
>            Reporter: Pavel Afremov
>         Attachments: Fix-support-of-SOE-and-other-runtime-exceptions-in-VM-native-code.txt
>
>
> The following test shows that runtime exceptions in VM native code aren't processed correctly.
> package exception;
> class FinalizeStackTest {
>     private static final int MAX_DEPTH = 1000000;
>     FinalizeStackTest(int c) {
>         if (c > 0) {
>             new FinalizeStackTest(c - 1);
>         } else {
>             System.out.println("PASS");
>         }
>     }
>     protected void finalize() {
>         / empty
>     }
>     public static void main(String[] args) {
>         try {
>             new FinalizeStackTest(MAX_DEPTH);
>             System.out.println("FAIL");
>         } catch (StackOverflowError soe) {
>             System.out.println("PASS : " + soe);
>         } catch (Throwable th) {
>             System.out.println("FAIL");
>         }
>     }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira