MLIR  19.0.0git
FuncToSPIRVPass.cpp
Go to the documentation of this file.
1 //===- FuncToSPIRVPass.cpp - Func to SPIR-V Passes ----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements a pass to convert Func dialect to SPIR-V dialect.
10 //
11 //===----------------------------------------------------------------------===//
12 
14 
18 
19 namespace mlir {
20 #define GEN_PASS_DEF_CONVERTFUNCTOSPIRV
21 #include "mlir/Conversion/Passes.h.inc"
22 } // namespace mlir
23 
24 using namespace mlir;
25 
26 namespace {
27 /// A pass converting MLIR Func operations into the SPIR-V dialect.
28 class ConvertFuncToSPIRVPass
29  : public impl::ConvertFuncToSPIRVBase<ConvertFuncToSPIRVPass> {
30  void runOnOperation() override;
31 };
32 } // namespace
33 
34 void ConvertFuncToSPIRVPass::runOnOperation() {
35  MLIRContext *context = &getContext();
36  Operation *op = getOperation();
37 
38  auto targetAttr = spirv::lookupTargetEnvOrDefault(op);
39  std::unique_ptr<ConversionTarget> target =
40  SPIRVConversionTarget::get(targetAttr);
41 
43  options.emulateLT32BitScalarTypes = this->emulateLT32BitScalarTypes;
44  SPIRVTypeConverter typeConverter(targetAttr, options);
45 
46  RewritePatternSet patterns(context);
47  populateFuncToSPIRVPatterns(typeConverter, patterns);
48  populateBuiltinFuncToSPIRVPatterns(typeConverter, patterns);
49 
50  if (failed(applyPartialConversion(op, *target, std::move(patterns))))
51  return signalPassFailure();
52 }
53 
54 std::unique_ptr<OperationPass<>> mlir::createConvertFuncToSPIRVPass() {
55  return std::make_unique<ConvertFuncToSPIRVPass>();
56 }
static MLIRContext * getContext(OpFoldResult val)
static llvm::ManagedStatic< PassManagerOptions > options
MLIRContext is the top-level object for a collection of MLIR operations.
Definition: MLIRContext.h:60
Operation is the basic unit of execution within MLIR.
Definition: Operation.h:88
static std::unique_ptr< SPIRVConversionTarget > get(spirv::TargetEnvAttr targetAttr)
Creates a SPIR-V conversion target for the given target environment.
Type conversion from builtin types to SPIR-V types for shader interface.
TargetEnvAttr lookupTargetEnvOrDefault(Operation *op)
Queries the target environment recursively from enclosing symbol table ops containing the given op or...
Include the generated interface declarations.
std::unique_ptr< OperationPass<> > createConvertFuncToSPIRVPass()
Creates a pass to convert Func ops to SPIR-V ops.
void populateBuiltinFuncToSPIRVPatterns(SPIRVTypeConverter &typeConverter, RewritePatternSet &patterns)
Appends to a pattern list additional patterns for translating the builtin func op to the SPIR-V diale...
void populateFuncToSPIRVPatterns(SPIRVTypeConverter &typeConverter, RewritePatternSet &patterns)
Appends to a pattern list additional patterns for translating Func ops to SPIR-V ops.
Definition: FuncToSPIRV.cpp:91
LogicalResult applyPartialConversion(ArrayRef< Operation * > ops, const ConversionTarget &target, const FrozenRewritePatternSet &patterns, ConversionConfig config=ConversionConfig())
Below we define several entry points for operation conversion.
bool failed(LogicalResult result)
Utility function that returns true if the provided LogicalResult corresponds to a failure value.
Definition: LogicalResult.h:72