·
PRE JIT Compiler.
·
ECONO JIT Compiler.
·
NORMAL JIT compiler.
(1) PRE JIT Compiler :
Pre-JIt compiler compiles complete source(MSIL)code to Native code in a single Compilation.
(2) 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:
Post a Comment