time.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:45k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Time routines for speed measurments.
  2. Copyright 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. /* Usage:
  15.    The code in this file implements the lowest level of time measuring,
  16.    simple one-time measuring of time between two points.
  17.    void speed_starttime (void)
  18.    double speed_endtime (void)
  19.        Call speed_starttime to start measuring, and then call speed_endtime
  20.        when done.
  21.        speed_endtime returns the time taken, in seconds.  Or if the timebase
  22.        is in CPU cycles and the CPU frequency is unknown then speed_endtime
  23.        returns cycles.  Applications can identify the cycles return by
  24.        checking for speed_cycletime (described below) equal to 1.0.
  25.        If some sort of temporary glitch occurs then speed_endtime returns
  26.        0.0.  Currently this is for various cases where a negative time has
  27.        occurred.  This unfortunately occurs with getrusage on some systems,
  28.        and with the hppa cycle counter on hpux.
  29.    double speed_cycletime
  30.        The time in seconds for each CPU cycle.  For example on a 100 MHz CPU
  31.        this would be 1.0e-8.
  32.        If the CPU frequency is unknown, then speed_cycletime is either 0.0
  33.        or 1.0.  It's 0.0 when speed_endtime is returning seconds, or it's
  34.        1.0 when speed_endtime is returning cycles.
  35.        It may be noted that "speed_endtime() / speed_cycletime" gives a
  36.        measured time in cycles, irrespective of whether speed_endtime is
  37.        returning cycles or seconds.  (Assuming cycles can be had, ie. it's
  38.        either cycles already or the cpu frequency is known.  See also
  39.        speed_cycletime_need_cycles below.)
  40.    double speed_unittime
  41.        The unit of time measurement accuracy for the timing method in use.
  42.        This is in seconds or cycles, as per speed_endtime.
  43.    char speed_time_string[]
  44.        A null-terminated string describing the time method in use.
  45.    void speed_time_init (void)
  46.        Initialize time measuring.  speed_starttime() does this
  47.        automatically, so it's only needed if an application wants to inspect
  48.        the above global variables before making a measurement.
  49.    int speed_precision
  50.        The intended accuracy of time measurements.  speed_measure() in
  51.        common.c for instance runs target routines with enough repetitions so
  52.        it takes at least "speed_unittime * speed_precision" (this expression
  53.        works for both cycles or seconds from speed_endtime).
  54.        A program can provide an option so the user to set speed_precision.
  55.        If speed_precision is zero when speed_time_init or speed_starttime
  56.        first run then it gets a default based on the measuring method
  57.        chosen.  (More precision for higher accuracy methods.)
  58.    void speed_cycletime_need_seconds (void)
  59.        Call this to demand that speed_endtime will return seconds, and not
  60.        cycles.  If only cycles are available then an error is printed and
  61.        the program exits.
  62.    void speed_cycletime_need_cycles (void)
  63.        Call this to demand that speed_cycletime is non-zero, so that
  64.        "speed_endtime() / speed_cycletime" will give times in cycles.
  65.    Notes:
  66.    Various combinations of cycle counter, read_real_time(), getrusage(),
  67.    gettimeofday() and times() can arise, according to which are available
  68.    and their precision.
  69.    Allowing speed_endtime() to return either seconds or cycles is only a
  70.    slight complication and makes it possible for the speed program to do
  71.    some sensible things without demanding the CPU frequency.  If seconds are
  72.    being measured then it can always print seconds, and if cycles are being
  73.    measured then it can always print them without needing to know how long
  74.    they are.  Also the tune program doesn't care at all what the units are.
  75.    GMP_CPU_FREQUENCY can always be set when the automated methods in freq.c
  76.    fail.  This will be needed if times in seconds are wanted but a cycle
  77.    counter is being used, or if times in cycles are wanted but getrusage or
  78.    another seconds based timer is in use.
  79.    If the measuring method uses a cycle counter but supplements it with
  80.    getrusage or the like, then knowing the CPU frequency is mandatory since
  81.    the code compares values from the two.
  82.    Not done:
  83.    Solaris gethrtime() seems no more than a slow way to access the Sparc V9
  84.    cycle counter.  gethrvtime() seems to be relevant only to light weight
  85.    processes, it doesn't for instance give nanosecond virtual time.  So
  86.    neither of these are used.
  87.    Bugs:
  88.    getrusage_microseconds_p is fundamentally flawed, getrusage and
  89.    gettimeofday can have resolutions other than clock ticks or microseconds,
  90.    for instance IRIX 5 has a tick of 10 ms but a getrusage of 1 ms.
  91.    Enhancements:
  92.    The SGI hardware counter has 64 bits on some machines, which could be
  93.    used when available.  But perhaps 32 bits is enough range, and then rely
  94.    on the getrusage supplement.
  95.    Maybe getrusage (or times) should be used as a supplement for any
  96.    wall-clock measuring method.  Currently a wall clock with a good range
  97.    (eg. a 64-bit cycle counter) is used without a supplement.
  98.    On PowerPC the timebase registers could be used, but would have to do
  99.    something to find out the speed.  On 6xx chips it's normally 1/4 bus
  100.    speed, on 4xx chips it's either that or an external clock.  Measuring
  101.    against gettimeofday might be ok.  */
  102. #include "config.h"
  103. #include <errno.h>
  104. #include <setjmp.h>
  105. #include <signal.h>
  106. #include <stddef.h>
  107. #include <stdio.h>
  108. #include <string.h>
  109. #include <stdlib.h> /* for getenv() */
  110. #if HAVE_FCNTL_H
  111. #include <fcntl.h>  /* for open() */
  112. #endif
  113. #if HAVE_STDINT_H
  114. #include <stdint.h> /* for uint64_t */
  115. #endif
  116. #if HAVE_UNISTD_H
  117. #include <unistd.h> /* for sysconf() */
  118. #endif
  119. #include <sys/types.h>
  120. #if TIME_WITH_SYS_TIME
  121. # include <sys/time.h>  /* for struct timeval */
  122. # include <time.h>
  123. #else
  124. # if HAVE_SYS_TIME_H
  125. #  include <sys/time.h>
  126. # else
  127. #  include <time.h>
  128. # endif
  129. #endif
  130. #if HAVE_SYS_MMAN_H
  131. #include <sys/mman.h>      /* for mmap() */
  132. #endif
  133. #if HAVE_SYS_RESOURCE_H
  134. #include <sys/resource.h>  /* for struct rusage */
  135. #endif
  136. #if HAVE_SYS_SYSSGI_H
  137. #include <sys/syssgi.h>    /* for syssgi() */
  138. #endif
  139. #if HAVE_SYS_SYSTEMCFG_H
  140. #include <sys/systemcfg.h> /* for RTC_POWER on AIX */
  141. #endif
  142. #if HAVE_SYS_TIMES_H
  143. #include <sys/times.h>  /* for times() and struct tms */
  144. #endif
  145. #include "gmp.h"
  146. #include "gmp-impl.h"
  147. #include "speed.h"
  148. /* strerror is only used for some stuff on newish systems, no need to have a
  149.    proper replacement */
  150. #if ! HAVE_STRERROR
  151. #define strerror(n)  "<strerror not available>"
  152. #endif
  153. char    speed_time_string[256];
  154. int     speed_precision = 0;
  155. double  speed_unittime;
  156. double  speed_cycletime = 0.0;
  157. /* don't rely on "unsigned" to "double" conversion, it's broken in SunOS 4
  158.    native cc */
  159. #define M_2POWU   (((double) INT_MAX + 1.0) * 2.0)
  160. #define M_2POW32  4294967296.0
  161. #define M_2POW64  (M_2POW32 * M_2POW32)
  162. /* Conditionals for the time functions available are done with normal C
  163.    code, which is a lot easier than wildly nested preprocessor directives.
  164.    The choice of what to use is partly made at run-time, according to
  165.    whether the cycle counter works and the measured accuracy of getrusage
  166.    and gettimeofday.
  167.    A routine that's not available won't be getting called, but is an abort()
  168.    to be sure it isn't called mistakenly.
  169.    It can be assumed that if a function exists then its data type will, but
  170.    if the function doesn't then the data type might or might not exist, so
  171.    the type can't be used unconditionally.  The "struct_rusage" etc macros
  172.    provide dummies when the respective function doesn't exist. */
  173. #if HAVE_SPEED_CYCLECOUNTER
  174. static const int have_cycles = HAVE_SPEED_CYCLECOUNTER;
  175. #else
  176. static const int have_cycles = 0;
  177. #define speed_cyclecounter(p)  ASSERT_FAIL (speed_cyclecounter not available)
  178. #endif
  179. /* "stck" returns ticks since 1 Jan 1900 00:00 GMT, where each tick is 2^-12
  180.    microseconds.  Same #ifdefs here as in longlong.h.  */
  181. #if defined (__GNUC__) && ! defined (NO_ASM)                            
  182.   && (defined (__i370__) || defined (__s390__) || defined (__mvs__))
  183. static const int  have_stck = 1;
  184. static const int  use_stck = 1;  /* always use when available */
  185. typedef uint64_t  stck_t; /* gcc for s390 is quite new, always has uint64_t */
  186. #define STCK(timestamp)                 
  187.   do {                                  
  188.     asm ("stck %0" : "=m" (timestamp)); 
  189.   } while (0)
  190. #else
  191. static const int  have_stck = 0;
  192. static const int  use_stck = 0;
  193. typedef unsigned long  stck_t;   /* dummy */
  194. #define STCK(timestamp)  ASSERT_FAIL (stck instruction not available)
  195. #endif
  196. #define STCK_PERIOD      (1.0 / 4096e6)   /* 2^-12 microseconds */
  197. /* mftb
  198.    Enhancement: On 64-bit chips mftb gives a 64-bit value, no need for mftbu
  199.    and a loop (see powerpc64.asm).  */
  200. #if HAVE_HOST_CPU_FAMILY_powerpc
  201. static const int  have_mftb = 1;
  202. #if defined (__GNUC__) && ! defined (NO_ASM)
  203. #define MFTB(a)                         
  204.   do {                                  
  205.     unsigned  __h1, __l, __h2;          
  206.     do {                                
  207.       asm volatile ("mftbu %0n"        
  208.     "mftb  %1n"        
  209.     "mftbu %2"          
  210.     : "=r" (__h1),      
  211.       "=r" (__l),       
  212.       "=r" (__h2));     
  213.     } while (__h1 != __h2);             
  214.     a[0] = __l;                         
  215.     a[1] = __h1;                        
  216.   } while (0)
  217. #else
  218. #define MFTB(a)   mftb_function (a)
  219. #endif
  220. #else /* ! powerpc */
  221. static const int  have_mftb = 0;
  222. #define MFTB(a)                         
  223.   do {                                  
  224.     a[0] = 0;                           
  225.     a[1] = 0;                           
  226.     ASSERT_FAIL (mftb not available);   
  227.   } while (0)
  228. #endif
  229. /* Unicos 10.X has syssgi(), but not mmap(). */
  230. #if HAVE_SYSSGI && HAVE_MMAP
  231. static const int  have_sgi = 1;
  232. #else
  233. static const int  have_sgi = 0;
  234. #endif
  235. #if HAVE_READ_REAL_TIME
  236. static const int have_rrt = 1;
  237. #else
  238. static const int have_rrt = 0;
  239. #define read_real_time(t,s)     ASSERT_FAIL (read_real_time not available)
  240. #define time_base_to_time(t,s)  ASSERT_FAIL (time_base_to_time not available)
  241. #define RTC_POWER     1
  242. #define RTC_POWER_PC  2
  243. #define timebasestruct_t   struct timebasestruct_dummy
  244. struct timebasestruct_dummy {
  245.   int             flag;
  246.   unsigned int    tb_high;
  247.   unsigned int    tb_low;
  248. };
  249. #endif
  250. #if HAVE_CLOCK_GETTIME
  251. static const int have_cgt = 1;
  252. #define struct_timespec  struct timespec
  253. #else
  254. static const int have_cgt = 0;
  255. #define struct_timespec       struct timespec_dummy
  256. #define clock_gettime(id,ts)  (ASSERT_FAIL (clock_gettime not available), -1)
  257. #define clock_getres(id,ts)   (ASSERT_FAIL (clock_getres not available), -1)
  258. #endif
  259. #if HAVE_GETRUSAGE
  260. static const int have_grus = 1;
  261. #define struct_rusage   struct rusage
  262. #else
  263. static const int have_grus = 0;
  264. #define getrusage(n,ru)  ASSERT_FAIL (getrusage not available)
  265. #define struct_rusage    struct rusage_dummy
  266. #endif
  267. #if HAVE_GETTIMEOFDAY
  268. static const int have_gtod = 1;
  269. #define struct_timeval   struct timeval
  270. #else
  271. static const int have_gtod = 0;
  272. #define gettimeofday(tv,tz)  ASSERT_FAIL (gettimeofday not available)
  273. #define struct_timeval   struct timeval_dummy
  274. #endif
  275. #if HAVE_TIMES
  276. static const int have_times = 1;
  277. #define struct_tms   struct tms
  278. #else
  279. static const int have_times = 0;
  280. #define times(tms)   ASSERT_FAIL (times not available)
  281. #define struct_tms   struct tms_dummy
  282. #endif
  283. struct tms_dummy {
  284.   long  tms_utime;
  285. };
  286. struct timeval_dummy {
  287.   long  tv_sec;
  288.   long  tv_usec;
  289. };
  290. struct rusage_dummy {
  291.   struct_timeval ru_utime;
  292. };
  293. struct timespec_dummy {
  294.   long  tv_sec;
  295.   long  tv_nsec;
  296. };
  297. static int  use_cycles;
  298. static int  use_mftb;
  299. static int  use_sgi;
  300. static int  use_rrt;
  301. static int  use_cgt;
  302. static int  use_gtod;
  303. static int  use_grus;
  304. static int  use_times;
  305. static int  use_tick_boundary;
  306. static unsigned         start_cycles[2];
  307. static stck_t           start_stck;
  308. static unsigned         start_mftb[2];
  309. static unsigned         start_sgi;
  310. static timebasestruct_t start_rrt;
  311. static struct_timespec  start_cgt;
  312. static struct_rusage    start_grus;
  313. static struct_timeval   start_gtod;
  314. static struct_tms       start_times;
  315. static double  cycles_limit = 1e100;
  316. static double  mftb_unittime;
  317. static double  sgi_unittime;
  318. static double  cgt_unittime;
  319. static double  grus_unittime;
  320. static double  gtod_unittime;
  321. static double  times_unittime;
  322. /* for RTC_POWER format, ie. seconds and nanoseconds */
  323. #define TIMEBASESTRUCT_SECS(t)  ((t)->tb_high + (t)->tb_low * 1e-9)
  324. /* Return a string representing a time in seconds, nicely formatted.
  325.    Eg. "10.25ms".  */
  326. char *
  327. unittime_string (double t)
  328. {
  329.   static char  buf[128];
  330.   const char  *unit;
  331.   int         prec;
  332.   /* choose units and scale */
  333.   if (t < 1e-6)
  334.     t *= 1e9, unit = "ns";
  335.   else if (t < 1e-3)
  336.     t *= 1e6, unit = "us";
  337.   else if (t < 1.0)
  338.     t *= 1e3, unit = "ms";
  339.   else
  340.     unit = "s";
  341.   /* want 4 significant figures */
  342.   if (t < 1.0)
  343.     prec = 4;
  344.   else if (t < 10.0)
  345.     prec = 3;
  346.   else if (t < 100.0)
  347.     prec = 2;
  348.   else
  349.     prec = 1;
  350.   sprintf (buf, "%.*f%s", prec, t, unit);
  351.   return buf;
  352. }
  353. static jmp_buf  cycles_works_buf;
  354. static RETSIGTYPE
  355. cycles_works_handler (int sig)
  356. {
  357.   longjmp (cycles_works_buf, 1);
  358. }
  359. int
  360. cycles_works_p (void)
  361. {
  362.   static int  result = -1;
  363.   if (result != -1)
  364.     goto done;
  365. #ifdef SIGILL
  366.   {
  367.     RETSIGTYPE (*old_handler) __GMP_PROTO ((int));
  368.     unsigned  cycles[2];
  369.     old_handler = signal (SIGILL, cycles_works_handler);
  370.     if (old_handler == SIG_ERR)
  371.       {
  372. if (speed_option_verbose)
  373.   printf ("cycles_works_p(): SIGILL not supported, assuming speed_cyclecounter() worksn");
  374. goto yes;
  375.       }
  376.     if (setjmp (cycles_works_buf))
  377.       {
  378. if (speed_option_verbose)
  379.   printf ("cycles_works_p(): SIGILL during speed_cyclecounter(), so doesn't workn");
  380. result = 0;
  381. goto done;
  382.       }
  383.     speed_cyclecounter (cycles);
  384.     signal (SIGILL, old_handler);
  385.     if (speed_option_verbose)
  386.       printf ("cycles_works_p(): speed_cyclecounter() worksn");
  387.   }
  388. #else
  389.   if (speed_option_verbose)
  390.     printf ("cycles_works_p(): SIGILL not defined, assuming speed_cyclecounter() worksn");
  391.   goto yes;
  392. #endif
  393.  yes:
  394.   result = 1;
  395.  done:
  396.   return result;
  397. }
  398. /* The number of clock ticks per second, but looking at sysconf rather than
  399.    just CLK_TCK, where possible.  */
  400. long
  401. clk_tck (void)
  402. {
  403.   static long  result = -1L;
  404.   if (result != -1L)
  405.     return result;
  406. #if HAVE_SYSCONF
  407.   result = sysconf (_SC_CLK_TCK);
  408.   if (result != -1L)
  409.     {
  410.       if (speed_option_verbose)
  411. printf ("sysconf(_SC_CLK_TCK) is %ld per secondn", result);
  412.       return result;
  413.     }
  414.   fprintf (stderr,
  415.    "sysconf(_SC_CLK_TCK) not working, using CLK_TCK insteadn");
  416. #endif
  417. #ifdef CLK_TCK
  418.   result = CLK_TCK;
  419.   if (speed_option_verbose)
  420.     printf ("CLK_TCK is %ld per secondn", result);
  421.   return result;
  422. #else
  423.   fprintf (stderr, "CLK_TCK not defined, cannot continuen");
  424.   abort ();
  425. #endif
  426. }
  427. /* If two times can be observed less than half a clock tick apart, then
  428.    assume "get" is microsecond accurate.
  429.    Two times only 1 microsecond apart are not believed, since some kernels
  430.    take it upon themselves to ensure gettimeofday doesn't return the same
  431.    value twice, for the benefit of applications using it for a timestamp.
  432.    This is obviously very stupid given the speed of CPUs these days.
  433.    Making "reps" many calls to noop_1() is designed to waste some CPU, with
  434.    a view to getting measurements 2 microseconds (or more) apart.  "reps" is
  435.    increased progressively until such a period is seen.
  436.    The outer loop "attempts" are just to allow for any random nonsense or
  437.    system load upsetting the measurements (ie. making two successive calls
  438.    to "get" come out as a longer interval than normal).
  439.    Bugs:
  440.    The assumption that any interval less than a half tick implies
  441.    microsecond resolution is obviously fairly rash, the true resolution
  442.    could be anything between a microsecond and that half tick.  Perhaps
  443.    something special would have to be done on a system where this is the
  444.    case, since there's no obvious reliable way to detect it
  445.    automatically.  */
  446. #define MICROSECONDS_P(name, type, get, sec, usec)                      
  447.   {                                                                     
  448.     static int  result = -1;                                            
  449.     type      st, et;                                                   
  450.     long      dt, half_tick;                                            
  451.     unsigned  attempt, reps, i, j;                                      
  452.     if (result != -1)                                                   
  453.       return result;                                                    
  454.     result = 0;                                                         
  455.     half_tick = (1000000L / clk_tck ()) / 2;                            
  456.     for (attempt = 0; attempt < 5; attempt++)                           
  457.       {                                                                 
  458. reps = 0;                                                       
  459. for (;;)                                                        
  460.   {                                                             
  461.     get (st);                                                   
  462.     for (i = 0; i < reps; i++)                                  
  463.       for (j = 0; j < 100; j++)                                 
  464. noop_1 (CNST_LIMB(0));                                  
  465.     get (et);                                                   
  466.     dt = (sec(et)-sec(st))*1000000L + usec(et)-usec(st);        
  467.     if (speed_option_verbose >= 2)                              
  468.       printf ("%s attempt=%u, reps=%u, dt=%ldn",               
  469.       name, attempt, reps, dt);                         
  470.     if (dt >= 2)                                                
  471.       break;                                                    
  472.     reps = (reps == 0 ? 1 : 2*reps);                            
  473.     if (reps == 0)                                              
  474.       break;  /* uint overflow, not normal */                   
  475.   }                                                             
  476. if (dt < half_tick)                                             
  477.   {                                                             
  478.     result = 1;                                                 
  479.     break;                                                      
  480.   }                                                             
  481.       }                                                                 
  482.     if (speed_option_verbose)                                           
  483.       {                                                                 
  484. if (result)                                                     
  485.   printf ("%s is microsecond accuraten", name);                
  486. else                                                            
  487.   printf ("%s is only %s clock tick accuraten",                
  488.   name, unittime_string (1.0/clk_tck()));               
  489.       }                                                                 
  490.     return result;                                                      
  491.   }
  492. int
  493. gettimeofday_microseconds_p (void)
  494. {
  495. #define call_gettimeofday(t)   gettimeofday (&(t), NULL)
  496. #define timeval_tv_sec(t)      ((t).tv_sec)
  497. #define timeval_tv_usec(t)     ((t).tv_usec)
  498.   MICROSECONDS_P ("gettimeofday", struct_timeval,
  499.   call_gettimeofday, timeval_tv_sec, timeval_tv_usec);
  500. }
  501. int
  502. getrusage_microseconds_p (void)
  503. {
  504. #define call_getrusage(t)   getrusage (0, &(t))
  505. #define rusage_tv_sec(t)    ((t).ru_utime.tv_sec)
  506. #define rusage_tv_usec(t)   ((t).ru_utime.tv_usec)
  507.   MICROSECONDS_P ("getrusage", struct_rusage,
  508.   call_getrusage, rusage_tv_sec, rusage_tv_usec);
  509. }
  510. /* Test whether getrusage goes backwards, return non-zero if it does
  511.    (suggesting it's flawed).
  512.    On a macintosh m68040-unknown-netbsd1.4.1 getrusage looks like it's
  513.    microsecond accurate, but has been seen remaining unchanged after many
  514.    microseconds have elapsed.  It also regularly goes backwards by 1000 to
  515.    5000 usecs, this has been seen after between 500 and 4000 attempts taking
  516.    perhaps 0.03 seconds.  We consider this too broken for good measuring.
  517.    We used to have configure pretend getrusage didn't exist on this system,
  518.    but a runtime test should be more reliable, since we imagine the problem
  519.    is not confined to just this exact system tuple.  */
  520. int
  521. getrusage_backwards_p (void)
  522. {
  523.   static int result = -1;
  524.   struct rusage  start, prev, next;
  525.   long  d;
  526.   int   i;
  527.   if (result != -1)
  528.     return result;
  529.   getrusage (0, &start);
  530.   memcpy (&next, &start, sizeof (next));
  531.   result = 0;
  532.   i = 0;
  533.   for (;;)
  534.     {
  535.       memcpy (&prev, &next, sizeof (prev));
  536.       getrusage (0, &next);
  537.       if (next.ru_utime.tv_sec < prev.ru_utime.tv_sec
  538.   || (next.ru_utime.tv_sec == prev.ru_utime.tv_sec
  539.       && next.ru_utime.tv_usec < prev.ru_utime.tv_usec))
  540. {
  541.   if (speed_option_verbose)
  542.     printf ("getrusage went backwards (attempt %d: %ld.%06ld -> %ld.%06ld)n",
  543.     i,
  544.     prev.ru_utime.tv_sec, prev.ru_utime.tv_usec,
  545.     next.ru_utime.tv_sec, next.ru_utime.tv_usec);
  546.   result = 1;
  547.   break;
  548. }
  549.       /* minimum 1000 attempts, then stop after either 0.1 seconds or 50000
  550.  attempts, whichever comes first */
  551.       d = 1000000 * (next.ru_utime.tv_sec - start.ru_utime.tv_sec)
  552. + (next.ru_utime.tv_usec - start.ru_utime.tv_usec);
  553.       i++;
  554.       if (i > 50000 || (i > 1000 && d > 100000))
  555. break;
  556.     }
  557.   return result;
  558. }
  559. /* CLOCK_PROCESS_CPUTIME_ID looks like it's going to be in a future version
  560.    of glibc (some time post 2.2).
  561.    CLOCK_VIRTUAL is process time, available in BSD systems (though sometimes
  562.    defined, but returning -1 for an error).  */
  563. #ifdef CLOCK_PROCESS_CPUTIME_ID
  564. # define CGT_ID        CLOCK_PROCESS_CPUTIME_ID
  565. #else
  566. # ifdef CLOCK_VIRTUAL
  567. #  define CGT_ID       CLOCK_VIRTUAL
  568. # endif
  569. #endif
  570. #ifdef CGT_ID
  571. const int  have_cgt_id = 1;
  572. #else
  573. const int  have_cgt_id = 0;
  574. # define CGT_ID       (ASSERT_FAIL (CGT_ID not determined), -1)
  575. #endif
  576. int
  577. cgt_works_p (void)
  578. {
  579.   static int  result = -1;
  580.   struct_timespec  unit;
  581.   if (! have_cgt)
  582.     return 0;
  583.   if (! have_cgt_id)
  584.     {
  585.       if (speed_option_verbose)
  586. printf ("clock_gettime don't know what ID to usen");
  587.       result = 0;
  588.       return result;
  589.     }
  590.   if (result != -1)
  591.     return result;
  592.   /* trial run to see if it works */
  593.   if (clock_gettime (CGT_ID, &unit) != 0)
  594.     {
  595.       if (speed_option_verbose)
  596. printf ("clock_gettime id=%d error: %sn", CGT_ID, strerror (errno));
  597.       result = 0;
  598.       return result;
  599.     }
  600.   /* get the resolution */
  601.   if (clock_getres (CGT_ID, &unit) != 0)
  602.     {
  603.       if (speed_option_verbose)
  604. printf ("clock_getres id=%d error: %sn", CGT_ID, strerror (errno));
  605.       result = 0;
  606.       return result;
  607.     }
  608.   cgt_unittime = unit.tv_sec + unit.tv_nsec * 1e-9;
  609.   printf ("clock_gettime is %s accuraten",
  610.   unittime_string (cgt_unittime));
  611.   result = 1;
  612.   return result;
  613. }
  614. static double
  615. freq_measure_mftb_one (void)
  616. {
  617. #define call_gettimeofday(t)   gettimeofday (&(t), NULL)
  618. #define timeval_tv_sec(t)      ((t).tv_sec)
  619. #define timeval_tv_usec(t)     ((t).tv_usec)
  620.   FREQ_MEASURE_ONE ("mftb", struct_timeval,
  621.     call_gettimeofday, MFTB,
  622.     timeval_tv_sec, timeval_tv_usec);
  623. }
  624. static jmp_buf  mftb_works_buf;
  625. static RETSIGTYPE
  626. mftb_works_handler (int sig)
  627. {
  628.   longjmp (mftb_works_buf, 1);
  629. }
  630. int
  631. mftb_works_p (void)
  632. {
  633.   unsigned   a[2];
  634.   RETSIGTYPE (*old_handler) __GMP_PROTO ((int));
  635.   double     cycletime;
  636.   /* suppress a warning about a[] unused */
  637.   a[0] = 0;
  638.   if (! have_mftb)
  639.     return 0;
  640. #ifdef SIGILL
  641.   old_handler = signal (SIGILL, mftb_works_handler);
  642.   if (old_handler == SIG_ERR)
  643.     {
  644.       if (speed_option_verbose)
  645. printf ("mftb_works_p(): SIGILL not supported, assuming mftb worksn");
  646.       return 1;
  647.     }
  648.   if (setjmp (mftb_works_buf))
  649.     {
  650.       if (speed_option_verbose)
  651. printf ("mftb_works_p(): SIGILL during mftb, so doesn't workn");
  652.       return 0;
  653.     }
  654.   MFTB (a);
  655.   signal (SIGILL, old_handler);
  656.   if (speed_option_verbose)
  657.     printf ("mftb_works_p(): mftb worksn");
  658. #else
  659.   if (speed_option_verbose)
  660.     printf ("mftb_works_p(): SIGILL not defined, assuming mftb worksn");
  661. #endif
  662. #if ! HAVE_GETTIMEOFDAY
  663.   if (speed_option_verbose)
  664.     printf ("mftb_works_p(): no gettimeofday available to measure mftbn");
  665.   return 0;
  666. #endif
  667.   /* The time base is normally 1/4 of the bus speed on 6xx and 7xx chips, on
  668.      other chips it can be driven from an external clock. */
  669.   cycletime = freq_measure ("mftb", freq_measure_mftb_one);
  670.   if (cycletime == -1.0)
  671.     {
  672.       if (speed_option_verbose)
  673. printf ("mftb_works_p(): cannot measure mftb periodn");
  674.       return 0;
  675.     }
  676.   mftb_unittime = cycletime;
  677.   return 1;
  678. }
  679. volatile unsigned  *sgi_addr;
  680. int
  681. sgi_works_p (void)
  682. {
  683. #if HAVE_SYSSGI && HAVE_MMAP
  684.   static int  result = -1;
  685.   size_t          pagesize, offset;
  686.   __psunsigned_t  phys, physpage;
  687.   void            *virtpage;
  688.   unsigned        period_picoseconds;
  689.   int             size, fd;
  690.   if (result != -1)
  691.     return result;
  692.   phys = syssgi (SGI_QUERY_CYCLECNTR, &period_picoseconds);
  693.   if (phys == (__psunsigned_t) -1)
  694.     {
  695.       /* ENODEV is the error when a counter is not available */
  696.       if (speed_option_verbose)
  697. printf ("syssgi SGI_QUERY_CYCLECNTR error: %sn", strerror (errno));
  698.       result = 0;
  699.       return result;
  700.     }
  701.   sgi_unittime = period_picoseconds * 1e-12;
  702.   /* IRIX 5 doesn't have SGI_CYCLECNTR_SIZE, assume 32 bits in that case.
  703.      Challenge/ONYX hardware has a 64 bit byte counter, but there seems no
  704.      obvious way to identify that without SGI_CYCLECNTR_SIZE.  */
  705. #ifdef SGI_CYCLECNTR_SIZE
  706.   size = syssgi (SGI_CYCLECNTR_SIZE);
  707.   if (size == -1)
  708.     {
  709.       if (speed_option_verbose)
  710. {
  711.   printf ("syssgi SGI_CYCLECNTR_SIZE error: %sn", strerror (errno));
  712.   printf ("    will assume size==4n");
  713. }
  714.       size = 32;
  715.     }
  716. #else
  717.   size = 32;
  718. #endif
  719.   if (size < 32)
  720.     {
  721.       printf ("syssgi SGI_CYCLECNTR_SIZE gives %d, expected 32 or 64n", size);
  722.       result = 0;
  723.       return result;
  724.     }
  725.   pagesize = getpagesize();
  726.   offset = (size_t) phys & (pagesize-1);
  727.   physpage = phys - offset;
  728.   /* shouldn't cross over a page boundary */
  729.   ASSERT_ALWAYS (offset + size/8 <= pagesize);
  730.   fd = open("/dev/mmem", O_RDONLY);
  731.   if (fd == -1)
  732.     {
  733.       if (speed_option_verbose)
  734. printf ("open /dev/mmem: %sn", strerror (errno));
  735.       result = 0;
  736.       return result;
  737.     }
  738.   virtpage = mmap (0, pagesize, PROT_READ, MAP_PRIVATE, fd, (off_t) physpage);
  739.   if (virtpage == (void *) -1)
  740.     {
  741.       if (speed_option_verbose)
  742. printf ("mmap /dev/mmem: %sn", strerror (errno));
  743.       result = 0;
  744.       return result;
  745.     }
  746.   /* address of least significant 4 bytes, knowing mips is big endian */
  747.   sgi_addr = (unsigned *) ((char *) virtpage + offset
  748.    + size/8 - sizeof(unsigned));
  749.   result = 1;
  750.   return result;
  751. #else /* ! (HAVE_SYSSGI && HAVE_MMAP) */
  752.   return 0;
  753. #endif
  754. }
  755. #define DEFAULT(var,n)  
  756.   do {                  
  757.     if (! (var))        
  758.       (var) = (n);      
  759.   } while (0)
  760. void
  761. speed_time_init (void)
  762. {
  763.   double supplement_unittime = 0.0;
  764.   static int  speed_time_initialized = 0;
  765.   if (speed_time_initialized)
  766.     return;
  767.   speed_time_initialized = 1;
  768.   speed_cycletime_init ();
  769.   if (have_cycles && cycles_works_p ())
  770.     {
  771.       use_cycles = 1;
  772.       DEFAULT (speed_cycletime, 1.0);
  773.       speed_unittime = speed_cycletime;
  774.       DEFAULT (speed_precision, 10000);
  775.       strcpy (speed_time_string, "CPU cycle counter");
  776.       /* only used if a supplementary method is chosen below */
  777.       cycles_limit = (have_cycles == 1 ? M_2POW32 : M_2POW64) / 2.0
  778. * speed_cycletime;
  779.       if (have_grus && getrusage_microseconds_p() && ! getrusage_backwards_p())
  780. {
  781.   /* this is a good combination */
  782.   use_grus = 1;
  783.   supplement_unittime = grus_unittime = 1.0e-6;
  784.   strcpy (speed_time_string, "CPU cycle counter, supplemented by microsecond getrusage()");
  785. }
  786.       else if (have_cycles == 1)
  787. {
  788.   /* When speed_cyclecounter has a limited range, look for something
  789.      to supplement it. */
  790.   if (have_gtod && gettimeofday_microseconds_p())
  791.     {
  792.       use_gtod = 1;
  793.       supplement_unittime = gtod_unittime = 1.0e-6;
  794.       strcpy (speed_time_string, "CPU cycle counter, supplemented by microsecond gettimeofday()");
  795.     }
  796.   else if (have_grus)
  797.     {
  798.       use_grus = 1;
  799.       supplement_unittime = grus_unittime = 1.0 / (double) clk_tck ();
  800.       sprintf (speed_time_string, "CPU cycle counter, supplemented by %s clock tick getrusage()", unittime_string (supplement_unittime));
  801.     }
  802.   else if (have_times)
  803.     {
  804.       use_times = 1;
  805.       supplement_unittime = times_unittime = 1.0 / (double) clk_tck ();
  806.       sprintf (speed_time_string, "CPU cycle counter, supplemented by %s clock tick times()", unittime_string (supplement_unittime));
  807.     }
  808.   else if (have_gtod)
  809.     {
  810.       use_gtod = 1;
  811.       supplement_unittime = gtod_unittime = 1.0 / (double) clk_tck ();
  812.       sprintf (speed_time_string, "CPU cycle counter, supplemented by %s clock tick gettimeofday()", unittime_string (supplement_unittime));
  813.     }
  814.   else
  815.     {
  816.       fprintf (stderr, "WARNING: cycle counter is 32 bits and there's no other functions.n");
  817.       fprintf (stderr, "    Wraparounds may produce bad results on long measurements.n");
  818.     }
  819. }
  820.       if (use_grus || use_times || use_gtod)
  821. {
  822.   /* must know cycle period to compare cycles to other measuring
  823.      (via cycles_limit) */
  824.   speed_cycletime_need_seconds ();
  825.   if (speed_precision * supplement_unittime > cycles_limit)
  826.     {
  827.       fprintf (stderr, "WARNING: requested precision can't always be achieved due to limited rangen");
  828.       fprintf (stderr, "    cycle counter and limited precision supplemental methodn");
  829.       fprintf (stderr, "    (%s)n", speed_time_string);
  830.     }
  831. }
  832.     }
  833.   else if (have_stck)
  834.     {
  835.       strcpy (speed_time_string, "STCK timestamp");
  836.       /* stck is in units of 2^-12 microseconds, which is very likely higher
  837.  resolution than a cpu cycle */
  838.       if (speed_cycletime == 0.0)
  839. speed_cycletime_fail
  840.   ("Need to know CPU frequency for effective stck unit");
  841.       speed_unittime = MAX (speed_cycletime, STCK_PERIOD);
  842.       DEFAULT (speed_precision, 10000);
  843.     }
  844.   else if (have_mftb && mftb_works_p ())
  845.     {
  846.       use_mftb = 1;
  847.       DEFAULT (speed_precision, 10000);
  848.       speed_unittime = mftb_unittime;
  849.       sprintf (speed_time_string, "mftb counter (%s)",
  850.        unittime_string (speed_unittime));
  851.     }
  852.   else if (have_sgi && sgi_works_p ())
  853.     {
  854.       use_sgi = 1;
  855.       DEFAULT (speed_precision, 10000);
  856.       speed_unittime = sgi_unittime;
  857.       sprintf (speed_time_string, "syssgi() mmap counter (%s), supplemented by millisecond getrusage()",
  858.        unittime_string (speed_unittime));
  859.       /* supplemented with getrusage, which we assume to have 1ms resolution */
  860.       use_grus = 1;
  861.       supplement_unittime = 1e-3;
  862.     }
  863.   else if (have_rrt)
  864.     {
  865.       timebasestruct_t  t;
  866.       use_rrt = 1;
  867.       DEFAULT (speed_precision, 10000);
  868.       read_real_time (&t, sizeof(t));
  869.       switch (t.flag) {
  870.       case RTC_POWER:
  871. /* FIXME: What's the actual RTC resolution? */
  872. speed_unittime = 1e-7;
  873. strcpy (speed_time_string, "read_real_time() power nanoseconds");
  874. break;
  875.       case RTC_POWER_PC:
  876. t.tb_high = 1;
  877. t.tb_low = 0;
  878. time_base_to_time (&t, sizeof(t));
  879. speed_unittime = TIMEBASESTRUCT_SECS(&t) / M_2POW32;
  880. sprintf (speed_time_string, "%s read_real_time() powerpc ticks",
  881.  unittime_string (speed_unittime));
  882. break;
  883.       default:
  884. fprintf (stderr, "ERROR: Unrecognised timebasestruct_t flag=%dn",
  885.  t.flag);
  886. abort ();
  887.       }
  888.     }
  889.   else if (have_cgt && cgt_works_p() && cgt_unittime < 1.5e-6)
  890.     {
  891.       /* use clock_gettime if microsecond or better resolution */
  892.     choose_cgt:
  893.       use_cgt = 1;
  894.       speed_unittime = cgt_unittime;
  895.       DEFAULT (speed_precision, (cgt_unittime <= 0.1e-6 ? 10000 : 1000));
  896.       strcpy (speed_time_string, "microsecond accurate getrusage()");
  897.     }
  898.   else if (have_times && clk_tck() > 1000000)
  899.     {
  900.       /* Cray vector systems have times() which is clock cycle resolution
  901.  (eg. 450 MHz).  */
  902.       DEFAULT (speed_precision, 10000);
  903.       goto choose_times;
  904.     }
  905.   else if (have_grus && getrusage_microseconds_p() && ! getrusage_backwards_p())
  906.     {
  907.       use_grus = 1;
  908.       speed_unittime = grus_unittime = 1.0e-6;
  909.       DEFAULT (speed_precision, 1000);
  910.       strcpy (speed_time_string, "microsecond accurate getrusage()");
  911.     }
  912.   else if (have_gtod && gettimeofday_microseconds_p())
  913.     {
  914.       use_gtod = 1;
  915.       speed_unittime = gtod_unittime = 1.0e-6;
  916.       DEFAULT (speed_precision, 1000);
  917.       strcpy (speed_time_string, "microsecond accurate gettimeofday()");
  918.     }
  919.   else if (have_cgt && cgt_works_p() && cgt_unittime < 1.5/clk_tck())
  920.     {
  921.       /* use clock_gettime if 1 tick or better resolution */
  922.       goto choose_cgt;
  923.     }
  924.   else if (have_times)
  925.     {
  926.       use_tick_boundary = 1;
  927.       DEFAULT (speed_precision, 200);
  928.     choose_times:
  929.       use_times = 1;
  930.       speed_unittime = times_unittime = 1.0 / (double) clk_tck ();
  931.       sprintf (speed_time_string, "%s clock tick times()",
  932.        unittime_string (speed_unittime));
  933.     }
  934.   else if (have_grus)
  935.     {
  936.       use_grus = 1;
  937.       use_tick_boundary = 1;
  938.       speed_unittime = grus_unittime = 1.0 / (double) clk_tck ();
  939.       DEFAULT (speed_precision, 200);
  940.       sprintf (speed_time_string, "%s clock tick getrusage()n",
  941.        unittime_string (speed_unittime));
  942.     }
  943.   else if (have_gtod)
  944.     {
  945.       use_gtod = 1;
  946.       use_tick_boundary = 1;
  947.       speed_unittime = gtod_unittime = 1.0 / (double) clk_tck ();
  948.       DEFAULT (speed_precision, 200);
  949.       sprintf (speed_time_string, "%s clock tick gettimeofday()",
  950.        unittime_string (speed_unittime));
  951.     }
  952.   else
  953.     {
  954.       fprintf (stderr, "No time measuring method availablen");
  955.       fprintf (stderr, "None of: speed_cyclecounter(), STCK(), getrusage(), gettimeofday(), times()n");
  956.       abort ();
  957.     }
  958.   if (speed_option_verbose)
  959.     {
  960.       printf ("speed_time_init: %sn", speed_time_string);
  961.       printf ("    speed_precision     %dn", speed_precision);
  962.       printf ("    speed_unittime      %.2gn", speed_unittime);
  963.       if (supplement_unittime)
  964. printf ("    supplement_unittime %.2gn", supplement_unittime);
  965.       printf ("    use_tick_boundary   %dn", use_tick_boundary);
  966.       if (have_cycles)
  967. printf ("    cycles_limit        %.2g secondsn", cycles_limit);
  968.     }
  969. }
  970. /* Burn up CPU until a clock tick boundary, for greater accuracy.  Set the
  971.    corresponding "start_foo" appropriately too. */
  972. void
  973. grus_tick_boundary (void)
  974. {
  975.   struct_rusage  prev;
  976.   getrusage (0, &prev);
  977.   do {
  978.     getrusage (0, &start_grus);
  979.   } while (start_grus.ru_utime.tv_usec == prev.ru_utime.tv_usec);
  980. }
  981. void
  982. gtod_tick_boundary (void)
  983. {
  984.   struct_timeval  prev;
  985.   gettimeofday (&prev, NULL);
  986.   do {
  987.     gettimeofday (&start_gtod, NULL);
  988.   } while (start_gtod.tv_usec == prev.tv_usec);
  989. }
  990. void
  991. times_tick_boundary (void)
  992. {
  993.   struct_tms  prev;
  994.   times (&prev);
  995.   do
  996.     times (&start_times);
  997.   while (start_times.tms_utime == prev.tms_utime);
  998. }
  999. /* "have_" values are tested to let unused code go dead.  */
  1000. void
  1001. speed_starttime (void)
  1002. {
  1003.   speed_time_init ();
  1004.   if (have_grus && use_grus)
  1005.     {
  1006.       if (use_tick_boundary)
  1007. grus_tick_boundary ();
  1008.       else
  1009. getrusage (0, &start_grus);
  1010.     }
  1011.   if (have_gtod && use_gtod)
  1012.     {
  1013.       if (use_tick_boundary)
  1014. gtod_tick_boundary ();
  1015.       else
  1016. gettimeofday (&start_gtod, NULL);
  1017.     }
  1018.   if (have_times && use_times)
  1019.     {
  1020.       if (use_tick_boundary)
  1021. times_tick_boundary ();
  1022.       else
  1023. times (&start_times);
  1024.     }
  1025.   if (have_cgt && use_cgt)
  1026.     clock_gettime (CGT_ID, &start_cgt);
  1027.   if (have_rrt && use_rrt)
  1028.     read_real_time (&start_rrt, sizeof(start_rrt));
  1029.   if (have_sgi && use_sgi)
  1030.     start_sgi = *sgi_addr;
  1031.   if (have_mftb && use_mftb)
  1032.     MFTB (start_mftb);
  1033.   if (have_stck && use_stck)
  1034.     STCK (start_stck);
  1035.   /* Cycles sampled last for maximum accuracy. */
  1036.   if (have_cycles && use_cycles)
  1037.     speed_cyclecounter (start_cycles);
  1038. }
  1039. /* Calculate the difference between two cycle counter samples, as a "double"
  1040.    counter of cycles.
  1041.    The start and end values are allowed to cancel in integers in case the
  1042.    counter values are bigger than the 53 bits that normally fit in a double.
  1043.    This works even if speed_cyclecounter() puts a value bigger than 32-bits
  1044.    in the low word (the high word always gets a 2**32 multiplier though). */
  1045. double
  1046. speed_cyclecounter_diff (const unsigned end[2], const unsigned start[2])
  1047. {
  1048.   unsigned  d;
  1049.   double    t;
  1050.   if (have_cycles == 1)
  1051.     {
  1052.       t = (end[0] - start[0]);
  1053.     }
  1054.   else
  1055.     {
  1056.       d = end[0] - start[0];
  1057.       t = d - (d > end[0] ? M_2POWU : 0.0);
  1058.       t += (end[1] - start[1]) * M_2POW32;
  1059.     }
  1060.   return t;
  1061. }
  1062. double
  1063. speed_mftb_diff (const unsigned end[2], const unsigned start[2])
  1064. {
  1065.   unsigned  d;
  1066.   double    t;
  1067.   d = end[0] - start[0];
  1068.   t = (double) d - (d > end[0] ? M_2POW32 : 0.0);
  1069.   t += (end[1] - start[1]) * M_2POW32;
  1070.   return t;
  1071. }
  1072. /* Calculate the difference between "start" and "end" using fields "sec" and
  1073.    "psec", where each "psec" is a "punit" of a second.
  1074.    The seconds parts are allowed to cancel before being combined with the
  1075.    psec parts, in case a simple "sec+psec*punit" exceeds the precision of a
  1076.    double.
  1077.    Total time is only calculated in a "double" since an integer count of
  1078.    psecs might overflow.  2^32 microseconds is only a bit over an hour, or
  1079.    2^32 nanoseconds only about 4 seconds.
  1080.    The casts to "long" are for the benefit of timebasestruct_t, where the
  1081.    fields are only "unsigned int", but we want a signed difference.  */
  1082. #define DIFF_SECS_ROUTINE(sec, psec, punit)                     
  1083.   {                                                             
  1084.     long  sec_diff, psec_diff;                                  
  1085.     sec_diff = (long) end->sec - (long) start->sec;             
  1086.     psec_diff = (long) end->psec - (long) start->psec;          
  1087.     return (double) sec_diff + punit * (double) psec_diff;      
  1088.   }
  1089. double
  1090. timeval_diff_secs (const struct_timeval *end, const struct_timeval *start)
  1091. {
  1092.   DIFF_SECS_ROUTINE (tv_sec, tv_usec, 1e-6);
  1093. }
  1094. double
  1095. rusage_diff_secs (const struct_rusage *end, const struct_rusage *start)
  1096. {
  1097.   DIFF_SECS_ROUTINE (ru_utime.tv_sec, ru_utime.tv_usec, 1e-6);
  1098. }
  1099. double
  1100. timespec_diff_secs (const struct_timespec *end, const struct_timespec *start)
  1101. {
  1102.   DIFF_SECS_ROUTINE (tv_sec, tv_nsec, 1e-9);
  1103. }
  1104. /* This is for use after time_base_to_time, ie. for seconds and nanoseconds. */
  1105. double
  1106. timebasestruct_diff_secs (const timebasestruct_t *end,
  1107.   const timebasestruct_t *start)
  1108. {
  1109.   DIFF_SECS_ROUTINE (tb_high, tb_low, 1e-9);
  1110. }
  1111. double
  1112. speed_endtime (void)
  1113. {
  1114. #define END_USE(name,value)                             
  1115.   do {                                                  
  1116.     if (speed_option_verbose >= 3)                      
  1117.       printf ("speed_endtime(): used %sn", name);      
  1118.     result = value;                                     
  1119.     goto done;                                          
  1120.   } while (0)
  1121. #define END_ENOUGH(name,value)                                          
  1122.   do {                                                                  
  1123.     if (speed_option_verbose >= 3)                                      
  1124.       printf ("speed_endtime(): %s gives enough precisionn", name);    
  1125.     result = value;                                                     
  1126.     goto done;                                                          
  1127.   } while (0)
  1128. #define END_EXCEED(name,value)                                            
  1129.   do {                                                                    
  1130.     if (speed_option_verbose >= 3)                                        
  1131.       printf ("speed_endtime(): cycle counter limit exceeded, used %sn", 
  1132.       name);                                                      
  1133.     result = value;                                                       
  1134.     goto done;                                                            
  1135.   } while (0)
  1136.   unsigned          end_cycles[2];
  1137.   stck_t            end_stck;
  1138.   unsigned          end_mftb[2];
  1139.   unsigned          end_sgi;
  1140.   timebasestruct_t  end_rrt;
  1141.   struct_timespec   end_cgt;
  1142.   struct_timeval    end_gtod;
  1143.   struct_rusage     end_grus;
  1144.   struct_tms        end_times;
  1145.   double            t_gtod, t_grus, t_times, t_cgt;
  1146.   double            t_rrt, t_sgi, t_mftb, t_stck, t_cycles;
  1147.   double            result;
  1148.   /* Cycles sampled first for maximum accuracy.
  1149.      "have_" values tested to let unused code go dead.  */
  1150.   if (have_cycles && use_cycles)  speed_cyclecounter (end_cycles);
  1151.   if (have_stck   && use_stck)    STCK (end_stck);
  1152.   if (have_mftb   && use_mftb)    MFTB (end_mftb);
  1153.   if (have_sgi    && use_sgi)     end_sgi = *sgi_addr;
  1154.   if (have_rrt    && use_rrt)     read_real_time (&end_rrt, sizeof(end_rrt));
  1155.   if (have_cgt    && use_cgt)     clock_gettime (CGT_ID, &end_cgt);
  1156.   if (have_gtod   && use_gtod)    gettimeofday (&end_gtod, NULL);
  1157.   if (have_grus   && use_grus)    getrusage (0, &end_grus);
  1158.   if (have_times  && use_times)   times (&end_times);
  1159.   result = -1.0;
  1160.   if (speed_option_verbose >= 4)
  1161.     {
  1162.       printf ("speed_endtime():n");
  1163.       if (use_cycles)
  1164. printf ("   cycles  0x%X,0x%X -> 0x%X,0x%Xn",
  1165. start_cycles[1], start_cycles[0],
  1166. end_cycles[1], end_cycles[0]);
  1167.       if (use_stck)
  1168. printf ("   stck  0x%lX -> 0x%lXn", start_stck, end_stck);
  1169.       if (use_mftb)
  1170. printf ("   mftb  0x%X,%08X -> 0x%X,%08Xn",
  1171. start_mftb[1], start_mftb[0],
  1172. end_mftb[1], end_mftb[0]);
  1173.       if (use_sgi)
  1174. printf ("   sgi  0x%X -> 0x%Xn", start_sgi, end_sgi);
  1175.       if (use_rrt)
  1176. printf ("   read_real_time  (%d)%u,%u -> (%d)%u,%un",
  1177. start_rrt.flag, start_rrt.tb_high, start_rrt.tb_low,
  1178. end_rrt.flag, end_rrt.tb_high, end_rrt.tb_low);
  1179.       if (use_cgt)
  1180. printf ("   clock_gettime  %ld.%09ld -> %ld.%09ldn",
  1181. start_cgt.tv_sec, start_cgt.tv_nsec,
  1182. end_cgt.tv_sec, end_cgt.tv_nsec);
  1183.       if (use_gtod)
  1184. printf ("   gettimeofday  %ld.%06ld -> %ld.%06ldn",
  1185. start_gtod.tv_sec, start_gtod.tv_usec,
  1186. end_gtod.tv_sec, end_gtod.tv_usec);
  1187.       if (use_grus)
  1188. printf ("   getrusage  %ld.%06ld -> %ld.%06ldn",
  1189. start_grus.ru_utime.tv_sec, start_grus.ru_utime.tv_usec,
  1190. end_grus.ru_utime.tv_sec, end_grus.ru_utime.tv_usec);
  1191.       if (use_times)
  1192. printf ("   times  %ld -> %ldn",
  1193. start_times.tms_utime, end_times.tms_utime);
  1194.     }
  1195.   if (use_rrt)
  1196.     {
  1197.       time_base_to_time (&start_rrt, sizeof(start_rrt));
  1198.       time_base_to_time (&end_rrt, sizeof(end_rrt));
  1199.       t_rrt = timebasestruct_diff_secs (&end_rrt, &start_rrt);
  1200.       END_USE ("read_real_time()", t_rrt);
  1201.     }
  1202.   if (use_cgt)
  1203.     {
  1204.       t_cgt = timespec_diff_secs (&end_cgt, &start_cgt);
  1205.       END_USE ("clock_gettime()", t_cgt);
  1206.     }
  1207.   if (use_grus)
  1208.     {
  1209.       t_grus = rusage_diff_secs (&end_grus, &start_grus);
  1210.       /* Use getrusage() if the cycle counter limit would be exceeded, or if
  1211.  it provides enough accuracy already. */
  1212.       if (use_cycles)
  1213. {
  1214.   if (t_grus >= speed_precision*grus_unittime)
  1215.     END_ENOUGH ("getrusage()", t_grus);
  1216.   if (t_grus >= cycles_limit)
  1217.     END_EXCEED ("getrusage()", t_grus);
  1218. }
  1219.     }
  1220.   if (use_times)
  1221.     {
  1222.       t_times = (end_times.tms_utime - start_times.tms_utime) * times_unittime;
  1223.       /* Use times() if the cycle counter limit would be exceeded, or if
  1224.  it provides enough accuracy already. */
  1225.       if (use_cycles)
  1226. {
  1227.   if (t_times >= speed_precision*times_unittime)
  1228.     END_ENOUGH ("times()", t_times);
  1229.   if (t_times >= cycles_limit)
  1230.     END_EXCEED ("times()", t_times);
  1231. }
  1232.     }
  1233.   if (use_gtod)
  1234.     {
  1235.       t_gtod = timeval_diff_secs (&end_gtod, &start_gtod);
  1236.       /* Use gettimeofday() if it measured a value bigger than the cycle
  1237.  counter can handle.  */
  1238.       if (use_cycles)
  1239. {
  1240.   if (t_gtod >= cycles_limit)
  1241.     END_EXCEED ("gettimeofday()", t_gtod);
  1242. }
  1243.     }
  1244.   if (use_mftb)
  1245.     {
  1246.       t_mftb = speed_mftb_diff (end_mftb, start_mftb) * mftb_unittime;
  1247.       END_USE ("mftb", t_mftb);
  1248.     }
  1249.   if (use_stck)
  1250.     {
  1251.       t_stck = (end_stck - start_stck) * STCK_PERIOD;
  1252.       END_USE ("stck", t_stck);
  1253.     }
  1254.   if (use_sgi)
  1255.     {
  1256.       t_sgi = (end_sgi - start_sgi) * sgi_unittime;
  1257.       END_USE ("SGI hardware counter", t_sgi);
  1258.     }
  1259.   if (use_cycles)
  1260.     {
  1261.       t_cycles = speed_cyclecounter_diff (end_cycles, start_cycles)
  1262. * speed_cycletime;
  1263.       END_USE ("cycle counter", t_cycles);
  1264.     }
  1265.   if (use_grus && getrusage_microseconds_p())
  1266.     END_USE ("getrusage()", t_grus);
  1267.   if (use_gtod && gettimeofday_microseconds_p())
  1268.     END_USE ("gettimeofday()", t_gtod);
  1269.   if (use_times)  END_USE ("times()",        t_times);
  1270.   if (use_grus)   END_USE ("getrusage()",    t_grus);
  1271.   if (use_gtod)   END_USE ("gettimeofday()", t_gtod);
  1272.   fprintf (stderr, "speed_endtime(): oops, no time method availablen");
  1273.   abort ();
  1274.  done:
  1275.   if (result < 0.0)
  1276.     {
  1277.       if (speed_option_verbose >= 2)
  1278. fprintf (stderr, "speed_endtime(): warning, treating negative time as zero: %.9fn", result);
  1279.       result = 0.0;
  1280.     }
  1281.   return result;
  1282. }