Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 30900 invoked from network); 24 Apr 2007 13:36:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 24 Apr 2007 13:36:37 -0000 Received: (qmail 94318 invoked by uid 500); 24 Apr 2007 13:36:43 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 94273 invoked by uid 500); 24 Apr 2007 13:36:42 -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 94255 invoked by uid 99); 24 Apr 2007 13:36:42 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 24 Apr 2007 06:36:42 -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, 24 Apr 2007 06:36:35 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 90A4771406A for ; Tue, 24 Apr 2007 06:36:15 -0700 (PDT) Message-ID: <10269314.1177421775589.JavaMail.jira@brutus> Date: Tue, 24 Apr 2007 06:36:15 -0700 (PDT) From: "Mikhail Fursov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-3745) [drlvm][gc][jit] server.emconf should be unified both for gc_cc and gc_gen In-Reply-To: <560115.1177421317951.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-3745?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12491283 ] Mikhail Fursov commented on HARMONY-3745: ----------------------------------------- The problem is where to keep Java helper's classes and who will add them into bootstrap classpath. Today we keep GC_GEN and GC_CC Java classes in separate JARs and both of them are in bootstrap classpath. > [drlvm][gc][jit] server.emconf should be unified both for gc_cc and gc_gen > -------------------------------------------------------------------------- > > Key: HARMONY-3745 > URL: https://issues.apache.org/jira/browse/HARMONY-3745 > Project: Harmony > Issue Type: Improvement > Components: DRLVM > Reporter: Sergey Kuksenko > > Currently, it is impossible to use -Xem:server mode in case of gc_gen turn on. > server.emconf should be modified for gc_gen usage. > Modification is simple -change all "gc_cc" substrings into "gc_gen". But it is more convinient to have unified emconf file in both cases. > All gc versions dependences are related to allocation helpers inline. > 1) setup class name where allocation helpers are existed. > -XDjit.SD2_OPT.arg.optimizer.inline_helpers.newObj_className=org/apache/harmony/drlvm/gc_cc/GCHelper > gc_cc's helpers are in "gc_cc" package and gc_gen's in "gc_gen" respectively. > Usage "gc" package will solve problem here. > 2) other two prorties set up which class from which jar-file should be used. > -Dvm.components.gc_cc.startupclass=org.apache.harmony.drlvm.gc_cc.GCHelper > -XDvm.component.classpath.gc_cc=gc_cc.jar > Storing such properties in emconf file is a source of misconfigurations and errors. > Component related properties should be set at moment of library initialization by the library itself. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.