When does JIT compilation occur and at what level?

  • Thread starter Chromium
  • Start date
In summary, JIT (Just-in-Time) compilation can occur in various ways, not just when translating an intermediate form of a program into native code. Examples include compiling and executing one line of source code at a time, or JITing at the subroutine level or higher. This method can improve performance by keeping already-compiled classes and modules in memory, reducing the need for constant compilation.
  • #1
Chromium
56
0
Does "JIT" only occur when translating some intermediate form of the program into native code? Or can it also occur in other ways? For example, say you have a compiler that kind of acts like an interpreter in that for each line it compiles that source code into native code and immediately after compiling that line it executes it.

So for each line, you go through these steps:
1) Compile
2) Execute

To me it seems that something like this would be slow because constantly compiling & executing seems like a pretty inefficient way of computing. But, it was the only example I could think of.

Thanks,

--Jonathan
 
Technology news on Phys.org
  • #2
Chromium,

It would be very inefficient to "compile" one line of code at a time. Instead, entire modules or classes are just-in-time compiled before being used.

- Warren
 
  • #3
Also, already-compiled classes and modules are kept loaded (in executable form) in memory (as long as enough memory is available) so that if they are called again, no compilation is needed. This causes programs to "warm up"--once most parts of a program have been JIT-compiled, it runs about as fast as a native executable that is entirely pre-compiled.
 
  • #4
JITing usually occurs at the subroutine level or higher. Compilation (or interpretation) produces an intermediate form (a tree usually) that represents the source statements. It is common for these syntax trees to span entire subroutines, that way they can refer to each other. For example an 'if' statement will refer to the 'else' part. Therefore when compiling the whole tree is done at once. JITing (in the .NET or Java sense) refers to taking an intermediate form (IL or byte codes) and compiling them into machine code. At this level there is no source code as it has already been compiled away.
 

Related to When does JIT compilation occur and at what level?

What is just-in-time compilation?

Just-in-time compilation (JIT) is a method used by programming language compilers to improve the runtime performance of a program. Instead of compiling the entire codebase before execution, JIT compilers will compile code segments on demand, as needed during program execution. This allows for faster performance by reducing the amount of code that needs to be loaded into memory at once.

How does just-in-time compilation work?

In JIT compilation, the compiler will analyze and translate sections of code into machine code during runtime. This is in contrast to traditional compilation methods where the entire codebase is translated into machine code before execution. JIT compilers may also optimize the translated code based on runtime information, further improving performance.

What are the benefits of just-in-time compilation?

Just-in-time compilation can result in improved runtime performance, as it allows for code to be compiled and optimized on demand. This can also reduce the memory footprint of a program, as only the necessary code segments are loaded into memory at a given time.

Are there any downsides to just-in-time compilation?

One potential downside of JIT compilation is the increased overhead during program execution, as the compiler needs to analyze and translate code in real-time. This can also lead to longer startup times for programs.

Which programming languages use just-in-time compilation?

JIT compilation is commonly used in object-oriented languages such as Java and C#, as well as dynamic languages like JavaScript and Python. However, not all languages utilize JIT compilation, and some may use a mix of JIT and traditional compilation methods.

Similar threads

Replies
6
Views
1K
  • Programming and Computer Science
Replies
29
Views
2K
  • Programming and Computer Science
2
Replies
59
Views
5K
  • Programming and Computer Science
Replies
6
Views
1K
  • Programming and Computer Science
Replies
17
Views
1K
  • Programming and Computer Science
2
Replies
65
Views
3K
  • Programming and Computer Science
Replies
6
Views
1K
  • Programming and Computer Science
2
Replies
39
Views
3K
  • Programming and Computer Science
Replies
3
Views
2K
Back
Top