[mlir] Add mlir translate flag to print errors only.

The revision adds a flag to mlir translate that suppresses
any non-error diagnostics. The flag is useful when importing
LLVM IR to LLVM dialect, which produces a lot of
warnings due to dropped metadata and debug intrinsics.

Reviewed By: Dinistro

Differential Revision: https://reviews.llvm.org/D150547
This commit is contained in:
Tobias Gysi 2023-05-16 07:21:22 +00:00
parent 258c9bebbd
commit 1ade6f36e3
2 changed files with 60 additions and 3 deletions

View File

@ -24,7 +24,26 @@
using namespace mlir;
//===----------------------------------------------------------------------===//
// Translation Parser
// Diagnostic Filter
//===----------------------------------------------------------------------===//
namespace {
/// A scoped diagnostic handler that marks non-error diagnostics as handled. As
/// a result, the main diagnostic handler does not print non-error diagnostics.
class ErrorDiagnosticFilter : public ScopedDiagnosticHandler {
public:
ErrorDiagnosticFilter(MLIRContext *ctx) : ScopedDiagnosticHandler(ctx) {
setHandler([](Diagnostic &diag) {
if (diag.getSeverity() != DiagnosticSeverity::Error)
return success();
return failure();
});
}
};
} // namespace
//===----------------------------------------------------------------------===//
// Translate Entry Point
//===----------------------------------------------------------------------===//
LogicalResult mlir::mlirTranslateMain(int argc, char **argv,
@ -55,6 +74,12 @@ LogicalResult mlir::mlirTranslateMain(int argc, char **argv,
"expected-* lines on the corresponding line"),
llvm::cl::init(false));
static llvm::cl::opt<bool> errorDiagnosticsOnly(
"error-diagnostics-only",
llvm::cl::desc("Filter all non-error diagnostics "
"(discouraged: testing only!)"),
llvm::cl::init(false));
llvm::InitLLVM y(argc, argv);
// Add flags for all the registered translations.
@ -121,12 +146,17 @@ LogicalResult mlir::mlirTranslateMain(int argc, char **argv,
if (verifyDiagnostics) {
// In the diagnostic verification flow, we ignore whether the
// translation failed (in most cases, it is expected to fail).
// Instead, we check if the diagnostics were produced as expected.
// translation failed (in most cases, it is expected to fail) and we do
// not filter non-error diagnostics even if `errorDiagnosticsOnly` is
// set. Instead, we check if the diagnostics were produced as expected.
SourceMgrDiagnosticVerifierHandler sourceMgrHandler(*sourceMgr,
&context);
(void)(*translationRequested)(sourceMgr, os, &context);
result = sourceMgrHandler.verify();
} else if (errorDiagnosticsOnly) {
SourceMgrDiagnosticHandler sourceMgrHandler(*sourceMgr, &context);
ErrorDiagnosticFilter diagnosticFilter(&context);
result = (*translationRequested)(sourceMgr, *stream, &context);
} else {
SourceMgrDiagnosticHandler sourceMgrHandler(*sourceMgr, &context);
result = (*translationRequested)(sourceMgr, *stream, &context);

View File

@ -0,0 +1,27 @@
; RUN: not mlir-translate %s -import-llvm -split-input-file -error-diagnostics-only 2>&1 | FileCheck %s --check-prefix=ERROR
; RUN: not mlir-translate %s -import-llvm -split-input-file 2>&1 | FileCheck %s --check-prefix=ALL
; ERROR-NOT: warning:
; ALL: warning:
define void @warning(i64 %n, ptr %A) {
entry:
br label %end, !llvm.loop !0
end:
ret void
}
!0 = distinct !{!0, !1, !2}
!1 = !{!"llvm.loop.disable_nonforced"}
!2 = !{!"llvm.loop.typo"}
; // -----
; ERROR: error:
; ALL: error:
define i32 @error(ptr %dst) {
indirectbr ptr %dst, [label %bb1, label %bb2]
bb1:
ret i32 0
bb2:
ret i32 1
}