[llvm-branch-commits] [llvm] [MachineVerifier][NewPM] Add method to run MF through verifier. (PR #125701)
Christudasan Devadasan via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Feb 4 07:37:08 PST 2025
https://github.com/cdevadas created https://github.com/llvm/llvm-project/pull/125701
None
>From effa5e3fb1b50bf6530c2c0f0bb6b953224c4ea9 Mon Sep 17 00:00:00 2001
From: Christudasan Devadasan <Christudasan.Devadasan at amd.com>
Date: Tue, 4 Feb 2025 20:18:10 +0530
Subject: [PATCH] [MachineVerifier][NewPM] Add method to run MF through
verifier.
---
llvm/include/llvm/CodeGen/MachineFunction.h | 7 +++++++
llvm/lib/CodeGen/MachineVerifier.cpp | 6 ++++++
2 files changed, 13 insertions(+)
diff --git a/llvm/include/llvm/CodeGen/MachineFunction.h b/llvm/include/llvm/CodeGen/MachineFunction.h
index c3eb27b9462879d..f1e595cde54e31f 100644
--- a/llvm/include/llvm/CodeGen/MachineFunction.h
+++ b/llvm/include/llvm/CodeGen/MachineFunction.h
@@ -918,6 +918,13 @@ class LLVM_ABI MachineFunction {
bool verify(Pass *p = nullptr, const char *Banner = nullptr,
raw_ostream *OS = nullptr, bool AbortOnError = true) const;
+ /// For New Pass Manager: Run the current MachineFunction through the machine
+ /// code verifier, useful for debugger use.
+ /// \returns true if no problems were found.
+ bool verify(MachineFunctionAnalysisManager &MFAM,
+ const char *Banner = nullptr, raw_ostream *OS = nullptr,
+ bool AbortOnError = true) const;
+
/// Run the current MachineFunction through the machine code verifier, useful
/// for debugger use.
/// \returns true if no problems were found.
diff --git a/llvm/lib/CodeGen/MachineVerifier.cpp b/llvm/lib/CodeGen/MachineVerifier.cpp
index 8509369fe09c8f2..05afcbee701a80a 100644
--- a/llvm/lib/CodeGen/MachineVerifier.cpp
+++ b/llvm/lib/CodeGen/MachineVerifier.cpp
@@ -431,6 +431,12 @@ bool MachineFunction::verify(Pass *p, const char *Banner, raw_ostream *OS,
return MachineVerifier(p, Banner, OS, AbortOnError).verify(*this);
}
+bool MachineFunction::verify(MachineFunctionAnalysisManager &MFAM,
+ const char *Banner, raw_ostream *OS,
+ bool AbortOnError) const {
+ return MachineVerifier(MFAM, Banner, OS, AbortOnError).verify(*this);
+}
+
bool MachineFunction::verify(LiveIntervals *LiveInts, SlotIndexes *Indexes,
const char *Banner, raw_ostream *OS,
bool AbortOnError) const {
More information about the llvm-branch-commits
mailing list