1 /* Implementation of the SYSTEM_CLOCK intrinsic.
2 Copyright (C) 2004-2017 Free Software Foundation, Inc.
4 This file is part of the GNU Fortran runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public
8 License as published by the Free Software Foundation; either
9 version 3 of the License, or (at your option) any later version.
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 #include "libgfortran.h"
32 #if !defined(__MINGW32__) && !defined(__CYGWIN__)
34 /* POSIX states that CLOCK_REALTIME must be present if clock_gettime
35 is available, others are optional. */
36 #if defined(HAVE_CLOCK_GETTIME) || defined(HAVE_CLOCK_GETTIME_LIBRT)
37 #if defined(CLOCK_MONOTONIC) && defined(_POSIX_MONOTONIC_CLOCK) \
38 && _POSIX_MONOTONIC_CLOCK >= 0
39 #define GF_CLOCK_MONOTONIC CLOCK_MONOTONIC
41 #define GF_CLOCK_MONOTONIC CLOCK_REALTIME
45 /* Weakref trickery for clock_gettime(). On Glibc <= 2.16,
46 clock_gettime() requires us to link in librt, which also pulls in
47 libpthread. In order to avoid this by default, only call
48 clock_gettime() through a weak reference. */
49 #if SUPPORTS_WEAKREF && defined(HAVE_CLOCK_GETTIME_LIBRT)
50 static int weak_gettime (clockid_t
, struct timespec
*)
51 __attribute__((__weakref__("clock_gettime")));
55 /* High resolution monotonic clock, falling back to the realtime clock
56 if the target does not support such a clock.
59 secs - OUTPUT, seconds
60 fracsecs - OUTPUT, fractional seconds, units given by tk argument
61 tk - OUTPUT, clock resolution [counts/sec]
63 If the target supports a monotonic clock, the OUTPUT arguments
64 represent a monotonically incrementing clock starting from some
65 unspecified time in the past.
67 If a monotonic clock is not available, falls back to the realtime
68 clock which is not monotonic.
70 Return value: 0 for success, -1 for error. In case of error, errno
74 gf_gettime_mono (time_t * secs
, long * fracsecs
, long * tck
)
77 #ifdef HAVE_CLOCK_GETTIME
80 err
= clock_gettime (GF_CLOCK_MONOTONIC
, &ts
);
82 *fracsecs
= ts
.tv_nsec
;
85 #if SUPPORTS_WEAKREF && defined(HAVE_CLOCK_GETTIME_LIBRT)
90 err
= weak_gettime (GF_CLOCK_MONOTONIC
, &ts
);
92 *fracsecs
= ts
.tv_nsec
;
97 err
= gf_gettime (secs
, fracsecs
);
102 #endif /* !__MINGW32 && !__CYGWIN__ */
105 system_clock_4 (GFC_INTEGER_4
*count
, GFC_INTEGER_4
*count_rate
,
106 GFC_INTEGER_4
*count_max
);
107 export_proto(system_clock_4
);
110 system_clock_8 (GFC_INTEGER_8
*count
, GFC_INTEGER_8
*count_rate
,
111 GFC_INTEGER_8
*count_max
);
112 export_proto(system_clock_8
);
115 /* prefix(system_clock_4) is the INTEGER(4) version of the SYSTEM_CLOCK
116 intrinsic subroutine. It returns the number of clock ticks for the current
117 system time, the number of ticks per second, and the maximum possible value
121 system_clock_4 (GFC_INTEGER_4
*count
, GFC_INTEGER_4
*count_rate
,
122 GFC_INTEGER_4
*count_max
)
124 #if defined(__MINGW32__) || defined(__CYGWIN__)
127 /* Use GetTickCount here as the resolution and range is
128 sufficient for the INTEGER(kind=4) version, and
129 QueryPerformanceCounter has potential issues. */
130 uint32_t cnt
= GetTickCount ();
131 if (cnt
> GFC_INTEGER_4_HUGE
)
132 cnt
= cnt
- GFC_INTEGER_4_HUGE
- 1;
138 *count_max
= GFC_INTEGER_4_HUGE
;
143 if (gf_gettime_mono (&secs
, &fracsecs
, &tck
) == 0)
145 long tck_out
= tck
> 1000 ? 1000 : tck
;
146 long tck_r
= tck
/ tck_out
;
147 GFC_UINTEGER_4 ucnt
= (GFC_UINTEGER_4
) secs
* tck_out
;
148 ucnt
+= fracsecs
/ tck_r
;
149 if (ucnt
> GFC_INTEGER_4_HUGE
)
150 ucnt
= ucnt
- GFC_INTEGER_4_HUGE
- 1;
154 *count_rate
= tck_out
;
156 *count_max
= GFC_INTEGER_4_HUGE
;
161 *count
= - GFC_INTEGER_4_HUGE
;
171 /* INTEGER(8) version of the above routine. */
174 system_clock_8 (GFC_INTEGER_8
*count
, GFC_INTEGER_8
*count_rate
,
175 GFC_INTEGER_8
*count_max
)
177 #if defined(__MINGW32__) || defined(__CYGWIN__)
181 if (count
&& !QueryPerformanceCounter (&cnt
))
183 if (count_rate
&& !QueryPerformanceFrequency (&freq
))
188 *count
= - GFC_INTEGER_8_HUGE
;
197 *count
= cnt
.QuadPart
;
199 *count_rate
= freq
.QuadPart
;
201 *count_max
= GFC_INTEGER_8_HUGE
;
207 if (gf_gettime_mono (&secs
, &fracsecs
, &tck
) == 0)
209 GFC_UINTEGER_8 ucnt
= (GFC_UINTEGER_8
) secs
* tck
;
211 if (ucnt
> GFC_INTEGER_8_HUGE
)
212 ucnt
= ucnt
- GFC_INTEGER_8_HUGE
- 1;
218 *count_max
= GFC_INTEGER_8_HUGE
;
223 *count
= - GFC_INTEGER_8_HUGE
;