[flang-commits] [PATCH] D86887: [flang] Improve compile-time shape conformance checking
Peter Klausler via Phabricator via flang-commits
flang-commits at lists.llvm.org
Tue Sep 1 08:52:14 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG1a633e72f65d: [flang] Improve compile-time shape conformance checking (authored by klausler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D86887/new/
https://reviews.llvm.org/D86887
Files:
flang/lib/Semantics/expression.cpp
flang/test/Semantics/select-rank.f90
Index: flang/test/Semantics/select-rank.f90
===================================================================
--- flang/test/Semantics/select-rank.f90
+++ flang/test/Semantics/select-rank.f90
@@ -211,8 +211,8 @@
END SELECT
- !ERROR: Selector 'arr(1:3)+ arr(4:5)' is not an assumed-rank array variable
- SELECT RANK(arr(1:3)+ arr(4:5))
+ !ERROR: Selector 'arr(1:2)+ arr(4:5)' is not an assumed-rank array variable
+ SELECT RANK(arr(1:2)+ arr(4:5))
END SELECT
Index: flang/lib/Semantics/expression.cpp
===================================================================
--- flang/lib/Semantics/expression.cpp
+++ flang/lib/Semantics/expression.cpp
@@ -129,6 +129,8 @@
bool IsIntrinsicNumeric(NumericOperator) const;
bool IsIntrinsicConcat() const;
+ bool CheckConformance() const;
+
// Find and return a user-defined operator or report an error.
// The provided message is used if there is no such operator.
MaybeExpr TryDefinedOp(
@@ -2236,6 +2238,7 @@
if (analyzer.fatalErrors()) {
return std::nullopt;
} else if (analyzer.IsIntrinsicNumeric(opr)) {
+ analyzer.CheckConformance();
return NumericOperation<OPR>(context.GetContextualMessages(),
analyzer.MoveExpr(0), analyzer.MoveExpr(1),
context.GetDefaultKind(TypeCategory::Real));
@@ -2788,6 +2791,23 @@
*GetType(0), GetRank(0), *GetType(1), GetRank(1));
}
+bool ArgumentAnalyzer::CheckConformance() const {
+ if (actuals_.size() == 2) {
+ const auto *lhs{actuals_.at(0).value().UnwrapExpr()};
+ const auto *rhs{actuals_.at(1).value().UnwrapExpr()};
+ if (lhs && rhs) {
+ auto &foldingContext{context_.GetFoldingContext()};
+ auto lhShape{GetShape(foldingContext, *lhs)};
+ auto rhShape{GetShape(foldingContext, *rhs)};
+ if (lhShape && rhShape) {
+ return evaluate::CheckConformance(foldingContext.messages(), *lhShape,
+ *rhShape, "left operand", "right operand");
+ }
+ }
+ }
+ return true; // no proven problem
+}
+
MaybeExpr ArgumentAnalyzer::TryDefinedOp(
const char *opr, parser::MessageFixedText &&error, bool isUserOp) {
if (AnyUntypedOperand()) {
@@ -2847,6 +2867,7 @@
proc = &symbol;
localActuals.at(passIndex).value().set_isPassedObject();
}
+ CheckConformance();
return context_.MakeFunctionRef(
source_, ProcedureDesignator{*proc}, std::move(localActuals));
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86887.289189.patch
Type: text/x-patch
Size: 2414 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20200901/33e14307/attachment.bin>
More information about the flang-commits
mailing list