I want to generate a program dependence graph (PDG) from Java Bytecode for further programmatic analysis. Since this is old (the paper is from '87) and presumably well-known technology, I thought that appropriate tools would be readily available---however I wasn't able to find them.

In fact an extensive search turned up only a few results:

  • The Bandera project which was abandoned in 2006.
  • The Indus project which seems not to have received any effort since 2007, except for it being made Open Source in 2009.
  • The Moose JEE Project which seems to be pretty new as there is basically no documentation whatsoever.
  • And the Soot framework, which provides some classes (see JavaDoc) but seems to lack an implementation for the generation. In fact, Soot is the basis for Bandera and Indus.

So my question is the following: Is there any alive and maintained implementation out there? Does anybody have experience in either one of the aforementioned projects? What would you recommend?

Thank you already for your input, it is highly appreciated!

link|improve this question

feedback

3 Answers

I suggest you check out WALA, a system that extracts SSA representations from java byte code files.

I have no experience with this, but have reviewed a number of software engineering technical papers that seemed well-thought out, and apparantly used WALA as a foundation for their research.

link|improve this answer
feedback

Look at the source code and documentation for Hierarchy:

http://www.whitemagicsoftware.com/software/java/hierarchy/

It uses BCEL and Prefuse to draw a high-resolution class hierarchy diagram.

The Class Analysis API includes a class (i.e., ClassWalker) that can walk through a list of subclasses starting from a given parent. You could insert your own code to use the BCEL API to explore the dependency relationships as the ClassWalker looks at each class.

Hierarchy supports Java 1.6.

ClassWalker can examine on the order of 10,000 classes per second.

link|improve this answer
feedback
up vote 0 down vote accepted

I found no library to get the PDG that I was content with. So I implemented it myself...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.