协助C++程序评测

Assistance with C++ program profiling

本文关键字:评测 程序 C++ 协助      更新时间:2023-10-16

我真的很想知道不同的例程在我的应用程序中需要多少时间。我使用GCC 3.4.2与Dev-C++IDE和gprof进行评测。这是开始结果文件的:

平面轮廓:

Each sample counts as 0.01 seconds.
  %   cumulative   self              self     total           
 time   seconds   seconds    calls   s/call   s/call  name    
  7.48      0.89     0.89                             __gnu_cxx::__exchange_and_add(int volatile*, int)
  7.39      1.77     0.88                             _Unwind_SjLj_Register
  6.22      2.51     0.74                             _Unwind_SjLj_Unregister
  3.70      2.95     0.44  2425048     0.00     0.00  rt::wctree_node<std::vector<OPT_Inst, std::allocator<OPT_Inst> > >::get(std::string, bool&)
  3.28      3.34     0.39                             std::string::operator[](unsigned int)
  3.11      3.71     0.37                             std::basic_string<char, std::char_traits<char>, std::allocator<char> >::~basic_string()
  2.86      4.05     0.34                             std::string::_M_mutate(unsigned int, unsigned int, unsigned int)
  2.69      4.37     0.32                             __gnu_cxx::__atomic_add(int volatile*, int)
  2.61      4.68     0.31    38655     0.00     0.00  SPSBase::containerBoxFillSet(double, double, double, double)

有人能向我解释除了rt::wctree(显然不是我做的)之外的第一个吗?它们来自哪里?它们在程序中的目标是什么?

两个_Unwind在我看来像是异常处理。

_M_mutate似乎表明您正在复制字符串(libstdc++实现的"写时复制"行为的实现细节),配置文件中的字符串析构函数似乎给它加了下划线。

我想原子操作也来自字符串COW行为,因为内部缓冲区是引用计数的。

所以你的大部分时间似乎都花在了复制std::string上。

编辑:好的,现在看看您的rt::wctree<>::get(std::string, bool&)。参数是通过副本传递的。2425048个电话,2425048份复印件。你为什么不试试const&呢?