Tagged Questions

0
votes
2answers
46 views

Need help to draw control-flow graph with GLEE and C#

Hi, I am trying to draw a control-flow graph(CFG) from source code using the GLEE graph library and C# language. Problem is, I am new to GLEE. I need a tutorial or sample programs/projects to help me …
6
votes
3answers
240 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 …
1
vote
1answer
99 views

How can I generate call graphs for Perl modules and scripts?

Hi All, 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 …
8
votes
5answers
457 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?
2
votes
5answers
223 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 …
2
votes
1answer
182 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 …
1
vote
3answers
543 views

Application to generate Java class hierarchy diagram

Looking for a tool that: Produces a visually appealing, orthogonally structured graph hierarchy Outputs high-quality PNG images (300dpi+) Visually differentiates classes, abstract classes, …
2
votes
2answers
128 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.
0
votes
3answers
162 views

How to log an application’s entire stacktrace in .net

I've just started work on an existing .net application with about 40 active projects. While familiarizing myself with the project, I find myself constantly stepping through the application just to …
2
votes
3answers
73 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
2answers
92 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 …
4
votes
5answers
803 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 …
1
vote
5answers
456 views

Automate tracing in GDB

Hi, 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 …
0
votes
3answers
122 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 …
6
votes
2answers
250 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 …

1 2 next
15 30 50 per page