Google

Wednesday, February 20, 2008

Types of JIT ( Just In Time 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

No comments: