rdtsc.c
来自「linux driver edition」· C语言 代码 · 共 36 行
C
36 行
#include <stdio.h>#include <stdlib.h>#include <unistd.h>#define rdtsc(dest) \ __asm__ __volatile__("nop; mfc0 %0,$9; nop" : "=r" (dest))int main(int argc, char **argv){ unsigned int count1,count2,count3,fix; printf("rdtsc demo (using mfc0 on mips)\n"); rdtsc(count1); rdtsc(count2); fix = count2-count1; rdtsc(count1); printf("rdtsc() took %5ui cycles\n",fix); rdtsc(count2); printf("printf() took %5ui cycles\n",count2-count1-fix); rdtsc(count1); sleep(0); rdtsc(count2); printf("sleep(0) took %5ui cycles\n",count1-count1-fix); rdtsc(count1); sleep(1); rdtsc(count2); printf("sleep(1) took %5ui cycles\n",count1-count1-fix); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?