tags:

views:

24

answers:

1

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?

+1  A: 

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

Bruno