Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 35902 invoked from network); 29 Feb 2008 07:45:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Feb 2008 07:45:49 -0000 Received: (qmail 58487 invoked by uid 500); 29 Feb 2008 07:45:44 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 58471 invoked by uid 500); 29 Feb 2008 07:45:44 -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 58462 invoked by uid 99); 29 Feb 2008 07:45:44 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Feb 2008 23:45:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Feb 2008 07:45:18 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 8C6A8234C060 for ; Thu, 28 Feb 2008 23:44:51 -0800 (PST) Message-ID: <1156818638.1204271091574.JavaMail.jira@brutus> Date: Thu, 28 Feb 2008 23:44:51 -0800 (PST) From: "Mikhail Fursov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Resolved: (HARMONY-5127) [drlvm][opt] Performance improvement for integer-to-float conversion In-Reply-To: <9100571.1195131824181.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-5127?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Mikhail Fursov resolved HARMONY-5127. ------------------------------------- Resolution: Fixed > [drlvm][opt] Performance improvement for integer-to-float conversion > -------------------------------------------------------------------- > > Key: HARMONY-5127 > URL: https://issues.apache.org/jira/browse/HARMONY-5127 > Project: Harmony > Issue Type: Improvement > Components: DRLVM > Environment: All > Reporter: Evgueni Brevnov > Assignee: Mikhail Fursov > Priority: Minor > Attachments: int2float.diff, int2float.diff.v2 > > > Currently jitrino OPT optimizes float-to-integer conversion by injecting (inlining) required code into managed method. Unfortunatelly it lacks such optimization for opposite (integer-to-float) conversion. Such optimization may have noticable effect on SciMark workload. > I also noticed that DRLVM helper VM_RT_F2I generates wrapper code (LIL stub) around C function which implements float-to-integer conversion. It makes sense to get rid of such wrapper and call C function directly. (or remove this helper at all and let jitrino implement it) > Thanks > Evgueni -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.