[flang] Warn on mismatched DATA substring sizes rather than crashing
authorPeter Klausler <pklausler@nvidia.com>
Tue, 7 Feb 2023 00:40:21 +0000 (16:40 -0800)
committerPeter Klausler <pklausler@nvidia.com>
Mon, 13 Feb 2023 20:31:05 +0000 (12:31 -0800)
When a DATA statement initializes a substring with a character constant
of the wrong length, do the right thing with blank padding or truncation,
and emit a warning.  Current code is crashing due to an unhandled error
reported from the low-level data image initialization framework.

Differential Revision: https://reviews.llvm.org/D143819

flang/include/flang/Evaluate/initial-image.h
flang/lib/Semantics/data-to-inits.cpp
flang/test/Semantics/data17.f90 [new file with mode: 0644]

index 8e931bb3845bd6d06776355affb49e8413275c00..d5b30f53a7660e63525f55bd680450872f87015b 100644 (file)
@@ -72,20 +72,22 @@ public:
       } else if (bytes == 0) {
         return Ok;
       } else {
+        Result result{Ok};
         for (auto at{x.lbounds()}; elements-- > 0; x.IncrementSubscripts(at)) {
           auto scalar{x.At(at)}; // this is a std string; size() in chars
-          // Subtle: an initializer for a substring may have been
-          // expanded to the length of the entire string.
           auto scalarBytes{scalar.size() * KIND};
-          if (scalarBytes < elementBytes ||
-              (scalarBytes > elementBytes && elements != 0)) {
-            return SizeMismatch;
+          if (scalarBytes != elementBytes) {
+            result = SizeMismatch;
+          }
+          // Blank padding when short
+          for (; scalarBytes < elementBytes; scalarBytes += KIND) {
+            scalar += ' ';
           }
           // TODO endianness
           std::memcpy(&data_.at(offset), scalar.data(), elementBytes);
           offset += elementBytes;
         }
-        return Ok;
+        return result;
       }
     }
   }
index aaa118b32ffe25927e6d08ec18baf9446129c9bf..d91a2503a699c532f88b371f1407d123cf47a168 100644 (file)
@@ -448,6 +448,11 @@ bool DataInitializationCompiler<DSV>::InitElement(
       case evaluate::InitialImage::OutOfRange:
         OutOfRangeError();
         break;
+      case evaluate::InitialImage::SizeMismatch:
+        exprAnalyzer_.Say(
+            "DATA statement value '%s' for '%s' has the wrong length"_warn_en_US,
+            folded.AsFortran(), DescribeElement());
+        break;
       default:
         CHECK(exprAnalyzer_.context().AnyFatalError());
         break;
diff --git a/flang/test/Semantics/data17.f90 b/flang/test/Semantics/data17.f90
new file mode 100644 (file)
index 0000000..8ea9d78
--- /dev/null
@@ -0,0 +1,11 @@
+! RUN: %python %S/test_errors.py %s %flang_fc1
+character(4) a, b, c, d, e
+!WARNING: DATA statement value '"abcde"' for 'a' has the wrong length
+data a(1:4)/'abcde'/
+!WARNING: DATA statement value '"abc"' for 'b' has the wrong length
+data b(1:4)/'abc'/
+data c/'abcde'/ ! not a substring, conforms
+data d/'abc'/ ! not a substring, conforms
+!ERROR: DATA statement designator 'e(1_8:5_8)' is out of range
+data e(1:5)/'xyz'/
+end