MLIR
18.0.0git
|
Namespaces | |
detail | |
Classes | |
class | DINodeAttr |
This class represents the base attribute for all debug info attributes. More... | |
class | DIScopeAttr |
This class represents a LLVM attribute that describes a debug info scope. More... | |
class | DILocalScopeAttr |
This class represents a LLVM attribute that describes a local debug info scope. More... | |
class | DITypeAttr |
This class represents a LLVM attribute that describes a debug info type. More... | |
class | TBAANodeAttr |
Base class for LLVM attributes participating in the TBAA graph. More... | |
class | GEPIndicesAdaptor |
Class used for convenient access and iteration over GEP indices. More... | |
class | GEPArg |
Class used for building a 'llvm.getelementptr'. More... | |
class | LLVMStructType |
LLVM dialect structure type representing a collection of different-typed elements manipulated together. More... | |
class | AddFieldGetterToStructDirectUse |
Transforms uses of pointers to a whole struct to uses of pointers to the first element of a struct. More... | |
class | CanonicalizeAlignedGep |
Canonicalizes GEPs of which the base type and the pointer's type hint do not match. More... | |
class | SplitStores |
Splits stores which write into multiple adjacent elements of an aggregate through a pointer. More... | |
class | BitcastStores |
Transforms type-inconsistent stores, aka stores where the type hint of the address contradicts the value stored, by inserting a bitcast if possible. More... | |
class | SplitGEP |
Splits GEPs with more than two indices into multiple GEPs with exactly two indices. More... | |
class | ModuleToObject |
Utility base class for transforming operations into binary objects, by default it returns the serialized LLVM bitcode for the module. More... | |
class | ModuleImport |
Module import implementation class that provides methods to import globals and functions from an LLVM module into an MLIR module. More... | |
class | ModuleTranslation |
Implementation class for module translation. More... | |
class | TypeFromLLVMIRTranslator |
Utility class to translate LLVM IR types to the MLIR LLVM dialect. More... | |
class | TypeToLLVMIRTranslator |
Utility class to translate MLIR LLVM dialect types to LLVM IR. More... | |
Typedefs | |
using | GEPConstantIndex = llvm::PointerEmbeddedInt< int32_t, kGEPConstantBitWidth > |
Wrapper around a int32_t for use in a PointerUnion. More... | |
Enumerations | |
enum class | PtrDLEntryPos { Size = 0 , Abi = 1 , Preferred = 2 , Index = 3 } |
The positions of different values in the data layout entry for pointers. More... | |
Functions | |
LLVM::LLVMFuncOp | lookupOrCreatePrintI64Fn (ModuleOp moduleOp) |
Helper functions to lookup or create the declaration for commonly used external C function calls. More... | |
LLVM::LLVMFuncOp | lookupOrCreatePrintU64Fn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintF16Fn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintBF16Fn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintF32Fn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintF64Fn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintStrFn (ModuleOp moduleOp, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreatePrintOpenFn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintCloseFn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintCommaFn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreatePrintNewlineFn (ModuleOp moduleOp) |
LLVM::LLVMFuncOp | lookupOrCreateMallocFn (ModuleOp moduleOp, Type indexType, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreateAlignedAllocFn (ModuleOp moduleOp, Type indexType, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreateFreeFn (ModuleOp moduleOp, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreateGenericAllocFn (ModuleOp moduleOp, Type indexType, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreateGenericAlignedAllocFn (ModuleOp moduleOp, Type indexType, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreateGenericFreeFn (ModuleOp moduleOp, bool opaquePointers) |
LLVM::LLVMFuncOp | lookupOrCreateMemRefCopyFn (ModuleOp moduleOp, Type indexType, Type unrankedDescriptorType) |
LLVM::LLVMFuncOp | lookupOrCreateFn (ModuleOp moduleOp, StringRef name, ArrayRef< Type > paramTypes={}, Type resultType={}, bool isVarArg=false) |
Create a FuncOp with signature resultType (paramTypes )and name name`. More... | |
Value | createGlobalString (Location loc, OpBuilder &builder, StringRef name, StringRef value, Linkage linkage, bool useOpaquePointers) |
Create an LLVM global containing the string "value" at the module containing surrounding the insertion point of builder. More... | |
bool | satisfiesLLVMModule (Operation *op) |
LLVM requires some operations to be inside of a Module operation. More... | |
template<typename IntT = int64_t> | |
SmallVector< IntT > | convertArrayToIndices (ArrayRef< Attribute > attrs) |
Convert an array of integer attributes to a vector of integers that can be used as indices in LLVM operations. More... | |
template<typename IntT = int64_t> | |
SmallVector< IntT > | convertArrayToIndices (ArrayAttr attrs) |
Convert an ArrayAttr of integer attributes to a vector of integers that can be used as indices in LLVM operations. More... | |
DEFINE_TRIVIAL_LLVM_TYPE (LLVMVoidType) | |
DEFINE_TRIVIAL_LLVM_TYPE (LLVMPPCFP128Type) | |
DEFINE_TRIVIAL_LLVM_TYPE (LLVMX86MMXType) | |
DEFINE_TRIVIAL_LLVM_TYPE (LLVMTokenType) | |
DEFINE_TRIVIAL_LLVM_TYPE (LLVMLabelType) | |
DEFINE_TRIVIAL_LLVM_TYPE (LLVMMetadataType) | |
ParseResult | parsePrettyLLVMType (AsmParser &p, Type &type) |
Parse any MLIR type or a concise syntax for LLVM types. More... | |
void | printPrettyLLVMType (AsmPrinter &p, Type type) |
Print any MLIR type or a concise syntax for LLVM types. More... | |
bool | isCompatibleType (Type type) |
Returns true if the given type is compatible with the LLVM dialect. More... | |
bool | isCompatibleOuterType (Type type) |
Returns true if the given outer type is compatible with the LLVM dialect without checking its potential nested types such as struct elements. More... | |
bool | isCompatibleFloatingPointType (Type type) |
Returns true if the given type is a floating-point type compatible with the LLVM dialect. More... | |
bool | isCompatibleVectorType (Type type) |
Returns true if the given type is a vector type compatible with the LLVM dialect. More... | |
Type | getVectorElementType (Type type) |
Returns the element type of any vector type compatible with the LLVM dialect. More... | |
llvm::ElementCount | getVectorNumElements (Type type) |
Returns the element count of any LLVM-compatible vector type. More... | |
bool | isScalableVectorType (Type vectorType) |
Returns whether a vector type is scalable or not. More... | |
Type | getVectorType (Type elementType, unsigned numElements, bool isScalable=false) |
Creates an LLVM dialect-compatible vector type with the given element type and length. More... | |
Type | getVectorType (Type elementType, const llvm::ElementCount &numElements) |
Creates an LLVM dialect-compatible vector type with the given element type and length. More... | |
Type | getFixedVectorType (Type elementType, unsigned numElements) |
Creates an LLVM dialect-compatible type with the given element type and length. More... | |
Type | getScalableVectorType (Type elementType, unsigned numElements) |
Creates an LLVM dialect-compatible type with the given element type and length. More... | |
llvm::TypeSize | getPrimitiveTypeSizeInBits (Type type) |
Returns the size of the given primitive LLVM dialect-compatible type (including vectors) in bits, for example, the size of i16 is 16 and the size of vector<4xi16> is 64. More... | |
std::optional< unsigned > | extractPointerSpecValue (Attribute attr, PtrDLEntryPos pos) |
Returns the value that corresponds to named position pos from the data layout entry attr assuming it's a dense integer elements attribute. More... | |
void | ensureDistinctSuccessors (Operation *op) |
Make argument-taking successors of each block distinct. More... | |
std::unique_ptr< Pass > | createLegalizeForExportPass () |
Creates a pass that legalizes the LLVM dialect operations so that they can be translated to LLVM IR. More... | |
std::unique_ptr< Pass > | createDIScopeForLLVMFuncOpPass () |
Create a pass to add DIScope to LLVMFuncOp that are missing it. More... | |
std::unique_ptr< Pass > | createRequestCWrappersPass () |
std::unique_ptr< Pass > | createTypeConsistencyPass () |
Creates a pass that adjusts operations operating on pointers so they interpret pointee types as consistently as possible. More... | |
llvm::Constant * | createSourceLocStrFromLocation (Location loc, llvm::OpenMPIRBuilder &builder, StringRef name, uint32_t &strLen) |
Create a constant string location from the MLIR Location information. More... | |
llvm::Constant * | createMappingInformation (Location loc, llvm::OpenMPIRBuilder &builder) |
Create a constant string representing the mapping information extracted from the MLIR location information. More... | |
Variables | |
constexpr int | kGEPConstantBitWidth = 29 |
Bit-width of a 'GEPConstantIndex' within GEPArg. More... | |
using mlir::LLVM::GEPConstantIndex = typedef llvm::PointerEmbeddedInt<int32_t, kGEPConstantBitWidth> |
Wrapper around a int32_t for use in a PointerUnion.
Definition at line 68 of file LLVMDialect.h.
|
strong |
The positions of different values in the data layout entry for pointers.
Enumerator | |
---|---|
Size | |
Abi | |
Preferred | |
Index |
Definition at line 284 of file LLVMTypes.h.
SmallVector<IntT> mlir::LLVM::convertArrayToIndices | ( | ArrayAttr | attrs | ) |
Convert an ArrayAttr
of integer attributes to a vector of integers that can be used as indices in LLVM operations.
Definition at line 233 of file LLVMDialect.h.
SmallVector<IntT> mlir::LLVM::convertArrayToIndices | ( | ArrayRef< Attribute > | attrs | ) |
Convert an array of integer attributes to a vector of integers that can be used as indices in LLVM operations.
Definition at line 222 of file LLVMDialect.h.
std::unique_ptr< Pass > mlir::LLVM::createDIScopeForLLVMFuncOpPass | ( | ) |
Create a pass to add DIScope to LLVMFuncOp that are missing it.
Definition at line 100 of file DIScopeForLLVMFuncOp.cpp.
Value mlir::LLVM::createGlobalString | ( | Location | loc, |
OpBuilder & | builder, | ||
StringRef | name, | ||
StringRef | value, | ||
LLVM::Linkage | linkage, | ||
bool | useOpaquePointers | ||
) |
Create an LLVM global containing the string "value" at the module containing surrounding the insertion point of builder.
Obtain the address of that global and use it to compute the address of the first character in the string (operations inserted at the builder insertion point).
Definition at line 3360 of file LLVMDialect.cpp.
References mlir::OpBuilder::create(), mlir::get(), mlir::Builder::getContext(), mlir::OpBuilder::getInsertionBlock(), mlir::OpBuilder::getListener(), mlir::Operation::getParentOfType(), mlir::Block::getParentOp(), and mlir::Builder::getStringAttr().
std::unique_ptr< Pass > mlir::LLVM::createLegalizeForExportPass | ( | ) |
Creates a pass that legalizes the LLVM dialect operations so that they can be translated to LLVM IR.
Definition at line 86 of file LegalizeForExport.cpp.
llvm::Constant * mlir::LLVM::createMappingInformation | ( | Location | loc, |
llvm::OpenMPIRBuilder & | builder | ||
) |
Create a constant string representing the mapping information extracted from the MLIR location information.
Definition at line 32 of file OpenMPCommon.cpp.
References createSourceLocStrFromLocation().
std::unique_ptr< Pass > mlir::LLVM::createRequestCWrappersPass | ( | ) |
Definition at line 34 of file RequestCWrappers.cpp.
llvm::Constant * mlir::LLVM::createSourceLocStrFromLocation | ( | Location | loc, |
llvm::OpenMPIRBuilder & | builder, | ||
StringRef | name, | ||
uint32_t & | strLen | ||
) |
Create a constant string location from the MLIR Location information.
Definition at line 16 of file OpenMPCommon.cpp.
Referenced by createMappingInformation().
std::unique_ptr< Pass > mlir::LLVM::createTypeConsistencyPass | ( | ) |
Creates a pass that adjusts operations operating on pointers so they interpret pointee types as consistently as possible.
Definition at line 707 of file TypeConsistency.cpp.
mlir::LLVM::DEFINE_TRIVIAL_LLVM_TYPE | ( | LLVMLabelType | ) |
mlir::LLVM::DEFINE_TRIVIAL_LLVM_TYPE | ( | LLVMMetadataType | ) |
mlir::LLVM::DEFINE_TRIVIAL_LLVM_TYPE | ( | LLVMPPCFP128Type | ) |
mlir::LLVM::DEFINE_TRIVIAL_LLVM_TYPE | ( | LLVMTokenType | ) |
mlir::LLVM::DEFINE_TRIVIAL_LLVM_TYPE | ( | LLVMVoidType | ) |
mlir::LLVM::DEFINE_TRIVIAL_LLVM_TYPE | ( | LLVMX86MMXType | ) |
void mlir::LLVM::ensureDistinctSuccessors | ( | Operation * | op | ) |
Make argument-taking successors of each block distinct.
PHI nodes in LLVM IR use the predecessor ID to identify which value to take. They do not support different values coming from the same predecessor. If a block has another block as a successor more than once with different values, insert a new dummy block for LLVM PHI nodes to tell the sources apart.
Definition at line 67 of file LegalizeForExport.cpp.
std::optional< unsigned > mlir::LLVM::extractPointerSpecValue | ( | Attribute | attr, |
PtrDLEntryPos | pos | ||
) |
Returns the value that corresponds to named position pos
from the data layout entry attr
assuming it's a dense integer elements attribute.
Returns std::nullopt
if pos
is not present in the entry. Currently only PtrDLEntryPos::Index
is optional, and all other positions may be assumed to be present.
Definition at line 321 of file LLVMTypes.cpp.
Referenced by getPointerDataLayoutEntry(), and translateDataLayout().
Creates an LLVM dialect-compatible type with the given element type and length.
Definition at line 1010 of file LLVMTypes.cpp.
References mlir::get().
Referenced by convertIntrinsicResult(), getIndexedPtrs(), mlir::nvgpu::getMmaSyncRegisterType(), inferIntrinsicResultType(), and unpackOperandVector().
llvm::TypeSize mlir::LLVM::getPrimitiveTypeSizeInBits | ( | Type | type | ) |
Returns the size of the given primitive LLVM dialect-compatible type (including vectors) in bits, for example, the size of i16 is 16 and the size of vector<4xi16> is 64.
Returns 0 for non-primitive (aggregates such as struct) or types that don't have a size (such as void).
Definition at line 1036 of file LLVMTypes.cpp.
References isCompatibleType(), and isCompatibleVectorType().
Creates an LLVM dialect-compatible type with the given element type and length.
Definition at line 1021 of file LLVMTypes.cpp.
References mlir::get().
Returns the element type of any vector type compatible with the LLVM dialect.
Definition at line 947 of file LLVMTypes.cpp.
Referenced by getLLVMTypeBitWidth(), and parseShuffleType().
llvm::ElementCount mlir::LLVM::getVectorNumElements | ( | Type | type | ) |
Returns the element count of any LLVM-compatible vector type.
Definition at line 956 of file LLVMTypes.cpp.
Referenced by getI1SameShape().
Creates an LLVM dialect-compatible vector type with the given element type and length.
Definition at line 1001 of file LLVMTypes.cpp.
References getVectorType().
Creates an LLVM dialect-compatible vector type with the given element type and length.
Definition at line 983 of file LLVMTypes.cpp.
References mlir::get().
Referenced by getI1SameShape(), getVectorType(), and parseShuffleType().
bool mlir::LLVM::isCompatibleFloatingPointType | ( | Type | type | ) |
Returns true
if the given type is a floating-point type compatible with the LLVM dialect.
Definition at line 926 of file LLVMTypes.cpp.
Referenced by isTypeCompatibleWithAtomicOp().
bool mlir::LLVM::isCompatibleOuterType | ( | Type | type | ) |
Returns true
if the given outer type is compatible with the LLVM dialect without checking its potential nested types such as struct elements.
Definition at line 810 of file LLVMTypes.cpp.
bool mlir::LLVM::isCompatibleType | ( | Type | type | ) |
Returns true
if the given type is compatible with the LLVM dialect.
This is an alias to LLVMDialect::isCompatibleType
.
Definition at line 913 of file LLVMTypes.cpp.
References mlir::Type::getContext(), mlir::MLIRContext::getLoadedDialect(), and isCompatibleImpl().
Referenced by buildLLVMFunctionType(), mlir::LLVM::ModuleTranslation::convertBlock(), mlir::LLVMTypeConverter::convertFunctionTypeCWrapper(), dispatchPrint(), mlir::LLVM::detail::extractNDVectorTypeInfo(), getInsertExtractValueElementType(), getPrimitiveTypeSizeInBits(), mlir::LLVMTypeConverter::LLVMTypeConverter(), optionallyTruncateOrExtend(), mlir::LLVMTypeConverter::packFunctionResults(), mlir::LLVMTypeConverter::packOperationResults(), parseCmpOp(), and mlir::StructBuilder::StructBuilder().
bool mlir::LLVM::isCompatibleVectorType | ( | Type | type | ) |
Returns true
if the given type is a vector type compatible with the LLVM dialect.
Compatible types include 1D built-in vector types of built-in integers and floating-point values, LLVM dialect fixed vector types of LLVM dialect pointers and LLVM dialect scalable vector types.
Definition at line 931 of file LLVMTypes.cpp.
Referenced by mlir::LLVM::detail::extractNDVectorTypeInfo(), getI1SameShape(), getLLVMTypeBitWidth(), getPrimitiveTypeSizeInBits(), and parseShuffleType().
bool mlir::LLVM::isScalableVectorType | ( | Type | vectorType | ) |
Returns whether a vector type is scalable or not.
Definition at line 974 of file LLVMTypes.cpp.
Referenced by parseShuffleType().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateAlignedAllocFn | ( | ModuleOp | moduleOp, |
Type | indexType, | ||
bool | opaquePointers | ||
) |
Definition at line 145 of file FunctionCallUtils.cpp.
References getVoidPtr(), kAlignedAlloc, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateFn | ( | ModuleOp | moduleOp, |
StringRef | name, | ||
ArrayRef< Type > | paramTypes = {} , |
||
Type | resultType = {} , |
||
bool | isVarArg = false |
||
) |
Create a FuncOp with signature resultType
(paramTypes
)and name
name`.
Generic print function lookupOrCreate helper.
Definition at line 48 of file FunctionCallUtils.cpp.
References mlir::OpBuilder::create(), and mlir::get().
Referenced by lookupOrCreateAlignedAllocFn(), lookupOrCreateFreeFn(), lookupOrCreateGenericAlignedAllocFn(), lookupOrCreateGenericAllocFn(), lookupOrCreateGenericFreeFn(), lookupOrCreateMallocFn(), lookupOrCreateMemRefCopyFn(), lookupOrCreatePrintBF16Fn(), lookupOrCreatePrintCloseFn(), lookupOrCreatePrintCommaFn(), lookupOrCreatePrintF16Fn(), lookupOrCreatePrintF32Fn(), lookupOrCreatePrintF64Fn(), lookupOrCreatePrintI64Fn(), lookupOrCreatePrintNewlineFn(), lookupOrCreatePrintOpenFn(), lookupOrCreatePrintStrFn(), and lookupOrCreatePrintU64Fn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateFreeFn | ( | ModuleOp | moduleOp, |
bool | opaquePointers | ||
) |
Definition at line 153 of file FunctionCallUtils.cpp.
References mlir::get(), getVoidPtr(), kFree, and lookupOrCreateFn().
Referenced by mlir::ConvertToLLVMPattern::copyUnrankedDescriptors().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateGenericAlignedAllocFn | ( | ModuleOp | moduleOp, |
Type | indexType, | ||
bool | opaquePointers | ||
) |
Definition at line 168 of file FunctionCallUtils.cpp.
References getVoidPtr(), kGenericAlignedAlloc, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateGenericAllocFn | ( | ModuleOp | moduleOp, |
Type | indexType, | ||
bool | opaquePointers | ||
) |
Definition at line 160 of file FunctionCallUtils.cpp.
References getVoidPtr(), kGenericAlloc, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateGenericFreeFn | ( | ModuleOp | moduleOp, |
bool | opaquePointers | ||
) |
Definition at line 175 of file FunctionCallUtils.cpp.
References mlir::get(), getVoidPtr(), kGenericFree, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateMallocFn | ( | ModuleOp | moduleOp, |
Type | indexType, | ||
bool | opaquePointers | ||
) |
Definition at line 137 of file FunctionCallUtils.cpp.
References getVoidPtr(), kMalloc, and lookupOrCreateFn().
Referenced by mlir::ConvertToLLVMPattern::copyUnrankedDescriptors().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreateMemRefCopyFn | ( | ModuleOp | moduleOp, |
Type | indexType, | ||
Type | unrankedDescriptorType | ||
) |
Definition at line 184 of file FunctionCallUtils.cpp.
References mlir::get(), kMemRefCopy, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintBF16Fn | ( | ModuleOp | moduleOp | ) |
Definition at line 78 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintBF16, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintCloseFn | ( | ModuleOp | moduleOp | ) |
Definition at line 122 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintClose, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintCommaFn | ( | ModuleOp | moduleOp | ) |
Definition at line 127 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintComma, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintF16Fn | ( | ModuleOp | moduleOp | ) |
Definition at line 72 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintF16, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintF32Fn | ( | ModuleOp | moduleOp | ) |
Definition at line 84 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintF32, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintF64Fn | ( | ModuleOp | moduleOp | ) |
Definition at line 90 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintF64, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintI64Fn | ( | ModuleOp | moduleOp | ) |
Helper functions to lookup or create the declaration for commonly used external C function calls.
The list of functions provided here must be implemented separately (e.g. as part of a support runtime library or as part of the libc).
Definition at line 60 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintI64, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintNewlineFn | ( | ModuleOp | moduleOp | ) |
Definition at line 132 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintNewline, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintOpenFn | ( | ModuleOp | moduleOp | ) |
Definition at line 117 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintOpen, and lookupOrCreateFn().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintStrFn | ( | ModuleOp | moduleOp, |
bool | opaquePointers | ||
) |
Definition at line 110 of file FunctionCallUtils.cpp.
References mlir::get(), getCharPtr(), kPrintStr, and lookupOrCreateFn().
Referenced by createPrintMsg().
LLVM::LLVMFuncOp mlir::LLVM::lookupOrCreatePrintU64Fn | ( | ModuleOp | moduleOp | ) |
Definition at line 66 of file FunctionCallUtils.cpp.
References mlir::get(), kPrintU64, and lookupOrCreateFn().
ParseResult mlir::LLVM::parsePrettyLLVMType | ( | AsmParser & | p, |
Type & | type | ||
) |
Parse any MLIR type or a concise syntax for LLVM types.
Definition at line 347 of file LLVMTypeSyntax.cpp.
Referenced by parseExtTypeParams(), parseFunctionTypes(), and parsePointer().
void mlir::LLVM::printPrettyLLVMType | ( | AsmPrinter & | p, |
Type | type | ||
) |
Print any MLIR type or a concise syntax for LLVM types.
Definition at line 351 of file LLVMTypeSyntax.cpp.
Referenced by printFunctionTypes(), and printPointer().
bool mlir::LLVM::satisfiesLLVMModule | ( | Operation * | op | ) |
LLVM requires some operations to be inside of a Module operation.
This function confirms that the Operation has the desired properties.
Definition at line 3395 of file LLVMDialect.cpp.
|
constexpr |
Bit-width of a 'GEPConstantIndex' within GEPArg.
Definition at line 66 of file LLVMDialect.h.
Referenced by destructureIndices().