14 #ifndef MLIR_TARGET_LLVMIR_MODULEIMPORT_H
15 #define MLIR_TARGET_LLVMIR_MODULEIMPORT_H
26 class DbgVariableIntrinsic;
36 class DataLayoutImporter;
38 class LoopAnnotationImporter;
49 ModuleImport(ModuleOp mlirModule, std::unique_ptr<llvm::Module> llvmModule,
50 bool emitExpensiveWarnings,
bool importEmptyDICompositeTypes);
81 assert(
mlir ==
nullptr &&
82 "attempting to map a value that is already mapped");
102 assert(inst->getType()->isVoidTy() &&
103 "attempting to map an operation that returns a result");
104 assert(
mlir ==
nullptr &&
105 "attempting to map an operation that is already mapped");
114 return value.getDefiningOp();
115 return noResultOpMapping.lookup(inst);
120 auto result = blockMapping.try_emplace(
llvm,
mlir);
122 assert(result.second &&
"attempting to map a block that is already mapped");
127 return blockMapping.lookup(block);
167 FailureOr<SmallVector<AliasScopeAttr>>
211 return tbaaMapping.lookup(node);
217 FailureOr<SmallVector<AccessGroupAttr>>
228 FailureOr<SmallVector<AliasScopeAttr>>
249 void clearRegionState() {
250 valueMapping.clear();
251 noResultOpMapping.clear();
252 blockMapping.clear();
253 debugIntrinsics.clear();
256 void setConstantInsertionPointToStart(
Block *block) {
257 constantInsertionBlock = block;
258 constantInsertionOp =
nullptr;
263 LogicalResult convertGlobal(llvm::GlobalVariable *globalVar);
265 LogicalResult convertGlobalCtorsAndDtors(llvm::GlobalVariable *globalVar);
267 FlatSymbolRefAttr getPersonalityAsAttr(llvm::Function *func);
269 LogicalResult processBasicBlock(llvm::BasicBlock *bb, Block *block);
272 LogicalResult processDebugIntrinsics();
274 LogicalResult processDebugIntrinsic(llvm::DbgVariableIntrinsic *dbgIntr,
275 DominanceInfo &domInfo);
278 LogicalResult convertIntrinsic(llvm::CallInst *inst);
281 LogicalResult convertInstruction(llvm::Instruction *inst);
286 void setNonDebugMetadataAttrs(llvm::Instruction *inst, Operation *op);
290 LogicalResult processInstruction(llvm::Instruction *inst);
295 LogicalResult convertBranchArgs(llvm::Instruction *branch,
296 llvm::BasicBlock *target,
297 SmallVectorImpl<Value> &blockArguments);
301 LogicalResult convertCallTypeAndOperands(llvm::CallBase *callInst,
302 SmallVectorImpl<Type> &types,
303 SmallVectorImpl<Value> &operands);
306 void convertParameterAttributes(llvm::Function *func, LLVMFuncOp funcOp,
310 DictionaryAttr convertParameterAttribute(llvm::AttributeSet llvmParamAttrs,
315 Type getBuiltinTypeForAttr(Type type);
319 Attribute getConstantAsAttr(llvm::Constant *constant);
322 SetVector<llvm::Constant *> getConstantsToConvert(llvm::Constant *constant);
327 FailureOr<Value> convertConstant(llvm::Constant *constant);
333 FailureOr<Value> convertConstantExpr(llvm::Constant *constant);
337 ComdatOp getGlobalComdatOp();
343 LogicalResult processTBAAMetadata(
const llvm::MDNode *node);
348 LogicalResult processAccessGroupMetadata(
const llvm::MDNode *node);
353 LogicalResult processAliasScopeMetadata(
const llvm::MDNode *node);
357 void processComdat(
const llvm::Comdat *comdat);
362 Block *constantInsertionBlock =
nullptr;
364 Operation *constantInsertionOp =
nullptr;
366 Operation *globalInsertionOp =
nullptr;
368 ComdatOp globalComdatOp =
nullptr;
370 MLIRContext *context;
374 std::unique_ptr<llvm::Module> llvmModule;
376 DenseMap<llvm::GlobalVariable *, FlatSymbolRefAttr> namelessGlobals;
378 unsigned namelessGlobalId = 0;
382 LLVMImportInterface iface;
385 DenseMap<llvm::BasicBlock *, Block *> blockMapping;
387 DenseMap<llvm::Value *, Value> valueMapping;
391 DenseMap<llvm::Instruction *, Operation *> noResultOpMapping;
394 SetVector<llvm::Instruction *> debugIntrinsics;
397 DenseMap<const llvm::MDNode *, Attribute> aliasScopeMapping;
400 DenseMap<const llvm::MDNode *, Attribute> tbaaMapping;
403 DenseMap<const llvm::Comdat *, SymbolRefAttr> comdatMapping;
405 LLVM::TypeFromLLVMIRTranslator typeTranslator;
407 std::unique_ptr<detail::DebugImporter> debugImporter;
409 std::unique_ptr<detail::LoopAnnotationImporter> loopAnnotationImporter;
414 bool emitExpensiveWarnings;
Attributes are known-constant values of operations.
Block represents an ordered list of Operations.
LogicalResult initializeImport(llvm::LLVMContext &llvmContext)
Queries all registered dialect interfaces for the supported LLVM IR intrinsic and metadata kinds and ...
Module import implementation class that provides methods to import globals and functions from an LLVM...
Location translateLoc(llvm::DILocation *loc)
Translates the debug location.
LogicalResult convertComdats()
Converts all comdat selectors of the LLVM module to MLIR comdat operations.
LogicalResult convertFunctions()
Converts all functions of the LLVM module to MLIR functions.
FailureOr< SmallVector< Value > > convertValues(ArrayRef< llvm::Value * > values)
Converts a range of LLVM values to a range of MLIR values using the convertValue method,...
Attribute lookupTBAAAttr(const llvm::MDNode *node) const
Returns the MLIR attribute mapped to the given LLVM TBAA metadata node.
DILocalVariableAttr matchLocalVariableAttr(llvm::Value *value)
Converts value to a local variable attribute.
LogicalResult convertLinkerOptionsMetadata()
Converts !llvm.linker.options metadata to the llvm.linker.options LLVM dialect operation.
void mapBlock(llvm::BasicBlock *llvm, Block *mlir)
Stores the mapping between an LLVM block and its MLIR counterpart.
void processFunctionAttributes(llvm::Function *func, LLVMFuncOp funcOp)
Converts function attributes of LLVM Function func into LLVM dialect attributes of LLVMFuncOp funcOp.
LogicalResult convertMetadata()
Converts all LLVM metadata nodes that translate to attributes such as alias analysis or access group ...
LogicalResult convertIntrinsicArguments(ArrayRef< llvm::Value * > values, ArrayRef< unsigned > immArgPositions, ArrayRef< StringLiteral > immArgAttrNames, SmallVectorImpl< Value > &valuesOut, SmallVectorImpl< NamedAttribute > &attrsOut)
Converts the LLVM values for an intrinsic to mixed MLIR values and attributes for LLVM_IntrOpBase.
Value & mapValue(llvm::Value *value)
Provides write-once access to store the MLIR value corresponding to the given LLVM value.
FailureOr< Value > convertValue(llvm::Value *value)
Converts an LLVM value to an MLIR value, or returns failure if the conversion fails.
LogicalResult initializeImportInterface()
Calls the LLVMImportInterface initialization that queries the registered dialect interfaces for the s...
void addDebugIntrinsic(llvm::CallInst *intrinsic)
Adds a debug intrinsics to the list of intrinsics that should be converted after the function convers...
LogicalResult convertIdentMetadata()
Converts !llvm.ident metadata to the llvm.ident LLVM ModuleOp attribute.
Block * lookupBlock(llvm::BasicBlock *block) const
Returns the MLIR block mapped to the given LLVM block.
FailureOr< Value > convertMetadataValue(llvm::Value *value)
Converts an LLVM metadata value to an MLIR value, or returns failure if the conversion fails.
FailureOr< SmallVector< AliasScopeAttr > > lookupAliasScopeAttrs(const llvm::MDNode *node) const
Returns the alias scope attributes that map to the alias scope nodes starting from the metadata node.
void mapNoResultOp(llvm::Instruction *llvm, Operation *mlir)
Stores a mapping between an LLVM instruction and the imported MLIR operation if the operation returns...
Type convertType(llvm::Type *type)
Converts the type from LLVM to MLIR LLVM dialect.
Operation * lookupOperation(llvm::Instruction *inst)
Returns the MLIR operation mapped to the given LLVM instruction.
DILabelAttr matchLabelAttr(llvm::Value *value)
Converts value to a label attribute. Asserts if the matching fails.
FloatAttr matchFloatAttr(llvm::Value *value)
Converts value to a float attribute. Asserts if the matching fails.
LoopAnnotationAttr translateLoopAnnotationAttr(const llvm::MDNode *node, Location loc) const
Returns the loop annotation attribute that corresponds to the given LLVM loop metadata node.
void setFastmathFlagsAttr(llvm::Instruction *inst, Operation *op) const
Sets the fastmath flags attribute for the imported operation op given the original instruction inst.
FailureOr< SmallVector< AliasScopeAttr > > matchAliasScopeAttrs(llvm::Value *value)
Converts value to an array of alias scopes or returns failure if the conversion fails.
Value lookupValue(llvm::Value *value)
Returns the MLIR value mapped to the given LLVM value.
LogicalResult processFunction(llvm::Function *func)
Imports func into the current module.
RoundingModeAttr matchRoundingModeAttr(llvm::Value *value)
Converts value to a rounding mode attribute.
Operation *& mapNoResultOp(llvm::Instruction *inst)
Provides write-once access to store the MLIR operation corresponding to the given LLVM instruction if...
void mapValue(llvm::Value *llvm, Value mlir)
Stores the mapping between an LLVM value and its MLIR counterpart.
ModuleImport(ModuleOp mlirModule, std::unique_ptr< llvm::Module > llvmModule, bool emitExpensiveWarnings, bool importEmptyDICompositeTypes)
FailureOr< SmallVector< AccessGroupAttr > > lookupAccessGroupAttrs(const llvm::MDNode *node) const
Returns the access group attributes that map to the access group nodes starting from the access group...
LogicalResult convertGlobals()
Converts all global variables of the LLVM module to MLIR global variables.
void setIntegerOverflowFlags(llvm::Instruction *inst, Operation *op) const
Sets the integer overflow flags (nsw/nuw) attribute for the imported operation op given the original ...
FPExceptionBehaviorAttr matchFPExceptionBehaviorAttr(llvm::Value *value)
Converts value to a FP exception behavior attribute.
LogicalResult convertDataLayout()
Converts the data layout of the LLVM module to an MLIR data layout specification.
IntegerAttr matchIntegerAttr(llvm::Value *value)
Converts value to an integer attribute. Asserts if the matching fails.
Type translateType(llvm::Type *type)
Translates the given LLVM IR type to the MLIR LLVM dialect.
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
Operation is the basic unit of execution within MLIR.
Instances of the Type class are uniqued, have an immutable identifier and an optional mutable compone...
This class represents an instance of an SSA value in the MLIR system, representing a computable value...
The OpAsmOpInterface, see OpAsmInterface.td for more details.
Include the generated interface declarations.