如何衡量Linux和Windows中函数的“用户”执行时间

时间:2013-04-04 11:14:50

标签: c profiling

如果我有一个函数 foo 我想描述它的“用户”时间(删除内核或其他进程时间),我怎样才能在代码(C / C ++)中测量它? / p>

我知道以下功能:

  1. QueryPerformanceCounter的
  2. GetProcessTimes
  3. 的Linux

    1. gettimeofday的
    2. 时钟
    3. 还有更多方法吗?每个都提供不同的“时间观点”,非真正提供准确的结果。

2 个答案:

答案 0 :(得分:2)

Linux上最好的方法如下:(从Linux内核中提取并修改一下 perf_event_open 手册页)

代码:

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>
#include <linux/perf_event.h>
#include <asm/unistd.h>

long
perf_event_open(struct perf_event_attr *hw_event, pid_t pid,
            int cpu, int group_fd, unsigned long flags)
{
    int ret;

    ret = syscall(__NR_perf_event_open, hw_event, pid, cpu,
               group_fd, flags);
    return ret;
}

int
main(int argc, char **argv)
{
    struct perf_event_attr pe;
    long long count;
    int fd;

    memset(&pe, 0, sizeof(struct perf_event_attr));
    pe.type = PERF_TYPE_HARDWARE;
    pe.size = sizeof(struct perf_event_attr);
    pe.config = PERF_COUNT_HW_INSTRUCTIONS;
    pe.disabled = 1;
    pe.exclude_kernel = 1;
    pe.exclude_hv = 1;

    fd = perf_event_open(&pe, 0, -1, -1, 0);
    if (fd == -1) {
       fprintf(stderr, "Error opening leader %llx\n", pe.config);
       exit(EXIT_FAILURE);
    }

    ioctl(fd, PERF_EVENT_IOC_RESET, 0);
    ioctl(fd, PERF_EVENT_IOC_ENABLE, 0);

    printf("Measuring instruction count for this printf\n");

    ioctl(fd, PERF_EVENT_IOC_DISABLE, 0);
    read(fd, &count, sizeof(long long));

    printf("Used %lld instructions\n", count);

    close(fd);
}

答案 1 :(得分:1)

在类Unix系统上getrusage正是您正在寻找的。特别是使用RUSAGE_SELF选项。用户时间将位于ru_utime中的struct rusage字段中。 ru_stime计算系统时间。