public inbox for fortran@gcc.gnu.org
 help / color / mirror / Atom feed
* [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
@ 2021-12-16 14:49 FX
  2021-12-16 16:26 ` Harald Anlauf
  0 siblings, 1 reply; 7+ messages in thread
From: FX @ 2021-12-16 14:49 UTC (permalink / raw)
  To: fortran; +Cc: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 187 bytes --]

Hi,

Bug reported by Tobias at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255
Trivial fix, adding a testcase.

Bootstrapped and regtested on x86_64-pc-linux-gnu.
OK to commit?

FX



[-- Attachment #2: pr98507.patch --]
[-- Type: application/octet-stream, Size: 4520 bytes --]

commit 81631ceaccf9c170e547e06f94c2e8a9e644134c
Author: Francois-Xavier Coudert <fxcoudert@gmail.com>
Date:   2021-12-16 12:40:03 +0100

    Fix timezone handling near year boundaries
    
    PR libfortran/98507
    
    libgfortran/ChangeLog:
    
            * intrinsics/time_1.h: Prefer clock_gettime() over
              gettimeofday().
            * intrinsics/date_and_time.c: Fix timezone wrapping.
    
    gcc/testsuite/ChangeLog:
    
            * gfortran.dg/date_and_time_1.f90: New file.

diff --git a/gcc/testsuite/gfortran.dg/date_and_time_1.f90 b/gcc/testsuite/gfortran.dg/date_and_time_1.f90
new file mode 100644
index 00000000000..0cd0c390d8c
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/date_and_time_1.f90
@@ -0,0 +1,35 @@
+! PR libfortran/98507
+! { dg-do run }
+
+program demo_time_and_date
+  implicit none
+  character(8)  :: date
+  character(10) :: time
+  character(5)  :: zone
+  integer :: val(8)
+  integer :: h, m
+
+  call date_and_time(values=val)
+
+  if (val(1) < 2000 .or. val(1) > 2100) call abort
+  if (val(2) < 1 .or. val(2) > 12) call abort
+  if (val(3) < 1 .or. val(3) > 31) call abort
+
+  ! Maximum offset is 14 hours (UTC+14)
+  if (val(4) < -14*60 .or. val(4) > 14*60) call abort
+
+  if (val(5) < 0 .or. val(5) > 23) call abort
+  if (val(6) < 0 .or. val(6) > 59) call abort
+  if (val(7) < 0 .or. val(7) > 60) call abort
+  if (val(8) < 0 .or. val(8) > 999) call abort
+
+  call date_and_time(zone=zone)
+  if (len(zone) /= 0) then
+    ! If ZONE is present, it should present the same information as
+    ! given in VALUES(4)
+    if (len(zone) /= 5) call abort
+    read(zone(1:3),*) h
+    read(zone(4:5),*) m
+    if (val(4) /= 60*h+m) call abort
+  endif
+end
diff --git a/libgfortran/intrinsics/date_and_time.c b/libgfortran/intrinsics/date_and_time.c
index 8213127ec95..de40bbc964e 100644
--- a/libgfortran/intrinsics/date_and_time.c
+++ b/libgfortran/intrinsics/date_and_time.c
@@ -113,9 +113,6 @@ gmtime_r (const time_t * timep, struct tm * result)
    VALUES for INTEGER(kind=4) and INTEGER(kind=8).
 
    Based on libU77's date_time_.c.
-
-   TODO :
-   - Check year boundaries.
 */
 #define DATE_LEN 8
 #define TIME_LEN 10   
@@ -131,7 +128,7 @@ date_and_time (char *__date, char *__time, char *__zone,
 	       gfc_array_i4 *__values, GFC_INTEGER_4 __date_len,
 	       GFC_INTEGER_4 __time_len, GFC_INTEGER_4 __zone_len)
 {
-  int i;
+  int i, delta_day;
   char date[DATE_LEN + 1];
   char timec[TIME_LEN + 1];
   char zone[ZONE_LEN + 1];
@@ -154,9 +151,22 @@ date_and_time (char *__date, char *__time, char *__zone,
       values[0] = 1900 + local_time.tm_year;
       values[1] = 1 + local_time.tm_mon;
       values[2] = local_time.tm_mday;
-      values[3] = (local_time.tm_min - UTC_time.tm_min +
-	           60 * (local_time.tm_hour - UTC_time.tm_hour +
-		     24 * (local_time.tm_yday - UTC_time.tm_yday)));
+
+      /* Day difference with UTC should always be -1, 0 or +1.
+	 Near year boundaries, we may obtain a large positive (+364,
+	 or +365 on leap years) or negative (-364, or -365 on leap years)
+	 number, which we have to handle.
+	 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98507
+       */
+      delta_day = local_time.tm_yday - UTC_time.tm_yday;
+      if (delta_day < -1)
+	delta_day = 1;
+      else if (delta_day > 1)
+	delta_day = -1;
+
+      values[3] = local_time.tm_min - UTC_time.tm_min
+		  + 60 * (local_time.tm_hour - UTC_time.tm_hour + 24 * delta_day);
+
       values[4] = local_time.tm_hour;
       values[5] = local_time.tm_min;
       values[6] = local_time.tm_sec;
diff --git a/libgfortran/intrinsics/time_1.h b/libgfortran/intrinsics/time_1.h
index 2d238fd075b..b2adca0c5f3 100644
--- a/libgfortran/intrinsics/time_1.h
+++ b/libgfortran/intrinsics/time_1.h
@@ -213,19 +213,19 @@ gf_cputime (long *user_sec, long *user_usec, long *system_sec, long *system_usec
 static inline int
 gf_gettime (time_t * secs, long * usecs)
 {
-#ifdef HAVE_GETTIMEOFDAY
+#ifdef HAVE_CLOCK_GETTIME
+  struct timespec ts;
+  int err = clock_gettime (CLOCK_REALTIME, &ts);
+  *secs = ts.tv_sec;
+  *usecs = ts.tv_nsec / 1000;
+  return err;
+#elif defined(HAVE_GETTIMEOFDAY)
   struct timeval tv;
   int err;
   err = gettimeofday (&tv, NULL);
   *secs = tv.tv_sec;
   *usecs = tv.tv_usec;
   return err;
-#elif defined(HAVE_CLOCK_GETTIME)
-  struct timespec ts;
-  int err = clock_gettime (CLOCK_REALTIME, &ts);
-  *secs = ts.tv_sec;
-  *usecs = ts.tv_nsec / 1000;
-  return err;
 #else
   time_t t = time (NULL);
   *secs = t;

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
  2021-12-16 14:49 [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH FX
@ 2021-12-16 16:26 ` Harald Anlauf
  2021-12-16 16:26   ` Harald Anlauf
  2021-12-16 16:34   ` FX
  0 siblings, 2 replies; 7+ messages in thread
From: Harald Anlauf @ 2021-12-16 16:26 UTC (permalink / raw)
  To: FX, fortran; +Cc: gcc-patches

Hi FX,

Am 16.12.21 um 15:49 schrieb FX via Fortran:
> Hi,
>
> Bug reported by Tobias at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255
> Trivial fix, adding a testcase.

it seems you attached the wrong patch (the one for pr985079).

> Bootstrapped and regtested on x86_64-pc-linux-gnu.
> OK to commit?
>
> FX
>
>

Harald

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
  2021-12-16 16:26 ` Harald Anlauf
@ 2021-12-16 16:26   ` Harald Anlauf
  2021-12-16 16:34   ` FX
  1 sibling, 0 replies; 7+ messages in thread
From: Harald Anlauf @ 2021-12-16 16:26 UTC (permalink / raw)
  To: fortran; +Cc: gcc-patches

Hi FX,

Am 16.12.21 um 15:49 schrieb FX via Fortran:
> Hi,
> 
> Bug reported by Tobias at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255
> Trivial fix, adding a testcase.

it seems you attached the wrong patch (the one for pr985079).

> Bootstrapped and regtested on x86_64-pc-linux-gnu.
> OK to commit?
> 
> FX
> 
> 

Harald


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
  2021-12-16 16:26 ` Harald Anlauf
  2021-12-16 16:26   ` Harald Anlauf
@ 2021-12-16 16:34   ` FX
  2021-12-16 16:37     ` Harald Anlauf
  1 sibling, 1 reply; 7+ messages in thread
From: FX @ 2021-12-16 16:34 UTC (permalink / raw)
  To: Harald Anlauf; +Cc: fortran, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 301 bytes --]

With correct patch attached, sorry.

--------

Hi,

Bug reported by Tobias at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255 <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255>
Trivial fix, adding a testcase.

Bootstrapped and regtested on x86_64-pc-linux-gnu.
OK to commit?

FX


[-- Attachment #2: pr101255.patch --]
[-- Type: application/octet-stream, Size: 1415 bytes --]

commit 927ee72bf614d67ec077417039c202a22383c254
Author: Francois-Xavier Coudert <fxcoudert@gmail.com>
Date:   2021-12-16 15:33:17 +0100

    Fix FLUSH IOSTAT value
    
    PR libfortran/101255
    
    libgfortran/ChangeLog:
    
            * io/file_pos.c: Fix error code.
    
    gcc/testsuite/ChangeLog:
    
            * gfortran.dg/iostat_5.f90: New file.

diff --git a/gcc/testsuite/gfortran.dg/iostat_5.f90 b/gcc/testsuite/gfortran.dg/iostat_5.f90
new file mode 100644
index 00000000000..aa9d5f104e6
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/iostat_5.f90
@@ -0,0 +1,16 @@
+! PR libfortran/101255
+! { dg-do run }
+
+program test
+  use ISO_FORTRAN_ENV, only: IOSTAT_EOR, IOSTAT_END
+  implicit none
+  character(len=50) :: err
+  integer :: i
+
+  err = ""
+  flush(99, iostat=i, iomsg=err)
+
+  if (err == "") call abort
+  if (i >= 0) call abort
+  if (i == IOSTAT_EOR .or. i == IOSTAT_END) call abort
+end
diff --git a/libgfortran/io/file_pos.c b/libgfortran/io/file_pos.c
index 7e71ca577e0..4ed1698f17a 100644
--- a/libgfortran/io/file_pos.c
+++ b/libgfortran/io/file_pos.c
@@ -527,7 +527,7 @@ st_flush (st_parameter_filepos *fpp)
     }
   else
     /* FLUSH on unconnected unit is illegal: F95 std., 9.3.5. */ 
-    generate_error (&fpp->common, LIBERROR_BAD_OPTION,
+    generate_error (&fpp->common, -LIBERROR_BAD_UNIT,
 			"Specified UNIT in FLUSH is not connected");
 
   if (needs_unlock)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
  2021-12-16 16:34   ` FX
@ 2021-12-16 16:37     ` Harald Anlauf
  2021-12-16 16:37       ` Harald Anlauf
  2021-12-16 16:48       ` FX
  0 siblings, 2 replies; 7+ messages in thread
From: Harald Anlauf @ 2021-12-16 16:37 UTC (permalink / raw)
  To: FX; +Cc: gcc-patches, fortran

Hi FX,

we now use "STOP n" instead of "call abort" in testcases.

OK with this change.

Am 16.12.21 um 17:34 schrieb FX via Fortran:
> With correct patch attached, sorry.
>
> --------
>
> Hi,
>
> Bug reported by Tobias at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255 <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255>
> Trivial fix, adding a testcase.
>
> Bootstrapped and regtested on x86_64-pc-linux-gnu.
> OK to commit?
>
> FX
>

Harald

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
  2021-12-16 16:37     ` Harald Anlauf
@ 2021-12-16 16:37       ` Harald Anlauf
  2021-12-16 16:48       ` FX
  1 sibling, 0 replies; 7+ messages in thread
From: Harald Anlauf @ 2021-12-16 16:37 UTC (permalink / raw)
  To: fortran; +Cc: gcc-patches

Hi FX,

we now use "STOP n" instead of "call abort" in testcases.

OK with this change.

Am 16.12.21 um 17:34 schrieb FX via Fortran:
> With correct patch attached, sorry.
> 
> --------
> 
> Hi,
> 
> Bug reported by Tobias at https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255 <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101255>
> Trivial fix, adding a testcase.
> 
> Bootstrapped and regtested on x86_64-pc-linux-gnu.
> OK to commit?
> 
> FX
> 

Harald


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH
  2021-12-16 16:37     ` Harald Anlauf
  2021-12-16 16:37       ` Harald Anlauf
@ 2021-12-16 16:48       ` FX
  1 sibling, 0 replies; 7+ messages in thread
From: FX @ 2021-12-16 16:48 UTC (permalink / raw)
  To: Harald Anlauf; +Cc: gcc-patches, fortran

Patch committed, after changing “call abort” to “stop”.
Thanks for the review.

FX

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-12-16 16:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-16 14:49 [patch] Fix libfortran/101255, wrong IOSTAT value for FLUSH FX
2021-12-16 16:26 ` Harald Anlauf
2021-12-16 16:26   ` Harald Anlauf
2021-12-16 16:34   ` FX
2021-12-16 16:37     ` Harald Anlauf
2021-12-16 16:37       ` Harald Anlauf
2021-12-16 16:48       ` FX

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).