Tagged Questions
The call-graph tag has no wiki summary.
16
votes
5answers
5k views
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 for generating call-graph diagrams for C or C++ projects?
15
votes
7answers
770 views
Are there any static Call-Graph and/or Control-Flow-Graph API for JavaScript?
Are there any Call-Graph and/or Control-Flow-Graph generators for JavaScript?
Call Graph - http://en.wikipedia.org/wiki/Call_graph
Control Flow Graph - ...
11
votes
5answers
6k views
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 called from a function in MS VS2005 using the Object browser, and in MSVC 6.0 also, this only shows ...
10
votes
6answers
5k views
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 dive in and start refactoring. I've done this in the past (in other languages) with tools ...
8
votes
3answers
960 views
How can I make a static analysis call graph for Perl?
I am working on a moderately complex Perl program. As a part of its development, it has to go through modifications and testing. Due to certain environment constraints, running this program frequently ...
8
votes
4answers
4k views
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+)
Visually differentiates classes, abstract ...
7
votes
5answers
3k views
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 that can produce graphical output, or at least text output that can be interpreted by ...
6
votes
2answers
163 views
Determining if a method calls a method in another assembly containing a new statement and visa-versa
I want to write a rule that will fail if an object allocation is made within any method called by a method marked with a particular attribute.
I've got this working so far, by iterating up all ...
6
votes
3answers
1k views
how to make gcc spit out a mapping from flow graphs to source code line numbers
Can gcc spit out, given a C file, a list of the all function calls that occur, with filename and line number both for the call itself and for the function's declaration?
I know gcc somehow retains ...
5
votes
2answers
62 views
A 'profiler with visualization' for PHP with `full backtrace visualization`?
Currently, I am using xdebug profiler & KCacheGrind. But GallGrind format does not store full call trace, just the parent child call traces (look at Kcachegrind/callgrind is inaccurate for ...
5
votes
3answers
195 views
Generating dynamic call graph of c/c++ programs on the run
If one were to visualize the running of a program, I suppose one would start by getting the call graphs of the program.
But how would you get the call graph of c/c++ programs while on the run?
edit: ...
5
votes
6answers
2k views
How to generate a Java call graph
I'd like to analyze and understand a certain Java app and I think a call graph would be very useful. How do I generate one? I'm using Eclipse.
4
votes
2answers
112 views
Tools to visualize multithreaded C++ application call graph, multithreaded code coverage?
I would like to know if there are tools that can
Help visualize call graph of a large multi-threaded application.
Specifically I want to see how multiple threads interleaves on one core / executes ...
4
votes
4answers
1k views
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 method of an Abstract Class, and within that context, build a list of all code which performs some ...
4
votes
2answers
201 views
Symbolicating stripped binary using symbols from older debug version (inexact graph matching)
I have binary A, which is a debug build with accompanying symbols -- built many years ago. I also have binary B, a release build without accompanying symbols and is much more recent. I am looking for ...
4
votes
5answers
3k views
Automate tracing in GDB
I have been trying to find a way for some time to automate the progress in GDB of tracing the control flow of a program.
Even just a simple way of automating the 'n' command so you can see what order ...
4
votes
4answers
4k views
Make GDB print control flow of functions as they are called
How do I make gdb print functions of interest as they are called, indented according to how deep in the stack they are?
I want to be able to say something like (made up):
(gdb) trace Foo* Bar* ...
3
votes
2answers
70 views
tool for finding which functions can ultimately cause a call to a (list of) low level functions
I have a very large C++ program where certain low level functions should only be called from certain contexts or while taking specific precautions. I am looking for a tool that shows me which of these ...
3
votes
3answers
146 views
Call graph generation from matlab src code
I am trying to create a function call graph for around 500 matlab src files. I am unable to find any tools which could help me do the same for multiple src files.
Is anyone familiar with any tools or ...
3
votes
2answers
119 views
What issues does static call graph analysis decipher?
What issues would one hope to find using static call graph analysis on a program? FxCop uses static call graph analysis, what issues does it find using this technique?
...
3
votes
2answers
208 views
Good algorithm for generating call graphs?
I am writing some code to generate call graphs for a particular intermediate representation without executing it by statically scanning the IR code. The IR code itself is not too complex and I have a ...
3
votes
2answers
234 views
Is there a free tool which can help visualize the logic of a stored procedure in SQL Server 2008 R2?
I would like to be able to plot a call graph of a stored procedure. I am not interested in every detail, and I am not concerned with dynamic SQL (although it would be cool to detect it and skip it ...
3
votes
2answers
897 views
How can I extract the call graph of a function from Python source files?
Do you know an integrated tool that will generate the call graph of a function from Python sources? I need one that is consistent and can run on Windows OS.
3
votes
2answers
720 views
Merging C Callergraphs with Doxygen or determining union of all calls
I have a collection of legacy C code which I'm refactoring to split the C computational code from the GUI. This is complicated by the heavily recursive mathematical core code being K&R style ...
3
votes
4answers
993 views
How can I see a visualization of a dynamic call graph for a .NET program?
Is there a tool out there for visualizing dynamic call graphs? I saw a reference to one for Visual Basic 6 but I'd like one for .NET.
If I had to build a visualizer myself should I bother with the ...
2
votes
2answers
71 views
List of Method Calls During Execution of Java Unit Test
I have a situation where I need to know what methods are being called from a single JUnit test. For example, if I have the following pseudo-code:
public class UnitTest {
public main() {
...
2
votes
2answers
323 views
How to generate a call graph for a java project
Is it possible to generate a global call graph of an application?
Basically I am trying to find the most important class of an application.
I am looking for options for Java.
I have tried Doxy Gen, ...
2
votes
1answer
272 views
Tools to document/visualize call graph?
having recently joined a project with a vast amount of code to get to grips with, I would like to start documenting and visualizing some of the flows through the call graph to give me a better ...
2
votes
6answers
349 views
How to get the call graph of a program with a bit of profiling information
I want to understand how a C++ program that was given to me works, and where it spends the most time.
For that I tried to use first gprof and then gprof2dot to get the pictures, but the results are ...
2
votes
1answer
1k views
Code flow visualization software - C#
Is there any tool, free or commercial, that can generate flow visualization graphs for a c# method? It should be able to deal with decision points (maybe represent them as vertices) and with ...
2
votes
3answers
162 views
Why don't cycle summaries have any callers in gprof's call-graph output?
I use GNU gprof 2.15.94.0.2.2 to do profiling of my C++ program, which has large call cycles. I expected to see something like below in the call graph output as gprof's documentation indicates:
index ...
1
vote
0answers
73 views
How to generate a static call graph for Java?
Does any of you know to to generate a static call graph for a java project? Or amybe you know a website or paper that describes an algorithm for generating such a graph. I'm currently reading the ...
1
vote
1answer
60 views
Customizable static call graph for Eclipse?
Is there some sort of API or plugin that allows me to first generate a call graph for a java project in Eclipse and to customize specific aspects, such as color, of individual methods within the ...
1
vote
1answer
48 views
Kcachegrind/callgrind is inaccurate for dispatcher functions?
I have a model code on which kcachegrind/callgrind reports strange results. It is kind of dispatcher function. The dispatcher is called from 4 places; each call says, which actual do_J function to run ...
1
vote
2answers
51 views
what will be the suitable language for code parsing and call graph drawing
I have an idea to parse some C++/C code and draw a picture (pretty much like a call graph) out of it. But I may draw more than static pictures (some named boxes within) but also hoping that the boxes ...
1
vote
2answers
148 views
Call graph for a turbo pascal program
I am doing some maintenance to a 18 year old pascal program. To help me understand how everything fits together I want to draw a call graph. However I cant find any software that can draw a call graph ...
1
vote
1answer
33 views
Points-to analysis - A definition
I'm looking to perform some dependence analysis using a call-graph that I will build using the Soot framework. I read in a guide that using 'points-to' analysis can improve the precision of a call ...
1
vote
0answers
93 views
How to generate a simple callgraph of a multiprocess application with Callgrind?
I've a problem with Valgrind Callgrind.
I need to generate the call graph of an application, but this application launch several processes. I used the --trace-children=yes option of Valgrind, but ...
1
vote
1answer
215 views
Generate Call Graph in Android
What are possible tools to generate the call graph of an android application in eclipse? I would like to know which methods interact together...but i can't seem to find anything helpful. I have read ...
1
vote
2answers
1k views
Tool for generating a call flow graph [C C++ solaris linux]
I'm quite fond of IDA, but I'm working in Solaris on this project. I do have a linux machine, and if nothing is in the same league as IDA then I'll convince management to purchase a license for it.
...
1
vote
2answers
349 views
how do call graphs resolve function pointers?
I am implementing a call graph program for a C using perl script. I wonder how to resolve call graphs for function pointers using output of 'objdump'?
How different call graph applications resolve ...
1
vote
1answer
307 views
Intel Vtune on amd processors
I installed Intel Vtune Analyzer 9 to get call-graph and counter-monitor data on a win32 application on a Windows 7 PC with AMD Turion X2 TL-58 processor. But it gives an error saying :"The CPU ...
1
vote
1answer
409 views
How can I generate call graphs for Perl modules and scripts?
I have a bunch of Perl scripts and Perl modules given to me by someone. I have a driver program that tests all these scripts and modules. I want to generate a call graph and see the flow.
Is there ...
1
vote
2answers
238 views
Dependency Injection: Separating the Call Graph from the Construction Graph
I'm trying to exercise the principles of Dependency Injection, and I'm having some difficulty doing so.
I have a function that periodically goes off to my database, retrieves a list of products, and ...
1
vote
3answers
588 views
Print complete control flow through gdb
The idea is that given a specific input to the program, somehow I want to automatically step-in through the complete program and dump its control flow along with all the data being used like classes ...
0
votes
1answer
87 views
Filter calls to libc from valgrind's callgrind output
I'm trying to generate a call graph for a server for documentation purposes. Not for any kind of profiling.
I generated the output with:
sudo valgrind --tool=callgrind --dump-instr=yes ...
0
votes
0answers
123 views
generate call hierarchy graph with ctags
Is there anyone who knows how to generate call hierarchy graph with ctags and cscope? I need to run the commands in the terminal and redirect the output to a file, rather than do it in vim. Thanks,
...
0
votes
1answer
94 views
gprof - File is missing call-graph data
I'm just starting out with gprof and am trying to generate a call graph.
I'm using cmake for setting up my makefiles and I'm setting CMAKE_EXE_LINKER_FLAGS = -gp to enable profiling. The only cxx ...
0
votes
0answers
119 views
How do I merge call and caller graph in doxygen?
I have both CALL_GRAPH and CALLER_GRAPH set to YES, and doxygen happily generates both call and caller graph for me, however is there a command or trick to merge these two graphs to a single "flow" ...
0
votes
1answer
183 views
merging multiple graphviz DOT files in windows for gvpack
i have large C codes for which i had to generate Call graphs, i was kind of successful using Doxygen, but the problem now is, Doxygen generates a different DOT file for every function etc,..
I found ...