1cde4d5a6SJacques Pienaar //===- ModuleTranslation.cpp - MLIR to LLVM conversion --------------------===//
25d7231d8SStephan Herhut //
35d7231d8SStephan Herhut // Copyright 2019 The MLIR Authors.
45d7231d8SStephan Herhut //
55d7231d8SStephan Herhut // Licensed under the Apache License, Version 2.0 (the "License");
65d7231d8SStephan Herhut // you may not use this file except in compliance with the License.
75d7231d8SStephan Herhut // You may obtain a copy of the License at
85d7231d8SStephan Herhut //
95d7231d8SStephan Herhut //   http://www.apache.org/licenses/LICENSE-2.0
105d7231d8SStephan Herhut //
115d7231d8SStephan Herhut // Unless required by applicable law or agreed to in writing, software
125d7231d8SStephan Herhut // distributed under the License is distributed on an "AS IS" BASIS,
135d7231d8SStephan Herhut // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145d7231d8SStephan Herhut // See the License for the specific language governing permissions and
155d7231d8SStephan Herhut // limitations under the License.
165d7231d8SStephan Herhut // =============================================================================
175d7231d8SStephan Herhut //
185d7231d8SStephan Herhut // This file implements the translation between an MLIR LLVM dialect module and
195d7231d8SStephan Herhut // the corresponding LLVMIR module. It only handles core LLVM IR operations.
205d7231d8SStephan Herhut //
215d7231d8SStephan Herhut //===----------------------------------------------------------------------===//
225d7231d8SStephan Herhut 
235d7231d8SStephan Herhut #include "mlir/Target/LLVMIR/ModuleTranslation.h"
245d7231d8SStephan Herhut 
255d7231d8SStephan Herhut #include "mlir/IR/Attributes.h"
265d7231d8SStephan Herhut #include "mlir/IR/Module.h"
275d7231d8SStephan Herhut #include "mlir/LLVMIR/LLVMDialect.h"
285d7231d8SStephan Herhut #include "mlir/Support/LLVM.h"
295d7231d8SStephan Herhut 
305d7231d8SStephan Herhut #include "llvm/ADT/SetVector.h"
315d7231d8SStephan Herhut #include "llvm/IR/BasicBlock.h"
325d7231d8SStephan Herhut #include "llvm/IR/Constants.h"
335d7231d8SStephan Herhut #include "llvm/IR/DerivedTypes.h"
345d7231d8SStephan Herhut #include "llvm/IR/IRBuilder.h"
355d7231d8SStephan Herhut #include "llvm/IR/LLVMContext.h"
365d7231d8SStephan Herhut #include "llvm/IR/Module.h"
375d7231d8SStephan Herhut #include "llvm/Transforms/Utils/Cloning.h"
385d7231d8SStephan Herhut 
395d7231d8SStephan Herhut namespace mlir {
405d7231d8SStephan Herhut namespace LLVM {
415d7231d8SStephan Herhut 
425d7231d8SStephan Herhut // Convert an MLIR function type to LLVM IR.  Arguments of the function must of
435d7231d8SStephan Herhut // MLIR LLVM IR dialect types.  Use `loc` as a location when reporting errors.
445d7231d8SStephan Herhut // Return nullptr on errors.
455d7231d8SStephan Herhut static llvm::FunctionType *convertFunctionType(llvm::LLVMContext &llvmContext,
465d7231d8SStephan Herhut                                                FunctionType type, Location loc,
475d7231d8SStephan Herhut                                                bool isVarArgs) {
485d7231d8SStephan Herhut   assert(type && "expected non-null type");
495d7231d8SStephan Herhut   if (type.getNumResults() > 1)
50a4c3a645SRiver Riddle     return emitError(loc, "LLVM functions can only have 0 or 1 result"),
515d7231d8SStephan Herhut            nullptr;
525d7231d8SStephan Herhut 
535d7231d8SStephan Herhut   SmallVector<llvm::Type *, 8> argTypes;
545d7231d8SStephan Herhut   argTypes.reserve(type.getNumInputs());
555d7231d8SStephan Herhut   for (auto t : type.getInputs()) {
565d7231d8SStephan Herhut     auto wrappedLLVMType = t.dyn_cast<LLVM::LLVMType>();
575d7231d8SStephan Herhut     if (!wrappedLLVMType)
58a4c3a645SRiver Riddle       return emitError(loc, "non-LLVM function argument type"), nullptr;
595d7231d8SStephan Herhut     argTypes.push_back(wrappedLLVMType.getUnderlyingType());
605d7231d8SStephan Herhut   }
615d7231d8SStephan Herhut 
625d7231d8SStephan Herhut   if (type.getNumResults() == 0)
635d7231d8SStephan Herhut     return llvm::FunctionType::get(llvm::Type::getVoidTy(llvmContext), argTypes,
645d7231d8SStephan Herhut                                    isVarArgs);
655d7231d8SStephan Herhut 
665d7231d8SStephan Herhut   auto wrappedResultType = type.getResult(0).dyn_cast<LLVM::LLVMType>();
675d7231d8SStephan Herhut   if (!wrappedResultType)
68a4c3a645SRiver Riddle     return emitError(loc, "non-LLVM function result"), nullptr;
695d7231d8SStephan Herhut 
705d7231d8SStephan Herhut   return llvm::FunctionType::get(wrappedResultType.getUnderlyingType(),
715d7231d8SStephan Herhut                                  argTypes, isVarArgs);
725d7231d8SStephan Herhut }
735d7231d8SStephan Herhut 
745d7231d8SStephan Herhut // Create an LLVM IR constant of `llvmType` from the MLIR attribute `attr`.
755d7231d8SStephan Herhut // This currently supports integer, floating point, splat and dense element
765d7231d8SStephan Herhut // attributes and combinations thereof.  In case of error, report it to `loc`
775d7231d8SStephan Herhut // and return nullptr.
785d7231d8SStephan Herhut llvm::Constant *ModuleTranslation::getLLVMConstant(llvm::Type *llvmType,
795d7231d8SStephan Herhut                                                    Attribute attr,
805d7231d8SStephan Herhut                                                    Location loc) {
815d7231d8SStephan Herhut   if (auto intAttr = attr.dyn_cast<IntegerAttr>())
825d7231d8SStephan Herhut     return llvm::ConstantInt::get(llvmType, intAttr.getValue());
835d7231d8SStephan Herhut   if (auto floatAttr = attr.dyn_cast<FloatAttr>())
845d7231d8SStephan Herhut     return llvm::ConstantFP::get(llvmType, floatAttr.getValue());
859dbef0bfSRiver Riddle   if (auto funcAttr = attr.dyn_cast<SymbolRefAttr>())
865d7231d8SStephan Herhut     return functionMapping.lookup(funcAttr.getValue());
875d7231d8SStephan Herhut   if (auto splatAttr = attr.dyn_cast<SplatElementsAttr>()) {
885d7231d8SStephan Herhut     auto *vectorType = cast<llvm::VectorType>(llvmType);
895d7231d8SStephan Herhut     auto *child = getLLVMConstant(vectorType->getElementType(),
9030bbd910SRiver Riddle                                   splatAttr.getSplatValue(), loc);
915d7231d8SStephan Herhut     return llvm::ConstantVector::getSplat(vectorType->getNumElements(), child);
925d7231d8SStephan Herhut   }
935d7231d8SStephan Herhut   if (auto denseAttr = attr.dyn_cast<DenseElementsAttr>()) {
945d7231d8SStephan Herhut     auto *vectorType = cast<llvm::VectorType>(llvmType);
955d7231d8SStephan Herhut     SmallVector<llvm::Constant *, 8> constants;
965d7231d8SStephan Herhut     uint64_t numElements = vectorType->getNumElements();
975d7231d8SStephan Herhut     constants.reserve(numElements);
986ebd6df6SRiver Riddle     for (auto n : denseAttr.getAttributeValues()) {
995d7231d8SStephan Herhut       constants.push_back(
1005d7231d8SStephan Herhut           getLLVMConstant(vectorType->getElementType(), n, loc));
1015d7231d8SStephan Herhut       if (!constants.back())
1025d7231d8SStephan Herhut         return nullptr;
1035d7231d8SStephan Herhut     }
1045d7231d8SStephan Herhut     return llvm::ConstantVector::get(constants);
1055d7231d8SStephan Herhut   }
106cb348dffSStephan Herhut   if (auto stringAttr = attr.dyn_cast<StringAttr>()) {
107cb348dffSStephan Herhut     return llvm::ConstantDataArray::get(
108cb348dffSStephan Herhut         llvmModule->getContext(), ArrayRef<char>{stringAttr.getValue().data(),
109cb348dffSStephan Herhut                                                  stringAttr.getValue().size()});
110cb348dffSStephan Herhut   }
111a4c3a645SRiver Riddle   emitError(loc, "unsupported constant value");
1125d7231d8SStephan Herhut   return nullptr;
1135d7231d8SStephan Herhut }
1145d7231d8SStephan Herhut 
1155d7231d8SStephan Herhut // Convert MLIR integer comparison predicate to LLVM IR comparison predicate.
116ec82e1c9SAlex Zinenko static llvm::CmpInst::Predicate getLLVMCmpPredicate(ICmpPredicate p) {
1175d7231d8SStephan Herhut   switch (p) {
118ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::eq:
1195d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_EQ;
120ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::ne:
1215d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_NE;
122ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::slt:
1235d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_SLT;
124ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::sle:
1255d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_SLE;
126ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::sgt:
1275d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_SGT;
128ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::sge:
1295d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_SGE;
130ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::ult:
1315d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_ULT;
132ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::ule:
1335d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_ULE;
134ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::ugt:
1355d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_UGT;
136ec82e1c9SAlex Zinenko   case LLVM::ICmpPredicate::uge:
1375d7231d8SStephan Herhut     return llvm::CmpInst::Predicate::ICMP_UGE;
1385d7231d8SStephan Herhut   default:
1395d7231d8SStephan Herhut     llvm_unreachable("incorrect comparison predicate");
1405d7231d8SStephan Herhut   }
1415d7231d8SStephan Herhut }
1425d7231d8SStephan Herhut 
14348fdc8d7SNagy Mostafa static llvm::CmpInst::Predicate getLLVMCmpPredicate(FCmpPredicate p) {
14448fdc8d7SNagy Mostafa   switch (p) {
14548fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::_false:
14648fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_FALSE;
14748fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::oeq:
14848fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_OEQ;
14948fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ogt:
15048fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_OGT;
15148fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::oge:
15248fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_OGE;
15348fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::olt:
15448fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_OLT;
15548fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ole:
15648fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_OLE;
15748fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::one:
15848fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_ONE;
15948fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ord:
16048fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_ORD;
16148fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ueq:
16248fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_UEQ;
16348fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ugt:
16448fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_UGT;
16548fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::uge:
16648fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_UGE;
16748fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ult:
16848fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_ULT;
16948fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::ule:
17048fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_ULE;
17148fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::une:
17248fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_UNE;
17348fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::uno:
17448fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_UNO;
17548fdc8d7SNagy Mostafa   case LLVM::FCmpPredicate::_true:
17648fdc8d7SNagy Mostafa     return llvm::CmpInst::Predicate::FCMP_TRUE;
17748fdc8d7SNagy Mostafa   default:
17848fdc8d7SNagy Mostafa     llvm_unreachable("incorrect comparison predicate");
17948fdc8d7SNagy Mostafa   }
18048fdc8d7SNagy Mostafa }
18148fdc8d7SNagy Mostafa 
1825d7231d8SStephan Herhut // A helper to look up remapped operands in the value remapping table.
1835d7231d8SStephan Herhut template <typename Range>
1845d7231d8SStephan Herhut SmallVector<llvm::Value *, 8> ModuleTranslation::lookupValues(Range &&values) {
1855d7231d8SStephan Herhut   SmallVector<llvm::Value *, 8> remapped;
1865d7231d8SStephan Herhut   remapped.reserve(llvm::size(values));
1875d7231d8SStephan Herhut   for (Value *v : values) {
1885d7231d8SStephan Herhut     remapped.push_back(valueMapping.lookup(v));
1895d7231d8SStephan Herhut   }
1905d7231d8SStephan Herhut   return remapped;
1915d7231d8SStephan Herhut }
1925d7231d8SStephan Herhut 
1935d7231d8SStephan Herhut // Given a single MLIR operation, create the corresponding LLVM IR operation
1945d7231d8SStephan Herhut // using the `builder`.  LLVM IR Builder does not have a generic interface so
1955d7231d8SStephan Herhut // this has to be a long chain of `if`s calling different functions with a
1965d7231d8SStephan Herhut // different number of arguments.
197baa1ec22SAlex Zinenko LogicalResult ModuleTranslation::convertOperation(Operation &opInst,
1985d7231d8SStephan Herhut                                                   llvm::IRBuilder<> &builder) {
1995d7231d8SStephan Herhut   auto extractPosition = [](ArrayAttr attr) {
2005d7231d8SStephan Herhut     SmallVector<unsigned, 4> position;
2015d7231d8SStephan Herhut     position.reserve(attr.size());
2025d7231d8SStephan Herhut     for (Attribute v : attr)
2035d7231d8SStephan Herhut       position.push_back(v.cast<IntegerAttr>().getValue().getZExtValue());
2045d7231d8SStephan Herhut     return position;
2055d7231d8SStephan Herhut   };
2065d7231d8SStephan Herhut 
2075d7231d8SStephan Herhut #include "mlir/LLVMIR/LLVMConversions.inc"
2085d7231d8SStephan Herhut 
2095d7231d8SStephan Herhut   // Emit function calls.  If the "callee" attribute is present, this is a
2105d7231d8SStephan Herhut   // direct function call and we also need to look up the remapped function
2115d7231d8SStephan Herhut   // itself.  Otherwise, this is an indirect call and the callee is the first
2125d7231d8SStephan Herhut   // operand, look it up as a normal value.  Return the llvm::Value representing
2135d7231d8SStephan Herhut   // the function result, which may be of llvm::VoidTy type.
2145d7231d8SStephan Herhut   auto convertCall = [this, &builder](Operation &op) -> llvm::Value * {
2155d7231d8SStephan Herhut     auto operands = lookupValues(op.getOperands());
2165d7231d8SStephan Herhut     ArrayRef<llvm::Value *> operandsRef(operands);
2179dbef0bfSRiver Riddle     if (auto attr = op.getAttrOfType<SymbolRefAttr>("callee")) {
2185d7231d8SStephan Herhut       return builder.CreateCall(functionMapping.lookup(attr.getValue()),
2195d7231d8SStephan Herhut                                 operandsRef);
2205d7231d8SStephan Herhut     } else {
2215d7231d8SStephan Herhut       return builder.CreateCall(operandsRef.front(), operandsRef.drop_front());
2225d7231d8SStephan Herhut     }
2235d7231d8SStephan Herhut   };
2245d7231d8SStephan Herhut 
2255d7231d8SStephan Herhut   // Emit calls.  If the called function has a result, remap the corresponding
2265d7231d8SStephan Herhut   // value.  Note that LLVM IR dialect CallOp has either 0 or 1 result.
227d5b60ee8SRiver Riddle   if (isa<LLVM::CallOp>(opInst)) {
2285d7231d8SStephan Herhut     llvm::Value *result = convertCall(opInst);
2295d7231d8SStephan Herhut     if (opInst.getNumResults() != 0) {
2305d7231d8SStephan Herhut       valueMapping[opInst.getResult(0)] = result;
231baa1ec22SAlex Zinenko       return success();
2325d7231d8SStephan Herhut     }
2335d7231d8SStephan Herhut     // Check that LLVM call returns void for 0-result functions.
234baa1ec22SAlex Zinenko     return success(result->getType()->isVoidTy());
2355d7231d8SStephan Herhut   }
2365d7231d8SStephan Herhut 
2375d7231d8SStephan Herhut   // Emit branches.  We need to look up the remapped blocks and ignore the block
2385d7231d8SStephan Herhut   // arguments that were transformed into PHI nodes.
239c5ecf991SRiver Riddle   if (auto brOp = dyn_cast<LLVM::BrOp>(opInst)) {
2405d7231d8SStephan Herhut     builder.CreateBr(blockMapping[brOp.getSuccessor(0)]);
241baa1ec22SAlex Zinenko     return success();
2425d7231d8SStephan Herhut   }
243c5ecf991SRiver Riddle   if (auto condbrOp = dyn_cast<LLVM::CondBrOp>(opInst)) {
2445d7231d8SStephan Herhut     builder.CreateCondBr(valueMapping.lookup(condbrOp.getOperand(0)),
2455d7231d8SStephan Herhut                          blockMapping[condbrOp.getSuccessor(0)],
2465d7231d8SStephan Herhut                          blockMapping[condbrOp.getSuccessor(1)]);
247baa1ec22SAlex Zinenko     return success();
2485d7231d8SStephan Herhut   }
2495d7231d8SStephan Herhut 
250*2dd38b09SAlex Zinenko   // Emit addressof.  We need to look up the global value referenced by the
251*2dd38b09SAlex Zinenko   // operation and store it in the MLIR-to-LLVM value mapping.  This does not
252*2dd38b09SAlex Zinenko   // emit any LLVM instruction.
253*2dd38b09SAlex Zinenko   if (auto addressOfOp = dyn_cast<LLVM::AddressOfOp>(opInst)) {
254*2dd38b09SAlex Zinenko     LLVM::GlobalOp global = addressOfOp.getGlobal();
255*2dd38b09SAlex Zinenko     // The verifier should not have allowed this.
256*2dd38b09SAlex Zinenko     assert(global && "referencing an undefined global");
257*2dd38b09SAlex Zinenko 
258*2dd38b09SAlex Zinenko     valueMapping[addressOfOp.getResult()] = globalsMapping.lookup(global);
259*2dd38b09SAlex Zinenko     return success();
260*2dd38b09SAlex Zinenko   }
261*2dd38b09SAlex Zinenko 
262baa1ec22SAlex Zinenko   return opInst.emitError("unsupported or non-LLVM operation: ")
263baa1ec22SAlex Zinenko          << opInst.getName();
2645d7231d8SStephan Herhut }
2655d7231d8SStephan Herhut 
2665d7231d8SStephan Herhut // Convert block to LLVM IR.  Unless `ignoreArguments` is set, emit PHI nodes
2675d7231d8SStephan Herhut // to define values corresponding to the MLIR block arguments.  These nodes
2685d7231d8SStephan Herhut // are not connected to the source basic blocks, which may not exist yet.
269baa1ec22SAlex Zinenko LogicalResult ModuleTranslation::convertBlock(Block &bb, bool ignoreArguments) {
2705d7231d8SStephan Herhut   llvm::IRBuilder<> builder(blockMapping[&bb]);
2715d7231d8SStephan Herhut 
2725d7231d8SStephan Herhut   // Before traversing operations, make block arguments available through
2735d7231d8SStephan Herhut   // value remapping and PHI nodes, but do not add incoming edges for the PHI
2745d7231d8SStephan Herhut   // nodes just yet: those values may be defined by this or following blocks.
2755d7231d8SStephan Herhut   // This step is omitted if "ignoreArguments" is set.  The arguments of the
2765d7231d8SStephan Herhut   // first block have been already made available through the remapping of
2775d7231d8SStephan Herhut   // LLVM function arguments.
2785d7231d8SStephan Herhut   if (!ignoreArguments) {
2795d7231d8SStephan Herhut     auto predecessors = bb.getPredecessors();
2805d7231d8SStephan Herhut     unsigned numPredecessors =
2815d7231d8SStephan Herhut         std::distance(predecessors.begin(), predecessors.end());
2825d7231d8SStephan Herhut     for (auto *arg : bb.getArguments()) {
2835d7231d8SStephan Herhut       auto wrappedType = arg->getType().dyn_cast<LLVM::LLVMType>();
284baa1ec22SAlex Zinenko       if (!wrappedType)
285baa1ec22SAlex Zinenko         return emitError(bb.front().getLoc(),
286a4c3a645SRiver Riddle                          "block argument does not have an LLVM type");
2875d7231d8SStephan Herhut       llvm::Type *type = wrappedType.getUnderlyingType();
2885d7231d8SStephan Herhut       llvm::PHINode *phi = builder.CreatePHI(type, numPredecessors);
2895d7231d8SStephan Herhut       valueMapping[arg] = phi;
2905d7231d8SStephan Herhut     }
2915d7231d8SStephan Herhut   }
2925d7231d8SStephan Herhut 
2935d7231d8SStephan Herhut   // Traverse operations.
2945d7231d8SStephan Herhut   for (auto &op : bb) {
295baa1ec22SAlex Zinenko     if (failed(convertOperation(op, builder)))
296baa1ec22SAlex Zinenko       return failure();
2975d7231d8SStephan Herhut   }
2985d7231d8SStephan Herhut 
299baa1ec22SAlex Zinenko   return success();
3005d7231d8SStephan Herhut }
3015d7231d8SStephan Herhut 
302b9ff2dd8SAlex Zinenko // Create named global variables that correspond to llvm.global definitions.
303b9ff2dd8SAlex Zinenko void ModuleTranslation::convertGlobals() {
304b9ff2dd8SAlex Zinenko   for (auto op : mlirModule.getOps<LLVM::GlobalOp>()) {
305*2dd38b09SAlex Zinenko     llvm::Constant *cst;
306*2dd38b09SAlex Zinenko     llvm::Type *type;
30768451df2SAlex Zinenko     // String attributes are treated separately because they cannot appear as
30868451df2SAlex Zinenko     // in-function constants and are thus not supported by getLLVMConstant.
30968451df2SAlex Zinenko     if (auto strAttr = op.value().dyn_cast<StringAttr>()) {
310*2dd38b09SAlex Zinenko       cst = llvm::ConstantDataArray::getString(
31168451df2SAlex Zinenko           llvmModule->getContext(), strAttr.getValue(), /*AddNull=*/false);
312*2dd38b09SAlex Zinenko       type = cst->getType();
313*2dd38b09SAlex Zinenko     } else {
314*2dd38b09SAlex Zinenko       type = op.getType().getUnderlyingType();
315*2dd38b09SAlex Zinenko       cst = getLLVMConstant(type, op.value(), op.getLoc());
31668451df2SAlex Zinenko     }
31768451df2SAlex Zinenko 
318*2dd38b09SAlex Zinenko     auto *var = new llvm::GlobalVariable(*llvmModule, type, op.constant(),
319*2dd38b09SAlex Zinenko                                          llvm::GlobalValue::InternalLinkage,
320*2dd38b09SAlex Zinenko                                          cst, op.sym_name());
321*2dd38b09SAlex Zinenko     globalsMapping.try_emplace(op, var);
322b9ff2dd8SAlex Zinenko   }
323b9ff2dd8SAlex Zinenko }
324b9ff2dd8SAlex Zinenko 
3255d7231d8SStephan Herhut // Get the SSA value passed to the current block from the terminator operation
3265d7231d8SStephan Herhut // of its predecessor.
3275d7231d8SStephan Herhut static Value *getPHISourceValue(Block *current, Block *pred,
3285d7231d8SStephan Herhut                                 unsigned numArguments, unsigned index) {
3295d7231d8SStephan Herhut   auto &terminator = *pred->getTerminator();
330d5b60ee8SRiver Riddle   if (isa<LLVM::BrOp>(terminator)) {
3315d7231d8SStephan Herhut     return terminator.getOperand(index);
3325d7231d8SStephan Herhut   }
3335d7231d8SStephan Herhut 
3345d7231d8SStephan Herhut   // For conditional branches, we need to check if the current block is reached
3355d7231d8SStephan Herhut   // through the "true" or the "false" branch and take the relevant operands.
336c5ecf991SRiver Riddle   auto condBranchOp = dyn_cast<LLVM::CondBrOp>(terminator);
3375d7231d8SStephan Herhut   assert(condBranchOp &&
3385d7231d8SStephan Herhut          "only branch operations can be terminators of a block that "
3395d7231d8SStephan Herhut          "has successors");
3405d7231d8SStephan Herhut   assert((condBranchOp.getSuccessor(0) != condBranchOp.getSuccessor(1)) &&
3415d7231d8SStephan Herhut          "successors with arguments in LLVM conditional branches must be "
3425d7231d8SStephan Herhut          "different blocks");
3435d7231d8SStephan Herhut 
3445d7231d8SStephan Herhut   return condBranchOp.getSuccessor(0) == current
3455d7231d8SStephan Herhut              ? terminator.getSuccessorOperand(0, index)
3465d7231d8SStephan Herhut              : terminator.getSuccessorOperand(1, index);
3475d7231d8SStephan Herhut }
3485d7231d8SStephan Herhut 
3498c443678SRiver Riddle void ModuleTranslation::connectPHINodes(FuncOp func) {
3505d7231d8SStephan Herhut   // Skip the first block, it cannot be branched to and its arguments correspond
3515d7231d8SStephan Herhut   // to the arguments of the LLVM function.
3525d7231d8SStephan Herhut   for (auto it = std::next(func.begin()), eit = func.end(); it != eit; ++it) {
3535d7231d8SStephan Herhut     Block *bb = &*it;
3545d7231d8SStephan Herhut     llvm::BasicBlock *llvmBB = blockMapping.lookup(bb);
3555d7231d8SStephan Herhut     auto phis = llvmBB->phis();
3565d7231d8SStephan Herhut     auto numArguments = bb->getNumArguments();
3575d7231d8SStephan Herhut     assert(numArguments == std::distance(phis.begin(), phis.end()));
3585d7231d8SStephan Herhut     for (auto &numberedPhiNode : llvm::enumerate(phis)) {
3595d7231d8SStephan Herhut       auto &phiNode = numberedPhiNode.value();
3605d7231d8SStephan Herhut       unsigned index = numberedPhiNode.index();
3615d7231d8SStephan Herhut       for (auto *pred : bb->getPredecessors()) {
3625d7231d8SStephan Herhut         phiNode.addIncoming(valueMapping.lookup(getPHISourceValue(
3635d7231d8SStephan Herhut                                 bb, pred, numArguments, index)),
3645d7231d8SStephan Herhut                             blockMapping.lookup(pred));
3655d7231d8SStephan Herhut       }
3665d7231d8SStephan Herhut     }
3675d7231d8SStephan Herhut   }
3685d7231d8SStephan Herhut }
3695d7231d8SStephan Herhut 
3705d7231d8SStephan Herhut // TODO(mlir-team): implement an iterative version
3715d7231d8SStephan Herhut static void topologicalSortImpl(llvm::SetVector<Block *> &blocks, Block *b) {
3725d7231d8SStephan Herhut   blocks.insert(b);
3735d7231d8SStephan Herhut   for (Block *bb : b->getSuccessors()) {
3745d7231d8SStephan Herhut     if (blocks.count(bb) == 0)
3755d7231d8SStephan Herhut       topologicalSortImpl(blocks, bb);
3765d7231d8SStephan Herhut   }
3775d7231d8SStephan Herhut }
3785d7231d8SStephan Herhut 
3795d7231d8SStephan Herhut // Sort function blocks topologically.
3808c443678SRiver Riddle static llvm::SetVector<Block *> topologicalSort(FuncOp f) {
3815d7231d8SStephan Herhut   // For each blocks that has not been visited yet (i.e. that has no
3825d7231d8SStephan Herhut   // predecessors), add it to the list and traverse its successors in DFS
3835d7231d8SStephan Herhut   // preorder.
3845d7231d8SStephan Herhut   llvm::SetVector<Block *> blocks;
3855d7231d8SStephan Herhut   for (Block &b : f.getBlocks()) {
3865d7231d8SStephan Herhut     if (blocks.count(&b) == 0)
3875d7231d8SStephan Herhut       topologicalSortImpl(blocks, &b);
3885d7231d8SStephan Herhut   }
3895d7231d8SStephan Herhut   assert(blocks.size() == f.getBlocks().size() && "some blocks are not sorted");
3905d7231d8SStephan Herhut 
3915d7231d8SStephan Herhut   return blocks;
3925d7231d8SStephan Herhut }
3935d7231d8SStephan Herhut 
394baa1ec22SAlex Zinenko LogicalResult ModuleTranslation::convertOneFunction(FuncOp func) {
3955d7231d8SStephan Herhut   // Clear the block and value mappings, they are only relevant within one
3965d7231d8SStephan Herhut   // function.
3975d7231d8SStephan Herhut   blockMapping.clear();
3985d7231d8SStephan Herhut   valueMapping.clear();
399c33862b0SRiver Riddle   llvm::Function *llvmFunc = functionMapping.lookup(func.getName());
4005d7231d8SStephan Herhut   // Add function arguments to the value remapping table.
4015d7231d8SStephan Herhut   // If there was noalias info then we decorate each argument accordingly.
4025d7231d8SStephan Herhut   unsigned int argIdx = 0;
4035d7231d8SStephan Herhut   for (const auto &kvp : llvm::zip(func.getArguments(), llvmFunc->args())) {
4045d7231d8SStephan Herhut     llvm::Argument &llvmArg = std::get<1>(kvp);
4055d7231d8SStephan Herhut     BlockArgument *mlirArg = std::get<0>(kvp);
4065d7231d8SStephan Herhut 
4075d7231d8SStephan Herhut     if (auto attr = func.getArgAttrOfType<BoolAttr>(argIdx, "llvm.noalias")) {
4085d7231d8SStephan Herhut       // NB: Attribute already verified to be boolean, so check if we can indeed
4095d7231d8SStephan Herhut       // attach the attribute to this argument, based on its type.
4105d7231d8SStephan Herhut       auto argTy = mlirArg->getType().dyn_cast<LLVM::LLVMType>();
411baa1ec22SAlex Zinenko       if (!argTy.getUnderlyingType()->isPointerTy())
412baa1ec22SAlex Zinenko         return func.emitError(
4135d7231d8SStephan Herhut             "llvm.noalias attribute attached to LLVM non-pointer argument");
4145d7231d8SStephan Herhut       if (attr.getValue())
4155d7231d8SStephan Herhut         llvmArg.addAttr(llvm::Attribute::AttrKind::NoAlias);
4165d7231d8SStephan Herhut     }
4175d7231d8SStephan Herhut     valueMapping[mlirArg] = &llvmArg;
4185d7231d8SStephan Herhut     argIdx++;
4195d7231d8SStephan Herhut   }
4205d7231d8SStephan Herhut 
4215d7231d8SStephan Herhut   // First, create all blocks so we can jump to them.
4225d7231d8SStephan Herhut   llvm::LLVMContext &llvmContext = llvmFunc->getContext();
4235d7231d8SStephan Herhut   for (auto &bb : func) {
4245d7231d8SStephan Herhut     auto *llvmBB = llvm::BasicBlock::Create(llvmContext);
4255d7231d8SStephan Herhut     llvmBB->insertInto(llvmFunc);
4265d7231d8SStephan Herhut     blockMapping[&bb] = llvmBB;
4275d7231d8SStephan Herhut   }
4285d7231d8SStephan Herhut 
4295d7231d8SStephan Herhut   // Then, convert blocks one by one in topological order to ensure defs are
4305d7231d8SStephan Herhut   // converted before uses.
4315d7231d8SStephan Herhut   auto blocks = topologicalSort(func);
4325d7231d8SStephan Herhut   for (auto indexedBB : llvm::enumerate(blocks)) {
4335d7231d8SStephan Herhut     auto *bb = indexedBB.value();
434baa1ec22SAlex Zinenko     if (failed(convertBlock(*bb, /*ignoreArguments=*/indexedBB.index() == 0)))
435baa1ec22SAlex Zinenko       return failure();
4365d7231d8SStephan Herhut   }
4375d7231d8SStephan Herhut 
4385d7231d8SStephan Herhut   // Finally, after all blocks have been traversed and values mapped, connect
4395d7231d8SStephan Herhut   // the PHI nodes to the results of preceding blocks.
4405d7231d8SStephan Herhut   connectPHINodes(func);
441baa1ec22SAlex Zinenko   return success();
4425d7231d8SStephan Herhut }
4435d7231d8SStephan Herhut 
444baa1ec22SAlex Zinenko LogicalResult ModuleTranslation::convertFunctions() {
4455d7231d8SStephan Herhut   // Declare all functions first because there may be function calls that form a
4465d7231d8SStephan Herhut   // call graph with cycles.
4478c443678SRiver Riddle   for (FuncOp function : mlirModule.getOps<FuncOp>()) {
4485d7231d8SStephan Herhut     mlir::BoolAttr isVarArgsAttr =
4495d7231d8SStephan Herhut         function.getAttrOfType<BoolAttr>("std.varargs");
4505d7231d8SStephan Herhut     bool isVarArgs = isVarArgsAttr && isVarArgsAttr.getValue();
4515d7231d8SStephan Herhut     llvm::FunctionType *functionType =
4525d7231d8SStephan Herhut         convertFunctionType(llvmModule->getContext(), function.getType(),
4535d7231d8SStephan Herhut                             function.getLoc(), isVarArgs);
4545d7231d8SStephan Herhut     if (!functionType)
455baa1ec22SAlex Zinenko       return failure();
4565d7231d8SStephan Herhut     llvm::FunctionCallee llvmFuncCst =
4575d7231d8SStephan Herhut         llvmModule->getOrInsertFunction(function.getName(), functionType);
4585d7231d8SStephan Herhut     assert(isa<llvm::Function>(llvmFuncCst.getCallee()));
459c33862b0SRiver Riddle     functionMapping[function.getName()] =
4605d7231d8SStephan Herhut         cast<llvm::Function>(llvmFuncCst.getCallee());
4615d7231d8SStephan Herhut   }
4625d7231d8SStephan Herhut 
4635d7231d8SStephan Herhut   // Convert functions.
4648c443678SRiver Riddle   for (FuncOp function : mlirModule.getOps<FuncOp>()) {
4655d7231d8SStephan Herhut     // Ignore external functions.
4665d7231d8SStephan Herhut     if (function.isExternal())
4675d7231d8SStephan Herhut       continue;
4685d7231d8SStephan Herhut 
469baa1ec22SAlex Zinenko     if (failed(convertOneFunction(function)))
470baa1ec22SAlex Zinenko       return failure();
4715d7231d8SStephan Herhut   }
4725d7231d8SStephan Herhut 
473baa1ec22SAlex Zinenko   return success();
4745d7231d8SStephan Herhut }
4755d7231d8SStephan Herhut 
476fec20e59SRiver Riddle std::unique_ptr<llvm::Module> ModuleTranslation::prepareLLVMModule(ModuleOp m) {
477bc5c7378SRiver Riddle   auto *dialect = m.getContext()->getRegisteredDialect<LLVM::LLVMDialect>();
4785d7231d8SStephan Herhut   assert(dialect && "LLVM dialect must be registered");
4795d7231d8SStephan Herhut 
480bc5c7378SRiver Riddle   auto llvmModule = llvm::CloneModule(dialect->getLLVMModule());
4815d7231d8SStephan Herhut   if (!llvmModule)
4825d7231d8SStephan Herhut     return nullptr;
4835d7231d8SStephan Herhut 
4845d7231d8SStephan Herhut   llvm::LLVMContext &llvmContext = llvmModule->getContext();
4855d7231d8SStephan Herhut   llvm::IRBuilder<> builder(llvmContext);
4865d7231d8SStephan Herhut 
4875d7231d8SStephan Herhut   // Inject declarations for `malloc` and `free` functions that can be used in
4885d7231d8SStephan Herhut   // memref allocation/deallocation coming from standard ops lowering.
4895d7231d8SStephan Herhut   llvmModule->getOrInsertFunction("malloc", builder.getInt8PtrTy(),
4905d7231d8SStephan Herhut                                   builder.getInt64Ty());
4915d7231d8SStephan Herhut   llvmModule->getOrInsertFunction("free", builder.getVoidTy(),
4925d7231d8SStephan Herhut                                   builder.getInt8PtrTy());
4935d7231d8SStephan Herhut 
4945d7231d8SStephan Herhut   return llvmModule;
4955d7231d8SStephan Herhut }
4965d7231d8SStephan Herhut 
4975d7231d8SStephan Herhut } // namespace LLVM
4985d7231d8SStephan Herhut } // namespace mlir
499