How can I trace through a JVM program given only the class files?
Is there a 开发者_开发问答way to trace through a program given only the class files (not the debug version of the class files)?
I guess that's possible. I just made a simple Fibonacci code, compiled it using "-g:none" (so no debugging info generated), then trace using this.
You can see the invocation tree there.
精彩评论