What is default type of JIT compiler is used in .Net (visual studio) out of (Pre-JIT,Econo-JIT,Normal-JIT)?
+2
A:
As far as I know default JIT is Pre-JIT but ASP.NET Does Not Support Pre-Just-In-Time (JIT) Compilation Through Native Image Generator.
A little bit of background on the various JIT types:
PRE-JIT: Compiles complete source code to native code in a single operation.
ECONO-JIT: Compiles only methods called at Runtime.
NORMAL-JIT: Compiles only methods called at Runtime and stored in cache.
JohnIdol
2009-01-05 17:38:50