20 #define GEN_PASS_DEF_CONVERTCONTROLFLOWTOSPIRV
21 #include "mlir/Conversion/Passes.h.inc"
28 class ConvertControlFlowToSPIRVPass final
29 :
public impl::ConvertControlFlowToSPIRVBase<
30 ConvertControlFlowToSPIRVPass> {
31 void runOnOperation()
override;
35 void ConvertControlFlowToSPIRVPass::runOnOperation() {
40 std::unique_ptr<ConversionTarget> target =
44 options.emulateLT32BitScalarTypes = this->emulateLT32BitScalarTypes;
53 return signalPassFailure();
57 return std::make_unique<ConvertControlFlowToSPIRVPass>();
static MLIRContext * getContext(OpFoldResult val)
static llvm::ManagedStatic< PassManagerOptions > options
MLIRContext is the top-level object for a collection of MLIR operations.
Operation is the basic unit of execution within MLIR.
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.
void populateControlFlowToSPIRVPatterns(const SPIRVTypeConverter &typeConverter, RewritePatternSet &patterns)
Appends to a pattern list additional patterns for translating ControlFLow ops to SPIR-V ops.
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<> > createConvertControlFlowToSPIRVPass()
Creates a pass to convert ControlFlow ops to SPIR-V ops.
LogicalResult applyPartialConversion(ArrayRef< Operation * > ops, const ConversionTarget &target, const FrozenRewritePatternSet &patterns, ConversionConfig config=ConversionConfig())
Below we define several entry points for operation conversion.