最近在摆弄算法的的优化,需要剖分一下算法的瓶颈,就找了一些代码剖分工具,其中

gprofileer-tools是很不错的工具,gperftools时google开源的一款C++性能分析分析工具,github项目地址如下:

   https://github.com/gperftools/gperftools

  一 下载和安装:

  1.git clone:

2 . 安装:

   根目录下执行:sh autogen.sh

 然后执行:./configure

最后:make all && sudo make install

安装成功。

   如果没有安装libunwind会出现如,configure执行后报警告:   

configure: WARNING: No frame pointers and no libunwind. Using experimental backtrace capturing via libgcc. Expect crashy cpu profiler.

   解决方法:

使用命令apt-get install libunwind8-dev安装libunwind即可。

  3 最后使用ldconfig更新一下库文件即可。

  二 使用和实例:

  1 使用gprofiler-tools需要在的代码中添加如下几段代码:

   A头文件:

    #include <gperftools/profiler.h>

   B 起止函数:

    修改程序的源代码使得要profiler的代码段包含在ProfilerStart("name");ProfilerStop();

   C链接文件添加需要链接的宏:

    lprofiler //cpu性能

    -ltcmalloc  //heap资源

  2 实例:

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <gperftools/profiler.h>
#include <unistd.h> void consumeSomeCPUTime1(int input){
int i = ;
input++;
while(i++ < ){
i--; i++; i--; i++;
}
}; void consumeSomeCPUTime2(int input){
input++;
consumeSomeCPUTime1(input);
int i = ;
while(i++ < ){
i--; i++; i--; i++;
}
}; int stupidComputing(int a, int b){
int i = ;
while( i++ < ){
consumeSomeCPUTime1(i);
}
int j = ;
while(j++ < ){
consumeSomeCPUTime2(j);
}
return a+b;
}; int smartComputing(int a, int b){
return a+b;
}; int main()
{
int i = ;
printf("reached the start point of performance bottle neck\n");
sleep();
ProfilerStart("CPUProfile");
while( i++ < ){
printf("Stupid computing return : %d\n",stupidComputing(i, i+));
printf("Smart computing return %d\n",smartComputing(i+, i+));
}
printf("should teminate profiling now.\n");
ProfilerStop();
sleep(); return ;
}

  编译运行:

gcc -g test.c -o prog -lprofiler

  

export CPUPROFILE=info.prof

  执行:

pprof -text prog info.prof

  结果:

Using local file prog.
Using local file info.prof.
Total: samples
75.4% 75.4% 75.4% consumeSomeCPUTime1
24.6% 100.0% 50.0% consumeSomeCPUTime2
0.0% 100.0% 100.0% __libc_start_main
0.0% 100.0% 100.0% _start
0.0% 100.0% 100.0% main
0.0% 100.0% 100.0% stupidComputing

 

报错一:

Google perftool cannot read file “libprofiler.so.0”

解决方法:

sudo /sbin/ldconfig

错误二:

Using local file prog.
Use of uninitialized value $host in substitution (s///) at /usr/local/bin/pprof line 3366.
Use of uninitialized value $hostport in concatenation (.) or string at /usr/local/bin/pprof line 3368.
Use of uninitialized value $prefix in concatenation (.) or string at /usr/local/bin/pprof line 3368.
Use of uninitialized value $host in substitution (s///) at /usr/local/bin/pprof line 3366.

解决方法:

env CPUPROFILE=/tmp/mybin.prof /home/gprofiler-tools/prog

参考资料:

1 https://www.kancloud.cn/subin/blog/619133

2 https://github.com/gperftools/gperftools

3 https://stackoverflow.com/questions/1581494/google-perftool-cannot-read-file-libprofiler-so-0

4    https://www.ibm.com/developerworks/cn/linux/l-cn-googleperf/index.html

5   https://stackoverflow.com/questions/24086867/cant-analyse-the-output-the-profile-file-of-gperftools-profiler

linux下应用程序性能剖分神器gprofiler-tools-安装和使用的更多相关文章

  1. VMware,win7与linux centos6.4文件互传,linux下挂载windows共享文件夹,vmware tools安装方法

    本方法是以win7,VMware9.0.1 ,centos6.4为基础实验的. 对于linux的初级使用阶段,都会Windows中使用linux虚拟机VMWare或者其它的.在Windows与linu ...

  2. linux下关于程序性能和系统性能的工具、方法

    观察性能/状态的方法:top free netstat /pro/目录下的信息 其中/pro/meminfo下的信息相当丰富 ------------------------------------- ...

  3. linux下c程序调用reboot函数实现直接重启【转】

    转自:http://www.blog.chinaunix.net/uid-20564848-id-73878.html linux下c程序调用reboot函数实现直接重启 当然你也可以直接调用syst ...

  4. Linux下C程序的编辑,编译和运行以及调试

    国内私募机构九鼎控股打造APP,来就送 20元现金领取地址:http://jdb.jiudingcapital.com/phone.html 内部邀请码:C8E245J (不写邀请码,没有现金送) 国 ...

  5. 位图文件(BMP)格式以及Linux下C程序实现(转)

    源:位图文件(BMP)格式以及Linux下C程序实现 说到图片,位图(Bitmap)当然是最简单的,它是Windows显示图片的基本格式,其文件扩展名为*.BMP.由于没有经过任何的压缩,故BMP图 ...

  6. Linux下C程序内存泄露检测

    在linux下些C语言程序,最大的问题就是没有一个好的编程IDE,当然想kdevelop等工具都相当的强大,但我还是习惯使用kdevelop工具,由于没有一个习惯的编程IDE,内存检测也就成了在lin ...

  7. Linux下C程序的内存映像

    2.Linux下C程序的内存映像 2.1. 代码段.只读数据段(1)对应着程序中的代码(函数),代码段在Linux中又叫文本段(.text)(2)只读数据段就是在程序运行期间只能读不能写的数据,con ...

  8. Red Gate系列之五 .NET Reflector 7.6.1.824 Edition .NET程序反编译神器(附插件安装教程2012-10-13更新) 完全破解+使用教程

    原文:Red Gate系列之五 .NET Reflector 7.6.1.824 Edition .NET程序反编译神器(附插件安装教程2012-10-13更新) 完全破解+使用教程 Red Gate ...

  9. Linux下的暴力密码在线破解工具Hydra安装及其组件安装-使用

    Linux下的暴力密码在线破解工具Hydra安装及其组件安装-使用 hydra可以破解: http://www.thc.org/thc-hydra,可支持AFP, Cisco AAA, Cisco a ...

随机推荐

  1. logrotate-日志切割示例

    logrotate是linux系统自带的工具,它可以自动对日志进行截断(或轮循).压缩以及删除旧的日志文件. 1)配置文件示例# cat /wls/wls81/bin/weblogic/wls/app ...

  2. C++11 constexpr常量表达式

    常量表达式函数 要求: 函数体内只有单一的return返回语句 例如: constexpr int data() { const int i=1; //含有除了return以外的语句 return i ...

  3. python--第十四天总结(js)

    选择器允许您对元素组或单个元素进行操作. jQuery 选择器 在前面的章节中,我们展示了一些有关如何选取 HTML 元素的实例. 关键点是学习 jQuery 选择器是如何准确地选取您希望应用效果的元 ...

  4. Linux vfpd锁定用户目录

    在linux ftp配置中,为了防止用户cd 到其他目录,需要锁定用户的根目录. Step1:修改配置文件 [root@ess ~]# vi /etc/vsftpd/vsftpd.conf #chro ...

  5. latex相关概念

    关于Latex,收到网友的鼓励,决定好好整理下相关的信息. 在初次使用相关的程序时,遇到很多迷惑的概念,下面这篇帖子汇总得很详细. 关于latex各种概念与理解 帖子中提到了三个概念,引擎,宏集(即下 ...

  6. finereport 下拉复选框多选

  7. .net 资源释放(托管资源和非托管资源)

    1.托管资源 像int.float.DateTime等都是托管资源:net中80%的资源都是托管资源: 托管资源的回收通过GC(垃圾回收器)自动释放分配给该对象的内存,但无法预测进行垃圾回收的时间,我 ...

  8. centos7 安装maven

    进入指定目录 cd /usr/local/src/   下载maven 包 wget http://mirrors.hust.edu.cn/apache/maven/maven-3/3.1.1/bin ...

  9. python 实践项目

    项目一:让用户输入圆的半径,告诉用户圆的面积 思路: 1.首先需要让用户输入一个字符串,即圆的半径 2.判断用户输入的字符串是否为数字  isalpha 3.求圆的面积需要调用到math模块,所以要导 ...

  10. delphi 中的浮点数 (转载)

    原文地址 Floating point numbers — Sand or dirt Floating point numbers are like piles of sand; every time ...