Is there some way to see the native code produces by the JIT in a JVM?
|
|
Assuming you're using the Sun Hotspot JVM. Add the flag
To whatever you're running. This will only print the assembly for code that has been JIT'd (i.e. you don't get to see assembly for non JIT'd stuff) but I think that's what you want. If you want to see what everything would like if it were JIT'd you could probably tweak the JIT threshold via:
|
|||||||||
|
|
For the HotSpot (was Sun) JVM, even in product modes: http://wikis.oracle.com/display/HotSpotInternals/PrintAssembly Some assembly required: it needs a plugin. |
||||
|
|
|
I believe WinDbg would be helpful if you are running it on windows machine. I have just run one jar.
Highlighted lines is direct running JIT-ed code on JVM.
For additional info here is the Example how to trace back JIT-ed code from memory dumps using process explorer and WinDbg. |
||||
|
|
|
As explained by other answers, you can run with the following JVM options:
If you are running Windows, this page explains how to install the required dll to make it work. I copy below the content of that page* for reference: How to build
The DLL can now be installed by copying it from Bonus tip: if you prefer Intel ASM syntax to AT&T, specify *page license is Creative Commons |
||||
|
|
|
Another way to see machine code and some performance data is to use AMD's CodeAnalyst or OProfile, which have a Java plugin to visualize executing Java code as machine code. |
|||
|
|