I am writing a program that tries to compare two methods. I would like to generate Control flow graphs (CFG) for all matched methods and use either a topological sort to compare the two graphs.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
PyPy offers a way of grabbing the flow model and for type inference. This works quite well in most cases but generators are not supported. The result will be in SSA form, which might be good or bad, depending on what you want. |
|||||
|
|
http://pycallgraph.slowchop.com/ looks like what you need. Python trace module also have option |
|||
|
|