what are the types of jit compliers?

what are the types of jit compliers?

rajkumar
Views: 347 | Community Opinion: 1



Bookmark this page..



Ask a New Question Go to Home

Community Opinion/Answers
 
Nikita Said..

When the program is executed the CLr activates JIT compiler ,inturn this JIT converts the MSIL Code (Non Executable) to Native Code(Executable) on demand basis as each part of Program is needed.

Types of JIT (just in time) Compilers are as stated below :


  • PRE JIT : It Compiles complete source code to native caode In a single Compilation.

  • ECONO JIT : It compiles only those methods that are called at Runtime Or it Compiles code part by part freeing when required.

  • NORMALE JIT : It compiles only those methods that are called at Runtime and are stored in cache Or it Compiles only that part of code when called and places in cache.


I think default JIt is PRE Jit .

Thanks






What do you think? Add your opinion/answer
*Name
*your opinion/answer: