Let the compiler decide whether to inline.
[official-gcc.git] / libgfortran / intrinsics / system_clock.c
blob6385c4f0c95dc01117e08e4fa23f82174a39f7d8
1 /* Implementation of the SYSTEM_CLOCK intrinsic.
2 Copyright (C) 2004, 2005, 2007, 2009, 2010, 2011 Free Software
3 Foundation, Inc.
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"
28 #include <limits.h>
30 #include "time_1.h"
33 /* POSIX states that CLOCK_REALTIME must be present if clock_gettime
34 is available, others are optional. */
35 #if defined(HAVE_CLOCK_GETTIME) || defined(HAVE_CLOCK_GETTIME_LIBRT)
36 #ifdef CLOCK_MONOTONIC
37 #define GF_CLOCK_MONOTONIC CLOCK_MONOTONIC
38 #else
39 #define GF_CLOCK_MONOTONIC CLOCK_REALTIME
40 #endif
41 #endif
43 /* Weakref trickery for clock_gettime(). On Glibc, clock_gettime()
44 requires us to link in librt, which also pulls in libpthread. In
45 order to avoid this by default, only call clock_gettime() through a
46 weak reference.
48 Some targets don't support weak undefined references; on these
49 GTHREAD_USE_WEAK is 0. So we need to define it to 1 on other
50 targets. */
51 #ifndef GTHREAD_USE_WEAK
52 #define GTHREAD_USE_WEAK 1
53 #endif
55 #if SUPPORTS_WEAK && GTHREAD_USE_WEAK && defined(HAVE_CLOCK_GETTIME_LIBRT)
56 static int weak_gettime (clockid_t, struct timespec *)
57 __attribute__((__weakref__("clock_gettime")));
58 #endif
61 /* High resolution monotonic clock, falling back to the realtime clock
62 if the target does not support such a clock.
64 Arguments:
65 secs - OUTPUT, seconds
66 nanosecs - OUTPUT, nanoseconds
68 If the target supports a monotonic clock, the OUTPUT arguments
69 represent a monotonically incrementing clock starting from some
70 unspecified time in the past.
72 If a monotonic clock is not available, falls back to the realtime
73 clock which is not monotonic.
75 Return value: 0 for success, -1 for error. In case of error, errno
76 is set.
78 static int
79 gf_gettime_mono (time_t * secs, long * nanosecs)
81 int err;
82 #ifdef HAVE_CLOCK_GETTIME
83 struct timespec ts;
84 err = clock_gettime (GF_CLOCK_MONOTONIC, &ts);
85 *secs = ts.tv_sec;
86 *nanosecs = ts.tv_nsec;
87 return err;
88 #else
89 #if defined(HAVE_CLOCK_GETTIME_LIBRT) && SUPPORTS_WEAK && GTHREAD_USE_WEAK
90 if (weak_gettime)
92 struct timespec ts;
93 err = weak_gettime (GF_CLOCK_MONOTONIC, &ts);
94 *secs = ts.tv_sec;
95 *nanosecs = ts.tv_nsec;
96 return err;
98 #endif
99 err = gf_gettime (secs, nanosecs);
100 *nanosecs *= 1000;
101 return err;
102 #endif
105 extern void system_clock_4 (GFC_INTEGER_4 *, GFC_INTEGER_4 *, GFC_INTEGER_4 *);
106 export_proto(system_clock_4);
108 extern void system_clock_8 (GFC_INTEGER_8 *, GFC_INTEGER_8 *, GFC_INTEGER_8 *);
109 export_proto(system_clock_8);
112 /* prefix(system_clock_4) is the INTEGER(4) version of the SYSTEM_CLOCK
113 intrinsic subroutine. It returns the number of clock ticks for the current
114 system time, the number of ticks per second, and the maximum possible value
115 for COUNT. On the first call to SYSTEM_CLOCK, COUNT is set to zero. */
117 void
118 system_clock_4(GFC_INTEGER_4 *count, GFC_INTEGER_4 *count_rate,
119 GFC_INTEGER_4 *count_max)
121 #undef TCK
122 #define TCK 1000
123 GFC_INTEGER_4 cnt;
124 GFC_INTEGER_4 mx;
126 time_t secs;
127 long nanosecs;
129 if (sizeof (secs) < sizeof (GFC_INTEGER_4))
130 internal_error (NULL, "secs too small");
132 if (gf_gettime_mono (&secs, &nanosecs) == 0)
134 GFC_UINTEGER_4 ucnt = (GFC_UINTEGER_4) secs * TCK;
135 ucnt += (nanosecs + 500000000 / TCK) / (1000000000 / TCK);
136 if (ucnt > GFC_INTEGER_4_HUGE)
137 cnt = ucnt - GFC_INTEGER_4_HUGE - 1;
138 else
139 cnt = ucnt;
140 mx = GFC_INTEGER_4_HUGE;
142 else
144 if (count != NULL)
145 *count = - GFC_INTEGER_4_HUGE;
146 if (count_rate != NULL)
147 *count_rate = 0;
148 if (count_max != NULL)
149 *count_max = 0;
150 return;
153 if (count != NULL)
154 *count = cnt;
155 if (count_rate != NULL)
156 *count_rate = TCK;
157 if (count_max != NULL)
158 *count_max = mx;
162 /* INTEGER(8) version of the above routine. */
164 void
165 system_clock_8 (GFC_INTEGER_8 *count, GFC_INTEGER_8 *count_rate,
166 GFC_INTEGER_8 *count_max)
168 #undef TCK
169 #define TCK 1000000000
170 GFC_INTEGER_8 cnt;
171 GFC_INTEGER_8 mx;
173 time_t secs;
174 long nanosecs;
176 if (sizeof (secs) < sizeof (GFC_INTEGER_4))
177 internal_error (NULL, "secs too small");
179 if (gf_gettime_mono (&secs, &nanosecs) == 0)
181 GFC_UINTEGER_8 ucnt = (GFC_UINTEGER_8) secs * TCK;
182 ucnt += (nanosecs + 500000000 / TCK) / (1000000000 / TCK);
183 if (ucnt > GFC_INTEGER_8_HUGE)
184 cnt = ucnt - GFC_INTEGER_8_HUGE - 1;
185 else
186 cnt = ucnt;
187 mx = GFC_INTEGER_8_HUGE;
189 else
191 if (count != NULL)
192 *count = - GFC_INTEGER_8_HUGE;
193 if (count_rate != NULL)
194 *count_rate = 0;
195 if (count_max != NULL)
196 *count_max = 0;
198 return;
201 if (count != NULL)
202 *count = cnt;
203 if (count_rate != NULL)
204 *count_rate = TCK;
205 if (count_max != NULL)
206 *count_max = mx;