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.
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.
Doxygen can create call graphs http://www.doxygen.nl//manual/diagrams.html
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.