Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 54317 invoked from network); 21 Jul 2008 12:32:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 21 Jul 2008 12:32:22 -0000 Received: (qmail 38752 invoked by uid 500); 21 Jul 2008 12:32:22 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 38732 invoked by uid 500); 21 Jul 2008 12:32:22 -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 38723 invoked by uid 99); 21 Jul 2008 12:32:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 21 Jul 2008 05:32:22 -0700 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; Mon, 21 Jul 2008 12:31:36 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id C60E8234C173 for ; Mon, 21 Jul 2008 05:31:31 -0700 (PDT) Message-ID: <1705756388.1216643491810.JavaMail.jira@brutus> Date: Mon, 21 Jul 2008 05:31:31 -0700 (PDT) From: "Sian January (JIRA)" To: commits@harmony.apache.org Subject: [jira] Resolved: (HARMONY-5920) [classlib][pack200][performance] ArrayList usage optimization In-Reply-To: <1168469268.1216457911685.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-5920?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sian January resolved HARMONY-5920. ----------------------------------- Resolution: Fixed Fix Version/s: 5.0M7 Patch applied at r678386. Please check that it was applied as you expected. > [classlib][pack200][performance] ArrayList usage optimization > ------------------------------------------------------------- > > Key: HARMONY-5920 > URL: https://issues.apache.org/jira/browse/HARMONY-5920 > Project: Harmony > Issue Type: Improvement > Environment: Latest pack200 > Reporter: Aleksey Shipilev > Assignee: Sian January > Fix For: 5.0M7 > > Attachments: pack200-arraylist-v3.patch > > > 1. Microbenchmark on Sun 1.6.0_05 shows that iterating ArrayList via iterators is 3x slower than iterating via get(). This issue eliminates iterator() in favor of get(). > 2. ArrayList-s are frequently instantiated with default capacity, even when the storage size is known. This issue sets the default capacities where applicable. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.