Java: JIT method inlining

你离开我真会死。 提交于 2019-11-27 06:39:10

问题


When does Java JIT inline a method call? Is it based on #times the caller method is called (if yes, what would that number be?), or some other criteria (and what would that be?)

I've read that JIT can inline 'final' methods, but it also inlines nonfinal methods based on runtime statistics, so want to know what is that triggering criteria.

I guess the answers would differ based on JVM implementation, but maybe there's something common across all of them?


回答1:


The short answer is whenever it wants.

Very often a JITC will inline small final or pseudo-final methods automatically, without first gathering any stats. This is because it's easy to see that the inlining actually saves code bytes vs coding the call (or at least that it's nearly a "wash").

Inlining truly non-final methods is not usually done unless stats suggest it's worthwhile, since inlined non-finals must be "guarded" somehow in case an unexpected subclass comes through.

As to the number of times something may be called before it's JITCed or inlined, that's highly variable, and is likely to vary even within a running JVM.




回答2:


the default inline threshold for a JVM running the server Hotspot compiler is 35 bytecodes.

Official docs




回答3:


Typically JIT only inlines "small" methods by default. Other than that it's completely dependent on the implementation.



来源:https://stackoverflow.com/questions/10073025/java-jit-method-inlining

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!