什么是“外部的非堆叠调用”? 在 Perl 的 Devel::DProf 中?
我正在使用 perl -d:DProf
分析 Perl 应用程序。 在生成的 tmon.out
文件上运行 dprofpp
时,我收到如下警告:
Compress::Zlib::__ANON__ has 5 unstacked calls in outer
Compress::Zlib::AUTOLOAD has -5 unstacked calls in outer
- 什么是未堆叠调用?
- 谁或什么是“外在”?
- 这些数字代表着什么? 调用次数怎么可能是负数呢?
- 我应该担心吗?
I am profiling a Perl application with perl -d:DProf
. When running dprofpp
on the resulting tmon.out
file, I get warnings like these:
Compress::Zlib::__ANON__ has 5 unstacked calls in outer
Compress::Zlib::AUTOLOAD has -5 unstacked calls in outer
- What is an unstacked call?
- Who or what is "outer"?
- What do the numbers mean? How can there be a negative number of calls?
- Should I worry?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会尝试一下:
%outer
,它(显然)在分析配置文件时跟踪堆栈计数。dprofpp
的其余结果可能不可靠。 因此,您应该(稍微)担心这些结果的准确性。您可能想研究替代分析模块,例如 Devel::NYTProf
I'll give this a shot:
%outer
in DProf, which (apparently) tracks the stack counts when analyzing a profile.tmon.out
file. However, the rest of the results fromdprofpp
may be unreliable due to this inaccuracy. So, you should worry (a little) about the accuracy of those results.You may want to look into alternate profiling module, like Devel::NYTProf