Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

How to trace methods:

 

Method Invocations in JVM

In Java the current executed methods are represented as frames, that are stored on a stack. Each frame contains all information that an invocation tracer might need.
When a method is started, it's frame is put on the stack and when it is done the associated frame is removed from the stack. In this way, the current executed method is always on top of the stack.