Hi.
What JVM are you using? The Sun JVM
post 1.2 uses the HotSpot JVM,
which does adaptive native compiling,
but does not declare itself with a JIT,
because differently from the previous
generation of JIT its activitity is mostly
transparent. You should see something like:
>java -version
java version "1.3.0_01"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0_01)
Java HotSpot(TM) Client VM (build 1.3.0_01, mixed mode)
Btw, mixed mode means: interpretation plus adaptive
native compilation of "hotspots".
What is true is that the HotSpot JVM
has a client and server version,
AFAIK there is no server version
from sun for Linux. Both versions
do native compilation but with
different trade-offs wrt maximum
optimization and interactive response.
regards, Samuele Pedroni.
----- Original Message -----
From: Syver Enstad <syv...@on...>
To: <jyt...@li...>
Sent: Friday, January 18, 2002 6:23 AM
Subject: [Jython-users] JIT under jython, how to enable
>
> I've tried setting the option in the registry to true, but jython
> still says JIT: null when I am starting it.
>
> --
>
> Vennlig hilsen
>
> Syver Enstad
>
>
>
> _______________________________________________
> Jython-users mailing list
> Jyt...@li...
> https://lists.sourceforge.net/lists/listinfo/jython-users
>
|