MLIR
22.0.0git
lib
Target
LLVMIR
Dialect
SPIRV
SPIRVToLLVMIRTranslation.cpp
Go to the documentation of this file.
1
//===- SPIRVToLLVMIRTranslation.cpp - Translate SPIR-V to LLVM IR ---------===//
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 translation between the MLIR SPIR-V dialect and
10
// LLVM IR.
11
//
12
//===----------------------------------------------------------------------===//
13
14
#include "
mlir/Target/LLVMIR/Dialect/SPIRV/SPIRVToLLVMIRTranslation.h
"
15
#include "
mlir/Dialect/SPIRV/IR/SPIRVDialect.h
"
16
#include "
mlir/Target/LLVMIR/ModuleTranslation.h
"
17
18
using namespace
mlir
;
19
using namespace
mlir::LLVM
;
20
21
void
mlir::registerSPIRVDialectTranslation
(
DialectRegistry
®istry) {
22
registry.
insert
<spirv::SPIRVDialect>();
23
}
24
25
void
mlir::registerSPIRVDialectTranslation
(
MLIRContext
&context) {
26
DialectRegistry
registry;
27
registerSPIRVDialectTranslation
(registry);
28
context.
appendDialectRegistry
(registry);
29
}
ModuleTranslation.h
SPIRVDialect.h
SPIRVToLLVMIRTranslation.h
mlir::DialectRegistry
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
Definition:
DialectRegistry.h:139
mlir::DialectRegistry::insert
void insert()
Definition:
DialectRegistry.h:152
mlir::MLIRContext
MLIRContext is the top-level object for a collection of MLIR operations.
Definition:
MLIRContext.h:63
mlir::MLIRContext::appendDialectRegistry
void appendDialectRegistry(const DialectRegistry ®istry)
Append the contents of the given dialect registry to the registry associated with this context.
Definition:
MLIRContext.cpp:413
mlir::LLVM
Definition:
ConvertFuncToLLVM.h:21
mlir
Include the generated interface declarations.
Definition:
LocalAliasAnalysis.h:20
mlir::registerSPIRVDialectTranslation
void registerSPIRVDialectTranslation(DialectRegistry ®istry)
Register the SPIR-V dialect and the translation from it to the LLVM IR in the given registry;.
Definition:
SPIRVToLLVMIRTranslation.cpp:21
Generated on Sun Sep 7 2025 08:36:45 for MLIR by
1.9.1