如何查找从类文件生成的本机指令

发布于 2024-09-16 04:05:38 字数 138 浏览 5 评论 0原文

我想了解 Java 的 JIT 编译器在加载类文件时生成哪些本机指令。有什么办法可以知道吗?

我正在 586 处理器上的 Linux 中工作。我正在使用 Sun 的 JDK 1.6 update 21。是否有任何工具可以用来找出我正在寻找的内容?

I would like to learn what native instructions Java's JIT compiler generates when it loads a class file. Is there any way of knowing it?

I am working in Linux on a 586 processor. And I am using Sun's JDK 1.6 update 21. Is there any tool that I can use to find out what I am looking for?

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

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

发布评论

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

评论(1

孤者何惧 2024-09-23 04:05:38

您可能需要 -XX:+PrintOptoAssembly,但您需要 JVM 的调试版本。二进制发行版的链接似乎不再可用,因此您可能必须从源代码构建它: http://download.java.net/jdk6/6u10/archive/

如果您也计划使用 OpenJDK 7 尝试此操作,这可能会感兴趣:
http://wikis.sun.com/display/HotSpotInternals/PrintAssembly

You probably need -XX:+PrintOptoAssembly, but you'd need a debug build of the JVM. The links to the binary distributions seem not to be available any longer, so you might have to build it from source: http://download.java.net/jdk6/6u10/archive/

If you're planning to try this with OpenJDK 7 as well, this might be of interest:
http://wikis.sun.com/display/HotSpotInternals/PrintAssembly

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