//===- BufferDeallocationOpInterfaceImpl.cpp ------------------------------===// // // 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/Arith/Transforms/BufferDeallocationOpInterfaceImpl.h" #include "mlir/Dialect/Arith/IR/Arith.h" #include "mlir/Dialect/Bufferization/IR/BufferDeallocationOpInterface.h" #include "mlir/Dialect/MemRef/IR/MemRef.h" #include "mlir/IR/Dialect.h" #include "mlir/IR/Operation.h" usingnamespacemlir; usingnamespacemlir::bufferization; namespace { /// Provides custom logic to materialize ownership indicator values for the /// result value of 'arith.select'. Instead of cloning or runtime alias /// checking, this implementation inserts another `arith.select` to choose the /// ownership indicator of the operand in the same way the original /// `arith.select` chooses the MemRef operand. If at least one of the operand's /// ownerships is 'Unknown', fall back to the default implementation. /// /// Example: /// ```mlir /// // let ownership(%m0) := %o0 /// // let ownership(%m1) := %o1 /// %res = arith.select %cond, %m0, %m1 /// ``` /// The default implementation would insert a clone and replace all uses of the /// result of `arith.select` with that clone: /// ```mlir /// %res = arith.select %cond, %m0, %m1 /// %clone = bufferization.clone %res /// // let ownership(%res) := 'Unknown' /// // let ownership(%clone) := %true /// // replace all uses of %res with %clone /// ``` /// This implementation, on the other hand, materializes the following: /// ```mlir /// %res = arith.select %cond, %m0, %m1 /// %res_ownership = arith.select %cond, %o0, %o1 /// // let ownership(%res) := %res_ownership /// ``` struct SelectOpInterface : public BufferDeallocationOpInterface::ExternalModel<SelectOpInterface, arith::SelectOp> { … }; } // namespace void mlir::arith::registerBufferDeallocationOpInterfaceExternalModels( DialectRegistry ®istry) { … }