Answer Posted / kirti
JIT (Just - In - Time) is a compiler which converts MSIL code to Native Code (ie.. CPU-specific code that runs on the same computer architecture).
Because the common language runtime supplies a JIT compiler for each supported CPU architecture, developers can write a set of MSIL that can be JIT-compiled and run on computers with different architectures. However, your managed code will run only on a specific operating system if it calls platform-specific native APIs, or a platform-specific class library.
JIT compilation takes into account the fact that some code might never get called during execution. Rather than using time and memory to convert all the MSIL in a portable executable (PE) file to native code, it converts the MSIL as needed during execution and stores the resulting native code so that it is accessible for subsequent calls. The loader creates and attaches a stub to each of a type's methods when the type is loaded. On the initial call to the method, the stub passes control to the JIT compiler, which converts the MSIL for that method into native code and modifies the stub to direct execution to the location of the native code. Subsequent calls of the JIT-compiled method proceed directly to the native code that was previously generated, reducing the time it takes to JIT-compile and run the code.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are Non Action methods in ASP.Net MVC?
Is mvc 4 supporting windows azure sdk (software development kit) ?
what is lazy loading in entity framework?
What type of filter does outputcacheattribute class represents?
Is .net framework backwards compatible?
Explain the new features added in version 4 of mvc (mvc4)?
I have 2+ years of fake experience,actually i could not answer for project questions..?how can i answer please suggest me..?
What is session state management?
Name a few different return types of a controller action method?
What is .net framework & its benefits?
What is page life cycle?
What are the options can be configured in AJAX helpers?
explain what does .edmx file contains?
Explain the advantages of asp.net mvc over asp.net?
what is entity sql?