JMP - Java Memory Profiler JMP logo
 
General
About
Installation
Licence
Changelog
Screenshot
Performance

Download
Current version: 0.18
jmp.tar.gz

Contacts
Robert Olofsson
d94-rol@nada.kth.se

  About

JMP is a profiler for java that can be used to trace objects usage and method timings. JMP uses the JVMPI interface to gather statistics and interact with the JVM. JMP uses a GTK+ interface to show the status.

JMP normally uses one window to show the classes in memory. Each class has summary information for number of instances and total bytes of used memory for all the instances.

JMP can perform heap analasys and has the ability to show which objets own (has references to) all the objects of a specified class. This is a great way to find memory leaks.

JMP also shows method timings and calls in another window. Several columns show time taken in the method, number of calls to each method, time taken in methods called.

JMP collects information about which method are called and from where, this information is used to build call graphs.

JMP uses several threads to be able to handle this. Currently jmp uses two extra threads, one for GTK+ and one to systematically update the stats.

JMP is written in C, it is designed for speed.