The JIT compiler is an important element of CLR, which loads MSIL on target machines for execution. The MSIL is stored in .NET assemblies after the developer has compiled the code written in any .NET-compliant programming language, such as Visual Basic and C#.
It comes with the virtual machine and is used optionally. It compiles the bytecode into platform-specific executable code that is immediately executed. A non-JIT compiler takes source code and transforms it into machine specific byte code at compile time.
It comes with the virtual machine and is used optionally. It compiles the bytecode into platform-specific executable code that is immediately executed. A non-JIT compiler takes source code and transforms it into machine specific byte code at compile time.
No comments:
Post a Comment