What are the types of JIT found?

Showing Answers 1 - 15 of 15 Answers

syed

  • Dec 20th, 2006
 

there are three type of J-I-T


        1.pre   2.econo 3.normal

pragadeshwaran

  • Dec 28th, 2006
 

Pre,Ecno and Normal are the types of JIT found.

Pre: This JIT compiles the whole application.

Ecno : This JIT compiles the modules that is called at runtime.

Normal: This JIT compiles the modules that is called at runtime and keep it in cache memory.

hansat

  • Jan 2nd, 2007
 

There is only two types of JIT Compiler

               1 >   Standard

               2 >   Echono

  Was this answer useful?  Yes

OmairYahya

  • Feb 13th, 2007
 

There are three types of JIT compilers in .NETPre :-Compiles complete source code into native code in a single compilation cycle.This is done at the time of deployment.Econo :-Compiles only those methods that are called at runtime.Compiled methods are removed when they are not needed.Normal :-Compiles only those methods that are called at runtime.These methods compiled when they first called ,After that they are placed in cache from where they are called when needed.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions