Top "Call-graph" questions

A Call-Graph is a visual representation of calls between functions/procedures/methods etc.

Tools to get a pictorial function call graph of code

I have a large work space which has many source files of C code. Although I can see the functions …

c function call-graph
How to Generate a calling graph for C++ code

I'm trying to generate calling graph with which to find out all the possible execution paths that are hitting a …

c++ static-analysis call-graph
C# Call Graph Generation Tool

I just got a heaping pile of (mostly undocumented) C# code and I'd like to visualize it's structure before I …

c# .net code-analysis call-graph
Build a Call graph in python including modules and functions?

I have a bunch of scripts to perform a task. And I really need to know the call graph of …

python function static module call-graph
Static analysis of Java call graph

What I'd like to do is scan a set of Java classes, and trace all method calls from a specific …

java static-analysis call-graph
PHP call graph utility?

I'm looking for a utility similar to gprof that will generate a call graph for PHP code. I'd prefer something …

php visualization call-graph
How to generate a Java call graph, Eclipse based solutions

I'd like to analyze and understand a certain Java app and I think a call graph would be very useful. …

java eclipse graph call-graph
Application to generate Java class hierarchy diagram

Looking for a tool that: Produces a visually pleasing (not garish), orthogonally structured graph hierarchy Outputs high-quality PNG images (300dpi+) …

java visualization class-hierarchy call-graph
C/C++ call-graph utility for Windows platform

I have a large 95% C, 5% C++ Win32 code base that I am trying to grok. What modern tools are available …

c++ c winapi utility call-graph
How to print the next N executed lines automatically in GDB?

I have been trying to find a way for some time to automate the progress in GDB of tracing the …

dynamic gdb trace call-graph control-flow