如何生成 Perl 模块和脚本的调用图?
我有一堆别人给我的 Perl 脚本和 Perl 模块。 我有一个驱动程序来测试所有这些脚本和模块。 我想生成一个调用图并查看流程。
Perl 是否有可用的工具来执行此操作?
我想要类似 pycallgraph (对于 python)。 我在 AIX 中运行这一切。
I have a bunch of Perl scripts and Perl modules given to me by someone. I have a driver program that tests all these scripts and modules. I want to generate a call graph and see the flow.
Is there something available for Perl for doing this?
I'd like something like pycallgraph (for python). I am running all this in AIX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Simon Cozens 在分析 Perl 中告诉您如何执行此操作在 Perl.com 上。 他结合使用了 Devel::DProf 和 GraphViz。
Simon Cozens tells you how to do it in Profiling Perl on Perl.com. He uses a combination of Devel::DProf and GraphViz.