Generate Call-Tree from cscope database

后端 未结 5 1977
我寻月下人不归
我寻月下人不归 2021-02-05 20:28

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

相关标签:
5条回答
  • 2021-02-05 20:50

    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.)

    0 讨论(0)
  • 2021-02-05 20:52

    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.

    0 讨论(0)
  • 2021-02-05 21:00

    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.

    0 讨论(0)
  • 2021-02-05 21:05

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

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

    0 讨论(0)
  • 2021-02-05 21:17

    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.

    0 讨论(0)
提交回复
热议问题