what rare the Types of JIT and what is econo-JIT

Showing Answers 1 - 5 of 5 Answers

sujani

  • Jun 16th, 2006
 

Types of jit : prejit,ecno jit,normal jit

pre jit : convert source code to native code in single completion of cycle.Normally this can be done at the time of deployment.

econo jit : coverts the only called methods to native code,however it can be removed when are not required.

normal jit : compliled the called methods  to native code.In the the methods can be compiles for the first time.For latter calls it can be displayed using cached items.

  Was this answer useful?  Yes

SwethaRamanujadasi

  • Jul 21st, 2006
 

Three types of JIT

1.standard JIT

2.econo JIT

3.pre JIT



econo JIT: This compiler converts the MSIL code into native code without any optimizations.

  Was this answer useful?  Yes

Narsimha Puranik

  • Jun 11th, 2007
 

Hi all,


There are three types of JIT.

1. Pre -JIT
2. Econo-JIT
3. Normal JIT


Pre -JIT:Compiles whole code once
Econo-JIT:Compiles code part by part
Normal-JIT:Compiles only that part of code when called in cache.


Thanks

Narsimha

  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