Just in Time Compilation - Storing vs Doing always [duplicate]
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: Why doesn't the JVM cache JIT compiled code? I understand that JIT compilation is compilation to native code using hotspot mechanisms, which can be very very fast as it is optimization to the OS, Hardwards, etc. My question is, why does Java not store that JIT complied code somewhere in file and use the same for future purposes? This can reduce the 'initial warm-up' time as well. Please let me know what I am