C/어셈블러 프로그램의 정확한 클럭 사이클 측정

C/어셈블러 프로그램의 정확한 클럭 사이클 측정

프로그램을 실행하는 데 필요한 정확한 클럭 사이클 수를 측정해야 합니다. 나는 clock() 함수를 사용했지만 그 값은 시스템 매개변수에 따라 달라집니다. gdb를 사용하여 클럭 사이클을 측정하는 방법을 모르겠습니다. 이 목적으로 사용할 수 있는 다른 도구가 있습니까? 감사해요.

답변1

당신은 그것을 사용할 수 있습니다성능프로그램 실행을 분석하는 데 사용되는 성능 카운터입니다. 기본적으로 당신은

perf stat your_executable your_options

여기몇 가지 간단한 예가 있으며여기좀 더 자세한 글이다.

최신 CPU에서는 특정 작업을 수행하는 데 사용되는 클록 주기가 캐시 사용량, 내부 예약/재주문 등에 따라 달라집니다. 따라서 분석 병목 현상을 발견하려면 perf제공된 다른 옵션을 사용하십시오.

답변2

리눅스 perf_event_open시스템 호출config = PERF_COUNT_HW_CPU_CYCLES

프로그램의 소스 코드를 수정할 수 있으면 이 시스템 호출을 사용할 수 있습니다. 또한 프로그램이 관심을 갖고 있는 특정 영역에서만 결과를 측정할 수도 있습니다.

자세한 내용은 다음을 참조하세요.https://stackoverflow.com/questions/13772567/how-to-get-the-cpu-cycle-count-in-x86-64-from-c/64898073#64898073

perf_event_open.c:

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

#include <inttypes.h>
#include <sys/types.h>

static 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;

    uint64_t n;
    if (argc > 1) {
        n = strtoll(argv[1], NULL, 0);
    } else {
        n = 10000;
    }

    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_CPU_CYCLES;
    pe.disabled = 1;
    pe.exclude_kernel = 1;
    // Don't count hypervisor events.
    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);

    /* Loop n times, should be good enough for -O0. */
    __asm__ (
        "1:;\n"
        "sub $1, %[n];\n"
        "jne 1b;\n"
        : [n] "+r" (n)
        :
        :
    );

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

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

    close(fd);
}

관련 정보