rdtsc.c
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #define rdtsc(dest) 
  5.      __asm__ __volatile__("nop; mfc0 %0,$9; nop" : "=r" (dest))
  6. int main(int argc, char **argv)
  7. {
  8.     unsigned int count1,count2,count3,fix;
  9.     printf("rdtsc demo (using mfc0 on mips)n");
  10.     rdtsc(count1);
  11.     rdtsc(count2);
  12.     fix = count2-count1;
  13.     rdtsc(count1);
  14.     printf("rdtsc()  took %5ui cyclesn",fix);
  15.     rdtsc(count2);
  16.     printf("printf() took %5ui cyclesn",count2-count1-fix);
  17.     rdtsc(count1);
  18.     sleep(0);
  19.     rdtsc(count2);
  20.     printf("sleep(0) took %5ui cyclesn",count1-count1-fix);
  21.     rdtsc(count1);
  22.     sleep(1);
  23.     rdtsc(count2);
  24.     printf("sleep(1) took %5ui cyclesn",count1-count1-fix);
  25.     return 0;
  26. }