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

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  *
  3.  * Copyright (C) 2001 Alessandro Rubini and Jonathan Corbet
  4.  * Copyright (C) 2001 O'Reilly & Associates
  5.  *
  6.  * The source code in this file can be freely used, adapted,
  7.  * and redistributed in source or binary form, so long as an
  8.  * acknowledgment appears in derived source files.  The citation
  9.  * should list that the code comes from the book "Linux Device
  10.  * Drivers" by Alessandro Rubini and Jonathan Corbet, published
  11.  * by O'Reilly & Associates.   No warranty is attached;
  12.  * we cannot take responsibility for errors or fitness for use.
  13.  *
  14.  */
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <unistd.h>
  18. #define rdtsc(dest) 
  19.      __asm__ __volatile__("nop; mfc0 %0,$9; nop" : "=r" (dest))
  20. int main(int argc, char **argv)
  21. {
  22.     unsigned int count1,count2,count3,fix;
  23.     printf("rdtsc demo (using mfc0 on mips)n");
  24.     rdtsc(count1);
  25.     rdtsc(count2);
  26.     fix = count2-count1;
  27.     rdtsc(count1);
  28.     printf("rdtsc()  took %5ui cyclesn",fix);
  29.     rdtsc(count2);
  30.     printf("printf() took %5ui cyclesn",count2-count1-fix);
  31.     rdtsc(count1);
  32.     sleep(0);
  33.     rdtsc(count2);
  34.     printf("sleep(0) took %5ui cyclesn",count1-count1-fix);
  35.     rdtsc(count1);
  36.     sleep(1);
  37.     rdtsc(count2);
  38.     printf("sleep(1) took %5ui cyclesn",count1-count1-fix);
  39.     return 0;
  40. }