//===----------------------------------------------------------------------===// // // 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/Affine/IR/AffineOps.h" #include "mlir/Dialect/Bufferization/IR/BufferizableOpInterface.h" #include "mlir/Dialect/Bufferization/IR/Bufferization.h" #include "mlir/Dialect/MemRef/IR/MemRef.h" #include "mlir/Dialect/Tensor/IR/Tensor.h" #include "mlir/Interfaces/FunctionInterfaces.h" #include "mlir/Transforms/InliningUtils.h" usingnamespacemlir; usingnamespacemlir::bufferization; #include "mlir/Dialect/Bufferization/IR/BufferizationOpsDialect.cpp.inc" /// Attribute name used to mark function arguments who's buffers can be written /// to during One-Shot Module Bufferize. constexpr const ::llvm::StringLiteral BufferizationDialect::kWritableAttrName; /// Attribute name used to mark the bufferization layout for region arguments /// during One-Shot Module Bufferize. constexpr const ::llvm::StringLiteral BufferizationDialect::kBufferLayoutAttrName; /// An attribute that can be attached to ops with an allocation and/or /// deallocation side effect. It indicates that the op is under a "manual /// deallocation" scheme. In the case of an allocation op, the returned /// value is *not* an automatically managed allocation and assigned an /// ownership of "false". Furthermore, only deallocation ops that are /// guaranteed to deallocate a buffer under "manual deallocation" are /// allowed to have this attribute. (Deallocation ops without this /// attribute are rejected by the ownership-based buffer deallocation pass.) constexpr const ::llvm::StringLiteral BufferizationDialect::kManualDeallocation; //===----------------------------------------------------------------------===// // Bufferization Dialect Interfaces //===----------------------------------------------------------------------===// namespace { struct BufferizationInlinerInterface : public DialectInlinerInterface { … }; } // namespace //===----------------------------------------------------------------------===// // Bufferization Dialect //===----------------------------------------------------------------------===// void mlir::bufferization::BufferizationDialect::initialize() { … } LogicalResult BufferizationDialect::verifyRegionArgAttribute( Operation *op, unsigned /*regionIndex*/, unsigned argIndex, NamedAttribute attr) { … } LogicalResult BufferizationDialect::verifyOperationAttribute(Operation *op, NamedAttribute attr) { … }