Just-In-Time

What Does Just-In-Time Mean?

Just-in-time (JIT) is a term used to describe an action such as compilation or object activation only at the time when it becomes necessary.This term is associated mostly with software compilation. JIT compilation is mainly designed for high-speed code execution and support for multiple platforms.

Advertisements

JIT compilation originated from the need for a compiler to assume responsibilities in addition to just conversion to object code (machine instructions) from a high-level language. JIT compilers facilitate portability to multiple operating systems and hardware platforms. Languages such as Smalltalk, Pascal Java and C# support JIT compilation.

Techopedia Explains Just-In-Time

There are three types of JIT compilers:

  1. Pre-JIT: Compiles the entire source code during compilation and is used at the time of deployment.
  2. Econo-JIT:Compiles methods that are called during run time.
  3. Normal-JIT: Compiles only the methods called during run time (at the instant of their first call) and stores the compiled code in cache to be used in subsequent calls.

The disadvantages to using JIT compilation are additional startup time during the first call, increased use of cache memory and the inability to share code across multiple processes.

Ahead-of-time (AOT) compilation can overcome the issues faced with JIT compilation. It precompiles the entire Microsoft intermediate language image into machine code without the need for runtime compilation and saves the compiled code to a file on a disk. The compiled code is only used when there is a need for faster startup of the application.

Adaptive optimization is an alternative to JIT compilation that is used in Java.

Advertisements

Related Terms

Latest Programming Languages Terms

Related Reading

Margaret Rouse

Margaret Rouse is an award-winning technical writer and teacher known for her ability to explain complex technical subjects to a non-technical, business audience. Over the past twenty years her explanations have appeared on TechTarget websites and she's been cited as an authority in articles by the New York Times, Time Magazine, USA Today, ZDNet, PC Magazine and Discovery Magazine.Margaret's idea of a fun day is helping IT and business professionals learn to speak each other’s highly specialized languages. If you have a suggestion for a new definition or how to improve a technical explanation, please email Margaret or contact her…