相关疑难解决方法(0)

How to check the jitted Java method parameters from the JVM core dump through assembly code?

I want to get the Assembly code for the jitted code to get the parameters value based on the Java calling convention. Suppose the JVM is hotspot, the platform is Linux 64 bit , and we have the following caller and calle, and I want to check the parameters passed to callee from the JVM core dump.

protected void caller( ) {
callee(1,"123", 123,1);

}

protected void callee(int a,String b, Integer c,Object d) {
 Thread.sleep(11111111);
}
Run Code Online (Sandbox Code Playgroud)

Based on the following …

java gdb jvm

0
推荐指数
1
解决办法
450
查看次数

标签 统计

gdb ×1

java ×1

jvm ×1