Generate Call-Tree from cscope database
Asked Answered
N

5

14

I want to generate Full and Partially Call Trees from cscope database of c and c++ projects in Linux.

The project is rather large, so it can be not easy to work with the full call tree of project, so I want to limit call tree generation with grep-like filter of function names.

And also I want to be able to build "called by" and "called from" sub-trees from any point.

So tool must be interactive and easy to patch.

PS: I want use cscope database, because it is already used in project and generating of it is rather fast. I use vim editor and have X windows system.

There is cbrowser program on sourceforge, but its call-tree (callgraph) functionality is broken.

Nassi answered 1/2, 2010 at 17:23 Comment(2)
And does cscope handle indirect or virtual method calls? If it doesn't, what's the meaning of your "full call tree"? If you are willing to settle for a "partial call tree", how partial can it be (the empty call tree is a valid partial call tree, but isn't very interesting).Deucalion
I use cscope for C project. I don't need it to be very exact, only to such degree as do cscope with queries "calls to" and "called from". I want to get full call-graph of functions in big c project. It must include explicit function calls. anything else is optional.Nassi
H
4

if you want to do it using vim here is a way:

http://www.vim.org/scripts/script.php?script_id=2368

Harkey answered 30/7, 2010 at 16:57 Comment(0)
P
2

I've made an attempt to "fix" the call tree problem in cbrowser (see http://retprogbug.wordpress.com/2010/09/18/an-attempt-to-resuscitate-cbrowser-0-8/) though being a complete programming noob I make no guarantees.

Purulence answered 19/9, 2010 at 14:58 Comment(1)
do you have a results? screenshoot of some sources with calltree drawed by cbrowser?Nassi
S
1

I'm not aware of any programs, other than cscope, that read cscope databases. Even vim's cstag functionality just starts a background cscope process which it queries.

As for call-graph generation, if you don't mind stepping outside cscope, I rather like what doxygen creates. They can be a little big, but it also generates the graph from almost all points, and it's incredibly easy to browse source directly in it.

Staats answered 13/2, 2010 at 9:25 Comment(0)
P
1

kscope may be another option. I'm not sure if it will do everything specified, but it is fairly versatile for a GUI app.

Ubuntu users having trouble getting it running are advised to follow these instructions.

Pretender answered 15/1, 2011 at 0:0 Comment(3)
screenshoots of call-tree seems to be sourceforge.net/dbimage.php?id=200328Nassi
@osgx: Thanks. Though I'm not sure if the OP is looking for a tree in that sense, or for a call graph.Pretender
im looking for both. the tree is good, the callgraph is better, and the best is the callgraph for part of funcions. (filtered or subgraph). And I'm a OP :)Nassi
H
1

I got this cscope-based Bash script to work in Cygwin & Windows: http://toolchainguru.blogspot.com/2011/03/c-calltrees-in-bash-revisited.html

See example call "graph" (I've been calling it a call "tree", whoops). See example from the Linux kernel.

It requires cscope (of course) and graphviz. It is able to do upstream and downstream graphs, as well as combined up & down graphs (see example).

I haven't demonstrated it here but this method works really quite well on large projects where the same function might be defined in multiple directories. There will just be one node drawn for the same function name (so one "main" node even if you have multiple main()'s defined in your directory structure)---and you'll have multiple edges emanating from such a node, with file/line indicators. I found this aspect to be more useful than GNU cflow, which insisted on picking only one directory to look in. (The Jason Nyberg Bash script as is doesn't play well with threading, which GNU cflow handles nicely; something to keep in mind.)

Hickerson answered 13/5, 2013 at 13:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.