码迷,mamicode.com
首页 > 系统相关 > 详细

Linux性能优化工具之gprof简记

时间:2016-08-24 01:14:54      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:include   编译器   return   linux   用户   

  1. gprof工作方式

    在使用gcc编译时指定-pg选项,编译器在用户代码中插入性能测试代码。


  2. gprof简单应用实例

    main.c

#include <stdio.h>
#include "lib.h"

int main(void)
{
	func1(20);
	
	func2(100);

	return 0;
}


lib.h

#ifndef LIB_H
#define LIB_H

void func1(int i);

void func2(int i);

#endif /* LIB_H */


lib.c

#include <stdio.h>
#include "lib.h"


void func1(int i)
{
	while (i--)
		printf("func1(): %d\n", i);
}

void func2(int i)
{
	while (i--)
		printf("func2(): %d\n", i);
}


Makefile

CFLAGS += -pg

objs = $(patsubst %.c,%.o,$(wildcard *.c))

prog: $(objs)
	gcc -pg -o $@ $^
	
clean:
	-rm -f prog $(objs)


在命令行运行make编译代码,产生prog文件。输入./prog运行文件,产生一个输出文件gmon.out。之后

用工具gprof分析该输出文件分析程序的运行情况,并依据这些分析得出的数据优化程序。

运行 gprof prog gmon.out > gprofrslt.txt 分析输出文件得到如下结果(节选部分内容)。可根据传递给

gprof不同的参数得出不同方面性能考量的输出。

Flat profile:

Each sample counts as 0.01 seconds.
 no time accumulated

  %   cumulative   self              self     total           
 time   seconds   seconds    calls  Ts/call  Ts/call  name    
  0.00      0.00     0.00        1     0.00     0.00  func1
  0.00      0.00     0.00        1     0.00     0.00  func2

具体输出的含义可参考gprof帮助文档。


3. gprof文档

     http://sourceware.org/binutils/docs/gprof/

本文出自 “JiMoKuangXiangQu” 博客,请务必保留此出处http://4594296.blog.51cto.com/4584296/1841733

Linux性能优化工具之gprof简记

标签:include   编译器   return   linux   用户   

原文地址:http://4594296.blog.51cto.com/4584296/1841733

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!