Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What are different types of JIT ?
.NET INTERVIEW QUESTIONS - What are different types of JIT ?
✍: Guest
JIT compiler is a part of the runtime execution environment.
In Microsoft .NET there are three types of JIT compilers:
* Pre-JIT :- Pre-JIT compiles complete source code into native code in a single compilation cycle. This is done at the time of deployment of the application.
* Econo-JIT :- Econo-JIT compiles only those methods that are called at runtime.However, these compiled methods are removed when they are not required.
* Normal-JIT :- Normal-JIT compiles only those methods that are called at runtime.These methods are compiled the first time they are called, and then they are stored in cache. When the same methods are called again, the compiled code from cache is used for execution.
2010-04-13, 5405👍, 0💬
Popular Posts:
How To Get the Minimum or Maximum Value of an Array? - PHP Script Tips - PHP Built-in Functions for ...
What is difference between ADPATCH and OPATCH ? # ADPATCH is utility to apply ORACLE application Pat...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
How To Escape Special Characters in SQL statements? - MySQL FAQs - Introduction to SQL Basics There ...
.NET INTERVIEW QUESTIONS - What are types of compatibility in VB6? There are three possible project ...