怎么计算程序启动每个阶段的耗时?

wshn13 2012-05-07 01:50:35
比如计算relocate的时间,更详细一点,计算relocate每个动态库的时间???
...全文
178 9 打赏 收藏 转发到动态 举报
写回复
用AI写文章
9 条回复
切换为时间正序
请发表友善的回复…
发表回复
wshn13 2012-05-08
  • 打赏
  • 举报
回复
[Quote=引用 8 楼 的回复:]

C/C++ code
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef WIN32
#include <windows.h>
#include <io.h>
#else
#include <unistd.h>
#include <sys/time.h>
#include <……
[/Quote]
谢谢你的回复,但是你的代码好像不是我想要的结果。
我现在是有一个程序,OS是linux,这个程序使用了gstreamer,Qt,glib等几个动态库。因为程序在load之前有个link的过程,主要是做一些relocate动态符号的工作。我想知道relocate gstreamer Qt glib 甚至是libc的动态符号分别需要多长时间。
赵4老师 2012-05-07
  • 打赏
  • 举报
回复
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef WIN32
#include <windows.h>
#include <io.h>
#else
#include <unistd.h>
#include <sys/time.h>
#include <pthread.h>
#define CRITICAL_SECTION pthread_mutex_t
#define _vsnprintf vsnprintf
#endif
//Log{
#define MAXLOGSIZE 100000000
#define ARRSIZE(x) (sizeof(x)/sizeof(x[0]))
#include <time.h>
#include <sys/timeb.h>
#include <stdarg.h>
char logfilename1[]="MyLog1.log";
char logfilename2[]="MyLog2.log";
char logstr[16000];
char datestr[16];
char timestr[16];
char mss[4];
CRITICAL_SECTION cs_log;
FILE *flog;
#ifdef WIN32
void Lock(CRITICAL_SECTION *l) {
EnterCriticalSection(l);
}
void Unlock(CRITICAL_SECTION *l) {
LeaveCriticalSection(l);
}
#else
void Lock(CRITICAL_SECTION *l) {
pthread_mutex_lock(l);
}
void Unlock(CRITICAL_SECTION *l) {
pthread_mutex_unlock(l);
}
#endif
void LogV(const char *pszFmt,va_list argp) {
struct tm *now;
struct timeb tb;

if (NULL==pszFmt||0==pszFmt[0]) return;
if (-1==_vsnprintf(logstr,ARRSIZE(logstr),pszFmt,argp)) logstr[ARRSIZE(logstr)-1]=0;
ftime(&tb);
now=localtime(&tb.time);
sprintf(datestr,"%04d-%02d-%02d",now->tm_year+1900,now->tm_mon+1,now->tm_mday);
sprintf(timestr,"%02d:%02d:%02d",now->tm_hour ,now->tm_min ,now->tm_sec );
sprintf(mss,"%03d",tb.millitm);
printf("%s %s.%s %s",datestr,timestr,mss,logstr);
flog=fopen(logfilename1,"a");
if (NULL!=flog) {
fprintf(flog,"%s %s.%s %s",datestr,timestr,mss,logstr);
if (ftell(flog)>MAXLOGSIZE) {
fclose(flog);
if (rename(logfilename1,logfilename2)) {
remove(logfilename2);
rename(logfilename1,logfilename2);
}
flog=fopen(logfilename1,"a");
if (NULL==flog) return;
}
fclose(flog);
}
}
void Log(const char *pszFmt,...) {
va_list argp;

Lock(&cs_log);
va_start(argp,pszFmt);
LogV(pszFmt,argp);
va_end(argp);
Unlock(&cs_log);
}
//Log}
int main(int argc,char * argv[]) {
int i;
#ifdef WIN32
InitializeCriticalSection(&cs_log);
#else
pthread_mutex_init(&cs_log,NULL);
#endif
for (i=0;i<10000;i++) {
Log("This is a Log %04d from FILE:%s LINE:%d\n",i, __FILE__, __LINE__);
}
#ifdef WIN32
DeleteCriticalSection(&cs_log);
#else
pthread_mutex_destroy(&cs_log);
#endif
return 0;
}
wshn13 2012-05-07
  • 打赏
  • 举报
回复
[Quote=引用 6 楼 的回复:]

gcc -fPIC -shared -o xxx.so xxx.c

你是想知道这个步骤所花费的时间??
[/Quote]
不是 是程序加载之前linker做relocation的时间 运行时
jiligululalala 2012-05-07
  • 打赏
  • 举报
回复
gcc -fPIC -shared -o xxx.so xxx.c

你是想知道这个步骤所花费的时间??
wshn13 2012-05-07
  • 打赏
  • 举报
回复
关键是relocate时候还没有进入main函数 在elf的.init section 写有用吗?
wshn13 2012-05-07
  • 打赏
  • 举报
回复
比如我一个elf 文件a动态连接libb.so,libc.so. 我想知道在linker处理relocate时候relocatelibb.so,libc.so分别用了多长时间?
project2502 2012-05-07
  • 打赏
  • 举报
回复
TRACE输出 然后用DebugView查看
这种方法可行吗?求达人指点
wshn13 2012-05-07
  • 打赏
  • 举报
回复
可以详细一点说吗?

[Quote=引用 1 楼 的回复:]

比如使用GetTickCount等函数获得一些时间等等来计时。
[/Quote]
W170532934 2012-05-07
  • 打赏
  • 举报
回复
比如使用GetTickCount等函数获得一些时间等等来计时。

69,373

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧