up vote 16 down vote favorite
4
share [g+] share [fb]

I have a large 95% C, 5% C++ Win32 code base that I am trying to grok.

What modern tools are available for generating call-graph diagrams for C or C++ projects?

link|improve this question

1  
+1 because I want to see the answers to this too. – T.E.D. Aug 7 '09 at 18:01
feedback

5 Answers

up vote 2 down vote accepted

Have you tried SourceInsight's call graph feature?

link|improve this answer
feedback

Have you tried doxygen and codeviz ?

Doxygen is normally used as a documentation tool, but it can generate call graphs for you with the CALL_GRAPH/CALLER_GRAPH options turned on.

Wikipedia lists a bunch of other options that you can try.

link|improve this answer
+1: For doxygen and codeviz. – anon Aug 7 '09 at 18:25
1  
+1: for doxygen – NTDLS Jan 26 '11 at 16:35
feedback

Good old cflow works fine for C. See here for an implementation.

link|improve this answer
feedback

This is an old tool called CDoc that I have found useful.

link|improve this answer
feedback

Any decent static analysis tool should have this functionality (as well as all the other stuff that such tools do). Wikipedia has a good list of such tools.

Another group of tools that may be worth checking out are coverage tools. The call graph generated by the coverage tool will contain only the calls that actually take place during a run of the program. Initially this may be more helpful to you than a full call graph. I'm unable to make any suggestions on this for Windows, but for linux projects I highly recommend gcov and lcov.

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.