[flang-commits] [flang] 6f4d460 - [Flang][openmp][openacc] Extend CheckNoBranching to handle branching provided by LabelEnforce.
Sameeran joshi via flang-commits
flang-commits at lists.llvm.org
Tue Jan 12 10:35:11 PST 2021
Author: sameeran joshi
Date: 2021-01-13T00:04:45+05:30
New Revision: 6f4d460762006af17826693abc1e7139a76aa1f2
URL: https://github.com/llvm/llvm-project/commit/6f4d460762006af17826693abc1e7139a76aa1f2
DIFF: https://github.com/llvm/llvm-project/commit/6f4d460762006af17826693abc1e7139a76aa1f2.diff
LOG: [Flang][openmp][openacc] Extend CheckNoBranching to handle branching provided by LabelEnforce.
`CheckNoBranching` is currently handling only illegal branching out for constructs
with `Parser::Name` in them.
Extend the same for handling illegal branching out caused by `Parser::Label` based statements.
This patch could possibly solve one of the issues(typically branching out) mentioned in D92735.
Reviewed By: kiranchandramohan
Differential Revision: https://reviews.llvm.org/D93447
Added:
Modified:
flang/lib/Semantics/check-directive-structure.h
flang/lib/Semantics/check-omp-structure.cpp
flang/test/Semantics/omp-parallell01.f90
Removed:
################################################################################
diff --git a/flang/lib/Semantics/check-directive-structure.h b/flang/lib/Semantics/check-directive-structure.h
index 062f85b63b85..1075087feb4f 100644
--- a/flang/lib/Semantics/check-directive-structure.h
+++ b/flang/lib/Semantics/check-directive-structure.h
@@ -15,7 +15,6 @@
#include "flang/Common/enum-set.h"
#include "flang/Semantics/semantics.h"
#include "flang/Semantics/tools.h"
-
#include <unordered_map>
namespace Fortran::semantics {
@@ -43,6 +42,9 @@ template <typename D> class NoBranchingEnforce {
template <typename T> bool Pre(const parser::Statement<T> &statement) {
currentStatementSourcePosition_ = statement.source;
+ if (statement.label.has_value()) {
+ labels_.insert(*statement.label);
+ }
return true;
}
@@ -54,6 +56,8 @@ template <typename D> class NoBranchingEnforce {
}
void Post(const parser::StopStmt &) { EmitBranchOutError("STOP"); }
+ std::set<parser::Label> labels() { return labels_; }
+
private:
parser::MessageFormattedText GetEnclosingMsg() const {
return {"Enclosing %s construct"_en_US, upperCaseDirName_};
@@ -103,6 +107,7 @@ template <typename D> class NoBranchingEnforce {
parser::CharBlock sourcePosition_;
std::string upperCaseDirName_;
D currentDirective_;
+ std::set<parser::Label> labels_;
};
// Generic structure checker for directives/clauses language such as OpenMP
@@ -226,6 +231,9 @@ class DirectiveStructureChecker : public virtual BaseChecker {
SayNotMatching(beginDir.source, endDir.source);
}
}
+ // Check illegal branching out of `Parser::Block` for `Parser::Name` based
+ // nodes (examples `Parser::ExitStmt`) along with `Parser::Label`
+ // based nodes (example `Parser::GotoStmt`).
void CheckNoBranching(const parser::Block &block, D directive,
const parser::CharBlock &directiveSource);
@@ -271,6 +279,11 @@ void DirectiveStructureChecker<D, C, PC, ClauseEnumSize>::CheckNoBranching(
NoBranchingEnforce<D> noBranchingEnforce{
context_, directiveSource, directive, ContextDirectiveAsFortran()};
parser::Walk(block, noBranchingEnforce);
+
+ LabelEnforce directiveLabelEnforce{context_, noBranchingEnforce.labels(),
+ directiveSource,
+ parser::ToUpperCaseLetters(getDirectiveName(directive).str()).c_str()};
+ parser::Walk(block, directiveLabelEnforce);
}
// Check that only clauses included in the given set are present after the given
diff --git a/flang/lib/Semantics/check-omp-structure.cpp b/flang/lib/Semantics/check-omp-structure.cpp
index 4d1c96f66905..773f5b2aeb21 100644
--- a/flang/lib/Semantics/check-omp-structure.cpp
+++ b/flang/lib/Semantics/check-omp-structure.cpp
@@ -125,14 +125,7 @@ void OmpStructureChecker::Enter(const parser::OpenMPBlockConstruct &x) {
CheckMatching<parser::OmpBlockDirective>(beginDir, endDir);
PushContextAndClauseSets(beginDir.source, beginDir.v);
-
- switch (beginDir.v) {
- case llvm::omp::OMPD_parallel:
- CheckNoBranching(block, llvm::omp::OMPD_parallel, beginDir.source);
- break;
- default:
- break;
- }
+ CheckNoBranching(block, beginDir.v, beginDir.source);
}
void OmpStructureChecker::Leave(const parser::OpenMPBlockConstruct &) {
diff --git a/flang/test/Semantics/omp-parallell01.f90 b/flang/test/Semantics/omp-parallell01.f90
index e3490563f332..1a2cae1830bc 100644
--- a/flang/test/Semantics/omp-parallell01.f90
+++ b/flang/test/Semantics/omp-parallell01.f90
@@ -1,5 +1,4 @@
! RUN: %S/test_errors.sh %s %t %f18 -fopenmp
-! XFAIL: *
! OpenMP Version 4.5
! 2.5 parallel construct.
@@ -13,7 +12,7 @@ program omp_parallel
do i = 1, 10
do j = 1, 10
print *, "Hello"
- !ERROR: invalid branch to/from OpenMP structured block
+ !ERROR: Control flow escapes from PARALLEL
goto 10
end do
end do
More information about the flang-commits
mailing list