Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Asp.net + JIT?

Tags:

asp.net

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

like image 803
kedar kamthe Avatar asked Apr 08 '26 23:04

kedar kamthe


1 Answers

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.

like image 148
JohnIdol Avatar answered Apr 11 '26 19:04

JohnIdol



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!