?? rdtsc.c
字號(hào):
#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;}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -