MLIR  20.0.0git
ToLLVMInterface.h
Go to the documentation of this file.
1 //===- ToLLVMInterface.h - Conversion to LLVM iface ---*- C++ -*-=============//
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 #ifndef MLIR_CONVERSION_CONVERTTOLLVM_TOLLVMINTERFACE_H
10 #define MLIR_CONVERSION_CONVERTTOLLVM_TOLLVMINTERFACE_H
11 
13 #include "mlir/IR/MLIRContext.h"
14 
15 namespace mlir {
16 class ConversionTarget;
17 class LLVMTypeConverter;
18 class MLIRContext;
19 class Operation;
20 class RewritePatternSet;
21 
22 /// Base class for dialect interfaces providing translation to LLVM IR.
23 /// Dialects that can be translated should provide an implementation of this
24 /// interface for the supported operations. The interface may be implemented in
25 /// a separate library to avoid the "main" dialect library depending on LLVM IR.
26 /// The interface can be attached using the delayed registration mechanism
27 /// available in DialectRegistry.
29  : public DialectInterface::Base<ConvertToLLVMPatternInterface> {
30 public:
31  ConvertToLLVMPatternInterface(Dialect *dialect) : Base(dialect) {}
32 
33  /// Hook for derived dialect interface to load the dialects they
34  /// target. The LLVMDialect is implicitly already loaded, but this
35  /// method allows to load other intermediate dialects used in the
36  /// conversion, or target dialects like NVVM for example.
37  virtual void loadDependentDialects(MLIRContext *context) const {}
38 
39  /// Hook for derived dialect interface to provide conversion patterns
40  /// and mark dialect legal for the conversion target.
42  ConversionTarget &target, LLVMTypeConverter &typeConverter,
43  RewritePatternSet &patterns) const = 0;
44 };
45 
46 /// Recursively walk the IR and collect all dialects implementing the interface,
47 /// and populate the conversion patterns.
49  ConversionTarget &target,
50  LLVMTypeConverter &typeConverter,
51  RewritePatternSet &patterns);
52 
53 } // namespace mlir
54 
55 #endif // MLIR_CONVERSION_CONVERTTOLLVM_TOLLVMINTERFACE_H
This class describes a specific conversion target.
Base class for dialect interfaces providing translation to LLVM IR.
virtual void populateConvertToLLVMConversionPatterns(ConversionTarget &target, LLVMTypeConverter &typeConverter, RewritePatternSet &patterns) const =0
Hook for derived dialect interface to provide conversion patterns and mark dialect legal for the conv...
virtual void loadDependentDialects(MLIRContext *context) const
Hook for derived dialect interface to load the dialects they target.
ConvertToLLVMPatternInterface(Dialect *dialect)
Dialects are groups of MLIR operations, types and attributes, as well as behavior associated with the...
Definition: Dialect.h:38
Conversion from types to the LLVM IR dialect.
Definition: TypeConverter.h:34
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
The base class used for all derived interface types.
Include the generated interface declarations.
void populateConversionTargetFromOperation(Operation *op, ConversionTarget &target, LLVMTypeConverter &typeConverter, RewritePatternSet &patterns)
Recursively walk the IR and collect all dialects implementing the interface, and populate the convers...