2

Possible Duplicate:
Tools to get a pictorial function call graph of code

I have some c/c++ code . I want to know any tool that can be used to generate call graphs , giving information regarding caller,etc on windows platform.

Community
  • 1
  • 1
user1575601
  • 397
  • 1
  • 7
  • 20

2 Answers2

4

Doxygen can create call graphs http://www.doxygen.nl//manual/diagrams.html

albert
  • 8,285
  • 3
  • 19
  • 32
TJD
  • 11,800
  • 1
  • 26
  • 34
  • Remember to install [GraphViz](http://www.graphviz.org/) as well. – timrau Aug 18 '12 at 15:00
  • @IraBaxter, it talks about both. From the page "if CALL_GRAPH is set to YES, a graphical call graph is drawn" – TJD Aug 20 '12 at 16:28
1

You can try also CppDepend , it comes with a dependency graph with many features and possibilities, and you can use CQLinq to request your codebase and see the dependency graph for a subset of your codebase.