Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to retrieve a Control Flow Graph for python code?

I would like to dump the Control Flow Graph of a given python code, similar to the option given by gcc compiler option: -fdump-tree-cfg for c code.

I succeeded getting the AST (Abstract Syntax Trees) of a python code, but it seams quite complex and hassle to get the Control Flow Graph from AST phase.

Is there an easier way to retrieve directly the Control Flow Graph of a python code? any suggestions?

oh by the way I'm using python3.5

Thank you all!

P.S I really don't know what kind of interpreter I'm using under the hood, As far as I know it's CPython (not sure), I don't think it's PyPy(Rpython). Any suggestion how can I verify it?

like image 407
JammingThebBits Avatar asked Jul 15 '26 11:07

JammingThebBits


1 Answers

See my SO answer on how to build a control flow graph, using an AST.

The original question asked about CFGs for Java, but the approach is actually pretty generic, and the same approach would work for producing a CFG for Python.

I wouldn't have called this "quite complex"; the basic idea is pretty simple.

like image 91
Ira Baxter Avatar answered Jul 20 '26 09:07

Ira Baxter



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!