What is the size of methods that JIT automatically inlines?(JIT 自动内联的方法的大小是多少?)
问题描述
我听说 JIT 会自动内联小方法,例如 getter(它们大约有 5 个字节).边界是什么?有JVM标志吗?
I've heard that JIT automatically inlines small methods, like getters (they have about 5 bytes). What is the boundary? Is there any JVM flag?
推荐答案
HotSpot JIT 内联策略比较复杂.它涉及许多启发式方法,如调用方方法大小、被调用方方法大小、IR 节点数、内联深度、调用数、调用站点数、抛出数、方法签名等.
HotSpot JIT inlining policy is rather complicated. It involves many heuristics like caller method size, callee method size, IR node count, inlining depth, invocation count, call site count, throw count, method signatures etc.
访问器方法(getter/setter)和普通方法(字节码计数小于 6)会跳过一些限制.
Some limits are skipped for accessor methods (getters/setters) and for trivial methods (bytecode count less than 6).
相关源码大多在bytecodeInfo.cpp.
请参阅 InlineTree::try_to_inline
、should_inline
、should_not_inline
函数.
The related source code is mostly in bytecodeInfo.cpp.
See InlineTree::try_to_inline
, should_inline
, should_not_inline
functions.
控制内联的主要 JVM 标志是
The main JVM flags to control inlining are
-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)
这篇关于JIT 自动内联的方法的大小是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JIT 自动内联的方法的大小是多少?


- Jersey REST 客户端:发布多部分数据 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01