re PR middle-end/40026 (ICE during gimplify_init_constructor)
[official-gcc.git] / libgfortran / intrinsics / system_clock.c
blobcf32b8d83fce3e1d8922092043782c4e398b6423
1 /* Implementation of the SYSTEM_CLOCK intrinsic.
2 Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
4 This file is part of the GNU Fortran 95 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"
27 #include <limits.h>
29 #if defined(HAVE_SYS_TIME_H) && defined(HAVE_GETTIMEOFDAY)
30 # include <sys/time.h>
31 # define TCK 1000
32 #elif defined(HAVE_TIME_H)
33 # include <time.h>
34 # define TCK 1
35 #else
36 #define TCK 0
37 #endif
40 extern void system_clock_4 (GFC_INTEGER_4 *, GFC_INTEGER_4 *, GFC_INTEGER_4 *);
41 export_proto(system_clock_4);
43 extern void system_clock_8 (GFC_INTEGER_8 *, GFC_INTEGER_8 *, GFC_INTEGER_8 *);
44 export_proto(system_clock_8);
47 /* prefix(system_clock_4) is the INTEGER(4) version of the SYSTEM_CLOCK
48 intrinsic subroutine. It returns the number of clock ticks for the current
49 system time, the number of ticks per second, and the maximum possible value
50 for COUNT. On the first call to SYSTEM_CLOCK, COUNT is set to zero. */
52 void
53 system_clock_4(GFC_INTEGER_4 *count, GFC_INTEGER_4 *count_rate,
54 GFC_INTEGER_4 *count_max)
56 GFC_INTEGER_4 cnt;
57 GFC_INTEGER_4 mx;
59 #if defined(HAVE_SYS_TIME_H) && defined(HAVE_GETTIMEOFDAY)
60 struct timeval tp1;
61 struct timezone tzp;
63 if (sizeof (tp1.tv_sec) < sizeof (GFC_INTEGER_4))
64 internal_error (NULL, "tv_sec too small");
66 if (gettimeofday(&tp1, &tzp) == 0)
68 GFC_UINTEGER_4 ucnt = (GFC_UINTEGER_4) tp1.tv_sec * TCK;
69 ucnt += (tp1.tv_usec + 500000 / TCK) / (1000000 / TCK);
70 if (ucnt > GFC_INTEGER_4_HUGE)
71 cnt = ucnt - GFC_INTEGER_4_HUGE - 1;
72 else
73 cnt = ucnt;
74 mx = GFC_INTEGER_4_HUGE;
76 else
78 if (count != NULL)
79 *count = - GFC_INTEGER_4_HUGE;
80 if (count_rate != NULL)
81 *count_rate = 0;
82 if (count_max != NULL)
83 *count_max = 0;
84 return;
86 #elif defined(HAVE_TIME_H)
87 GFC_UINTEGER_4 ucnt;
89 if (sizeof (time_t) < sizeof (GFC_INTEGER_4))
90 internal_error (NULL, "time_t too small");
92 ucnt = time (NULL);
93 if (ucnt > GFC_INTEGER_4_HUGE)
94 cnt = ucnt - GFC_INTEGER_4_HUGE - 1;
95 else
96 cnt = ucnt;
97 mx = GFC_INTEGER_4_HUGE;
98 #else
99 cnt = - GFC_INTEGER_4_HUGE;
100 mx = 0;
101 #endif
102 if (count != NULL)
103 *count = cnt;
104 if (count_rate != NULL)
105 *count_rate = TCK;
106 if (count_max != NULL)
107 *count_max = mx;
111 /* INTEGER(8) version of the above routine. */
113 void
114 system_clock_8 (GFC_INTEGER_8 *count, GFC_INTEGER_8 *count_rate,
115 GFC_INTEGER_8 *count_max)
117 GFC_INTEGER_8 cnt;
118 GFC_INTEGER_8 mx;
120 #if defined(HAVE_SYS_TIME_H) && defined(HAVE_GETTIMEOFDAY)
121 struct timeval tp1;
122 struct timezone tzp;
124 if (sizeof (tp1.tv_sec) < sizeof (GFC_INTEGER_4))
125 internal_error (NULL, "tv_sec too small");
127 if (gettimeofday(&tp1, &tzp) == 0)
129 if (sizeof (tp1.tv_sec) < sizeof (GFC_INTEGER_8))
131 GFC_UINTEGER_4 ucnt = (GFC_UINTEGER_4) tp1.tv_sec * TCK;
132 ucnt += (tp1.tv_usec + 500000 / TCK) / (1000000 / TCK);
133 if (ucnt > GFC_INTEGER_4_HUGE)
134 cnt = ucnt - GFC_INTEGER_4_HUGE - 1;
135 else
136 cnt = ucnt;
137 mx = GFC_INTEGER_4_HUGE;
139 else
141 GFC_UINTEGER_8 ucnt = (GFC_UINTEGER_8) tp1.tv_sec * TCK;
142 ucnt += (tp1.tv_usec + 500000 / TCK) / (1000000 / TCK);
143 if (ucnt > GFC_INTEGER_8_HUGE)
144 cnt = ucnt - GFC_INTEGER_8_HUGE - 1;
145 else
146 cnt = ucnt;
147 mx = GFC_INTEGER_8_HUGE;
150 else
152 if (count != NULL)
153 *count = - GFC_INTEGER_8_HUGE;
154 if (count_rate != NULL)
155 *count_rate = 0;
156 if (count_max != NULL)
157 *count_max = 0;
159 return;
161 #elif defined(HAVE_TIME_H)
162 if (sizeof (time_t) < sizeof (GFC_INTEGER_4))
163 internal_error (NULL, "time_t too small");
164 else if (sizeof (time_t) == sizeof (GFC_INTEGER_4))
166 GFC_UINTEGER_4 ucnt = time (NULL);
167 if (ucnt > GFC_INTEGER_4_HUGE)
168 cnt = ucnt - GFC_INTEGER_4_HUGE - 1;
169 else
170 cnt = ucnt;
171 mx = GFC_INTEGER_4_HUGE;
173 else
175 GFC_UINTEGER_8 ucnt = time (NULL);
176 if (ucnt > GFC_INTEGER_8_HUGE)
177 cnt = ucnt - GFC_INTEGER_8_HUGE - 1;
178 else
179 cnt = ucnt;
180 mx = GFC_INTEGER_8_HUGE;
182 #else
183 cnt = - GFC_INTEGER_8_HUGE;
184 mx = 0;
185 #endif
186 if (count != NULL)
187 *count = cnt;
188 if (count_rate != NULL)
189 *count_rate = TCK;
190 if (count_max != NULL)
191 *count_max = mx;