-
Notifications
You must be signed in to change notification settings - Fork 14.4k
[flang] Prefer non-elemental to elemental defined operator resolution #124941
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@llvm/pr-subscribers-flang-semantics Author: Peter Klausler (klausler) ChangesA non-elemental specific procedure must take precedence over an elemental specific procedure in defined operator generic resolution. Fixes #124777. Full diff: https://github.com/llvm/llvm-project/pull/124941.diff 3 Files Affected:
diff --git a/flang/include/flang/Semantics/expression.h b/flang/include/flang/Semantics/expression.h
index bb1674a9f88778..b95ceebc5e8e47 100644
--- a/flang/include/flang/Semantics/expression.h
+++ b/flang/include/flang/Semantics/expression.h
@@ -348,7 +348,8 @@ class ExpressionAnalyzer {
bool CheckDataRef(const DataRef &); // ditto
std::optional<Expr<SubscriptInteger>> GetSubstringBound(
const std::optional<parser::ScalarIntExpr> &);
- MaybeExpr AnalyzeDefinedOp(const parser::Name &, ActualArguments &&);
+ MaybeExpr AnalyzeDefinedOp(
+ const parser::Name &, ActualArguments &&, const Symbol *&);
MaybeExpr FixMisparsedSubstring(const parser::Designator &);
struct CalleeAndArguments {
diff --git a/flang/lib/Semantics/expression.cpp b/flang/lib/Semantics/expression.cpp
index 3ec6f385ceb86e..73753cfa6fe9bc 100644
--- a/flang/lib/Semantics/expression.cpp
+++ b/flang/lib/Semantics/expression.cpp
@@ -2834,13 +2834,12 @@ std::pair<const Symbol *, bool> ExpressionAnalyzer::ResolveGeneric(
// Check for generic or explicit INTRINSIC of the same name in outer scopes.
// See 15.5.5.2 for details.
if (!symbol.owner().IsGlobal() && !symbol.owner().IsDerivedType()) {
- for (const std::string &n : GetAllNames(context_, symbol.name())) {
- if (const Symbol *outer{symbol.owner().parent().FindSymbol(n)}) {
- auto pair{ResolveGeneric(*outer, actuals, adjustActuals, isSubroutine,
- mightBeStructureConstructor)};
- if (pair.first) {
- return pair;
- }
+ if (const Symbol *
+ outer{symbol.owner().parent().FindSymbol(symbol.name())}) {
+ auto pair{ResolveGeneric(*outer, actuals, adjustActuals, isSubroutine,
+ mightBeStructureConstructor)};
+ if (pair.first) {
+ return pair;
}
}
}
@@ -3635,13 +3634,13 @@ MaybeExpr ExpressionAnalyzer::Analyze(const parser::Expr::Concat &x) {
// The Name represents a user-defined intrinsic operator.
// If the actuals match one of the specific procedures, return a function ref.
// Otherwise report the error in messages.
-MaybeExpr ExpressionAnalyzer::AnalyzeDefinedOp(
- const parser::Name &name, ActualArguments &&actuals) {
+MaybeExpr ExpressionAnalyzer::AnalyzeDefinedOp(const parser::Name &name,
+ ActualArguments &&actuals, const Symbol *&symbol) {
if (auto callee{GetCalleeAndArguments(name, std::move(actuals))}) {
- CHECK(std::holds_alternative<ProcedureDesignator>(callee->u));
- return MakeFunctionRef(name.source,
- std::move(std::get<ProcedureDesignator>(callee->u)),
- std::move(callee->arguments));
+ auto &proc{std::get<evaluate::ProcedureDesignator>(callee->u)};
+ symbol = proc.GetSymbol();
+ return MakeFunctionRef(
+ name.source, std::move(proc), std::move(callee->arguments));
} else {
return std::nullopt;
}
@@ -4453,38 +4452,45 @@ MaybeExpr ArgumentAnalyzer::TryDefinedOp(
parser::Messages buffer;
auto restorer{context_.GetContextualMessages().SetMessages(buffer)};
const auto &scope{context_.context().FindScope(source_)};
- if (Symbol *symbol{scope.FindSymbol(oprName)}) {
+
+ auto FoundOne{[&](MaybeExpr &&thisResult, const Symbol &generic,
+ const Symbol *resolution) {
anyPossibilities = true;
- parser::Name name{symbol->name(), symbol};
- if (!fatalErrors_) {
- result = context_.AnalyzeDefinedOp(name, GetActuals());
- }
- if (result) {
- inaccessible = CheckAccessibleSymbol(scope, *symbol);
- if (inaccessible) {
- result.reset();
+ if (thisResult) {
+ if (auto thisInaccessible{CheckAccessibleSymbol(scope, generic)}) {
+ inaccessible = thisInaccessible;
} else {
- hit.push_back(symbol);
- hitBuffer = std::move(buffer);
+ bool isElemental{IsElementalProcedure(DEREF(resolution))};
+ bool hitsAreNonElemental{
+ !hit.empty() && !IsElementalProcedure(DEREF(hit[0]))};
+ if (isElemental && hitsAreNonElemental) {
+ // ignore elemental resolutions in favor of a non-elemental one
+ } else {
+ if (!isElemental && !hitsAreNonElemental) {
+ hit.clear();
+ }
+ result = std::move(thisResult);
+ hit.push_back(resolution);
+ hitBuffer = std::move(buffer);
+ }
}
}
+ }};
+
+ if (Symbol * generic{scope.FindSymbol(oprName)}; generic && !fatalErrors_) {
+ parser::Name name{generic->name(), generic};
+ const Symbol *resultSymbol{nullptr};
+ MaybeExpr possibleResult{context_.AnalyzeDefinedOp(
+ name, ActualArguments{actuals_}, resultSymbol)};
+ FoundOne(std::move(possibleResult), *generic, resultSymbol);
}
for (std::size_t passIndex{0}; passIndex < actuals_.size(); ++passIndex) {
buffer.clear();
const Symbol *generic{nullptr};
- if (const Symbol *binding{
- FindBoundOp(oprName, passIndex, generic, false)}) {
- anyPossibilities = true;
- if (MaybeExpr thisResult{TryBoundOp(*binding, passIndex)}) {
- if (auto thisInaccessible{
- CheckAccessibleSymbol(scope, DEREF(generic))}) {
- inaccessible = thisInaccessible;
- } else {
- result = std::move(thisResult);
- hit.push_back(binding);
- hitBuffer = std::move(buffer);
- }
- }
+ if (const Symbol *
+ binding{FindBoundOp(
+ oprName, passIndex, generic, /*isSubroutine=*/false)}) {
+ FoundOne(TryBoundOp(*binding, passIndex), DEREF(generic), binding);
}
}
}
@@ -4655,7 +4661,8 @@ std::optional<ProcedureRef> ArgumentAnalyzer::GetDefinedAssignmentProc() {
}
for (std::size_t i{0}; !proc && i < actuals_.size(); ++i) {
const Symbol *generic{nullptr};
- if (const Symbol *binding{FindBoundOp(oprName, i, generic, true)}) {
+ if (const Symbol *
+ binding{FindBoundOp(oprName, i, generic, /*isSubroutine=*/true)}) {
if (CheckAccessibleSymbol(scope, DEREF(generic))) {
// ignore inaccessible type-bound ASSIGNMENT(=) generic
} else if (const Symbol *
diff --git a/flang/test/Semantics/bug12477.f90 b/flang/test/Semantics/bug12477.f90
new file mode 100644
index 00000000000000..52d079e3b26bc3
--- /dev/null
+++ b/flang/test/Semantics/bug12477.f90
@@ -0,0 +1,26 @@
+!RUN: %flang_fc1 -fsyntax-only %s 2>&1 | FileCheck %s --allow-empty
+!CHECK-NOT: error:
+module m
+ type t
+ contains
+ procedure nonelemental
+ generic :: operator(+) => nonelemental
+ end type
+ interface operator(+)
+ procedure elemental
+ end interface
+ contains
+ type(t) elemental function elemental (a, b)
+ class(t), intent(in) :: a, b
+ elemental = t()
+ end
+ type(t) function nonelemental (a, b)
+ class(t), intent(in) :: a, b(:)
+ nonelemental = t()
+ end
+end
+program main
+ use m
+ type(t) x, y(1)
+ x = x + y ! ok
+end
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Thanks for the quick fix!
A non-elemental specific procedure must take precedence over an elemental specific procedure in defined operator generic resolution. Fixes llvm#124777.
A non-elemental specific procedure must take precedence over an elemental specific procedure in defined operator generic resolution.
Fixes #124777.