"Different types of JIT Compiler"
JIT (Just In Time) Compiler is used to convert the MSIL code to the Native code, It is of following three types:-
1.Normal JIT:-
It compiles only those methods that are called at run time and after compilation stores them into a memory cache called JITTED.If that method is called again then it provides the compiled method from the memory cache for execution.
2.Econo JIT:-
It also compiles only those methods that are called at run time, but once the execution of those methods takes place, they are removed from the memory.
3.Pre JIT:-
It compiles the entire code in a single cycle, i.e it compiles the entire MSIL code into Native code in a single go.
0 Comment(s)