Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 81007 invoked from network); 1 Jan 2008 12:15:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Jan 2008 12:15:06 -0000 Received: (qmail 11063 invoked by uid 500); 1 Jan 2008 12:14:55 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 11047 invoked by uid 500); 1 Jan 2008 12:14:54 -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 11038 invoked by uid 99); 1 Jan 2008 12:14:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jan 2008 04:14:54 -0800 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, 01 Jan 2008 12:14:51 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 0F3A0714251 for ; Tue, 1 Jan 2008 04:14:43 -0800 (PST) Message-ID: <8396342.1199189683050.JavaMail.jira@brutus> Date: Tue, 1 Jan 2008 04:14:43 -0800 (PST) From: "Xiao-Feng Li (JIRA)" To: commits@harmony.apache.org Subject: [jira] Updated: (HARMONY-5367) [drlvm][gc] implementation of semi-space GC in gc_gen In-Reply-To: <7073455.1199177023784.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-5367?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Xiao-Feng Li updated HARMONY-5367: ---------------------------------- Attachment: 01-semi-space.patch 01 Patch attached. Apply to working_vm/vm/gc_gen, remove files gc_for_barrier.[h|cpp] under gc_gen/gen/ (if there are). Then build. Use command line option: -XX:gc.minor_algorithm=MINOR_NONGEN_SEMISPACE_POOL to invoke it. Option -XX:gc.tospace_size= can be used to specify tospace size. I use -XX:gc.tospace_size=32M normally. If it's not given, the default tospace_size is 1/8 of nursery size, which is usually bigger than necessary. > [drlvm][gc] implementation of semi-space GC in gc_gen > ----------------------------------------------------- > > Key: HARMONY-5367 > URL: https://issues.apache.org/jira/browse/HARMONY-5367 > Project: Harmony > Issue Type: New Feature > Components: DRLVM > Environment: all DRLVM supported environments > Reporter: Xiao-Feng Li > Assignee: Xiao-Feng Li > Attachments: 01-semi-space.patch > > > This JIRA puts the patch(es) for a new GC algorithm in GCv5. The new GC is an adaptive semi-space GC. It's adaptive because it its space sizes are determined at runtime for best performance. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.