如何查看HotSpot优化后生成的代码?

发布于 2024-08-07 04:31:08 字数 87 浏览 4 评论 0原文

我想更好地了解 HotSpot 在运行时可能为我的 Java 代码生成哪些优化。

有没有办法查看HotSpot运行一段时间后正在使用的优化代码?

I'd like to have a better understanding of what optimizations HotSpot might generate for my Java code at run time.

Is there a way to see the optimized code that HotSpot is using after it's been running for a while?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

您需要使用选项 -XX:+PrintAssembly-XX:UnlockDiagnosticVMOptions 启动 JVM,但 PrintAssembly 要求 JVM 具有 hsdis 二进制文件(HotSpot 反汇编程序)。由于许可证不兼容,hsdis 二进制文件未随 JVM 一起分发,因此您需要 编译hsdis 自己或查找从非官方网站预构建的 hsdis 二进制文件

为了理解输出,像 JITWatch 这样的工具很有用。按照其说明将调试信息写入可以在 JITWatch 中分析的日志文件。

You will need to start the JVM with the options -XX:+PrintAssembly and -XX:UnlockDiagnosticVMOptions, but PrintAssembly requires the JVM to have the hsdis binary (HotSpot disassembler). The hsdis binary is not distributed with the JVM due to license incompatibility, so you will need to compile hsdis yourself or find a prebuilt hsdis binary from an unofficial web site.

To make sense of the output, a tool like JITWatch is useful. Follow its instructions to write the debug information to a log file which can be analyzed in JITWatch.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文