以下のプログラムには、2.6.x カーネルを実行している 64 Linux ホスト上で 64 バイトに整列されたバッファーと 16 バイトに整列されたバッファーの 2 つのバッファーがあります。
キャッシュ ラインの長さは 64 バイトです。したがって、このプログラムでは、一度に 1 つのキャッシュ ラインにアクセスするだけです。posix_memaligned
アライメントされていないバッファよりも高速ではないにしても、同等であることを期待していました。ここにいくつかの指標があります
./readMemory 10000000
time taken by posix_memaligned buffer: 293020299
time taken by standard buffer: 119724294
./readMemory 100000000
time taken by posix_memaligned buffer: 548849137
time taken by standard buffer: 211197082
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <linux/time.h>
void now(struct timespec * t);
int main(int argc, char **argv)
{
char *buf;
struct timespec st_time, end_time;
int runs;
if (argc !=2)
{
printf("Usage: ./readMemory <number of runs>\n");
exit(1);
}
errno = 0;
runs = strtol(argv[1], NULL, 10);
if (errno !=0) {
printf("Invalid number of runs: %s \n", argv[1]);
exit(1);
}
int returnVal = -1;
returnVal = posix_memalign((void **)&buf, 64, 1024);
if (returnVal != 0)
{
printf("error in posix_memaligh\n");
}
char tempBuf[64];
char * temp = buf;
size_t cpyBytes = 64;
now(&st_time);
for(int x=0; x<runs; x++) {
temp = buf;
for(int i=0; i < ((1024/64) -1); i+=64)
{
memcpy(tempBuf, temp, cpyBytes);
temp += 64;
}
}
now(&end_time);
printf("time taken by posix_memaligned buffer: %ld \n", (end_time.tv_nsec - st_time.tv_nsec));
char buf1[1024];
temp = buf1;
now(&st_time);
for(int x=0; x<runs; x++)
{
temp = buf1;
for(int i=0; i < ((1024/64) -1); i+=64)
{
memcpy(tempBuf, temp, cpyBytes);
temp += 64;
}
}
now(&end_time);
printf("time taken by standard buffer: %ld \n", (end_time.tv_nsec - st_time.tv_nsec));
return 0;
}
void now(struct timespec *tnow)
{
if(clock_gettime(CLOCK_MONOTONIC_RAW, tnow) <0 )
{
printf("error getting time");
exit(1);
}
}
最初のループの分解は
movq -40(%rbp), %rdx
movq -48(%rbp), %rcx
leaq -176(%rbp), %rax
movq %rcx, %rsi
movq %rax, %rdi
call memcpy
addq $64, -48(%rbp)
addl $64, -20(%rbp)
2 番目のループの分解は、
movq -40(%rbp), %rdx
movq -48(%rbp), %rcx
leaq -176(%rbp), %rax
movq %rcx, %rsi
movq %rax, %rdi
call memcpy
addq $64, -48(%rbp)
addl $64, -4(%rbp)