Why doesn't the JVM cache JIT compiled code?

前端 未结 5 1310
时光说笑
时光说笑 2020-11-28 19:30

The canonical JVM implementation from Sun applies some pretty sophisticated optimization to bytecode to obtain near-native execution speeds after the code has been run a few

5条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-28 20:18

    Excelsior JET has a caching JIT compiler since version 2.0, released back in 2001. Moreover, its AOT compiler may recompile the cache into a single DLL/shared object using all optimizations.

提交回复
热议问题