Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What does a JIT compiler specifically do as opposed to a non-JIT compiler? Can someone give a succinct and easy to understand description?

share|improve this question

7 Answers

up vote 70 down vote accepted

A JIT compiler runs after the program has started and compiles the code (usually bytecode or some kind of VM instructions) on the fly (or just-in-time, as it's called) into a form that's usually faster, typically the host CPU's native instruction set. A JIT has access to dynamic runtime information whereas a standard compiler doesn't and can make better optimizations like inlining functions that are used frequently.

This is in contrast to a traditional compiler that compiles all the code to machine language before the program is first run.

To paraphrase, conventional compilers build the whole program as an EXE file BEFORE the first time you run it. For newer style programs, an assembly is generated with pseudocode (p-code). Only AFTER you execute the program on the OS (e.g., by double-clicking on its icon) will the (JIT) compiler kick in and generate machine code (m-code) that the Intel-based processor or whatever will understand.

share|improve this answer
1  
And in contrast to interpreted code, that begins running the bytecode or VM instructions immediately without delay, but will run the instructions slower than machine language. – Aaron Sep 18 '08 at 19:53
A JIT is often used with interpreted code to convert it to machine language but yes, purely interpreted code (without any JITting) is slow. Even Java bytecode without a JITter is really slow. – Mark Cidade Sep 18 '08 at 22:07
10  
The target doesn't have to be machine code, though. JRuby has a JIT compiler which will compile Ruby sourcecode to Java bytecode after a couple of invocations. Then, after another couple of invocations, the JVM JIT compiler kicks in and compiles the bytecode to native code. – Jörg W Mittag Sep 19 '08 at 2:38
Good example: the TraceMonkey engine. A JIT compiler for javascript now included in Firefox. wiki.mozilla.org/JavaScript:TraceMonkey – Brian Clozel Apr 16 '09 at 9:36
2  
It is worth noting that, as alluded to by Jörg, JIT is not necessarily invoked right away. Often, code will be interpreted until it is determined that it will be worth JITting. Since JITting can introduce delays, it may be faster to NOT JIT some code if it is rarely used and thus a fast response is more important than overall runtime. – Adam Jaskiewicz Apr 17 '09 at 19:32
show 5 more comments

In the beginning, a compiler was responsible for turning a high-level language (defined as higher level than assembler) into object code (machine instructions), which would then be linked (by a linker) into an executable.

At one point in the evolution of languages, compilers would compile a high-level language into pseudo-code, which would then be interpreted (by an interpreter) to run your program. This eliminated the object code and executables, and allowed these languages to be portable to multiple operating systems and hardware platforms. Pascal (which compiled to P-Code) was one of the first; Java and C# are more recent examples. Eventually the term P-Code was replaced with bytecode, since most of the pseudo-operations are a byte long.

A Just-In-Time (JIT) compiler is a feature of the run-time interpreter, that instead of interpreting bytecode every time a method is invoked, will compile the bytecode into the machine code instructions of the running machine, and then invoke this object code instead. Ideally the efficiency of running object code will overcome the inefficiency of recompiling the program every time it runs.

share|improve this answer
Great explanation, shows the difference between interpretation and JITing. – name Sep 14 '10 at 7:29
However this phrase "a Just-In-Time (JIT) compiler is a feature of the run-time interpreter" causes confusion; e.g. - stackoverflow.com/questions/16439512/… – Stephen C May 15 at 22:40
Actually, the JIT was an add-on, and you can still disable it using the -Xint parameter to Java, so it's just a feature. – Craig Trader May 16 at 16:34

JIT stands for Just-in-Time which means that code gets compiled when it is needed, not before runtime.

This is beneficial because the compiler can generate code that is optimised for your particular machine. A static compiler, like your average C compiler, will compile all of the code on to executable code on the developer's machine. Hence the compiler will perform optimisations based on some assumptions. It can compile more slowly and do more optimisations because it is not slowing execution of the program for the user.

share|improve this answer

You have code that is compliled into some IL (intermediate language). When you run your program, the computer doesn't understand this code. It only understands native code. So the JIT compiler compiles your IL into native code on the fly. It does this at the method level.

share|improve this answer

A non-JIT compiler takes source code and transforms it into machine specific byte code at compile time. A JIT compiler takes machine agnostic byte code that was generated at compile time and transforms it into machine specific byte code at run time. The JIT compiler that Java uses is what allows a single binary to run on a multitude of platforms without modification.

share|improve this answer

After the byte code(which is architecture neutral) has been generated by java compiler, the execution will be handled by JVM(in java). byte code will be loaded in to JVM by loader and then each byte instruction is interpreted. When we need to call method multiple times we need to interpret the same code many times and this may take time. So we have JIT(just-in-time) compilers. When the byte has been is loaded in to JVM( it is run time), whole code will be compiled rather than interpretation. This saves time. JIT compilers exits only during run time. so we cant have any binary output.

Why dont we have any binary output?? because, Jit works only during run time.
share|improve this answer

JIT-Just in time the word itself says when it's needed(on demand)

Typcial scenario: The source code is converted into machine code ....the machine code will be used whereever the program wants to be run

JIT scenario: The source code will be converted into assmebly language like structure [for ex IL(intermediate language) for C#,ByteCode for java]

JIT vs Non-JIT comparison: 1)In JIT not all the code is converted into machine code first a part of the code that is neccessary will be converted into machine code then if a method or functionality called is not in machine then that will be turned into machine code...it reduces burden on cpu 2)As the machine code will be generated on run time....the JIT compiler will produce machine code that is optimised for running machine's cpu architecture...

Note: In java GIT is in JVM(java virtual machine) In C# in it is dot net framework In Android DVM(Dalvik virtual machine)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.