[PATCH] D93712: [flang][driver] Add checks for errors from `Prescan` and `Parse`
Andrzej Warzynski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 6 02:20:02 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
awarzynski marked 2 inline comments as done.
Closed by commit rGe49dc2981cb3: [flang][driver] Add checks for errors from `Prescan` and `Parse` (authored by awarzynski).
Changed prior to commit:
https://reviews.llvm.org/D93712?vs=313355&id=314828#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D93712/new/
https://reviews.llvm.org/D93712
Files:
flang/lib/Frontend/FrontendAction.cpp
flang/lib/Frontend/FrontendActions.cpp
flang/test/Flang-Driver/parse-error.f95
flang/test/Flang-Driver/scanning-error.f95
Index: flang/test/Flang-Driver/scanning-error.f95
===================================================================
--- /dev/null
+++ flang/test/Flang-Driver/scanning-error.f95
@@ -0,0 +1,8 @@
+! RUN: not %flang-new -fc1 -E %s 2>&1 | FileCheck %s --check-prefix=ERROR
+! RUN: not %f18 -E %s 2>&1 | FileCheck %s --check-prefix=ERROR
+
+! REQUIRES: new-flang-driver
+
+! ERROR: could not scan {{.*}}scanning-error.f95
+
+#NOT-PP-DIRECTIVE
Index: flang/test/Flang-Driver/parse-error.f95
===================================================================
--- /dev/null
+++ flang/test/Flang-Driver/parse-error.f95
@@ -0,0 +1,8 @@
+! RUN: not %flang-new -fc1 -fsyntax-only %s 2>&1 | FileCheck %s --check-prefix=ERROR
+! RUN: not %f18 -parse-only %s 2>&1 | FileCheck %s --check-prefix=ERROR
+
+! REQUIRES: new-flang-driver
+
+! ERROR: could not parse {{.*}}parse-error.f95
+
+"This file will not parse"
Index: flang/lib/Frontend/FrontendActions.cpp
===================================================================
--- flang/lib/Frontend/FrontendActions.cpp
+++ flang/lib/Frontend/FrontendActions.cpp
@@ -78,8 +78,19 @@
common::LanguageFeatureControl features;
Fortran::common::IntrinsicTypeDefaultKinds defaultKinds;
- // Parse
+ // Parse. In case of failure, report and return.
ci.parsing().Parse(llvm::outs());
+
+ if (ci.parsing().messages().AnyFatalError()) {
+ unsigned diagID = ci.diagnostics().getCustomDiagID(
+ clang::DiagnosticsEngine::Error, "could not parse %0");
+ ci.diagnostics().Report(diagID) << GetCurrentFileOrBufferName();
+
+ ci.parsing().messages().Emit(
+ llvm::errs(), this->instance().allCookedSources());
+ return;
+ }
+
auto &parseTree{*ci.parsing().parseTree()};
// Prepare semantics
Index: flang/lib/Frontend/FrontendAction.cpp
===================================================================
--- flang/lib/Frontend/FrontendAction.cpp
+++ flang/lib/Frontend/FrontendAction.cpp
@@ -45,12 +45,24 @@
}
llvm::Error FrontendAction::Execute() {
+ CompilerInstance &ci = this->instance();
+
std::string currentInputPath{GetCurrentFileOrBufferName()};
Fortran::parser::Options parserOptions =
this->instance().invocation().fortranOpts();
- this->instance().parsing().Prescan(currentInputPath, parserOptions);
+ // Prescan. In case of failure, report and return.
+ ci.parsing().Prescan(currentInputPath, parserOptions);
+
+ if (ci.parsing().messages().AnyFatalError()) {
+ const unsigned diagID = ci.diagnostics().getCustomDiagID(
+ clang::DiagnosticsEngine::Error, "could not scan %0");
+ ci.diagnostics().Report(diagID) << GetCurrentFileOrBufferName();
+ ci.parsing().messages().Emit(llvm::errs(), ci.allCookedSources());
+
+ return llvm::Error::success();
+ }
ExecuteAction();
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D93712.314828.patch
Type: text/x-patch
Size: 2804 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210106/54609e1e/attachment.bin>
More information about the llvm-commits
mailing list