我编写了一个非常简单的 C 程序,试图理解 C (Linux) 中的 rdtsc。该程序如下所示。
#include <stdio.h>
static inline unsigned long long tick()
{
unsigned long long d;
__asm__ __volatile__ ("rdtsc" : "=A" (d) );
return d;
}
int main()
{
long long res;
int a = 1;
int b = 3;
int c = 0;
res=tick();
c = (a + b)*11000;
res=tick()-res;
printf("%lld\n",res);
return 0;
}
我的处理器配置如下。
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 8
On-line CPU(s) list: 0-7
Thread(s) per core: 2
Core(s) per socket: 4
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 30
Stepping: 5
CPU MHz: 1197.000
BogoMIPS: 5862.24
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 8192K
NUMA node0 CPU(s): 0-7
从输出看,处理器的频率是 1.2GHz,据我了解,这意味着每秒会有 1200 x 10^6 滴答声。
当我在我的机器上运行上述程序时,它的输出始终是 88。令人惊讶的是,即使我删除了 'c = (a + b)*11000;' 在两个刻度之间,输出仍然是 88。
1)为什么输出没有增加。(根据执行上述语句所用的周期,它应该显示略高。)
2) 除了 CPU MHz 之外,上面 cpuinfo 中列出的任何其他参数是否会影响这一点。