JIT自动内联的方法大小是多少?

时间:2016-04-12 22:31:46

标签: java jvm jit jvm-hotspot

我听说JIT自动内联小方法,比如getter(它们大约有5个字节)。边界是什么?有没有JVM标志?

2 个答案:

答案 0 :(得分:13)

HotSpot JIT内联政策相当复杂。它涉及许多启发式方法,如调用方法大小,被调用方法大小,IR节点数,内联深度,调用计数,调用站点计数,投掷计数,方法签名等。

对于访问器方法(getter / setter)和普通方法(字节码计数小于6),会跳过某些限制。

相关的源代码主要位于bytecodeInfo.cpp 请参阅InlineTree::try_to_inlineshould_inlineshould_not_inline函数。

控制内联的主要JVM标志是

-XX:MaxInlineLevel (maximum number of nested calls that are inlined)
-XX:MaxInlineSize (maximum bytecode size of a method to be inlined)
-XX:FreqInlineSize (maximum bytecode size of a frequent method to be inlined)
-XX:MaxTrivialSize (maximum bytecode size of a trivial method to be inlined)
-XX:MinInliningThreshold (min. invocation count a method needs to have to be inlined)
-XX:LiveNodeCountInliningCutoff (max number of live nodes in a method)

答案 1 :(得分:3)

https://docs.oracle.com/javase/8/embedded/develop-apps-platforms/codecache.htm#BABGGHJE

  

MaxInlineSize

     

默认值:35

     

要内联的方法的最大字节码大小

有关JDK 7及更早版本的信息,请参阅文档Java HotSpot VM Options