cputime.h
Upload User: zbbssh
Upload Date: 2007-01-08
Package Size: 196k
Code Size: 5k
Category:

CA program

Development Platform:

C/C++

  1. #ifndef CPUTIME_H
  2. #define CPUTIME_H
  3. /*
  4.  * Figure out what clock to use.  Each possibility can be specifically
  5.  * enabled or disabled by predefining USE_XXX to 1 or 0.  For some,
  6.  * the code attempts to detect availability automatically.  If the
  7.  * Symbols HAVE_XXX are defined, they are used.  If not, they are
  8.  * set to reasonable default assumptions while further conditions
  9.  * are checked.  The choices, and the ways they are auto-detected are:
  10.  * - gethrvtime(), if HAVE_GETHRVTIME is set to 1.
  11.  * - clock_gettime(CLOCK_VIRTUAL,...), if CLOCK_VIRTUAL is defined in <time.h>
  12.  * - getrusage(RUSAGE_SELF,...), if RUSAGE_SELF is defined in <sys/resource.h>
  13.  * - clock(), if CLOCKS_PER_SEC or CLK_TCK are defined in <time.h>
  14.  * - time(), unless specifically disabled.
  15.  *
  16.  * The symbol CLOCK_AVAIL is given a value of 1 if a clock is found.
  17.  * The following are then available:
  18.  * timetype (typedef): the type needed to hold a clock value.
  19.  * gettime(t) (macro): A function that gets passed a timetype *.
  20.  * subtime(d,s) (macro): Sets d -= s, essentially.
  21.  * msec(t) (macro): Given a timetype, return the number of milliseconds
  22.  * in it, as an unsigned integer between 0 and 999.
  23.  * sec(t) (macro): Given a timetype, return the number of seconds in it,
  24.  * as an unsigned long integer.
  25.  */
  26. #ifdef UNIX
  27. /* Nothing */
  28. #elif unix
  29. #define UNIX 1
  30. #elif __unix
  31. #define UNIX 1
  32. #elif __unix__
  33. #define UNIX 1
  34. #endif
  35. #ifndef TIME_WITH_SYS_TIME
  36. #define TIME_WITH_SYS_TIME 1 /* Assume true if not told */
  37. #endif
  38. /*
  39.  * Include <time.h> unless that would prevent us from later including
  40.  * <sys/time.h>, in which case include *that* immediately.
  41.  */
  42. #if TIME_WITH_SYS_TIME
  43. #include <time.h>
  44. #elif HAVE_SYS_TIME_H
  45. #include <sys/time.h>
  46. #else
  47. #include <time.h>
  48. #endif
  49. #ifndef USE_GETHRVTIME
  50. #define USE_GETHRVTIME HAVE_GETHRVTIME
  51. #endif
  52. #if USE_GETHRVTIME
  53. #define CLOCK_AVAIL 1
  54. typedef hrtime_t timetype;
  55. #define gettime(t) *(t) = gethrvtime()
  56. #define subtime(d,s) d -= s
  57. #define msec(t) (unsigned)((t/1000000)%1000)
  58. #define sec(t) (unsigned long)(t/1000000000)
  59. #else
  60. #ifndef USE_CLOCK_GETTIME
  61. #ifndef HAVE_CLOCK_GETTIME
  62. #define HAVE_CLOCK_GETTIME 1 /* Assume the CLOCK_VIRTUAL test will catch */
  63. #endif
  64. /*
  65.  * It breaks the DEC Alpha compiler to use the simpler construct
  66.  * "#define USE_CLOCK_GETTIME defined(CLOCK_VIRTUAL)".
  67.  */
  68. #if HAVE_CLOCK_GETTIME
  69. #ifdef CLOCK_VIRTUAL
  70. #define USE_CLOCK_GETTIME 1
  71. #endif
  72. #endif
  73. #endif
  74. #if USE_CLOCK_GETTIME
  75. #define CLOCK_AVAIL 1
  76. typedef struct timespec timetype;
  77. #define gettime(t) clock_gettime(CLOCK_VIRTUAL, t)
  78. #define subtime(d,s) 
  79. d.tv_sec -= s.tv_sec + (d.tv_nsec >= s.tv_nsec ? 
  80.                         (d.tv_nsec -= s.tv_nsec, 0) : 
  81.                         (d.tv_nsec += 1000000000-s.tv_nsec, 1))
  82. #define msec(t) (unsigned)(t.tv_nsec/1000000)
  83. #define sec(t) (unsigned long)(t.tv_sec)
  84. #else
  85. #if UNIX
  86. #ifndef HAVE_GETRUSAGE
  87. #define HAVE_GETRUSAGE 1
  88. #endif
  89. #endif /* UNIX */
  90. #if HAVE_GETRUSAGE
  91. #if TIME_WITH_SYS_TIME
  92. #ifndef HAVE_SYS_TIME_H
  93. #include <sys/time.h>
  94. #elif HAVE_SYS_TIME_H
  95. #include <sys/time.h>
  96. #endif
  97. #endif /* TIME_WITH_SYS_TIME */
  98. #include <sys/resource.h>
  99. #ifdef RUSAGE_SELF
  100. #define USE_GETRUSAGE 1
  101. #endif
  102. #endif /* HAVE_GETRUSAGE */
  103. #if USE_GETRUSAGE
  104. #define CLOCK_AVAIL 1
  105. typedef struct rusage timetype;
  106. #define gettime(t) getrusage(RUSAGE_SELF, t);
  107. #define subtime(d, s) 
  108. d.ru_utime.tv_sec -= s.ru_utime.tv_sec + 
  109.              (d.ru_utime.tv_usec >= s.ru_utime.tv_usec ? 
  110.               (d.ru_utime.tv_usec -= s.ru_utime.tv_usec, 0) : 
  111.               (d.ru_utime.tv_usec += 1000000-s.ru_utime.tv_usec, 1))
  112. #define msec(t) (unsigned)(t.ru_utime.tv_usec/1000)
  113. #define sec(t) (unsigned long)(t.ru_utime.tv_sec)
  114. #else
  115. #ifndef HAVE_CLOCK
  116. #define HAVE_CLOCK 1
  117. #endif
  118. #if HAVE_CLOCK
  119. #ifndef CLOCKS_PER_SEC
  120. #ifdef CLK_TCK
  121. #define CLOCKS_PER_SEC CLK_TCK
  122. #endif
  123. #endif /* !defined(CLOCKS_PER_SEC) */
  124. #ifndef USE_CLOCK
  125. #ifdef CLOCKS_PER_SEC
  126. #define USE_CLOCK 1
  127. #endif
  128. #endif /* !defined(USE_CLOCK) */
  129. #endif /* HAVE_CLOCK */
  130. #if USE_CLOCK
  131. #define CLOCK_AVAIL 1
  132. typedef clock_t timetype;
  133. #define gettime(t) *(t) = clock()
  134. #define subtime(d, s) d -= s
  135. #define msec(t) (unsigned)(t % CLOCKS_PER_SEC * 1000 / CLOCKS_PER_SEC)
  136. #define sec(t) (unsigned long)(t/CLOCKS_PER_SEC)
  137. #else
  138. #ifndef HAVE_TIME
  139. #define HAVE_TIME 1
  140. #endif
  141. #if HAVE_TIME
  142. #ifndef USE_TIME
  143. #define USE_TIME 1
  144. #endif
  145. #endif
  146. #if USE_TIME
  147. #define CLOCK_AVAIL 1
  148. typedef time_t timetype;
  149. #define gettime(t) time(t)
  150. #define subtime(d, s) d -= s
  151. #define msec(t) (unsigned)0
  152. #define sec(t) (unsigned long)t
  153. #endif /* USE_TIME */
  154. #endif /* USE_CLOCK */
  155. #endif /* USE_GETRUSAGE */
  156. #endif /* USE_CLOCK_GETTIME */
  157. #endif /* USE_GETHRVTIME */
  158. #endif CPUTIME_H