e7fd42
From 9b45f3063dfd2b893e7963a4828c1b0afecdc68a Mon Sep 17 00:00:00 2001
e7fd42
From: Mark Eggleston <markeggleston@gcc.gnu.org>
e7fd42
Date: Fri, 22 Jan 2021 12:41:46 +0000
e7fd42
Subject: [PATCH 02/10] Convert LOGICAL to INTEGER for arithmetic ops, and vice
e7fd42
 versa
e7fd42
e7fd42
We allow converting LOGICAL types to INTEGER when doing arithmetic
e7fd42
operations, and converting INTEGER types to LOGICAL for use in
e7fd42
boolean operations.
e7fd42
e7fd42
This feature is enabled with the -flogical-as-integer flag.
e7fd42
e7fd42
Note: using this feature will disable bitwise logical operations enabled by
e7fd42
-fdec.
e7fd42
---
e7fd42
 gcc/fortran/lang.opt                          |  4 ++
e7fd42
 gcc/fortran/resolve.c                         | 55 ++++++++++++++++++-
e7fd42
 .../logical_to_integer_and_vice_versa_1.f     | 31 +++++++++++
e7fd42
 .../logical_to_integer_and_vice_versa_2.f     | 31 +++++++++++
e7fd42
 .../logical_to_integer_and_vice_versa_3.f     | 33 +++++++++++
e7fd42
 .../logical_to_integer_and_vice_versa_4.f     | 33 +++++++++++
e7fd42
 6 files changed, 186 insertions(+), 1 deletion(-)
e7fd42
 create mode 100644 gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_1.f
e7fd42
 create mode 100644 gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_2.f
e7fd42
 create mode 100644 gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_3.f
e7fd42
 create mode 100644 gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_4.f
e7fd42
e7fd42
diff --git a/gcc/fortran/lang.opt b/gcc/fortran/lang.opt
e7fd42
index 52bd522051e..c4da248f07c 100644
e7fd42
--- a/gcc/fortran/lang.opt
e7fd42
+++ b/gcc/fortran/lang.opt
e7fd42
@@ -497,6 +497,10 @@ fdec-static
e7fd42
 Fortran Var(flag_dec_static)
e7fd42
 Enable DEC-style STATIC and AUTOMATIC attributes.
e7fd42
 
e7fd42
+flogical-as-integer
e7fd42
+Fortran Var(flag_logical_as_integer)
e7fd42
+Convert from integer to logical or logical to integer for arithmetic operations.
e7fd42
+
e7fd42
 fdefault-double-8
e7fd42
 Fortran Var(flag_default_double)
e7fd42
 Set the default double precision kind to an 8 byte wide type.
e7fd42
diff --git a/gcc/fortran/resolve.c b/gcc/fortran/resolve.c
e7fd42
index c075d0fa0c4..4b90cb59902 100644
e7fd42
--- a/gcc/fortran/resolve.c
e7fd42
+++ b/gcc/fortran/resolve.c
e7fd42
@@ -3915,7 +3915,6 @@ lookup_uop_fuzzy (const char *op, gfc_symtree *uop)
e7fd42
   return gfc_closest_fuzzy_match (op, candidates);
e7fd42
 }
e7fd42
 
e7fd42
-
e7fd42
 /* Callback finding an impure function as an operand to an .and. or
e7fd42
    .or.  expression.  Remember the last function warned about to
e7fd42
    avoid double warnings when recursing.  */
e7fd42
@@ -3975,6 +3974,22 @@ convert_hollerith_to_character (gfc_expr *e)
e7fd42
     }
e7fd42
 }
e7fd42
 
e7fd42
+/* If E is a logical, convert it to an integer and issue a warning
e7fd42
+   for the conversion.  */
e7fd42
+
e7fd42
+static void
e7fd42
+convert_integer_to_logical (gfc_expr *e)
e7fd42
+{
e7fd42
+  if (e->ts.type == BT_INTEGER)
e7fd42
+    {
e7fd42
+      /* Convert to LOGICAL */
e7fd42
+      gfc_typespec t;
e7fd42
+      t.type = BT_LOGICAL;
e7fd42
+      t.kind = 1;
e7fd42
+      gfc_convert_type_warn (e, &t, 2, 1);
e7fd42
+    }
e7fd42
+}
e7fd42
+
e7fd42
 /* Convert to numeric and issue a warning for the conversion.  */
e7fd42
 
e7fd42
 static void
e7fd42
@@ -3987,6 +4002,22 @@ convert_to_numeric (gfc_expr *a, gfc_expr *b)
e7fd42
   gfc_convert_type_warn (a, &t, 2, 1);
e7fd42
 }
e7fd42
 
e7fd42
+/* If E is a logical, convert it to an integer and issue a warning
e7fd42
+   for the conversion.  */
e7fd42
+
e7fd42
+static void
e7fd42
+convert_logical_to_integer (gfc_expr *e)
e7fd42
+{
e7fd42
+  if (e->ts.type == BT_LOGICAL)
e7fd42
+    {
e7fd42
+      /* Convert to INTEGER */
e7fd42
+      gfc_typespec t;
e7fd42
+      t.type = BT_INTEGER;
e7fd42
+      t.kind = 1;
e7fd42
+      gfc_convert_type_warn (e, &t, 2, 1);
e7fd42
+    }
e7fd42
+}
e7fd42
+
e7fd42
 /* Resolve an operator expression node.  This can involve replacing the
e7fd42
    operation with a user defined function call.  */
e7fd42
 
e7fd42
@@ -4072,6 +4103,12 @@ resolve_operator (gfc_expr *e)
e7fd42
     case INTRINSIC_TIMES:
e7fd42
     case INTRINSIC_DIVIDE:
e7fd42
     case INTRINSIC_POWER:
e7fd42
+      if (flag_logical_as_integer)
e7fd42
+	{
e7fd42
+	  convert_logical_to_integer (op1);
e7fd42
+	  convert_logical_to_integer (op2);
e7fd42
+	}
e7fd42
+
e7fd42
       if (gfc_numeric_ts (&op1->ts) && gfc_numeric_ts (&op2->ts))
e7fd42
 	{
e7fd42
 	  gfc_type_convert_binary (e, 1);
e7fd42
@@ -4108,6 +4145,13 @@ resolve_operator (gfc_expr *e)
e7fd42
     case INTRINSIC_OR:
e7fd42
     case INTRINSIC_EQV:
e7fd42
     case INTRINSIC_NEQV:
e7fd42
+
e7fd42
+      if (flag_logical_as_integer)
e7fd42
+	{
e7fd42
+	  convert_integer_to_logical (op1);
e7fd42
+	  convert_integer_to_logical (op2);
e7fd42
+	}
e7fd42
+
e7fd42
       if (op1->ts.type == BT_LOGICAL && op2->ts.type == BT_LOGICAL)
e7fd42
 	{
e7fd42
 	  e->ts.type = BT_LOGICAL;
e7fd42
@@ -4158,6 +4202,9 @@ resolve_operator (gfc_expr *e)
e7fd42
 	  goto simplify_op;
e7fd42
 	}
e7fd42
 
e7fd42
+      if (flag_logical_as_integer)
e7fd42
+	convert_integer_to_logical (op1);
e7fd42
+
e7fd42
       if (op1->ts.type == BT_LOGICAL)
e7fd42
 	{
e7fd42
 	  e->ts.type = BT_LOGICAL;
e7fd42
@@ -4198,6 +4245,12 @@ resolve_operator (gfc_expr *e)
e7fd42
 	  convert_hollerith_to_character (op2);
e7fd42
 	}
e7fd42
 
e7fd42
+      if (flag_logical_as_integer)
e7fd42
+	{
e7fd42
+	  convert_logical_to_integer (op1);
e7fd42
+	  convert_logical_to_integer (op2);
e7fd42
+	}
e7fd42
+
e7fd42
       if (op1->ts.type == BT_CHARACTER && op2->ts.type == BT_CHARACTER
e7fd42
 	  && op1->ts.kind == op2->ts.kind)
e7fd42
 	{
e7fd42
diff --git a/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_1.f b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_1.f
e7fd42
new file mode 100644
e7fd42
index 00000000000..938a91d9e9a
e7fd42
--- /dev/null
e7fd42
+++ b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_1.f
e7fd42
@@ -0,0 +1,31 @@
e7fd42
+! { dg-do run }
e7fd42
+! { dg-options "-std=legacy -flogical-as-integer" }
e7fd42
+!
e7fd42
+! Test conversion between logical and integer for logical operators
e7fd42
+!
e7fd42
+! Test case contributed by Jim MacArthur <jim.macarthur@codethink.co.uk>
e7fd42
+! Modified for -flogical-as-integer by Mark Eggleston
e7fd42
+! <mark.eggleston@codethink.com>
e7fd42
+!
e7fd42
+        PROGRAM logical_integer_conversion
e7fd42
+          LOGICAL lpos /.true./
e7fd42
+          INTEGER ineg/0/
e7fd42
+          INTEGER ires
e7fd42
+          LOGICAL lres
e7fd42
+
e7fd42
+          ! Test Logicals converted to Integers
e7fd42
+          if ((lpos.AND.ineg).EQ.1) STOP 3
e7fd42
+          if ((ineg.AND.lpos).NE.0) STOP 4
e7fd42
+          ires = (.true..AND.0)
e7fd42
+          if (ires.NE.0) STOP 5
e7fd42
+          ires = (1.AND..false.)
e7fd42
+          if (ires.EQ.1) STOP 6
e7fd42
+
e7fd42
+          ! Test Integers converted to Logicals
e7fd42
+          if (lpos.EQ.ineg) STOP 7
e7fd42
+          if (ineg.EQ.lpos) STOP 8
e7fd42
+          lres = (.true..EQ.0)
e7fd42
+          if (lres) STOP 9
e7fd42
+          lres = (1.EQ..false.)
e7fd42
+          if (lres) STOP 10
e7fd42
+        END
e7fd42
diff --git a/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_2.f b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_2.f
e7fd42
new file mode 100644
e7fd42
index 00000000000..9f146202ba5
e7fd42
--- /dev/null
e7fd42
+++ b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_2.f
e7fd42
@@ -0,0 +1,31 @@
e7fd42
+! { dg-do compile }
e7fd42
+! { dg-options "-std=legacy -flogical-as-integer -fno-logical-as-integer" }
e7fd42
+!
e7fd42
+! Based on logical_to_integer_and_vice_versa_1.f but with option disabled
e7fd42
+! to test for error messages.
e7fd42
+!
e7fd42
+! Test case contributed by by Mark Eggleston <mark.eggleston@codethink.com>
e7fd42
+!
e7fd42
+!
e7fd42
+        PROGRAM logical_integer_conversion
e7fd42
+          LOGICAL lpos /.true./
e7fd42
+          INTEGER ineg/0/
e7fd42
+          INTEGER ires
e7fd42
+          LOGICAL lres
e7fd42
+
e7fd42
+          ! Test Logicals converted to Integers
e7fd42
+          if ((lpos.AND.ineg).EQ.1) STOP 3 ! { dg-error "Operands of logical operator" }
e7fd42
+          if ((ineg.AND.lpos).NE.0) STOP 4 ! { dg-error "Operands of logical operator" }
e7fd42
+          ires = (.true..AND.0) ! { dg-error "Operands of logical operator" }
e7fd42
+          if (ires.NE.0) STOP 5
e7fd42
+          ires = (1.AND..false.) ! { dg-error "Operands of logical operator" }
e7fd42
+          if (ires.EQ.1) STOP 6
e7fd42
+
e7fd42
+          ! Test Integers converted to Logicals
e7fd42
+          if (lpos.EQ.ineg) STOP 7 ! { dg-error "Operands of comparison operator" }
e7fd42
+          if (ineg.EQ.lpos) STOP 8 ! { dg-error "Operands of comparison operator" }
e7fd42
+          lres = (.true..EQ.0) ! { dg-error "Operands of comparison operator" }
e7fd42
+          if (lres) STOP 9
e7fd42
+          lres = (1.EQ..false.) ! { dg-error "Operands of comparison operator" }
e7fd42
+          if (lres) STOP 10
e7fd42
+        END
e7fd42
diff --git a/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_3.f b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_3.f
e7fd42
new file mode 100644
e7fd42
index 00000000000..446873eb2dc
e7fd42
--- /dev/null
e7fd42
+++ b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_3.f
e7fd42
@@ -0,0 +1,33 @@
e7fd42
+! { dg-do compile }
e7fd42
+! { dg-options "-std=legacy -flogical-as-integer" }
e7fd42
+!
e7fd42
+! Test conversion between logical and integer for logical operators
e7fd42
+!
e7fd42
+        program test
e7fd42
+          logical f /.false./
e7fd42
+          logical t /.true./
e7fd42
+          real x
e7fd42
+
e7fd42
+          x = 7.7
e7fd42
+          x = x + t*3.0
e7fd42
+          if (abs(x - 10.7).gt.0.00001) stop 1
e7fd42
+          x = x + .false.*5.0
e7fd42
+          if (abs(x - 10.7).gt.0.00001) stop 2
e7fd42
+          x = x - .true.*5.0
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 3
e7fd42
+          x = x + t
e7fd42
+          if (abs(x - 6.7).gt.0.00001) stop 4
e7fd42
+          x = x + f
e7fd42
+          if (abs(x - 6.7).gt.0.00001) stop 5
e7fd42
+          x = x - t
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 6
e7fd42
+          x = x - f
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 7
e7fd42
+          x = x**.true.
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 8
e7fd42
+          x = x**.false.
e7fd42
+          if (abs(x - 1.0).gt.0.00001) stop 9
e7fd42
+          x = x/t
e7fd42
+          if (abs(x - 1.0).gt.0.00001) stop 10
e7fd42
+          if ((x/.false.).le.huge(x)) stop 11
e7fd42
+        end
e7fd42
diff --git a/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_4.f b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_4.f
e7fd42
new file mode 100644
e7fd42
index 00000000000..4301a4988d8
e7fd42
--- /dev/null
e7fd42
+++ b/gcc/testsuite/gfortran.dg/logical_to_integer_and_vice_versa_4.f
e7fd42
@@ -0,0 +1,33 @@
e7fd42
+! { dg-do compile }
e7fd42
+! { dg-options "-std=legacy -flogical-as-integer -fno-logical-as-integer" }
e7fd42
+!
e7fd42
+! Test conversion between logical and integer for logical operators
e7fd42
+!
e7fd42
+        program test
e7fd42
+          logical f /.false./
e7fd42
+          logical t /.true./
e7fd42
+          real x
e7fd42
+
e7fd42
+          x = 7.7
e7fd42
+          x = x + t*3.0 ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 10.7).gt.0.00001) stop 1
e7fd42
+          x = x + .false.*5.0 ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 10.7).gt.0.00001) stop 2
e7fd42
+          x = x - .true.*5.0 ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 3
e7fd42
+          x = x + t ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 6.7).gt.0.00001) stop 4
e7fd42
+          x = x + f ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 6.7).gt.0.00001) stop 5
e7fd42
+          x = x - t ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 6
e7fd42
+          x = x - f ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 7
e7fd42
+          x = x**.true. ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 5.7).gt.0.00001) stop 8
e7fd42
+          x = x**.false. ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 1.0).gt.0.00001) stop 9
e7fd42
+          x = x/t ! { dg-error "Operands of binary numeric" }
e7fd42
+          if (abs(x - 1.0).gt.0.00001) stop 10
e7fd42
+          if ((x/.false.).le.huge(x)) stop 11 ! { dg-error "Operands of binary numeric" }
e7fd42
+        end
e7fd42
-- 
e7fd42
2.27.0
e7fd42