* tree-outof-ssa.h (ssaexpand): Add partitions_for_undefined_values.
[official-gcc.git] / libgfortran / intrinsics / etime.c
blob6932364df11057c6bd26d46c5f139d4ce5024b92
1 /* Implementation of the ETIME intrinsic.
2 Copyright (C) 2004-2017 Free Software Foundation, Inc.
3 Contributed by Steven G. Kargl <kargls@comcast.net>.
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"
27 #include "time_1.h"
29 extern void etime_sub (gfc_array_r4 *t, GFC_REAL_4 *result);
30 iexport_proto(etime_sub);
32 void
33 etime_sub (gfc_array_r4 *t, GFC_REAL_4 *result)
35 GFC_REAL_4 tu, ts, tt, *tp;
36 long user_sec, user_usec, system_sec, system_usec;
38 if (((GFC_DESCRIPTOR_EXTENT(t,0))) < 2)
39 runtime_error ("Insufficient number of elements in TARRAY.");
41 if (gf_cputime (&user_sec, &user_usec, &system_sec, &system_usec) == 0)
43 tu = (GFC_REAL_4)(user_sec + 1.e-6 * user_usec);
44 ts = (GFC_REAL_4)(system_sec + 1.e-6 * system_usec);
45 tt = tu + ts;
47 else
49 tu = (GFC_REAL_4)-1.0;
50 ts = (GFC_REAL_4)-1.0;
51 tt = (GFC_REAL_4)-1.0;
54 tp = t->base_addr;
56 *tp = tu;
57 tp += GFC_DESCRIPTOR_STRIDE(t,0);
58 *tp = ts;
59 *result = tt;
61 iexport(etime_sub);
63 extern GFC_REAL_4 etime (gfc_array_r4 *t);
64 export_proto(etime);
66 GFC_REAL_4
67 etime (gfc_array_r4 *t)
69 GFC_REAL_4 val;
70 etime_sub (t, &val);
71 return val;