Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 34729 invoked from network); 8 May 2007 09:55:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 May 2007 09:55:37 -0000 Received: (qmail 1260 invoked by uid 500); 8 May 2007 09:55:43 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 1216 invoked by uid 500); 8 May 2007 09:55:43 -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 1207 invoked by uid 99); 8 May 2007 09:55:43 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 08 May 2007 02:55:43 -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; Tue, 08 May 2007 02:55:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A23C6714066 for ; Tue, 8 May 2007 02:55:15 -0700 (PDT) Message-ID: <9323667.1178618115662.JavaMail.jira@brutus> Date: Tue, 8 May 2007 02:55:15 -0700 (PDT) From: "Alexey Varlamov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Assigned: (HARMONY-2113) [drlvm][jit][opt] Jitrino.OPT loops infinitely in inlineJSR() when an exception from a subroutine (JSR->RET) is expected 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-2113?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexey Varlamov reassigned HARMONY-2113: ---------------------------------------- Assignee: Alexey Varlamov > [drlvm][jit][opt] Jitrino.OPT loops infinitely in inlineJSR() when an exception from a subroutine (JSR->RET) is expected > ------------------------------------------------------------------------------------------------------------------------ > > Key: HARMONY-2113 > URL: https://issues.apache.org/jira/browse/HARMONY-2113 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Environment: any > Reporter: Egor Pasko > Assigned To: Alexey Varlamov > Priority: Minor > Attachments: ExcInFinallyTest.j, H2113.patch.txt, HARMONY-2113-regtest.patch, HARMONY-2113.patch > > > Jitrino.OPT loops infinitely in inlineJSR() when an exception from a subroutine (JSR->RET) is expected > To reproduce: > * compile the attached hand-crafted Jasmin source ExcInFinallyTest.j: > java -jar jasmin.jar ExcInFinallyTest.j > * run on OPT: > $HARMONY -Xem:opt ExcInFinallyTest > you will get an infinite loop (in compilation). This test passes on Jitrino.JET and interpreter. > If you rebuild Jitrino in debug mode, the following assertion would be caught: > java: /export/users/evpasko/svn/3/trunk/working_vm/vm/jitrino/src/optimizer/FlowGraph.cpp:457: void Jitrino::findNodesInRegion(Jitrino::Node*, Jitrino::Node*, Jitrino::StlBitVector&): Assertion `!inEdges.empty()' failed. > SIGABRT in VM code. > Stack trace: > 1: ?? (??:-1) > 2: abort (??:-1) > 3: __assert_fail (??:-1) > 4: findNodesInRegion (/export/users/evpasko/svn/3/trunk/working_vm/vm/jitrino/src/optimizer/FlowGraph.cpp:458) > 5: inlineJSR (/export/users/evpasko/svn/3/trunk/working_vm/vm/jitrino/src/optimizer/FlowGraph.cpp:572) > 6: inlineJSRs (/export/users/evpasko/svn/3/trunk/working_vm/vm/jitrino/src/optimizer/FlowGraph.cpp:658) > 7: Jitrino::FlowGraph::doTranslatorCleanupPhase(Jitrino::IRManager&) (/export/users/evpasko/svn/3/trunk/working_vm/vm/jitrino/src/optimizer/FlowGraph.cpp:833) > 8: Jitrino::TranslatorSession::postTranslatorCleanup() (/export/users/evpasko/svn/3/trunk/working_vm/vm/jitrino/src/translator/TranslatorIntfc.cpp:77) > [snip] > obviously, the bug is in the subroutine inlining algorithm -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.