suppose you have a class file MyClass.class
you can easily see which JVM instructions make up your class file using the program sent by jdk itself in the same bin directory where java and javac exist.
javap -c MyClass.class
The above team will provide you with what you are looking for.
source share