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
1
Reply
What are the various types of JIT in .Net?
Pradip Pandey
14y
9.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
JIT compiler is a part of the runtime execution environment.
there are three types of JIT compilers:
1. Pre-JIT :
Pre-JIT compiles complete source code into native code in a single compilaton cycle. This is done at the time ofdeployment of the application.
2. Econo-JIT:
Econo-JIT compiles 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 methodsthat 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 compiled code from cache is used for execution.
Ajitender Vijay
14y
0
Message