xref: /llvm-project/mlir/include/mlir/Target/LLVMIR/Dialect/OpenMP/OpenMPToLLVMIRTranslation.h (revision 19db802e7b13f190ebae6f5389b0bfbc1827e4e7)
1 //===- OpenMPToLLVMIRTranslation.h - OpenMP Dialect to LLVM IR --*- 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 // This provides registration calls for OpenMP dialect to LLVM IR translation.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef MLIR_TARGET_LLVMIR_DIALECT_OPENMP_OPENMPTOLLVMIRTRANSLATION_H
14 #define MLIR_TARGET_LLVMIR_DIALECT_OPENMP_OPENMPTOLLVMIRTRANSLATION_H
15 
16 namespace mlir {
17 
18 class DialectRegistry;
19 class MLIRContext;
20 
21 /// Register the OpenMP dialect and the translation from it to the LLVM IR in
22 /// the given registry;
23 void registerOpenMPDialectTranslation(DialectRegistry &registry);
24 
25 /// Register the OpenMP dialect and the translation from it in the registry
26 /// associated with the given context.
27 void registerOpenMPDialectTranslation(MLIRContext &context);
28 
29 } // namespace mlir
30 
31 #endif // MLIR_TARGET_LLVMIR_DIALECT_OPENMP_OPENMPTOLLVMIRTRANSLATION_H
32