1 //===- AMXToLLVMIRTranslation.cpp - Translate AMX to LLVM IR --------------===//
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
7 //===----------------------------------------------------------------------===//
9 // This file implements a translation between the AMX dialect and LLVM IR.
11 //===----------------------------------------------------------------------===//
13 #include "mlir/Target/LLVMIR/Dialect/AMX/AMXToLLVMIRTranslation.h"
14 #include "mlir/Dialect/AMX/AMXDialect.h"
15 #include "mlir/IR/Operation.h"
16 #include "mlir/Target/LLVMIR/ModuleTranslation.h"
18 #include "llvm/IR/IRBuilder.h"
19 #include "llvm/IR/IntrinsicsX86.h"
22 using namespace mlir::LLVM
;
25 /// Implementation of the dialect interface that converts operations belonging
26 /// to the AMX dialect to LLVM IR.
27 class AMXDialectLLVMIRTranslationInterface
28 : public LLVMTranslationDialectInterface
{
30 using LLVMTranslationDialectInterface::LLVMTranslationDialectInterface
;
32 /// Translates the given operation to LLVM IR using the provided IR builder
33 /// and saving the state in `moduleTranslation`.
35 convertOperation(Operation
*op
, llvm::IRBuilderBase
&builder
,
36 LLVM::ModuleTranslation
&moduleTranslation
) const final
{
37 Operation
&opInst
= *op
;
38 #include "mlir/Dialect/AMX/AMXConversions.inc"
45 void mlir::registerAMXDialectTranslation(DialectRegistry
®istry
) {
46 registry
.insert
<amx::AMXDialect
>();
47 registry
.addExtension(+[](MLIRContext
*ctx
, amx::AMXDialect
*dialect
) {
48 dialect
->addInterfaces
<AMXDialectLLVMIRTranslationInterface
>();
52 void mlir::registerAMXDialectTranslation(MLIRContext
&context
) {
53 DialectRegistry registry
;
54 registerAMXDialectTranslation(registry
);
55 context
.appendDialectRegistry(registry
);