vote up 8 vote down star
4

Basically I want tools which generate function call graph, dependency graph etc.

flag

6 Answers

vote up 13 vote down

Doxygen is really excellent for this, although you will need to install GraphViz to get the the graphs to draw.

Once you've got everything installed, it's really rather simple to draw the graphs. Make sure you set EXTRACT_ALL and CALL_GRAPH to true and you should be good to go.

The full documentation on this function for Doxygen is here, and it also has a useful example.

link|flag
Sweet. Very straightforward to use. GraphViz modifies your system path, and doxygen uses it. – bobobobo Aug 12 at 19:43
1  
+1 I agree. Doxygen is a very useful tool when exploring existing code. Check the option that generate source code and you easily navigate through your codebase without opening your code-editor ... – neuro Aug 13 at 15:24
vote up 4 vote down

I strongly recommend BOUML. It's a free UML modelling application, which:

  • is extremely fast (fastest UML tool ever created, check out benchmarks),
  • has rock solid C++ import support,
  • has great SVG export support, which is important, because viewing large graphs in vector format, which scales fast in e.g. Firefox, is very convenient (you can quickly switch between "birds eye" view and class detail view),
  • is full featured, impressively intensively developed (look at development history, it's hard to believe that so fast progress is possible).

So: import your code into BOUML and view it there, or export to SVG and view it in Firefox.

link|flag
+1 for a free UML tools that deserve to be tried. – neuro Aug 13 at 15:25
vote up 3 vote down

Might be a duplication, but check out ollydbg, IDA Pro and this website has a whole bunch of resources with some very sexy images.

link|flag
vote up 3 vote down

You can look at different tools for software design and modelling (Rational Rose, Sparx Enterprise Architect, Umbrello, etc). Majority of them have some functionality to reverse modeling by source code, and getting UML class diagrams, and sometimes even sequence diagrams (and this is very close to functions call graph).

But after you get some pictures on really big project code base you could realise that such graphs are rather hard to read and understand. Unfortunally visualization capabilities of complexity are very limited.

As for me, using a "divide and rule" idiom is more convinient approach. You can extract different functionality blocks or layers from your some code base (just sorting cpp-files by different folders sometimes enough). Another way is to use some scripts (bash, python) to create simple csv tables with interested parameters of files, classes or functions like "number of dependencies" etc).

link|flag
+1 good remark. – neuro Aug 13 at 15:25
vote up 2 vote down

Try doxygen

Example output from Xerces

link|flag
vote up 1 vote down

There is an old tool called CDOC that we still use to generate call trees.

link|flag

Your Answer

Get an OpenID
or

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