Asp.net + JIT?

What is the default type of JIT compiler used in .Net (visual studio) from (Pre-JIT, Econo-JIT, Normal-JIT)?

+3
source share
1 answer

As far as I know, by default JIT is a preliminary JIT, but ASP.NET does not support compilation with a preliminary count (JIT) through the native Image Generator .

A bit of background for various types of JIT:

PRE-JIT . Compiles the complete source code to its own code in one operation.

ECONO-JIT : compiles only those methods that are called in Runtime.

NORMAL-JIT : compiles only those methods that are called in Runtime and stored in the cache.

+3
source