tor/scripts/maint/display_callgraph.py
2015-07-30 12:23:28 -04:00

10 lines
283 B
Python
Executable File

#!/usr/bin/python
import cPickle
callgraph = cPickle.load(open("callgraph.cp"))
closure = cPickle.load(open("callgraph_closure.cp"))
for n_reachable, fn in sorted(list((len(r), fn) for fn, r in closure.iteritems())):
print "%s can reach %s other functions." %(fn, n_reachable)