]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libgfortran/lib/contrib/intrinsics/dtime.c
update
[l4.git] / l4 / pkg / libgfortran / lib / contrib / intrinsics / dtime.c
1 /* Implementation of the dtime intrinsic.
2    Copyright (C) 2004, 2005, 2006, 2007, 2009, 2011 Free Software
3    Foundation, Inc.
4
5 This file is part of the GNU Fortran runtime library (libgfortran).
6
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.
11
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.
16
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.
20
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/>.  */
25
26 #include "libgfortran.h"
27 #include "time_1.h"
28 #include <gthr.h>
29
30 #ifdef __GTHREAD_MUTEX_INIT
31 static __gthread_mutex_t dtime_update_lock = __GTHREAD_MUTEX_INIT;
32 #else
33 static __gthread_mutex_t dtime_update_lock;
34 #endif
35
36 extern void dtime_sub (gfc_array_r4 *t, GFC_REAL_4 *result);
37 iexport_proto(dtime_sub);
38
39 void
40 dtime_sub (gfc_array_r4 *t, GFC_REAL_4 *result)
41 {
42   GFC_REAL_4 *tp;
43   long user_sec, user_usec, system_sec, system_usec;
44   static long us = 0, uu = 0, ss = 0 , su = 0;
45   GFC_REAL_4 tu, ts, tt;
46
47   if (((GFC_DESCRIPTOR_EXTENT(t,0))) < 2)
48     runtime_error ("Insufficient number of elements in TARRAY.");
49
50   __gthread_mutex_lock (&dtime_update_lock);
51   if (gf_cputime (&user_sec, &user_usec, &system_sec, &system_usec) == 0)
52     {
53       tu = (GFC_REAL_4) ((user_sec - us) + 1.e-6 * (user_usec - uu));
54       ts = (GFC_REAL_4) ((system_sec - ss) + 1.e-6 * (system_usec - su));
55       tt = tu + ts;
56       us = user_sec;
57       uu = user_usec;
58       ss = system_sec;
59       su = system_usec;
60     }
61   else
62     {
63       tu = -1;
64       ts = -1;
65       tt = -1;
66     }
67
68   tp = t->data;
69
70   *tp = tu;
71   tp += GFC_DESCRIPTOR_STRIDE(t,0);
72   *tp = ts;
73   *result = tt;
74   __gthread_mutex_unlock (&dtime_update_lock);
75 }
76 iexport(dtime_sub);
77
78 extern GFC_REAL_4 dtime (gfc_array_r4 *t);
79 export_proto(dtime);
80
81 GFC_REAL_4
82 dtime (gfc_array_r4 *t)
83 {
84   GFC_REAL_4 val;
85   dtime_sub (t, &val);
86   return val;
87 }