Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 82848 invoked from network); 2 Oct 2007 03:51:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Oct 2007 03:51:43 -0000 Received: (qmail 90326 invoked by uid 500); 2 Oct 2007 03:51:33 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 90309 invoked by uid 500); 2 Oct 2007 03:51: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 90300 invoked by uid 99); 2 Oct 2007 03:51:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Oct 2007 20:51:33 -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, 02 Oct 2007 03:51:41 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 988C371420F for ; Mon, 1 Oct 2007 20:50:50 -0700 (PDT) Message-ID: <26006298.1191297050615.JavaMail.jira@brutus> Date: Mon, 1 Oct 2007 20:50:50 -0700 (PDT) From: "Pavel Ozhdikhin (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-2607) [drlvm][jit][opt][performance] improve optimizer to simplify arithmetic calculations involving loops In-Reply-To: <22269470.1165845864707.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-2607?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12531684 ] Pavel Ozhdikhin commented on HARMONY-2607: ------------------------------------------ One of the possible solutions could be a caching of the return value for the methods that don't have side effects. > [drlvm][jit][opt][performance] improve optimizer to simplify arithmetic calculations involving loops > ---------------------------------------------------------------------------------------------------- > > Key: HARMONY-2607 > URL: https://issues.apache.org/jira/browse/HARMONY-2607 > Project: Harmony > Issue Type: Improvement > Components: DRLVM > Environment: Windows/IA32 > Reporter: Pavel Ozhdikhin > Priority: Minor > Attachments: DoubleTest.java, Test.java > > > In the attached test arithmetical calculations and loops may be safely eliminated in both methods test1() and test2(). > Indeed , the results below show that JRockit 1.5 can eliminate them - it faster executes the first run and don't spend time at all for a second: > ================================ > JRockit 1.5 results: > >C:\jrockit-jdk1.5.0\bin\java.exe -version > java version "1.5.0" > Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64) > BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy single > parpar)) > >C:\jrockit-jdk1.5.0\bin\java.exe Test > 1st run: 203 > 2nd run: 0 > ================================ > DRLVM results: > >C:\win_ia32_msvc_release\deploy\jre\bin\java.exe -version > 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 = r483842, (Dec 11 2006), Windows/ia32/msvc 1310, release build > http://incubator.apache.org/harmony > C:\win_ia32_msvc_release\deploy\jre\bin\java.exe Test > 1st run: 19734 > 2nd run: 14828 > ================================ > The optimizer should be able to eliminate such code if it does not have ane side-effect. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.