×

PyCG

swMATH ID: 37995
Software Authors: Vitalis Salis, Thodoris Sotiropoulos, Panos Louridas, Diomidis Spinellis, Dimitris Mitropoulos
Description: PyCG: Practical Call Graph Generation in Python. Call graphs play an important role in different contexts, such as profiling and vulnerability propagation analysis. Generating call graphs in an efficient manner can be a challenging task when it comes to high-level languages that are modular and incorporate dynamic features and higher-order functions. Despite the language’s popularity, there have been very few tools aiming to generate call graphs for Python programs. Worse, these tools suffer from several effectiveness issues that limit their practicality in realistic programs. We propose a pragmatic, static approach for call graph generation in Python. We compute all assignment relations between program identifiers of functions, variables, classes, and modules through an inter-procedural analysis. Based on these assignment relations, we produce the resulting call graph by resolving all calls to potentially invoked functions. Notably, the underlying analysis is designed to be efficient and scalable, handling several Python features, such as modules, generators, function closures, and multiple inheritance. We have evaluated our prototype implementation, which we call PyCG, using two benchmarks: a micro-benchmark suite containing small Python programs and a set of macro-benchmarks with several popular real-world Python packages. Our results indicate that PyCG can efficiently handle thousands of lines of code in less than a second (0.38 seconds for 1k LoC on average). Further, it outperforms the state-of-the-art for Python in both precision and recall: PyCG achieves high rates of precision  99.2
Homepage: https://arxiv.org/abs/2103.00587
Source Code:  https://github.com/vitsalis/PyCG
Dependencies: Python
Keywords: Programming Languages; arXiv_cs.PL; Software Engineering; arXiv_cs.SE; Python; Call Graph; Program Analysis; Inter-procedural Analysis; Vulnerability Propagation
Related Software: ast; GATEKEEPER; Synode; Judge; WALA; Node.js; Soot; pycallgraph; SAFEWAPI; Paramiko; PyYAML; npm; Depends; JSAI; Callgrind; code2graph; Pyan3; JavaScript; Python
Cited in: 0 Publications

Standard Articles

1 Publication describing the Software Year
PyCG: Practical Call Graph Generation in Python
Vitalis Salis, Thodoris Sotiropoulos, Panos Louridas, Diomidis Spinellis, Dimitris Mitropoulos
2021