You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
//===- TestModuleCombiner.cpp - Pass to test SPIR-V module combiner lib ---===//
|
|
//
|
|
// 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/SPIRV/ModuleCombiner.h"
|
|
|
|
#include "mlir/Dialect/SPIRV/SPIRVOps.h"
|
|
#include "mlir/Dialect/SPIRV/SPIRVTypes.h"
|
|
#include "mlir/IR/Builders.h"
|
|
#include "mlir/IR/BuiltinOps.h"
|
|
#include "mlir/Pass/Pass.h"
|
|
|
|
using namespace mlir;
|
|
|
|
namespace {
|
|
class TestModuleCombinerPass
|
|
: public PassWrapper<TestModuleCombinerPass,
|
|
OperationPass<mlir::ModuleOp>> {
|
|
public:
|
|
TestModuleCombinerPass() = default;
|
|
TestModuleCombinerPass(const TestModuleCombinerPass &) {}
|
|
void runOnOperation() override;
|
|
|
|
private:
|
|
mlir::spirv::OwningSPIRVModuleRef combinedModule;
|
|
};
|
|
} // namespace
|
|
|
|
void TestModuleCombinerPass::runOnOperation() {
|
|
auto modules = llvm::to_vector<4>(getOperation().getOps<spirv::ModuleOp>());
|
|
|
|
OpBuilder combinedModuleBuilder(modules[0]);
|
|
combinedModule = spirv::combine(modules, combinedModuleBuilder, nullptr);
|
|
|
|
for (spirv::ModuleOp module : modules)
|
|
module.erase();
|
|
}
|
|
|
|
namespace mlir {
|
|
void registerTestSpirvModuleCombinerPass() {
|
|
PassRegistration<TestModuleCombinerPass> registration(
|
|
"test-spirv-module-combiner", "Tests SPIR-V module combiner library");
|
|
}
|
|
} // namespace mlir
|