vote up 2 vote down star
2

I like the way Doxygen combines with Graphviz dot to generate function caller graphs. I'd like this functionality for other languages as well, apart from the basics that Doxygen supports (C++, C, Java, Objective-C, Python, VHDL, PHP, C#).

I'm currently interested in JavaScript and ActionScript 2/3 but am looking for ways or tools that have a wider language support than Doxygen.

Is there any way to get function caller graphs for any other languages?

flag

Perl would be nice, too :-D – derobert Sep 6 at 10:19
1  
It would be really nice if Doxygen's formatter that feeds the caller/callee data into dot could be lifted out. Then all you would need is to get the list of functions a function calls or the list of functions called by a function. – Omnifarious Sep 6 at 10:39
Interact with Graphviz directly, see graphviz.org/Gallery/directed/… – Jeremy Rudd Sep 6 at 10:46

1 Answer

vote up 1 vote down

Most real langauges have pointers in some form (C, obviously; in Java they're called "objects").

Good call graphs (black arcs, direct calls; blue arcs, indirect calls) usually require resolving pointers using sophisticated flow analysis to a realistic set of targets. Otherwise an indirect call might be marked as going nowhere or everywhere (or least a very big set of places) which really doesn't help much.

The DMS Software Reengineering Toolkit provides general and specific points-to analysis infrastructure already instantiated for C, Java and IBM Enterprise COBOL.

This infrastructure can be reused for other languages. DMS has parsers for many languages, including JavaScript (and a draft parser for AS3). Obviously this isn't an off-the-shelf solution for your favorite set, but it does mean they can be obtained.

link|flag

Your Answer

Get an OpenID
or

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