Generate call graph for c/c++ functions.
How many times do you have this feeling that why can't we have this in emacs when you see the fancy function call hierarchy in "modern" IDEs? I hope one day, with this library, we won't have to envy those "modern" IDEs for this again.
Clone the repo, then in your Emacs init file:
(add-to-list 'load-path "/path/to/repo")
(require 'call-graph)
(call-graph) ;; to launch it
Or install from melpa.
You could choose either Global (default) or Git as search backend for call-graph to use.
GNU Global
call-graph
will recursively call Global
to find caller of
current function and eventually build up a call-graph
tree.
Git
call-graph
will recursively call git grep
to find caller of
current function and eventually build up a call-graph
tree.
Place your cursor in the c/c++ function which you want to generate call-graph for and execute call-graph. You could bind it to C-c g.
(global-set-key (kbd "C-c g") 'call-graph)
(define-key map (kbd "e") 'cg-widget-expand-all)
(define-key map (kbd "c") 'cg-widget-collapse-all)
(define-key map (kbd "p") 'widget-backward)
(define-key map (kbd "n") 'widget-forward)
(define-key map (kbd "q") 'cg-quit)
(define-key map (kbd "+") 'cg-expand)
(define-key map (kbd "_") 'cg-collapse)
(define-key map (kbd "o") 'cg-goto-file-at-point)
(define-key map (kbd "d") 'cg-remove-caller)
(define-key map (kbd "l") 'cg-select-caller-location)
(define-key map (kbd "r") 'cg-reset-caller-cache)
(define-key map (kbd "?") 'cg-help)
(define-key map (kbd "<RET>") 'cg-goto-file-at-point)
(customize-set-variable 'cg-path-to-global "/home/huming/private/gtags-6.5.7/bin/")
(customize-set-variable 'cg-search-backend "Git")
(customize-set-variable 'cg-path-to-git-repo "/workspace/git/$username/repo/")
Specify the parse depth of the call-graph, default is 2, the more the depth is, the longer it takes
(customize-set-variable 'cg-initial-max-depth 3)
Ignore reference which has function name but no `(...)'
(customize-set-variable 'cg-ignore-invalid-reference t)
Display function together with its args
(customize-set-variable 'cg-display-func-args t)
Avoid truncating Imenu entries
(customize-set-variable 'imenu-max-item-length "Unlimited")
Exclude UT/CT directories like /Dummy_SUITE/ /Dummy_Test/
(dolist (filter '("grep -v \"Test/\""
"grep -v \"_SUITE/\""
"grep -v \"/test-src/\""
"grep -v \"/TestPkg/\""))
(add-to-list 'cg-search-filters filter))
(progn
(require 'call-graph)
(global-set-key (kbd "C-c g") #'call-graph)
(customize-set-variable 'cg-path-to-global "/home/$username/private/gtags-6.6.3/bin/")
(customize-set-variable 'imenu-max-item-length "Unlimited")
(customize-set-variable 'cg-display-func-args t)
(dolist (filter '("grep -v \"Test/\""
"grep -v \"Stub/\""
"grep -v \"_SUITE/\""
"grep -v \"/test-src/\""
"grep -v \"/TestPkg/\""
"grep -v \"/unittest/\""
"grep -v \"/test_src/\""
"grep -v \"/ct/\""))
(add-to-list 'cg-search-filters filter)))
Currently when parsing calling relations, header files is excluded. Lots more need to be improved.
- Navigate to caller file location.
- Cache searching result.
- Incremental searching.
- Manual removing wrong callers.
- Manual adding missing callers.
- Show function name and args in call-graph.
- Save cache data to survive emacs restart.
- Support multiple backends, e.g: gnu global, git.
Yes, please do! See CONTRIBUTING for guidelines.
See LICENSE. Copyright (c) 2018-2024 Huming Chen chenhuming@gmail.com
If you think that it's helpful for you, please consider paying a cup of coffee for me. Thank you! 😄