(root)/
gcc-13.2.0/
libgfortran/
intrinsics/
etime.c
       1  /* Implementation of the ETIME intrinsic.
       2     Copyright (C) 2004-2023 Free Software Foundation, Inc.
       3     Contributed by Steven G. Kargl <kargls@comcast.net>.
       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  
      29  extern void etime_sub (gfc_array_r4 *t, GFC_REAL_4 *result);
      30  iexport_proto(etime_sub);
      31  
      32  void
      33  etime_sub (gfc_array_r4 *t, GFC_REAL_4 *result)
      34  {
      35    GFC_REAL_4 tu, ts, tt, *tp;
      36    long user_sec, user_usec, system_sec, system_usec;
      37  
      38    if (((GFC_DESCRIPTOR_EXTENT(t,0))) < 2)
      39      runtime_error ("Insufficient number of elements in TARRAY.");
      40  
      41    if (gf_cputime (&user_sec, &user_usec, &system_sec, &system_usec) == 0)
      42      {
      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;
      46      }
      47    else
      48      {
      49        tu = (GFC_REAL_4)-1.0;
      50        ts = (GFC_REAL_4)-1.0;
      51        tt = (GFC_REAL_4)-1.0;
      52      }
      53  
      54    tp = t->base_addr;
      55  
      56    *tp = tu;
      57    tp += GFC_DESCRIPTOR_STRIDE(t,0);
      58    *tp = ts;
      59    *result = tt;
      60  }
      61  iexport(etime_sub);
      62  
      63  extern GFC_REAL_4 etime (gfc_array_r4 *t);
      64  export_proto(etime);
      65  
      66  GFC_REAL_4
      67  etime (gfc_array_r4 *t)
      68  {
      69    GFC_REAL_4 val;
      70    etime_sub (t, &val);
      71    return val;
      72  }