This package takes a list TracePoint.java
-objects
and turns it into a forest of call-graphs. This
graph is used to locate suitable mark()
-locations.
-
Forest.java
is the main class that constructs
the call forest.
-
Build.java
builds the structure of the call
graphs.
-
Decorate.java
adds weights to the call graph
nodes and edges.
-
Edge.java
represents a call-graph edge.
-
Node.java
represents a call-graph node.
-
CallFrame.java
is just used internally.
-
Test.java
does some rudimentary testing
of the package.