├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── create_prazi_graph.sh ├── doc └── pdn_cdn.png ├── py-src ├── infer_dependency_network_from_callgraphs.py ├── log.py ├── merge_unified_callgraphs.py ├── prepare_unified_callgraphs.py └── prune_cg.py └── src ├── bin ├── prazi.rs └── ufi.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/README.md -------------------------------------------------------------------------------- /create_prazi_graph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/create_prazi_graph.sh -------------------------------------------------------------------------------- /doc/pdn_cdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/doc/pdn_cdn.png -------------------------------------------------------------------------------- /py-src/infer_dependency_network_from_callgraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/py-src/infer_dependency_network_from_callgraphs.py -------------------------------------------------------------------------------- /py-src/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/py-src/log.py -------------------------------------------------------------------------------- /py-src/merge_unified_callgraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/py-src/merge_unified_callgraphs.py -------------------------------------------------------------------------------- /py-src/prepare_unified_callgraphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/py-src/prepare_unified_callgraphs.py -------------------------------------------------------------------------------- /py-src/prune_cg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/py-src/prune_cg.py -------------------------------------------------------------------------------- /src/bin/prazi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/src/bin/prazi.rs -------------------------------------------------------------------------------- /src/bin/ufi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praezi/rust/HEAD/src/bin/ufi.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------