[llvm-branch-commits] [mlir] release/18.x: [mlir][NFC] Apply rule of five to *Pass classes (#80998) (PR #83971)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Mar 5 00:20:01 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: None (llvmbot)
<details>
<summary>Changes</summary>
Backport 90e9e962e18fc4304c6aba81de2bb53069bcd358
Requested by: @<!-- -->andrey-golubev
---
Full diff: https://github.com/llvm/llvm-project/pull/83971.diff
2 Files Affected:
- (modified) mlir/include/mlir/Pass/Pass.h (+19)
- (modified) mlir/tools/mlir-tblgen/PassGen.cpp (+8)
``````````diff
diff --git a/mlir/include/mlir/Pass/Pass.h b/mlir/include/mlir/Pass/Pass.h
index 121b253eb83fea..070e0cad38787c 100644
--- a/mlir/include/mlir/Pass/Pass.h
+++ b/mlir/include/mlir/Pass/Pass.h
@@ -161,6 +161,9 @@ class Pass {
explicit Pass(TypeID passID, std::optional<StringRef> opName = std::nullopt)
: passID(passID), opName(opName) {}
Pass(const Pass &other) : Pass(other.passID, other.opName) {}
+ Pass &operator=(const Pass &) = delete;
+ Pass(Pass &&) = delete;
+ Pass &operator=(Pass &&) = delete;
/// Returns the current pass state.
detail::PassExecutionState &getPassState() {
@@ -349,9 +352,15 @@ class Pass {
/// - A 'std::unique_ptr<Pass> clonePass() const' method.
template <typename OpT = void>
class OperationPass : public Pass {
+public:
+ ~OperationPass() = default;
+
protected:
OperationPass(TypeID passID) : Pass(passID, OpT::getOperationName()) {}
OperationPass(const OperationPass &) = default;
+ OperationPass &operator=(const OperationPass &) = delete;
+ OperationPass(OperationPass &&) = delete;
+ OperationPass &operator=(OperationPass &&) = delete;
/// Support isa/dyn_cast functionality.
static bool classof(const Pass *pass) {
@@ -388,9 +397,15 @@ class OperationPass : public Pass {
/// - A 'std::unique_ptr<Pass> clonePass() const' method.
template <>
class OperationPass<void> : public Pass {
+public:
+ ~OperationPass() = default;
+
protected:
OperationPass(TypeID passID) : Pass(passID) {}
OperationPass(const OperationPass &) = default;
+ OperationPass &operator=(const OperationPass &) = delete;
+ OperationPass(OperationPass &&) = delete;
+ OperationPass &operator=(OperationPass &&) = delete;
/// Indicate if the current pass can be scheduled on the given operation type.
/// By default, generic operation passes can be scheduled on any operation.
@@ -444,10 +459,14 @@ class PassWrapper : public BaseT {
static bool classof(const Pass *pass) {
return pass->getTypeID() == TypeID::get<PassT>();
}
+ ~PassWrapper() = default;
protected:
PassWrapper() : BaseT(TypeID::get<PassT>()) {}
PassWrapper(const PassWrapper &) = default;
+ PassWrapper &operator=(const PassWrapper &) = delete;
+ PassWrapper(PassWrapper &&) = delete;
+ PassWrapper &operator=(PassWrapper &&) = delete;
/// Returns the derived pass name.
StringRef getName() const override { return llvm::getTypeName<PassT>(); }
diff --git a/mlir/tools/mlir-tblgen/PassGen.cpp b/mlir/tools/mlir-tblgen/PassGen.cpp
index 11af6497cecf50..90aa67115a4007 100644
--- a/mlir/tools/mlir-tblgen/PassGen.cpp
+++ b/mlir/tools/mlir-tblgen/PassGen.cpp
@@ -183,6 +183,10 @@ class {0}Base : public {1} {
{0}Base() : {1}(::mlir::TypeID::get<DerivedT>()) {{}
{0}Base(const {0}Base &other) : {1}(other) {{}
+ {0}Base& operator=(const {0}Base &) = delete;
+ {0}Base({0}Base &&) = delete;
+ {0}Base& operator=({0}Base &&) = delete;
+ ~{0}Base() = default;
/// Returns the command-line argument attached to this pass.
static constexpr ::llvm::StringLiteral getArgumentName() {
@@ -380,6 +384,10 @@ class {0}Base : public {1} {
{0}Base() : {1}(::mlir::TypeID::get<DerivedT>()) {{}
{0}Base(const {0}Base &other) : {1}(other) {{}
+ {0}Base& operator=(const {0}Base &) = delete;
+ {0}Base({0}Base &&) = delete;
+ {0}Base& operator=({0}Base &&) = delete;
+ ~{0}Base() = default;
/// Returns the command-line argument attached to this pass.
static constexpr ::llvm::StringLiteral getArgumentName() {
``````````
</details>
https://github.com/llvm/llvm-project/pull/83971
More information about the llvm-branch-commits
mailing list