-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bjdump: /tmp/perf-1390290.map: File format not recognized #92
Comments
Not sure what the issue is. For JMH you might not even need the agent as JMH has built-in support for perf profiling. E.g. see https://github.com/Valloric/jmh-playground/blob/master/src/jmh/java/org/openjdk/jmh/samples/JMHSample_35_Profilers.java |
thanks for your info, jrudolph. |
Hi, Rudolph
1.70% 0x00007f8664a40dc0: ;*aload_0 {reexecute=0 rethrow=0 return_oop=0}
|
Hi, Authors
I want to profile the instruction of the code of https://github.com/mkyong/jmh-benchmark.git
and find that: bjdump: /tmp/perf-1390290.map: File format not recognized.
How reproduce:
1, use mvn package to compile the jmh-benchmark
2, numactl -C 3 -m 0 java -jar target/benchmarks.jar loopFor #run the test case.
or this method:
perf record -v -g -k 1 numactl -C 3 -m 0 java -agentpath:/usr/lib64/libperf-jvmti.so -jar target/benchmarks.jar loopFor
3, perf the thread which is from pgrep java
4, ./create-java-perf-map.sh 3490983 -F 99 #to output the java jit map.
5, perf report -i /tmp/pid-3490983.data will show the error.
The text was updated successfully, but these errors were encountered: