[flang-commits] [flang] b096b8b - [flang][openacc] Warn only when the same variable is in the same declare (#70698)
via flang-commits
flang-commits at lists.llvm.org
Tue Oct 31 08:51:58 PDT 2023
Author: Valentin Clement (バレンタイン クレメン)
Date: 2023-10-31T08:51:54-07:00
New Revision: b096b8b1ff30abc9983da12d1b8c099530663627
URL: https://github.com/llvm/llvm-project/commit/b096b8b1ff30abc9983da12d1b8c099530663627
DIFF: https://github.com/llvm/llvm-project/commit/b096b8b1ff30abc9983da12d1b8c099530663627.diff
LOG: [flang][openacc] Warn only when the same variable is in the same declare (#70698)
A var may appear at most once in all the clauses of declare directives
for a function, subroutine, program, or module.
We raise an error when a var appears in two different clauses. If it is
in the same clauses, we just issue a warning.
Added:
Modified:
flang/lib/Semantics/check-acc-structure.cpp
flang/lib/Semantics/check-acc-structure.h
flang/test/Semantics/OpenACC/acc-declare-validity.f90
Removed:
################################################################################
diff --git a/flang/lib/Semantics/check-acc-structure.cpp b/flang/lib/Semantics/check-acc-structure.cpp
index 763418ede24d5a7..64b07da2324d970 100644
--- a/flang/lib/Semantics/check-acc-structure.cpp
+++ b/flang/lib/Semantics/check-acc-structure.cpp
@@ -401,14 +401,27 @@ void AccStructureChecker::CheckMultipleOccurrenceInDeclare(
[&](const Fortran::parser::Designator &designator) {
if (const auto *name = getDesignatorNameIfDataRef(designator)) {
if (declareSymbols.contains(&name->symbol->GetUltimate())) {
- context_.Say(GetContext().clauseSource,
- "'%s' in the %s clause is already present in another "
- "clause in this module"_err_en_US,
- name->symbol->name(),
- parser::ToUpperCaseLetters(
- llvm::acc::getOpenACCClauseName(clause).str()));
+ if (declareSymbols[&name->symbol->GetUltimate()] == clause) {
+ context_.Say(GetContext().clauseSource,
+ "'%s' in the %s clause is already present in the same "
+ "clause in this module"_warn_en_US,
+ name->symbol->name(),
+ parser::ToUpperCaseLetters(
+ llvm::acc::getOpenACCClauseName(clause).str()));
+ } else {
+ context_.Say(GetContext().clauseSource,
+ "'%s' in the %s clause is already present in another "
+ "%s clause in this module"_err_en_US,
+ name->symbol->name(),
+ parser::ToUpperCaseLetters(
+ llvm::acc::getOpenACCClauseName(clause).str()),
+ parser::ToUpperCaseLetters(
+ llvm::acc::getOpenACCClauseName(
+ declareSymbols[&name->symbol->GetUltimate()])
+ .str()));
+ }
}
- declareSymbols.insert(&name->symbol->GetUltimate());
+ declareSymbols.insert({&name->symbol->GetUltimate(), clause});
}
},
[&](const Fortran::parser::Name &name) {
diff --git a/flang/lib/Semantics/check-acc-structure.h b/flang/lib/Semantics/check-acc-structure.h
index 2a09b7a39395d16..6a9aa01a9bb1333 100644
--- a/flang/lib/Semantics/check-acc-structure.h
+++ b/flang/lib/Semantics/check-acc-structure.h
@@ -18,7 +18,7 @@
#include "flang/Common/enum-set.h"
#include "flang/Parser/parse-tree.h"
#include "flang/Semantics/semantics.h"
-#include "llvm/ADT/DenseSet.h"
+#include "llvm/ADT/DenseMap.h"
#include "llvm/Frontend/OpenACC/ACC.h.inc"
using AccDirectiveSet = Fortran::common::EnumSet<llvm::acc::Directive,
@@ -91,7 +91,7 @@ class AccStructureChecker
llvm::StringRef getClauseName(llvm::acc::Clause clause) override;
llvm::StringRef getDirectiveName(llvm::acc::Directive directive) override;
- llvm::SmallDenseSet<Symbol *> declareSymbols;
+ llvm::SmallDenseMap<Symbol *, llvm::acc::Clause> declareSymbols;
unsigned loopNestLevel = 0;
};
diff --git a/flang/test/Semantics/OpenACC/acc-declare-validity.f90 b/flang/test/Semantics/OpenACC/acc-declare-validity.f90
index c0333d78dd9f78b..2e7e651815d4a3a 100644
--- a/flang/test/Semantics/OpenACC/acc-declare-validity.f90
+++ b/flang/test/Semantics/OpenACC/acc-declare-validity.f90
@@ -14,7 +14,7 @@ module openacc_declare_validity
!$acc declare create(aa, bb)
- !ERROR: 'aa' in the CREATE clause is already present in another clause in this module
+ !WARNING: 'aa' in the CREATE clause is already present in the same clause in this module
!$acc declare create(aa)
!$acc declare link(ab)
@@ -36,13 +36,16 @@ module openacc_declare_validity
!ERROR: The ZERO modifier is not allowed for the CREATE clause on the DECLARE directive
!$acc declare create(zero: dd)
+ !ERROR: 'bb' in the COPYIN clause is already present in another CREATE clause in this module
+ !$acc declare copyin(bb)
+
contains
subroutine sub1(cc, dd)
real(8) :: cc(:)
real(8) :: dd(:)
!$acc declare present(cc, dd)
- !ERROR: 'cc' in the CREATE clause is already present in another clause in this module
+ !ERROR: 'cc' in the CREATE clause is already present in another PRESENT clause in this module
!$acc declare create(cc)
end subroutine sub1
More information about the flang-commits
mailing list