我有以下 C 文件 rdtsc.c 演示了在 CI 中使用 rdtsc() 对 64 位版本和 32 位版本都有条件编译。
#include <stdio.h>
#ifdef X86_64
static inline unsigned long long tick()
{
unsigned long low, high;
__asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high));
return ((unsigned long long)high << 32) | low);
}
#else
static inline unsigned long long tick()
{
unsigned long long d;
__asm__ __volatile__ ("rdtsc" : "=A" (d) );
return d;
}
#endif
int main()
{
long long res;
volatile int a = 1;
volatile int b = 3;
volatile int c = 0;
res=tick();
c = (a + b)*11000;
res=tick()-res;
printf("ticks %lld",res);
return 0;
}
我从 shell 循环运行上述程序,如下所示。
for i in {1..10} ; do { ./a.out ; printf "\n"; } ; done
我得到的输出如下。
ticks 96
ticks 108
ticks 8698
ticks 8613
ticks 108
ticks 84
ticks 96
ticks 108
ticks 96
ticks 96
由于正在执行相同的操作。我当然希望这些值更接近于 urniform。我如何解释值中的这种差异?