Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 24008 invoked from network); 5 Feb 2007 12:42:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Feb 2007 12:42:26 -0000 Received: (qmail 70022 invoked by uid 500); 5 Feb 2007 12:42:33 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 69928 invoked by uid 500); 5 Feb 2007 12:42:33 -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 69919 invoked by uid 99); 5 Feb 2007 12:42:33 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Feb 2007 04:42:33 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= 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; Mon, 05 Feb 2007 04:42:26 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E73FC7142B5 for ; Mon, 5 Feb 2007 04:42:05 -0800 (PST) Message-ID: <23293279.1170679325941.JavaMail.jira@brutus> Date: Mon, 5 Feb 2007 04:42:05 -0800 (PST) From: "George Timoshenko (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-2056) [drlvm][jit] Jitrino.OPT's bpp.version=1 does not insert a polling code to every backedge 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-2056?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] George Timoshenko updated HARMONY-2056: --------------------------------------- Attachment: HARMONY-2056.patch the alternative fix of code annotations > [drlvm][jit] Jitrino.OPT's bpp.version=1 does not insert a polling code to every backedge > ----------------------------------------------------------------------------------------- > > Key: HARMONY-2056 > URL: https://issues.apache.org/jira/browse/HARMONY-2056 > Project: Harmony > Issue Type: Bug > Components: DRLVM > Reporter: Mikhail Fursov > Assigned To: Alexey Varlamov > Priority: Minor > Attachments: 2056.fix, HARMONY-2056.patch > > > This bug is not critical, because it's about bbp.version=1 mode and default mode is bbp.version=6. > I found this problem while debugging more critical BBP bug and tried version=1 for my temporary needs. > In BBP documentation (in sources) I found: > // version of BBPolling: > // 0 - must be discarded in runImpl() > // 1 - insert bbpCFG at all backedges > > So I expecting to have BBP code generated for this test: > public class BBPBug { > public static void main(String[] args) { > new BBPBug().foo(); > } > void foo() { > int i=0; > while (i<100) { > synchronized (this) { > i++; > } > } > } > } > The BBP code is not generated. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.