Re: Java (bytecode) execution speed
- From: Chris Smith <cdsmith@xxxxxxx>
- Date: Mon, 30 Apr 2007 11:42:28 -0600
Christian <fakemail@xxxxxx> wrote:
Is there any interpretation going on today in the jvm or is simply
everything compiled to machinecode just in time before execution?
Modern JVMs do both; the performance-critical stuff is JIT'ed, but a lot
of one-off initialization code will be interpreted. At one time, JIT
compilers would frequently run before any code was executed; this was
changed because mixed mode (some interpreting, some compiling) reduces
the perceived start-up time of applications.
--
Chris Smith
.
- 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: The Scale problem
- Previous by thread: Re: Java (bytecode) execution speed
- Next by thread: Re: Java (bytecode) execution speed
- Index(es):
Relevant Pages
|
|