README revision 600
0N/AThis is a very rough tool for parsing -XX:+LogCompilation output.
2362N/AIt's main purpose is to recreate output similar to
0N/A-XX:+PrintCompilation -XX:+PrintInlining output from a debug JVM. It
0N/Arequires a 1.5 JDK to build and simply typing make should build it.
0N/A
0N/AIt produces a jar file, logc.jar, that can be run on the
0N/Ahotspot.log from LogCompilation output like this:
0N/A
0N/A java -jar logc.jar hotspot.log
0N/A
0N/AThis will produce something like the normal PrintCompilation output.
0N/AAdding the -i option with also report inlining like PrintInlining.
0N/A
0N/AMore information about the LogCompilation output can be found at
0N/A
0N/Ahttp://wikis.sun.com/display/HotSpotInternals/LogCompilation+overview
0N/Ahttp://wikis.sun.com/display/HotSpotInternals/PrintCompilation
0N/Ahttp://wikis.sun.com/display/HotSpotInternals/LogCompilation+tool
2362N/A