author | herrick |
Wed, 20 Nov 2019 10:17:37 -0500 | |
branch | JDK-8200758-branch |
changeset 59160 | e90068e7afa1 |
parent 48170 | 3af0ab7d1d90 |
permissions | -rw-r--r-- |
2126 | 1 |
This is a very rough tool for parsing -XX:+LogCompilation output. |
2 |
It's main purpose is to recreate output similar to |
|
3 |
-XX:+PrintCompilation -XX:+PrintInlining output from a debug JVM. It |
|
4 |
requires a 1.5 JDK to build and simply typing make should build it. |
|
5 |
||
6 |
It produces a jar file, logc.jar, that can be run on the |
|
20010
c66a7254680c
8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents:
14623
diff
changeset
|
7 |
HotSpot log (by default, hotspot_pid{pid}.log) from LogCompilation output like this: |
2126 | 8 |
|
20010
c66a7254680c
8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents:
14623
diff
changeset
|
9 |
java -jar logc.jar hotspot_pid1234.log |
2126 | 10 |
|
11 |
This will produce something like the normal PrintCompilation output. |
|
12 |
Adding the -i option with also report inlining like PrintInlining. |
|
13 |
||
20010
c66a7254680c
8023134: Rename VM LogFile to hotspot_pid{pid}.log (was hotspot.log)
vlivanov
parents:
14623
diff
changeset
|
14 |
More information about the LogCompilation output can be found at |
2126 | 15 |
|
46763 | 16 |
https://wiki.openjdk.java.net/display/HotSpot/LogCompilation+overview |
17 |
https://wiki.openjdk.java.net/display/HotSpot/PrintCompilation |
|
18 |
https://wiki.openjdk.java.net/display/HotSpot/LogCompilation+tool |
|
48170
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
19 |
|
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
20 |
The project layout is now for Maven. To build the project with Maven do: |
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
21 |
|
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
22 |
mvn clean install |
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
23 |
|
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
24 |
The build also copies the resulting target jar to ./logc.jar for easy |
3af0ab7d1d90
8192821: Make LogCompilation into a maven project
ecaspole
parents:
47216
diff
changeset
|
25 |
interop with the Makefile build. |