Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 43657 invoked from network); 4 Oct 2007 12:10:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Oct 2007 12:10:44 -0000 Received: (qmail 59040 invoked by uid 500); 4 Oct 2007 12:10:33 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 59016 invoked by uid 500); 4 Oct 2007 12:10:32 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 59006 invoked by uid 99); 4 Oct 2007 12:10:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Oct 2007 05:10:32 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Oct 2007 12:10:42 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 837BC71418F for ; Thu, 4 Oct 2007 05:09:52 -0700 (PDT) Message-ID: <26925501.1191499792536.JavaMail.jira@brutus> Date: Thu, 4 Oct 2007 05:09:52 -0700 (PDT) From: "Gregory Shimansky (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-4873) [drlvm][exception] NullPointerException causes SIGSEGV In-Reply-To: <9853564.1190970830626.JavaMail.jira@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 [ https://issues.apache.org/jira/browse/HARMONY-4873?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12532400 ] Gregory Shimansky commented on HARMONY-4873: -------------------------------------------- I wrote another test that shows the cause of the bug. When a hardware exception is thrown, and has to be caught by a native frame, the current implementation on linux doesn't exit from signal context. In the following test exception has to be caught by native code of reflection implementation: import java.lang.reflect.*; public class Test { private void func() { String s = null; s.length(); } public static void main(String args[]) throws IllegalAccessException { Class cl = Test.class; Method m; try { m = Test.class.getDeclaredMethod("func"); } catch (NoSuchMethodException e) { e.printStackTrace(); return; } Test o = new Test(); try { m.invoke(o); } catch (InvocationTargetException e) { e.printStackTrace(); } try { m.invoke(o); } catch (InvocationTargetException e) { e.printStackTrace(); } } } > [drlvm][exception] NullPointerException causes SIGSEGV > ------------------------------------------------------ > > Key: HARMONY-4873 > URL: https://issues.apache.org/jira/browse/HARMONY-4873 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: Debian Linux IA32 > Reporter: Alexei Zakharov > > The following innocent test causes segmentation fault if executed on DRLVM. However, it passes ok on RI and J9. > Test113.java > --- > import java.io.*; > public class Test113 { > static class A implements Serializable { > private final byte[] encoding = null; > protected A() {} > protected Object writeReplace() { > return new String(encoding.clone()); > } > } > public static void main(String argv[]) throws Exception { > ByteArrayOutputStream out = new ByteArrayOutputStream(); > ObjectOutputStream oos = new ObjectOutputStream(out); > A a = new A(); > for (int i = 0; i < 2; i++) { > try { > System.out.println("ITERATION " + i); > oos.writeObject(a); > } catch (NullPointerException e) { > System.out.println("NPE catched"); > } > } > System.out.println("PASS"); > } > } > --- -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.