我是靠谱客的博主 彪壮嚓茶,最近开发中收集的这篇文章主要介绍计算函数的运行时间,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

统计函数运行时间,在 《汇编语言程序设计》这本书里有介绍:

生成的文件用来查看   gprof ./test ./gmon.out

gprof OPTIONS EXECUTABLE-FILE gmon.out BB-DATA [YET-MORE-PROFILE-DATA-FILES...] [> OUTFILE]

gprof产生的信息
%                        the percentage of the total running time of the
time                     program used by this function.
                           函数使用时间占所有时间的百分比。
cumulative          a running sum of the number of seconds accounted
seconds             for by this function and those listed above it.
                           函数和上列函数累计执行的时间。
self                    the number of seconds accounted for by this
seconds             function alone. This is the major sort for this
                          listing.
                          函数本身所执行的时间。
calls                   the number of times this function was invoked, if
                          this function is profiled, else blank.
                          函数被调用的次数
self                   the average number of milliseconds spent in this
ms/call               function per call, if this function is profiled,
                         else blank.
                          每一次调用花费在函数的时间microseconds。
total                  the average number of milliseconds spent in this
ms/call               function and its descendents per call, if this
                          function is profiled, else blank.
                          每一次调用,花费在函数及其衍生函数的平均时间microseconds。
name                 the name of the function. This is the minor sort
                          for this listing. The index shows the location of
                          the function in the gprof listing. If the index is
                          in parenthesis it shows where it would appear in
                          the gprof listing if it were to be printed.

阅读(108) | 评论(0) | 转发(0) |
0

上一篇:虚拟地址空间管理之mmap系统调用关系图

下一篇:正则表达式基本元字符集

相关热门文章
  • reactor模型 preactor模型
  • 《行尸走肉》第四季10月回归 ...
  • BB霜的功效
  • BB霜+遮瑕膏底妆步骤详解...
  • BB霜的功效
  • linux 常见服务端口
  • 什么是shell
  • linux socket的bug??
  • linux的线程是否受到了保护?...
  • 一个适用于windows和linux的抓...
  • 访问页面出现403错误
  • 大家觉得工商银行的宕机事件存...
  • mysql经常连接不上,报错...
  • 跨机器SCP问题
  • 只设一个只读账户是否足够安全...
评论热议

最后

以上就是彪壮嚓茶为你收集整理的计算函数的运行时间的全部内容,希望文章能够帮你解决计算函数的运行时间所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部