source: trunk/src/gcc/libf2c/libU77/etime_.c@ 2

Last change on this file since 2 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 4.9 KB
Line 
1/* Copyright (C) 1995, 1996 Free Software Foundation, Inc.
2This file is part of GNU Fortran libU77 library.
3
4This library is free software; you can redistribute it and/or modify it
5under the terms of the GNU Library General Public License as published
6by the Free Software Foundation; either version 2 of the License, or
7(at your option) any later version.
8
9GNU Fortran is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details.
13
14You should have received a copy of the GNU Library General Public
15License along with GNU Fortran; see the file COPYING.LIB. If
16not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17Boston, MA 02111-1307, USA. */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22#if HAVE_STDLIB_H
23# include <stdlib.h>
24#endif
25#if HAVE_UNISTD_H
26# include <unistd.h>
27#endif
28#include <sys/types.h>
29#if HAVE_SYS_TIMES_H
30# include <sys/times.h>
31#endif
32#if HAVE_SYS_PARAM_H
33# include <sys/param.h>
34#endif
35#if HAVE_GETRUSAGE
36# include <sys/time.h>
37# include <sys/resource.h>
38#endif
39#if defined (_WIN32)
40# include <windows.h>
41# undef min
42# undef max
43#endif
44#include <errno.h> /* for ENOSYS */
45#include "f2c.h"
46
47/* For dtime, etime we store the clock tick parameter (clk_tck) the
48 first time either of them is invoked rather than each time. This
49 approach probably speeds up each invocation by avoiding a system
50 call each time, but means that the overhead of the first call is
51 different to all others. */
52static long clk_tck = 0;
53
54#ifdef KR_headers
55double G77_etime_0 (tarray)
56 real tarray[2];
57#else
58double G77_etime_0 (real tarray[2])
59#endif
60{
61#if defined (_WIN32)
62 static int win32_platform = -1;
63 double usertime, systime;
64
65 if (win32_platform == -1)
66 {
67 OSVERSIONINFO osv;
68 osv.dwOSVersionInfoSize = sizeof (osv);
69 GetVersionEx (&osv);
70 win32_platform = osv.dwPlatformId;
71 }
72
73 /* non-NT platforms don't have a clue as to how long a process has
74 been running, so simply return the uptime. Bad judgement call? */
75 if (win32_platform != VER_PLATFORM_WIN32_NT)
76 {
77 static unsigned long long clock_freq;
78 static unsigned long long old_count;
79 unsigned long long count;
80 LARGE_INTEGER counter_val;
81
82 if (clock_freq == 0)
83 {
84 LARGE_INTEGER freq;
85 if (! QueryPerformanceFrequency (&freq))
86 {
87 errno = ENOSYS;
88 return 0.0;
89 }
90 else
91 {
92 clock_freq = ((unsigned long long) freq.HighPart << 32)
93 + ((unsigned) freq.LowPart);
94 if (! QueryPerformanceCounter (&counter_val))
95 return -1.0;
96 old_count = ((unsigned long long) counter_val.HighPart << 32)
97 + (unsigned) counter_val.LowPart;
98 }
99 }
100
101 if (! QueryPerformanceCounter (&counter_val))
102 return -1.0;
103
104 count = ((unsigned long long) counter_val.HighPart << 32)
105 + (unsigned) counter_val.LowPart;
106 tarray[0] = usertime = (double) (count - old_count) / clock_freq;
107 tarray[1] = systime = 0.0;
108 }
109 else
110 {
111 FILETIME creation_time, exit_time, kernel_time, user_time;
112 unsigned long long utime, stime;
113
114 GetProcessTimes (GetCurrentProcess (), &creation_time, &exit_time,
115 &kernel_time, &user_time);
116 utime = ((unsigned long long) user_time.dwHighDateTime << 32)
117 + (unsigned) user_time.dwLowDateTime;
118 stime = ((unsigned long long) kernel_time.dwHighDateTime << 32)
119 + (unsigned) kernel_time.dwLowDateTime;
120
121 tarray[0] = usertime = utime / 1.0e7;
122 tarray[1] = systime = stime / 1.0e7;
123 }
124 return usertime + systime;
125
126#elif defined (HAVE_GETRUSAGE) || defined (HAVE_TIMES)
127 /* The getrusage version is only the default for convenience. */
128#ifdef HAVE_GETRUSAGE
129 struct rusage rbuff;
130
131 if (getrusage (RUSAGE_SELF, &rbuff) != 0)
132 abort ();
133 tarray[0] = ((float) (rbuff.ru_utime).tv_sec +
134 (float) (rbuff.ru_utime).tv_usec/1000000.0);
135 tarray[1] = ((float) (rbuff.ru_stime).tv_sec +
136 (float) (rbuff.ru_stime).tv_usec/1000000.0);
137#else /* HAVE_GETRUSAGE */
138 struct tms buffer;
139
140/* NeXTStep seems to define _SC_CLK_TCK but not to have sysconf;
141 fixme: does using _POSIX_VERSION help? */
142# if defined _SC_CLK_TCK && defined _POSIX_VERSION
143 if (! clk_tck) clk_tck = sysconf(_SC_CLK_TCK);
144# elif defined CLOCKS_PER_SECOND
145 if (! clk_tck) clk_tck = CLOCKS_PER_SECOND;
146# elif defined CLK_TCK
147 if (! clk_tck) clk_tck = CLK_TCK;
148# elif defined HZ
149 if (! clk_tck) clk_tck = HZ;
150# elif defined HAVE_GETRUSAGE
151# else
152 #error Dont know clock tick length
153# endif
154 if (times(&buffer) == (clock_t)-1) return -1.0;
155 tarray[0] = (float) buffer.tms_utime / (float)clk_tck;
156 tarray[1] = (float) buffer.tms_stime / (float)clk_tck;
157#endif /* HAVE_GETRUSAGE */
158 return (tarray[0]+tarray[1]);
159#else /* ! HAVE_GETRUSAGE && ! HAVE_TIMES */
160 errno = ENOSYS;
161 return 0.0;
162#endif /* ! HAVE_GETRUSAGE && ! HAVE_TIMES */
163}
Note: See TracBrowser for help on using the repository browser.