Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 35815 invoked from network); 10 Oct 2006 02:49:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 Oct 2006 02:49:03 -0000 Received: (qmail 56157 invoked by uid 500); 10 Oct 2006 02:49:02 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 56124 invoked by uid 500); 10 Oct 2006 02:49:02 -0000 Mailing-List: contact harmony-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-commits@incubator.apache.org Received: (qmail 56113 invoked by uid 99); 10 Oct 2006 02:49:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Oct 2006 19:49:02 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 Oct 2006 19:49:00 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id B27807142E1 for ; Mon, 9 Oct 2006 19:48:22 -0700 (PDT) Message-ID: <23070447.1160448502726.JavaMail.root@brutus> Date: Mon, 9 Oct 2006 19:48:22 -0700 (PDT) From: "Vladimir Ivanov (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Commented: (HARMONY-1662) [drlvm][exception] unhandled exception leads to 'VM Crashed!' message In-Reply-To: <15457717.1159845980520.JavaMail.root@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/HARMONY-1662?page=comments#action_12441038 ] Vladimir Ivanov commented on HARMONY-1662: ------------------------------------------ Seems, I'm a lucky man. I can reproduce it on my winXP: C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . test Exception in thread "main" java.lang.Exception: Hello at test.main(test.java:3) C:\tmp\tmp17>C:\harmony\drlvm1.5\build\win_ia32_msvc_debug\deploy\jre\bin\java -Dvm.assert_dialog=false -cp . -showversion test Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. java version "1.5.0" pre-alpha : not complete or compatible svn = r454586, (Oct 10 2006), Windows/ia32/msvc 1310, debug build http://incubator.apache.org/harmony ...VM Crashed! Windows reported exception: ACCESS_VIOLATION Registers: EAX: 0x00000674, EBX: 0x00421ee8, ECX: 0x0041df88, EDX=0x00000005 ESI: 0x0333ff18, EDI: 0x02b0d168, ESP: 0x0333ff14, EBP=0x0333ff30 EIP: 0x10005ca8 SEH handler: shutdown error...VM Crashed! Windows reported exception: ACCESS_VIOLATION Registers: EAX: 0x00000000, EBX: 0x7c97e4a0, ECX: 0x0041ded8, EDX=0x00000000 ESI: 0x0333f918, EDI: 0x0333f9d8, ESP: 0x0333f918, EBP=0x0333f91c EIP: 0x005f0943 SEH handler: too many shutdown errors java/lang/Exception : Hello at test.main (test.java: 3) C:\tmp\tmp17>C:\harmony\drlvm1.5\build\win_ia32_msvc_release\deploy\jre\bin\java -Dvm.assert_dialog=false -cp . -showversion test Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. java version "1.5.0" pre-alpha : not complete or compatible svn = r454586, (Oct 10 2006), Windows/ia32/msvc 1310, release build http://incubator.apache.org/harmony ...VM Crashed! Windows reported exception: ACCESS_VIOLATION Registers: EAX: 0x00000674, EBX: 0x0041fec0, ECX: 0x0041fed0, EDX=0x00000005 ESI: 0x00000005, EDI: 0x0041fe20, ESP: 0x0291ff44, EBP=0x0291ff80 EIP: 0x10003f9b SEH handler: shutdown error...VM Crashed! Windows reported exception: ACCESS_VIOLATION Registers: EAX: 0x00000000, EBX: 0x0291faac, ECX: 0x0041fe20, EDX=0x00ea0608 ESI: 0x024664d0, EDI: 0x02466508, ESP: 0x0291fa8c, EBP=0x0291fb10 EIP: 0x0057a3c6 SEH handler: too many shutdown errors java/lang/Exception : Hello at test.main (test.java: 3) C:\tmp\tmp17> > [drlvm][exception] unhandled exception leads to 'VM Crashed!' message > --------------------------------------------------------------------- > > Key: HARMONY-1662 > URL: http://issues.apache.org/jira/browse/HARMONY-1662 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Reporter: Vladimir Ivanov > > On win platform unhandled exception leads to 'VM Crashed!' message. > ============= test.java ================== > public class test { > public static void main(String[] args) throws Exception { > throw new Exception("Hello"); > } > } > ====================================== > Output: > C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . test > Exception in thread "main" java.lang.Exception: Hello > at test.main(test.java:3) > C:\tmp\tmp17>C:\harmony\drlvm1.5\build\win_ia32_msvc_debug\deploy\jre\bin\java -Dvm.assert_dialog=false -cp . -showversion test > Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. > java version "1.5.0" > pre-alpha : not complete or compatible > svn = r452292, (Oct 3 2006), Windows/ia32/msvc 1310, debug build > http://incubator.apache.org/harmony > ...VM Crashed! > Windows reported exception: ACCESS_VIOLATION > Registers: > EAX: 0x00000674, EBX: 0x00421ee8, ECX: 0x0041df80, EDX=0x00000005 > ESI: 0x0332ff1c, EDI: 0x00000020, ESP: 0x0332ff18, EBP=0x0332ff34 > EIP: 0x10005d48 > SEH handler: shutdown error...VM Crashed! > Windows reported exception: ACCESS_VIOLATION > Registers: > EAX: 0x00000000, EBX: 0x7c97e4a0, ECX: 0x02b2dce0, EDX=0x00000000 > ESI: 0x0332f928, EDI: 0x0332f9e8, ESP: 0x0332f928, EBP=0x0332f92c > EIP: 0x005eea13 > SEH handler: too many shutdown errorsJNI.ExceptionDescribe: java/lang/Exception: > java/lang/Exception : Hello > at test.main (test.java: 3) > Error occured while running starter class: Exception left unhandled before destroying VM > JNI.ExceptionDescribe: java/lang/Exception: > java/lang/Exception : Hello > at test.main (test.java: 3) > Error occured in starter class shutdown() method. -- 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