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 …