//===- TestOneShotModuleBufferzation.cpp - Bufferization Test -----*- c++ //-*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "mlir/Dialect/Bufferization/IR/Bufferization.h" #include "mlir/Dialect/Bufferization/Transforms/Bufferize.h" #include "mlir/Dialect/Bufferization/Transforms/OneShotModuleBufferize.h" #include "mlir/Dialect/Bufferization/Transforms/Transforms.h" #include "mlir/Pass/Pass.h" using namespace mlir; namespace { struct TestOneShotModuleBufferizePass : public PassWrapper> { MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(TestOneShotModuleBufferizePass) TestOneShotModuleBufferizePass() = default; TestOneShotModuleBufferizePass(const TestOneShotModuleBufferizePass &pass) : PassWrapper(pass) {} void getDependentDialects(DialectRegistry ®istry) const override { registry.insert(); } StringRef getArgument() const final { return "test-one-shot-module-bufferize"; } StringRef getDescription() const final { return "Pass to test One Shot Module Bufferization"; } void runOnOperation() override { llvm::errs() << "Running TestOneShotModuleBufferize on: " << getOperation()->getName() << "\n"; bufferization::OneShotBufferizationOptions opt; opt.bufferizeFunctionBoundaries = true; bufferization::BufferizationState bufferizationState; if (failed(bufferization::runOneShotModuleBufferize(getOperation(), opt, bufferizationState))) signalPassFailure(); } }; } // namespace namespace mlir::test { void registerTestOneShotModuleBufferizePass() { PassRegistration(); } } // namespace mlir::test