什么是“外部的非堆叠调用”? 在 Perl 的 Devel::DProf 中?

发布于 2024-07-09 16:52:09 字数 369 浏览 9 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

同展鸳鸯锦 2024-07-16 16:52:09

我会尝试一下:

  • Unstacked 调用表明当 DProf 分析配置文件时,它在堆栈(配置文件中)上遇到的调用比预期多(或少),这意味着分析数据不正确。
  • “outer”指的是 DProf 中的内部变量 %outer,它(显然)在分析配置文件时跟踪堆栈计数。
  • 这些数字表明 DProf 预计会找到多少个呼叫,以及实际找到了多少个呼叫。 5 表示调用次数比预期多,-5 表示调用次数少 5 个。 同样,这是因为配置文件数据已损坏。
  • 我不会担心你的代码完整性,因为据我所知,这是由于 DProf 本身实现中的错误造成的。 看来 DProf 在编写 tmon.out 文件时感到困惑。 然而,由于这种不准确,dprofpp 的其余结果可能不可靠。 因此,您应该(稍微)担心这些结果的准确性。

您可能想研究替代分析模块,例如 Devel::NYTProf

I'll give this a shot:

  • Unstacked calls indicate that when DProf was analyzing the profile, it encountered more (or fewer) calls on the stack (in the profile) than it expected to, meaning that the profiling data is incorrect.
  • "outer" refers to the internal variable %outer in DProf, which (apparently) tracks the stack counts when analyzing a profile.
  • The numbers indicate how many calls DProf expected to find versus how many it found. 5 means that there are more calls than it expected, -5 means there are 5 fewer. Again, this is because the profile data is corrupt.
  • I wouldn't worry about your code integrity, because AFAIK this is due to bugs in the implementation of DProf itself. It seems DProf got confused when writing the tmon.out file. However, the rest of the results from dprofpp 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文