├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── examples ├── function-not-found │ ├── .gcc-callgraph.yml │ ├── Makefile │ └── main.c ├── random-sort │ ├── .gcc-callgraph.yml │ ├── Makefile │ ├── callgraph.svg │ ├── main.c │ ├── sort.c │ └── sort.h └── same-name-funcs │ ├── Makefile │ ├── a.c │ ├── b.c │ ├── c.c │ ├── callgraph.svg │ └── header.h └── gcc-callgraph-plugin.py /.gitignore: -------------------------------------------------------------------------------- 1 | .tmp-bin 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/README.md -------------------------------------------------------------------------------- /examples/function-not-found/.gcc-callgraph.yml: -------------------------------------------------------------------------------- 1 | 2 | start: return_tow_dloube 3 | -------------------------------------------------------------------------------- /examples/function-not-found/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/function-not-found/Makefile -------------------------------------------------------------------------------- /examples/function-not-found/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/function-not-found/main.c -------------------------------------------------------------------------------- /examples/random-sort/.gcc-callgraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/random-sort/.gcc-callgraph.yml -------------------------------------------------------------------------------- /examples/random-sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/random-sort/Makefile -------------------------------------------------------------------------------- /examples/random-sort/callgraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/random-sort/callgraph.svg -------------------------------------------------------------------------------- /examples/random-sort/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/random-sort/main.c -------------------------------------------------------------------------------- /examples/random-sort/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/random-sort/sort.c -------------------------------------------------------------------------------- /examples/random-sort/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/random-sort/sort.h -------------------------------------------------------------------------------- /examples/same-name-funcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/same-name-funcs/Makefile -------------------------------------------------------------------------------- /examples/same-name-funcs/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/same-name-funcs/a.c -------------------------------------------------------------------------------- /examples/same-name-funcs/b.c: -------------------------------------------------------------------------------- 1 | void a(void) 2 | {} 3 | -------------------------------------------------------------------------------- /examples/same-name-funcs/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/same-name-funcs/c.c -------------------------------------------------------------------------------- /examples/same-name-funcs/callgraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/same-name-funcs/callgraph.svg -------------------------------------------------------------------------------- /examples/same-name-funcs/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/examples/same-name-funcs/header.h -------------------------------------------------------------------------------- /gcc-callgraph-plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheustavares/gcc-callgraph-plugin/HEAD/gcc-callgraph-plugin.py --------------------------------------------------------------------------------