//===- TestDataLayoutQuery.cpp - Test Data Layout Queries -----------------===// // // 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 "TestOps.h" #include "mlir/Analysis/DataLayoutAnalysis.h" #include "mlir/Dialect/DLTI/DLTI.h" #include "mlir/IR/BuiltinAttributes.h" #include "mlir/Pass/Pass.h" usingnamespacemlir; namespace { /// A pass that finds "test.data_layout_query" operations and attaches to them /// attributes containing the results of data layout queries for operation /// result types. struct TestDataLayoutQuery : public PassWrapper<TestDataLayoutQuery, OperationPass<func::FuncOp>> { … }; } // namespace namespace mlir { namespace test { void registerTestDataLayoutQuery() { … } } // namespace test } // namespace mlir