A Call-Graph is a visual representation of calls between functions/procedures/methods etc. Typically created from the entry point of the code through each of the calls.
1
vote
1answer
36 views
Tool that outputs the longest chain of calls
The context: I am carrying out the analysis procedure described here: approach.
The blocking point is finding the "longest chain of calls" for the project under observation. What tool can be used ...
0
votes
1answer
37 views
context sensitive call graph for java bytecode and interprocedural dataflow analysis framework?
In my project, I have two problems to address.
1:
I need a context-sensitive call graph for java (bytecode).
Here the context is the call stack of the method, i.e., for different invocation points of ...
1
vote
2answers
64 views
How to omit built-in functions from call graph
I generated my C/C++ program's call graph using gcc, however the graph contains a lot of built-in functions such as strcmp, fprintf etc. which I am not interested in. Is there any gcc options that can ...
0
votes
0answers
30 views
Are there any tool or utility that can take in disassembled code as input and produce the equivalent Control Flow Graph as output automatically?
The .exe/.dll is obtained by compiling any of C,C++,Java,... program code. This in turn is disassembled using 'objdump' to get the ASM instructions. The "required tool" should be able to convert those ...
2
votes
1answer
201 views
Create a call graph for a file with clang
Is there a way to create a call graph with clang that can reasonably fit on a page?
i.e. given:
#include<iostream>
using namespace std;
int main()
{
int a;
cin>>a;
...
0
votes
1answer
81 views
how to give more than one c file as input to GNU Cflow?
I was able to generate the callgraph of one file using gnu - cflow, but I was not able to find out how to generate the call graph for multiple files using cflow.
I tried following
cflow ...
1
vote
0answers
154 views
How to generate doxygen call graph that includes class methods?
I have a huge C++ project developed by someone else which I'm trying to get a good view with doxygen.
I managed to properly configure doxygen to generate everything I need, except the callgraphs. They ...
0
votes
0answers
67 views
Doxygen: Mainpage Callgraph
Is it possible to display the call graph of my functions on my main page in Doxygen?
For example:
/**
* \mainpage My main page
*/
/**
* Short description.
* Long description
* \callgraph
*/
...
1
vote
1answer
103 views
Popular diagramming tools or methodologies for C [duplicate]
Coming from a java (and other OO backgrond ) i got very cosy in with my objects, natural encapsulation and polymorphism.
All this i expected, the one this i didn't expect was to miss my class ...
0
votes
0answers
103 views
How to make a callgraph for a dll?
I have a native C/C++ x64 dll that I want to profile for static code analysis.
In Linux I do this step in my workflow with callgrind/valgrind and KCachegrind.
I want to do something like this for a ...
0
votes
1answer
811 views
Generating Function Call-Graph Doxygen+Graphviz
How can I generate a function call graph using Doxywizard with Graphviz installed? (I'm aware of how to get doxygen to produce call & caller graphs for c functions, but it didn't help)
Currently, ...
1
vote
0answers
136 views
Uncaught exception 'ReflectionException' with message 'Cannot set readonly property ezcReflectionClass::$class'
I am trying to find all the unused code in my project.So I have gone through many dead code detectors like PHPMD, PHPDCD, Xdebug. Finally i settled with phpcallgraph. I have followed these links: ...
3
votes
2answers
394 views
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 the project because it is very confusing. I am not able to execute the code because it needs extra HW and SW to ...
1
vote
2answers
101 views
Dynamic profiling for java program
I want to profile a fairly large java program dynamically. More specifically, I want to generate a dynamic call graph for one run of the program. Is there a commandline profiler to generate such ...
2
votes
2answers
356 views
How to generate call graph from android APK?
I have downloaded a few Android applications from Google Play. I have got Smali code through reverse engineering tool apktool .I want to generate call graphs for these applications. I have seen many ...
1
vote
0answers
75 views
How to use NCC (nccgen/nccnav)?
I'd like to understand how to use a tool called NCC:
http://students.ceid.upatras.gr/~sxanth/ncc/
Its purpose is to detail program call graph and internal symbol dependencies, similar to ...
0
votes
1answer
125 views
Tool for taking notes for source code (kind of a call graph+)
I'm looking for a tool that would help me read a large amount of C++ source code for a complex product and understand relationships between components and datatype and have those relationshipts ...
1
vote
0answers
202 views
Doxygen does not create callgraphs
I am trying to get a callGraph for jython code. My doxygen config contains (among others) these lines:
HAVE_DOT = YES
DOT_PATH = /path/to/folder/containing/dot
CALL_GRAPH = YES
CALLER_GRAPH = YES
...
0
votes
0answers
228 views
Eclipse plug in or tool for dynamic call graph generation for java
I need to generate call graph for my android code at runtime.
Is there any plug-in in eclipse to generate call graph at run time?
Is there any other tool to get call graphs dynamically for java ...
1
vote
1answer
301 views
Generating a call graph with Clang
How do I use clang to generate a call graph of C++ code? I understand I need to use this, but I can't find any examples.
I already tried using python bindings for this, but they seem to be lacking ...
0
votes
1answer
581 views
Eclipse plugin for c/c++ call graph generator not working properly
I have installed eclipse plugin for call graph generator using the following link.
http://certiv.net/updates/
That plugin has been successfuly installed as I can checked that from installed plugins ...
1
vote
2answers
547 views
Tool to generate call graphs for c/c++ code on windows platform? [duplicate]
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 ...
2
votes
1answer
337 views
How to create call graph for c/c++ code in eclipse?
I have read on internet that cdt is basically used for generating call graphs for c/c++ code in eclipse.
I have installed eclipse juna's latest version along with the MinGW and cygwin to compile and ...
7
votes
3answers
302 views
Source code browsing, comprehension and reading tools [closed]
I am primarily a C and C++ programmer and i often need to quickly comprehend the structure of very large code bases (gcc, linux kernel). I wonder if there are any tools to help in this regard. I am ...
2
votes
1answer
164 views
c++ call graph, but as text
For a given method (eg. Settings.cpp getSettingByName()), I would like to get a text representation of the call graph. I've heard doxygen can generate an image of the call graph, I'm more interested ...
3
votes
2answers
845 views
Generating call graph for C code [closed]
I'm writing a tool and I need to generate the callgraph for some C projects.
I was able to generate the callgraph of one file using clang, but I was not able to find out how to generate the call graph ...
1
vote
0answers
123 views
Call graphs for CUDA
I am trying to generate call graphs for a code that I have in CUDA with egypt but the usual way doesn't seem to work (since nvcc doesn't have any flag that can do the same thing as -fdump-rtl-expand). ...
1
vote
2answers
244 views
call graph for a single method (c++ and java)
For a given method (eg. Settings.cpp getSettingByName()), I would like to build a static call graph. Is there an opensource tool that can do this for both java and c++?
For example, if I gave it ...
0
votes
0answers
262 views
Trouble understanding gperftools/perftools.rb output
Context:
I'm trying to understand the call graph generated by perftools.rb
There was a fix for eventmachine that resulted in an increase from 500 requests/sec to 7000 requests/sec when using ...
2
votes
1answer
428 views
Customizable Static Java Call-Graph generator?
I have to refactor and maintain a bunch of horrible similar looking Java classes. Many have the following implementation pattern
class Machine {
public int advance(int state) {
...
0
votes
2answers
230 views
Using jProfiler to generate call graph
I want to use jProfiler to generate a call graph. I have received a licensed key for evaluation version. I want to use jprofiler to profile a simple webserver(jibble miniwebserver). I am using linux. ...
0
votes
1answer
151 views
using profiler4j for profiling
I want to use profiler4j to profile my simple java program which call 2 methods. I would be interested in call graph view. I followed following link to run the profiler.
...
3
votes
3answers
197 views
Find callers of a method
I am trying to check if methods that acquire a resource also release it. What is the best tool to use to find out callers of a method in the classes in a single jar file? Can I do this with CheckStyle ...
1
vote
1answer
349 views
Generating a comprehensive callgraph using GCC & Egypt
I am trying to generate a comprehensive callgraph (complete with low level calls to Linux, runtime, the lot).
I have statically compiled my source files with "-fdump-rtl-expand" and created RTL ...
8
votes
3answers
696 views
Any tools to draw call-graphs for given javascript? [closed]
I have seen " How to generate function call graphs for JavaScript? ", and tried it. It works well, if you want to get an abstract syntax tree. Closure compiler only seems to offer "--print_tree", ...
1
vote
0answers
120 views
Static Call Graph from binary executables
I was wondering if there is any way to statically analyze binaries in linux, and get all potential call flows/control flows.
Essentially a static analysis (with potential aliasing) similar to as is ...
0
votes
1answer
1k views
How to use LLVM to generate a call graph?
I'm looking into generating a call-graph for the linux kernel that would include function pointers (see my previous question Static call graph generation for the Linux kernel for more information). ...
6
votes
1answer
973 views
Static call graph generation for the Linux kernel
I'm looking for a tool to statically generate a call graph of the Linux kernel (for a given kernel configuration). The generated call graph should be "complete", in the sense that all calls are ...
1
vote
4answers
936 views
How to create a simple static call graph in Java?
I would like to generate a simple call graph in order to be able to analyze the flow of execution in methods in java.
So for example, if in the code I'm able to go from method X to method Y in a ...
0
votes
1answer
194 views
NoClassDefFoundError exception when trying to use SOOT
I'm trying to use SOOT to generate call graphs. However when I pass it some class to be analyzed, the exception NoClassDefFoundError is being thrown. I'm using the following two tutorials to be able ...
0
votes
1answer
247 views
How to dump a function call tree of a c code in a file?
Can anyone guide me how to build a call tree of a code of c If any one can suggest me any opensource tool I have used func_tree but it is not displaying the macro function call and function under ...
4
votes
1answer
1k views
Can clang generate a call graph for an Xcode project (in Objective-C?
I found this example that looks like it outputs what I want for C++. How can it be done for the Objective-C code in an Xcode project?
I see mentions of Doxygen being able to create a call graph, but ...
5
votes
2answers
430 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 ...
3
votes
2answers
163 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 ...
1
vote
0answers
395 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
397 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 ...
0
votes
1answer
349 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 ...
4
votes
2answers
425 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 ...
2
votes
0answers
379 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
718 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 ...

