[flang-commits] [flang] b8641bf - [flang] Don't compute pointer component procedure characteristics when not needed
Peter Klausler via flang-commits
flang-commits at lists.llvm.org
Mon Aug 8 15:59:23 PDT 2022
Author: Peter Klausler
Date: 2022-08-08T15:59:12-07:00
New Revision: b8641bfc4c2d488c7a09a556728f10340d5c8819
URL: https://github.com/llvm/llvm-project/commit/b8641bfc4c2d488c7a09a556728f10340d5c8819
DIFF: https://github.com/llvm/llvm-project/commit/b8641bfc4c2d488c7a09a556728f10340d5c8819.diff
LOG: [flang] Don't compute pointer component procedure characteristics when not needed
When a procedure pointer component has an interface that is a forward
reference to a procedure, syntax errors can be emitted if there is
a structure constructor that tries to initialize that component,
since its characteristics are not yet known; however, when the
initializer is a bare NULL(with no mold), those characteristics
don't matter. Make the characterization of the procedure pointer
component take place only when needed.
Differential Revision: https://reviews.llvm.org/D131100
Added:
Modified:
flang/lib/Semantics/pointer-assignment.cpp
Removed:
################################################################################
diff --git a/flang/lib/Semantics/pointer-assignment.cpp b/flang/lib/Semantics/pointer-assignment.cpp
index 71b7387495dcb..69e80e5a1240b 100644
--- a/flang/lib/Semantics/pointer-assignment.cpp
+++ b/flang/lib/Semantics/pointer-assignment.cpp
@@ -48,9 +48,6 @@ class PointerAssignmentChecker {
set_lhsType(TypeAndShape::Characterize(lhs, context));
set_isContiguous(lhs.attrs().test(Attr::CONTIGUOUS));
set_isVolatile(lhs.attrs().test(Attr::VOLATILE));
- if (IsProcedure(lhs)) {
- procedure_ = Procedure::Characterize(lhs, context);
- }
}
PointerAssignmentChecker &set_lhsType(std::optional<TypeAndShape> &&);
PointerAssignmentChecker &set_isContiguous(bool);
@@ -59,6 +56,7 @@ class PointerAssignmentChecker {
bool Check(const SomeExpr &);
private:
+ bool CharacterizeProcedure();
template <typename T> bool Check(const T &);
template <typename T> bool Check(const evaluate::Expr<T> &);
template <typename T> bool Check(const evaluate::FunctionRef<T> &);
@@ -79,6 +77,7 @@ class PointerAssignmentChecker {
const Symbol *lhs_{nullptr};
std::optional<TypeAndShape> lhsType_;
std::optional<Procedure> procedure_;
+ bool characterizedProcedure_{false};
bool isContiguous_{false};
bool isVolatile_{false};
bool isBoundsRemapping_{false};
@@ -108,6 +107,16 @@ PointerAssignmentChecker &PointerAssignmentChecker::set_isBoundsRemapping(
return *this;
}
+bool PointerAssignmentChecker::CharacterizeProcedure() {
+ if (!characterizedProcedure_) {
+ characterizedProcedure_ = true;
+ if (lhs_ && IsProcedure(*lhs_)) {
+ procedure_ = Procedure::Characterize(*lhs_, context_);
+ }
+ }
+ return procedure_.has_value();
+}
+
template <typename T> bool PointerAssignmentChecker::Check(const T &) {
// Catch-all case for really bad target expression
Say("Target associated with %s must be a designator or a call to a"
@@ -155,7 +164,7 @@ bool PointerAssignmentChecker::Check(const evaluate::FunctionRef<T> &f) {
if (!funcResult) {
msg = "%s is associated with the non-existent result of reference to"
" procedure"_err_en_US;
- } else if (procedure_) {
+ } else if (CharacterizeProcedure()) {
// Shouldn't be here in this function unless lhs is an object pointer.
msg = "Procedure %s is associated with the result of a reference to"
" function '%s' that does not return a procedure pointer"_err_en_US;
@@ -197,7 +206,7 @@ bool PointerAssignmentChecker::Check(const evaluate::Designator<T> &d) {
return false;
}
std::optional<std::variant<MessageFixedText, MessageFormattedText>> msg;
- if (procedure_) {
+ if (CharacterizeProcedure()) {
// Shouldn't be here in this function unless lhs is an object pointer.
msg = "In assignment to procedure %s, the target is not a procedure or"
" procedure pointer"_err_en_US;
@@ -260,6 +269,7 @@ bool PointerAssignmentChecker::Check(parser::CharBlock rhsName, bool isCall,
const Procedure *rhsProcedure,
const evaluate::SpecificIntrinsic *specific) {
std::string whyNot;
+ CharacterizeProcedure();
if (std::optional<MessageFixedText> msg{evaluate::CheckProcCompatibility(
isCall, procedure_, rhsProcedure, specific, whyNot)}) {
Say(std::move(*msg), description_, rhsName, whyNot);
More information about the flang-commits
mailing list