Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 89852 invoked from network); 6 Oct 2006 06:33:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Oct 2006 06:33:42 -0000 Received: (qmail 15877 invoked by uid 500); 6 Oct 2006 06:33:40 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 15829 invoked by uid 500); 6 Oct 2006 06:33:40 -0000 Mailing-List: contact harmony-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-dev@incubator.apache.org Received: (qmail 15818 invoked by uid 99); 6 Oct 2006 06:33:40 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Oct 2006 23:33:40 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [216.86.168.179] ([216.86.168.179:4359] helo=mxout-04.mxes.net) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id D5/74-16439-2C8F5254 for ; Thu, 05 Oct 2006 23:33:39 -0700 Received: from [192.168.1.102] (unknown [67.86.14.213]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id C529EA3202 for ; Fri, 6 Oct 2006 02:33:35 -0400 (EDT) Message-ID: <4525F8C1.5050109@pobox.com> Date: Fri, 06 Oct 2006 02:33:37 -0400 From: "Geir Magnusson Jr." Reply-To: geir@pobox.com User-Agent: Thunderbird 1.5.0.7 (Macintosh/20060909) MIME-Version: 1.0 To: harmony-dev@incubator.apache.org Subject: Re: [drlvm] too tired, need help References: <4525EB2E.6020301@pobox.com> <4dd1f3f00610052257w7fad9e8eq86d5111cab7d5ee5@mail.gmail.com> <4525F0BE.50507@pobox.com> <4525F3C3.6010902@pobox.com> <4525F60C.3030608@pobox.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N And it would only introduce a few, as far as I can tell, as only jni.cpp and vm_main.cpp actually include init.h, and therefore are the only files that depend on that global geir Evgueni Brevnov wrote: > Geir, > > Please don't do that until HARMONY-1582 integration. It can introduce > many conflicts. > > Tnanks in advance. > Evgueni > > On 10/6/06, Geir Magnusson Jr. wrote: >> I got it - thanks to Pavel. >> >> There's an extern in init.h, and it's declared in vm_main.cpp. >> >> Would anyone mind if I renamed it something less innocuous like >> >> global_env >> vm_global_env >> >> Something that gives the reader the hint that it's not a local var. >> >> geir >> >> >> Geir Magnusson Jr. wrote: >> > Thank you. >> > >> > How does the compiler know this when compiling jni.cpp? is there an >> > extern defn somewhere? >> > >> > geir >> > >> > Pavel Rebriy wrote: >> >> File vm/vmcore/src/init/vm_main.cpp, line 68. >> >> >> >> Global_Env env(m, properties); >> >> >> >> On 06/10/06, Geir Magnusson Jr. wrote: >> >>> >> >>> I know the type. The question is where is that variable "env" >> declared >> >>> and set? >> >>> >> >>> geir >> >>> >> >>> >> >>> >> >>> Weldon Washburn wrote: >> >>> > The first parameter to create_vm() is of type Global_Env. >> >>> > >> >>> > Global_Env is defined in environment.h >> >>> > >> >>> > vm_init() in vm_init.cpp initializes a bunch of Globla_Env's >> members. >> >>> > >> >>> > >> >>> > >> >>> > >> >>> > On 10/5/06, Geir Magnusson Jr. wrote: >> >>> >> >> >>> >> I'm trying to trace through the boot sequence chasing some boot >> >>> >> classpath property thing (luniglob sets it, and I can't figure >> how it >> >>> >> gets to us...), and I'm too tired, too dumb, or both to figure >> this >> >>> out. >> >>> >> >> >>> >> Launcher calls JNI_CreateJavaVM. In our >> vmcore/src/jni/jni.cpp, we >> >>> >> define it, and it is : >> >>> >> >> >>> >> VMEXPORT jint >> >>> >> JNICALL JNI_CreateJavaVM(JavaVM **p_vm, JNIEnv **p_env, void >> >>> *vm_args) >> >>> { >> >>> >> >> >>> >> static int called = 0; >> >>> >> >> >>> >> init_log_system(); >> >>> >> TRACE2("jni", "CreateJavaVM called"); >> >>> >> if (called) { >> >>> >> ASSERT(0, "Not implemented"); >> >>> >> return JNI_ERR; >> >>> >> } else { >> >>> >> create_vm(&env, (JavaVMInitArgs *)vm_args); >> >>> >> *p_env = &jni_env; >> >>> >> *p_vm = jni_env.vm; >> >>> >> return JNI_OK; >> >>> >> } >> >>> >> } >> >>> >> >> >>> >> For the life of me, I can't figure out where "env" is defined >> or set. >> >>> >> create_vm() uses it... >> >>> >> >> >>> >> Can anyone give me a hint? Eclipse's C++ plugin seems to be >> useless >> >>> >> here... >> >>> >> >> >>> >> geir >> >>> >> >> >>> >> >> --------------------------------------------------------------------- >> >>> >> Terms of use : http://incubator.apache.org/harmony/mailing.html >> >>> >> To unsubscribe, e-mail: >> harmony-dev-unsubscribe@incubator.apache.org >> >>> >> For additional commands, e-mail: >> >>> harmony-dev-help@incubator.apache.org >> >>> >> >> >>> >> >> >>> > >> >>> > >> >>> >> >>> --------------------------------------------------------------------- >> >>> Terms of use : http://incubator.apache.org/harmony/mailing.html >> >>> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org >> >>> For additional commands, e-mail: >> harmony-dev-help@incubator.apache.org >> >>> >> >>> >> >> >> >> >> > >> > --------------------------------------------------------------------- >> > Terms of use : http://incubator.apache.org/harmony/mailing.html >> > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org >> > For additional commands, e-mail: harmony-dev-help@incubator.apache.org >> > >> >> --------------------------------------------------------------------- >> Terms of use : http://incubator.apache.org/harmony/mailing.html >> To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org >> For additional commands, e-mail: harmony-dev-help@incubator.apache.org >> >> > > --------------------------------------------------------------------- > Terms of use : http://incubator.apache.org/harmony/mailing.html > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > For additional commands, e-mail: harmony-dev-help@incubator.apache.org > --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org For additional commands, e-mail: harmony-dev-help@incubator.apache.org