MLIR 22.0.0git
ArmSVEToLLVMIRTranslation.cpp
Go to the documentation of this file.
1//======- ArmSVEToLLVMIRTranslation.cpp - Translate ArmSVE 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 ArmSVE dialect and LLVM IR.
10//
11//===----------------------------------------------------------------------===//
12
15#include "mlir/IR/Operation.h"
17
18#include "llvm/IR/IRBuilder.h"
19#include "llvm/IR/IntrinsicsAArch64.h"
20
21using namespace mlir;
22using namespace mlir::LLVM;
23
24namespace {
25/// Implementation of the dialect interface that converts operations belonging
26/// to the ArmSVE dialect to LLVM IR.
27class ArmSVEDialectLLVMIRTranslationInterface
29public:
31
32 /// Translates the given operation to LLVM IR using the provided IR builder
33 /// and saving the state in `moduleTranslation`.
34 LogicalResult
35 convertOperation(Operation *op, llvm::IRBuilderBase &builder,
36 LLVM::ModuleTranslation &moduleTranslation) const final {
37 Operation &opInst = *op;
38#include "mlir/Dialect/ArmSVE/IR/ArmSVEConversions.inc"
39
40 return failure();
41 }
42};
43} // namespace
44
46 registry.insert<arm_sve::ArmSVEDialect>();
47 registry.addExtension(+[](MLIRContext *ctx, arm_sve::ArmSVEDialect *dialect) {
48 dialect->addInterfaces<ArmSVEDialectLLVMIRTranslationInterface>();
49 });
50}
51
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
bool addExtension(TypeID extensionID, std::unique_ptr< DialectExtensionBase > extension)
Add the given extension to the registry.
Base class for dialect interfaces providing translation to LLVM IR.
MLIRContext is the top-level object for a collection of MLIR operations.
Definition MLIRContext.h:63
void appendDialectRegistry(const DialectRegistry &registry)
Append the contents of the given dialect registry to the registry associated with this context.
Include the generated interface declarations.
void registerArmSVEDialectTranslation(DialectRegistry &registry)
Register the ArmSVE dialect and the translation from it to the LLVM IR in the given registry;.