如何查找从类文件生成的本机指令
我想了解 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要
-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