Re: Java (bytecode) execution speed
- From: JT <jackt123@xxxxxxxxx>
- Date: 30 Apr 2007 10:39:51 -0700
On Apr 30, 5:35 pm, Christian <fakem...@xxxxxx> wrote:
Is there any interpretation going on today in the jvm or is simply
everything compiled to machinecode just in time before execution?
Depends on the JIT. The default JIT from Sun ("HotSpot")
will initially interpret the code. As the interpreter runs, HotSpot
then
analyzes the runtime behavior and try to identify which methods
should be compiled to native code.
See this section on Sun.com:
http://java.sun.com/products/hotspot/whitepaper.html#hotspot
- JT
.
- References:
- Java (bytecode) execution speed
- From: Lee
- Re: Java (bytecode) execution speed
- From: Lee
- Re: Java (bytecode) execution speed
- From: Kai Schwebke
- Re: Java (bytecode) execution speed
- From: Christian
- Java (bytecode) execution speed
- Prev by Date: Re: Java (bytecode) execution speed
- Next by Date: Re: Java (bytecode) execution speed
- Previous by thread: Re: Java (bytecode) execution speed
- Next by thread: Re: Java (bytecode) execution speed
- Index(es):
Relevant Pages
|