Basically I want tools which generate function call graph, dependency graph etc.
|
4
|
|
|
|
|
|
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. |
||||||
|
|
|
I strongly recommend BOUML. It's a free UML modelling application, which:
So: import your code into BOUML and view it there, or export to SVG and view it in Firefox. |
||
|
|
|
Might be a duplication, but check out ollydbg, IDA Pro and this website has a whole bunch of resources with some very sexy images. |
||
|
|
|
|
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). |
||
|
|
|
There is an old tool called CDOC that we still use to generate call trees. |
||
|
|
