What is JIT, what are types of JITS and their purpose ?
Answer Posted / santosh
There are three types of JIT copilers.
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.
| Is This Answer Correct ? | 35 Yes | 3 No |
Post New Answer View All Answers
How ASP and ASP.NET page works? Explain about asp.net page life cycle?
Is asp.net still used?
Explain about Multi-Language integration?
What are the media types of http requests and response?
Explain how asp.net different from asp?
How can we implement a identity (sql server) call in an asp.net page?
What are the Types of objects in ASP
a)COM Callable Wrapper b)Runtime Callable Which one of the above is Win32 API in .Net?
What is jade template engine?
what are the ihttphandler and ihttphandlerfactory interfaces ?
Explain the steps to be followed to use passport authentication.
List the advantages and disadvantages of user control an custom control?
How can we make sure that Web API returns JSON data only?
What do you mean by authorization?
Where would you use an ihttpmodule, and what are the limitations if any?