1 /* Implementation of the SYSTEM_CLOCK intrinsic.
2 Copyright (C) 2004, 2005, 2007, 2009, 2010, 2011 Free Software
5 This file is part of the GNU Fortran runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public
9 License as published by the Free Software Foundation; either
10 version 3 of the License, or (at your option) any later version.
12 Libgfortran is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
32 #ifdef HAVE_CLOCK_GETTIME
33 /* POSIX states that CLOCK_REALTIME must be present if clock_gettime
34 is available, others are optional. */
35 #ifdef CLOCK_MONOTONIC
36 #define GF_CLOCK_MONOTONIC CLOCK_MONOTONIC
38 #define GF_CLOCK_MONOTONIC CLOCK_REALTIME
41 /* Weakref trickery for clock_gettime(). On Glibc, clock_gettime()
42 requires us to link in librt, which also pulls in libpthread. In
43 order to avoid this by default, only call clock_gettime() through a
46 Some targets don't support weak undefined references; on these
47 GTHREAD_USE_WEAK is 0. So we need to define it to 1 on other
49 #ifndef GTHREAD_USE_WEAK
50 #define GTHREAD_USE_WEAK 1
53 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK
54 static int weak_gettime (clockid_t
, struct timespec
*)
55 __attribute__((__weakref__("clock_gettime")));
57 static inline int weak_gettime (clockid_t clk_id
, struct timespec
*res
)
59 return clock_gettime (clk_id
, res
);
65 /* High resolution monotonic clock, falling back to the realtime clock
66 if the target does not support such a clock.
69 secs - OUTPUT, seconds
70 nanosecs - OUTPUT, nanoseconds
72 If the target supports a monotonic clock, the OUTPUT arguments
73 represent a monotonically incrementing clock starting from some
74 unspecified time in the past.
76 If a monotonic clock is not available, falls back to the realtime
77 clock which is not monotonic.
79 Return value: 0 for success, -1 for error. In case of error, errno
83 gf_gettime_mono (time_t * secs
, long * nanosecs
)
86 #ifdef HAVE_CLOCK_GETTIME
90 err
= weak_gettime (GF_CLOCK_MONOTONIC
, &ts
);
92 *nanosecs
= ts
.tv_nsec
;
96 err
= gf_gettime (secs
, nanosecs
);
101 extern void system_clock_4 (GFC_INTEGER_4
*, GFC_INTEGER_4
*, GFC_INTEGER_4
*);
102 export_proto(system_clock_4
);
104 extern void system_clock_8 (GFC_INTEGER_8
*, GFC_INTEGER_8
*, GFC_INTEGER_8
*);
105 export_proto(system_clock_8
);
108 /* prefix(system_clock_4) is the INTEGER(4) version of the SYSTEM_CLOCK
109 intrinsic subroutine. It returns the number of clock ticks for the current
110 system time, the number of ticks per second, and the maximum possible value
111 for COUNT. On the first call to SYSTEM_CLOCK, COUNT is set to zero. */
114 system_clock_4(GFC_INTEGER_4
*count
, GFC_INTEGER_4
*count_rate
,
115 GFC_INTEGER_4
*count_max
)
125 if (sizeof (secs
) < sizeof (GFC_INTEGER_4
))
126 internal_error (NULL
, "secs too small");
128 if (gf_gettime_mono (&secs
, &nanosecs
) == 0)
130 GFC_UINTEGER_4 ucnt
= (GFC_UINTEGER_4
) secs
* TCK
;
131 ucnt
+= (nanosecs
+ 500000000 / TCK
) / (1000000000 / TCK
);
132 if (ucnt
> GFC_INTEGER_4_HUGE
)
133 cnt
= ucnt
- GFC_INTEGER_4_HUGE
- 1;
136 mx
= GFC_INTEGER_4_HUGE
;
141 *count
= - GFC_INTEGER_4_HUGE
;
142 if (count_rate
!= NULL
)
144 if (count_max
!= NULL
)
151 if (count_rate
!= NULL
)
153 if (count_max
!= NULL
)
158 /* INTEGER(8) version of the above routine. */
161 system_clock_8 (GFC_INTEGER_8
*count
, GFC_INTEGER_8
*count_rate
,
162 GFC_INTEGER_8
*count_max
)
165 #define TCK 1000000000
172 if (sizeof (secs
) < sizeof (GFC_INTEGER_4
))
173 internal_error (NULL
, "secs too small");
175 if (gf_gettime_mono (&secs
, &nanosecs
) == 0)
177 GFC_UINTEGER_8 ucnt
= (GFC_UINTEGER_8
) secs
* TCK
;
178 ucnt
+= (nanosecs
+ 500000000 / TCK
) / (1000000000 / TCK
);
179 if (ucnt
> GFC_INTEGER_8_HUGE
)
180 cnt
= ucnt
- GFC_INTEGER_8_HUGE
- 1;
183 mx
= GFC_INTEGER_8_HUGE
;
188 *count
= - GFC_INTEGER_8_HUGE
;
189 if (count_rate
!= NULL
)
191 if (count_max
!= NULL
)
199 if (count_rate
!= NULL
)
201 if (count_max
!= NULL
)