1、C++ 性能测试工具GPROF
http://sourceware.org/binutils/docs-2.17/gprof/index.html
http://blog.csdn.net/stanjiang2010/article/details/5655143
GPROF是GCC自带的性能测试工具,可以统计出各个函数的调用次数、时间、以及函数调用图。
使用GRPOF分为三个步骤 (1)编译时候打开编译开关,-pg (2)运行程序(程序一定要正常运行完毕才会生成性能报告) (3)运行性能测试工具来生成报告。
CSDN优化参考:https://blog.csdn.net/u013471946/article/details/43957423
1.编码:
这里编写一个示例代码,随后对其进行性能测试
//test_gprof.c #include<stdio.h> void new_func1(void); void func1(void) { printf("\n Inside func1 \n"); int i = 0; for(;i<0xffffffff;i++); new_func1(); return; } static void func2(void) { printf("\n Inside func2 \n"); int i = 0; for(;i<0xffffffaa;i++); return; } int main(void) { printf("\n Inside main()\n"); int i = 0; for(;i<0xffffff;i++); func1(); func2(); return 0; }
//test_gprof_new.c #include<stdio.h> void new_func1(void) { printf("\n Inside new_func1()\n"); int i = 0; for(;i<0xffffffee;i++); return; }
2.编译并执行
g++ -pg test_gprof.cpp test_gprof_new.cpp -o test_gprof
可以看到执行后会新生成一个gmon.out文件
3.运行性能测试工具
gprof test_gprof gmon.out
可以看到各种参数跃然于屏上
(1)flat profile,包括每个函数的调用次数,以及每个函数消耗的处理器时间
(2)call graph包括函数的调用关系,每个函数调用花费的时间
标签:func1,性能,gprof,程序,test,new,优化,void From: https://www.cnblogs.com/cheng020406/p/17298197.html