C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
Java
Learn iOS Programming
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
2
Reply
How many types of Jit Compilers?
raj kumar
18y
54.1k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
There are 3 Types of JIT
1. Pre-JIT:-
Pre-JIT complies complete source code into native code in a single compilation cycle. This is done at the time of deployment of the application.
2. Econo-JIT:-
Econo-JIT complies only those methods that are called at runtime. However, these complied methods are removed when they are not required.
3. Normal-JIT:-
Normal-JIT complies only those methods that are called at runtime. These methods are complied the first time they are called, and then they are stored in cache. When the same methods are called again, the complied code from cache is used for execution.
More important .NET Questions And Answers
Elias Hossain
17y
0
Types Of JIT Compiler :
(1) PRE JIT Compiler.
(2) ECONO JIT Compiler.
(3) NORMAL JIT compiler.
(1) PRE JIT Compiler :
Pre-JIt compiler compiles complete source(MSIL)code to Native code in a single Compilation.
(1) ECONO JIT Compiler :
This compiler compiles only MSIL code of those methods that are called at Runtime.
3) NORMAL JIT compiler:
This compiler compiles only MSIL code of those methods that are called at Runtime and that converted (native) code is stored in Cache.This happens beccause,when these methods called again it will retrieve code from cache itself without sending request to CLR.Thus,inturn saves much of Executiom time
Darshan Vyas
17y
0
Explan about CCW and RCW ?
Difference between Dispose and Finalize method ?
Message