Types of jit compliers
| There are three types of jit compliers
(1)PRE JIT compiler Compiles complete source code to native caode In a single Compilation. (2)ECONO JIT compiler compiles only those methods that are called at Runtime Or it Compiles code part by part freeing when required.(3)NORMALE JIT compiler compiles only those methods that are called at Runtime and are stored in cache Or it Compiles only that part of code when called and places in cache. |
|
