call-graph Questions
3
Solved
this seems to be a bug. link to bugreport: https://bugzilla.gnome.org/show_bug.cgi?id=731363
I'm using Doxygen 1.8.7 and Graphviz 2.38. I configured Doxygen to scan a bigger project and generate t...
Gusman asked 5/6, 2014 at 13:0
9
I'm trying to generate a calling graph with which to find out all the possible execution paths that are hitting a particular function (so that I don't have to figure out all the paths manually, as ...
Maynardmayne asked 21/3, 2011 at 4:9
8
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 oper...
Proofread asked 9/2, 2011 at 22:50
2
Solved
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, ...
Boise asked 31/1, 2012 at 16:0
6
Solved
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...
Clyve asked 14/9, 2011 at 18:49
8
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 ...
Ariannaarianne asked 20/12, 2012 at 0:9
4
I am looking for a possibility to generate a call graph for Go projects. Something similar to Doxygen's diagram functionality for C++ classes (with the option CALL_GRAPH=YES).
So far I found
htt...
Strohben asked 11/7, 2015 at 22:10
2
Solved
I used the following command to extract backtraces leading to user level L3-misses in a simple evince benchmark:
sudo perf record -d --call-graph dwarf -c 10000 -e mem_load_uops_retired.l3_miss:up...
Associate asked 2/3, 2020 at 15:1
3
Solved
I'm looking to create a callgraph for java projects from the command line. I have explored several projects, each time falling short (either in my understanding, or the functionality) of what I am ...
Wringer asked 21/1, 2015 at 17:43
2
I've installed Intel Vtune Analyzer 9 to get call-graph and counter-monitor data from a win32 application on a Windows 7 PC with AMD Turion X2 TL-58 processor but it gives an error saying :"The CPU...
Endaendall asked 16/8, 2010 at 10:11
3
Solved
E.g. I have following Perl script
{
package A;
{
package B;
sub _y {
print "Just Another Perl Hacker\n";
}
}
sub _x {
print "Hello world!\n";
B::_y();
}
}
use strict;
use warni...
Exordium asked 16/12, 2018 at 1:54
2
Solved
I've been given a Python code, together with the modules it imports. I would like to build a tree indicating which function calls what other functions. How can I do that?
Conquer asked 27/8, 2017 at 17:23
2
Solved
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 test.c,...
Weighbridge asked 7/3, 2013 at 7:39
8
Solved
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 tool...
Comintern asked 27/4, 2009 at 14:14
1
I need to work on a relatively large R code written by someone else. The code has no documentation, and it's split into countless files, each one of which can contain one or more functions. The ori...
Roundshouldered asked 26/5, 2017 at 9:54
3
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 / execu...
Griffis asked 13/10, 2011 at 3:21
1
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.
Yeung asked 10/10, 2011 at 16:57
6
Looking for software that will analyze php code (i.e. all of wordpress or the thematic theme) and show me pretty pictures (perhaps a block diagram) of all the connections to help me more quickly ge...
Emilemile asked 23/2, 2010 at 16:51
4
I've been given a big chunk of poorly formatted monolithic R code with plenty of functions, and I'd like to work out what functions call what functions.
I thought I could use roxygen's @callGraph...
Pillion asked 25/1, 2011 at 16:17
2
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 fi...
Retrad asked 17/4, 2012 at 2:17
7
Solved
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...
Derwent asked 5/2, 2009 at 19:44
8
Solved
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 - http://en.wikipedia.org/wiki/Control_...
Tallyman asked 22/3, 2011 at 8:37
7
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 in what o...
Inimitable asked 18/4, 2009 at 22:42
8
Solved
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.
Leroy asked 30/12, 2009 at 22:33
2
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 f...
Cede asked 9/10, 2011 at 3:10
1 Next >
© 2022 - 2025 — McMap. All rights reserved.