西西軟件園多重安全檢測(cè)下載網(wǎng)站、值得信賴的軟件下載站!
軟件
軟件
文章
搜索

首頁(yè)編程開(kāi)發(fā)其它知識(shí) → Emacs & cflow 生成函數(shù)調(diào)用樹(shù) (call graph)

Emacs & cflow 生成函數(shù)調(diào)用樹(shù) (call graph)

相關(guān)軟件相關(guān)文章發(fā)表評(píng)論 來(lái)源:本站整理時(shí)間:2010/11/29 11:16:17字體大。A-A+

作者:佚名點(diǎn)擊:177次評(píng)論:0次標(biāo)簽: Emacs elisp cflow

  • 類(lèi)型:Mac編程軟件大小:27.5M語(yǔ)言:英文 評(píng)分:10.0
  • 標(biāo)簽:
立即下載

介紹了 Emacs 配合 cflow 制作函數(shù)的調(diào)用樹(shù) (call graph)Table of Contents

1、Introduction to cflow

GNU cflow analyzes a collection of C source files and prints a graph, charting control flow within the program.

GNU cflow is able to produce both direct and inverted flowgraphs for C sources. Optionally a cross-reference listing can be generated. Two output formats are implemented: POSIX and GNU (extended).

Input files can optionally be preprocessed before analyzing.

The package also provides Emacs major mode for examining the produced flowcharts in Emacs.

以上內(nèi)容取自 cflow 的網(wǎng)站: http://www.gnu.org/software/cflow/manual/html_node/Intro.html#Intro。

2、Emacs & cflow

cflow 的代碼包中提供了cflow-mode.el, 該文件提供了 emacs 的 cflow-mode, 用于顯示 cflow 輸出的內(nèi)容,但該文件中并未提供自動(dòng)生成指定函數(shù)的 call tree 的功能,用起來(lái)多少有點(diǎn)不方便。

下面是一個(gè)簡(jiǎn)單的 elisp 函數(shù),通過(guò)該函數(shù)可以為指定的函數(shù)生成調(diào)用樹(shù)。

(defvar cmd nil nil)
(defvar cflow-buf nil nil)
(defvar cflow-buf-name nil nil)

(defun yyc/cflow-function (function-name)
"Get call graph of inputed function. "
;(interactive "sFunction name:\n")
(interactive (list (car (senator-jump-interactive "Function name: "
nil nil nil))))
(setq cmd (format "cflow -b --main=%s %s" function-name buffer-file-name))
(setq cflow-buf-name (format "**cflow-%s:%s**"
(file-name-nondirectory buffer-file-name)
function-name))
(setq cflow-buf (get-buffer-create cflow-buf-name))
(set-buffer cflow-buf)
(setq buffer-read-only nil)
(erase-buffer)
(insert (shell-command-to-string cmd))
(pop-to-buffer cflow-buf)
(goto-char (point-min))
(cflow-mode)
)

函數(shù)中使用了 CEDET 提供的 senator-jump-interactive 用于實(shí)現(xiàn)函數(shù)名的自動(dòng)補(bǔ)全, 如果你的機(jī)器上沒(méi)有 CEDET, 那么就把 (interactive "sFunction name:\n") 的注釋去掉, 而將后面的那句話注釋掉即可。
用法很簡(jiǎn)單,將上面的代碼添加到 ~/.emacs 中后,重新載入配置文件,然后打開(kāi)一個(gè) C 文件, M-x, 輸入: yyc/cflow-function , 隨后在 Mini-buffer 中輸入函數(shù)名字, 回車(chē),即可生成一個(gè)新的 buffer, 并在其中填寫(xiě)了生成的調(diào)用樹(shù)。

如下圖所示:

在調(diào)用樹(shù)中,還可以通過(guò)鍵盤(pán)從調(diào)用樹(shù)中跳轉(zhuǎn)到相應(yīng)的源代碼中。

這樣, cflow 配置 GNU Global 和 cedet , 代碼的閱讀和理解效率會(huì)大大提高。

    相關(guān)評(píng)論

    閱讀本文后您有什么感想? 已有人給出評(píng)價(jià)!

    • 8 喜歡喜歡
    • 3 頂
    • 1 難過(guò)難過(guò)
    • 5 囧
    • 3 圍觀圍觀
    • 2 無(wú)聊無(wú)聊

    熱門(mén)評(píng)論

    最新評(píng)論

    發(fā)表評(píng)論 查看所有評(píng)論(0)

    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    字?jǐn)?shù): 0/500 (您的評(píng)論需要經(jīng)過(guò)審核才能顯示)