14#include "TypeDetail.h"
29#include "llvm/ADT/DenseMap.h"
30#include "llvm/ADT/Twine.h"
31#include "llvm/Support/Allocator.h"
32#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/Compiler.h"
34#include "llvm/Support/DebugLog.h"
35#include "llvm/Support/ManagedStatic.h"
36#include "llvm/Support/Mutex.h"
37#include "llvm/Support/RWMutex.h"
38#include "llvm/Support/ThreadPool.h"
39#include "llvm/Support/raw_ostream.h"
43#define DEBUG_TYPE "mlircontext"
56struct MLIRContextOptions {
57 llvm::cl::opt<bool> disableThreading{
58 "mlir-disable-threading",
59 llvm::cl::desc(
"Disable multi-threading within MLIR, overrides any "
60 "further call to MLIRContext::enableMultiThreading()")};
62 llvm::cl::opt<bool> printOpOnDiagnostic{
63 "mlir-print-op-on-diagnostic",
64 llvm::cl::desc(
"When a diagnostic is emitted on an operation, also print "
65 "the operation as an attached note"),
66 llvm::cl::init(
true)};
68 llvm::cl::opt<bool> printStackTraceOnDiagnostic{
69 "mlir-print-stacktrace-on-diagnostic",
70 llvm::cl::desc(
"When a diagnostic is emitted, also print the stack trace "
71 "as an attached note")};
75static llvm::ManagedStatic<MLIRContextOptions>
clOptions;
78#if LLVM_ENABLE_THREADS != 0
100struct ScopedWriterLock {
101 ScopedWriterLock(llvm::sys::SmartRWMutex<true> &mutexParam,
bool shouldLock)
102 : mutex(shouldLock ? &mutexParam :
nullptr) {
106 ~ScopedWriterLock() {
110 llvm::sys::SmartRWMutex<true> *mutex;
186 llvm::StringMap<std::unique_ptr<OperationName::Impl>>
operations;
293 typeMapping.second->~AbstractType();
295 attrMapping.second->~AbstractAttribute();
308 printOpOnDiagnostic(clOptions->printOpOnDiagnostic);
309 printStackTraceOnDiagnostic(clOptions->printStackTraceOnDiagnostic);
352 impl->falseAttr = IntegerAttr::getBoolAttrUnchecked(
impl->int1Ty,
false);
353 impl->trueAttr = IntegerAttr::getBoolAttrUnchecked(
impl->int1Ty,
true);
357 impl->emptyDictionaryAttr = DictionaryAttr::getEmptyUnchecked(
this);
359 impl->emptyStringAttr = StringAttr::getEmptyStringAttrUnchecked(
this);
373 impl->remarkEngine.reset();
393void MLIRContext::executeActionInternal(
function_ref<
void()> actionFn,
395 assert(
getImpl().actionHandler);
413 std::unique_ptr<remark::detail::RemarkEngine> engine) {
429 assert(
impl->multiThreadedExecutionContext == 0 &&
430 "appending to the MLIRContext dialect registry while in a "
431 "multi-threaded execution context");
432 assert(!
impl->transientState &&
433 "cannot append to dialect registry while in a transient scope");
442 return impl->dialectsRegistry;
447 std::vector<Dialect *>
result;
449 for (
auto &dialect :
impl->loadedDialects)
450 result.push_back(dialect.second.get());
453 return (*lhs)->getNamespace() < (*rhs)->getNamespace();
458 std::vector<StringRef>
result;
459 for (
auto dialect :
impl->dialectsRegistry.getRegisteredDialectNames())
460 result.push_back(dialect);
468 auto it =
impl->loadedDialects.find(name);
469 return (it !=
impl->loadedDialects.end()) ? it->second.get() :
nullptr;
477 impl->dialectsRegistry.getDialectAllocator(name);
478 return allocator ? allocator(
this) :
nullptr;
489 auto dialectIt =
impl.loadedDialects.try_emplace(dialectNamespace,
nullptr);
491 if (dialectIt.second) {
492 LDBG() <<
"Load new dialect in Context " << dialectNamespace;
493 assert(!
impl.transientState &&
494 "cannot load new dialects while in a transient scope");
496 if (
impl.multiThreadedExecutionContext != 0)
497 llvm::report_fatal_error(
498 "Loading a dialect (" + dialectNamespace +
499 ") while in a multi-threaded execution context (maybe "
500 "the PassManager): this can indicate a "
501 "missing `dependentDialects` in a pass for example.");
507 std::unique_ptr<Dialect> &dialectOwned =
508 impl.loadedDialects[dialectNamespace] = ctor();
509 Dialect *dialect = dialectOwned.get();
510 assert(dialect &&
"dialect ctor failed");
515 auto stringAttrsIt =
impl.dialectReferencingStrAttrs.find(dialectNamespace);
516 if (stringAttrsIt !=
impl.dialectReferencingStrAttrs.end()) {
519 impl.dialectReferencingStrAttrs.erase(stringAttrsIt);
523 impl.dialectsRegistry.applyExtensions(dialect);
528 if (dialectIt.first->second ==
nullptr)
529 llvm::report_fatal_error(
530 "Loading (and getting) a dialect (" + dialectNamespace +
531 ") while the same dialect is still loading: use loadDialect instead "
532 "of getOrLoadDialect.");
536 std::unique_ptr<Dialect> &dialect = dialectIt.first->second;
537 if (dialect->getTypeID() != dialectID)
538 llvm::report_fatal_error(
"a dialect with namespace '" + dialectNamespace +
539 "' has already been registered");
541 return dialect.get();
544bool MLIRContext::isDialectLoading(StringRef dialectNamespace) {
554 auto dialectIt =
impl.loadedDialects.find(dialectNamespace);
556 if (dialectIt !=
impl.loadedDialects.end()) {
557 if (
auto *dynDialect = dyn_cast<DynamicDialect>(dialectIt->second.get()))
559 llvm::report_fatal_error(
"a dialect with namespace '" + dialectNamespace +
560 "' has already been registered");
563 LDBG() <<
"Load new dynamic dialect in Context " << dialectNamespace;
565 if (
impl.multiThreadedExecutionContext != 0)
566 llvm::report_fatal_error(
567 "Loading a dynamic dialect (" + dialectNamespace +
568 ") while in a multi-threaded execution context (maybe "
569 "the PassManager): this can indicate a "
570 "missing `dependentDialects` in a pass for example.");
573 auto name = StringAttr::get(
this, dialectNamespace);
577 return std::unique_ptr<DynamicDialect>(dialect);
590 llvm::hash_code
hash(0);
592 hash = llvm::hash_combine(
hash,
impl->loadedDialects.size());
593 hash = llvm::hash_combine(
hash,
impl->registeredAttributes.size());
594 hash = llvm::hash_combine(
hash,
impl->registeredOperations.size());
595 hash = llvm::hash_combine(
hash,
impl->registeredTypes.size());
600 return impl->allowUnregisteredDialects;
604 assert(
impl->multiThreadedExecutionContext == 0 &&
605 "changing MLIRContext `allow-unregistered-dialects` configuration "
606 "while in a multi-threaded execution context");
607 impl->allowUnregisteredDialects = allowing;
612 return impl->threadingIsEnabled && llvm::llvm_is_multithreaded();
621 assert(
impl->multiThreadedExecutionContext == 0 &&
622 "changing MLIRContext `disable-threading` configuration while "
623 "in a multi-threaded execution context");
625 impl->threadingIsEnabled = !disable;
628 impl->affineUniquer.disableMultithreading(disable);
629 impl->attributeUniquer.disableMultithreading(disable);
630 impl->typeUniquer.disableMultithreading(disable);
638 if (
impl->ownedThreadPool) {
639 assert(
impl->threadPool);
640 impl->threadPool =
nullptr;
641 impl->ownedThreadPool.reset();
643 }
else if (!
impl->threadPool) {
645 assert(!
impl->ownedThreadPool);
646 impl->ownedThreadPool = std::make_unique<llvm::DefaultThreadPool>();
647 impl->threadPool =
impl->ownedThreadPool.get();
653 "expected multi-threading to be disabled when setting a ThreadPool");
654 impl->threadPool = &pool;
655 impl->ownedThreadPool.reset();
661 assert(
impl->threadPool &&
662 "multi-threading is enabled but threadpool not set");
663 return impl->threadPool->getMaxConcurrency();
671 "expected multi-threading to be enabled within the context");
672 assert(
impl->threadPool &&
673 "multi-threading is enabled but threadpool not set");
674 return *
impl->threadPool;
679 ++
impl->multiThreadedExecutionContext;
684 --
impl->multiThreadedExecutionContext;
691 "Beginning a transient scope while in a multi-threaded execution "
693 assert(!ctxImpl.
transientState &&
"context is already in a transient scope");
695 std::make_unique<MLIRContextImpl::TransientScopeState>();
714 ctxImpl.
transientState->baseDialectReferencingStrAttrCounts[entry.first] =
721 assert(ctxImpl.
transientState &&
"context is not in a transient scope");
723 "Ending a transient scope while in a multi-threaded execution "
733 for (
const auto &entry : ctxImpl.
operations) {
734 if (!entry.second->isRegistered() &&
736 opsToErase.push_back(entry.first());
738 for (StringRef op : opsToErase)
755 ctxImpl.
transientState->baseDialectReferencingStrAttrCounts.end()) {
756 dialectsToErase.push_back(entry.first);
758 entry.second.resize(countIt->second);
761 for (StringRef dialect : dialectsToErase)
782 return impl->printOpOnDiagnostic;
788 assert(
impl->multiThreadedExecutionContext == 0 &&
789 "changing MLIRContext `print-op-on-diagnostic` configuration while in "
790 "a multi-threaded execution context");
791 impl->printOpOnDiagnostic = enable;
797 return impl->printStackTraceOnDiagnostic;
803 assert(
impl->multiThreadedExecutionContext == 0 &&
804 "changing MLIRContext `print-stacktrace-on-diagnostic` configuration "
805 "while in a multi-threaded execution context");
806 impl->printStackTraceOnDiagnostic = enable;
811 return impl->sortedRegisteredOperations;
818 llvm::lower_bound(
impl->sortedRegisteredOperations, dialectName,
820 return lhs.getDialect().getNamespace() < rhs;
823 if (lowerBound ==
impl->sortedRegisteredOperations.end() ||
824 lowerBound->getDialect().getNamespace() != dialectName)
827 auto *upperBound = std::upper_bound(
828 lowerBound,
impl->sortedRegisteredOperations.end(), dialectName,
830 return lhs < rhs.getDialect().getNamespace();
833 size_t count = std::distance(lowerBound, upperBound);
834 return ArrayRef(&*lowerBound, count);
842 auto &
impl = context->getImpl();
843 assert(
impl.multiThreadedExecutionContext == 0 &&
844 "Registering a new type kind while in a multi-threaded execution "
849 if (!
impl.registeredTypes.insert({typeID, newInfo}).second)
850 llvm::report_fatal_error(
"Dialect Type already registered.");
851 if (!
impl.nameToType.insert({newInfo->getName(), newInfo}).second)
852 llvm::report_fatal_error(
"Dialect Type with name " + newInfo->getName() +
853 " is already registered.");
857 auto &
impl = context->getImpl();
858 assert(
impl.multiThreadedExecutionContext == 0 &&
859 "Registering a new attribute kind while in a multi-threaded execution "
864 if (!
impl.registeredAttributes.insert({typeID, newInfo}).second)
865 llvm::report_fatal_error(
"Dialect Attribute already registered.");
866 if (!
impl.nameToAttribute.insert({newInfo->getName(), newInfo}).second)
867 llvm::report_fatal_error(
"Dialect Attribute with name " +
868 newInfo->getName() +
" is already registered.");
878 const AbstractAttribute *abstract = lookupMutable(typeID, context);
880 llvm::report_fatal_error(
"Trying to create an Attribute that was not "
881 "registered in this MLIRContext.");
888 return impl.registeredAttributes.lookup(typeID);
891std::optional<std::reference_wrapper<const AbstractAttribute>>
894 const AbstractAttribute *type =
impl.nameToAttribute.lookup(name);
911 MLIRContextImpl &ctxImpl = context->
getImpl();
915 if (isMultithreadingEnabled) {
921 impl = registeredIt->second.impl;
928 impl = it->second.get();
936 auto it = ctxImpl.
operations.try_emplace(name);
938 auto nameAttr = StringAttr::get(context, name);
939 it.first->second = std::make_unique<UnregisteredOpModel>(
943 impl = it.first->second.get();
948 return dialect->getNamespace();
963 llvm::report_fatal_error(
"getParseAssemblyFn hook called on unregistered op");
980std::optional<Attribute>
1042 return llvm::hash_combine(*prop.
as<
Attribute *>());
1049std::optional<RegisteredOperationName>
1052 auto it =
impl.registeredOperations.find(typeID);
1053 if (it !=
impl.registeredOperations.end())
1055 return std::nullopt;
1058std::optional<RegisteredOperationName>
1061 auto it =
impl.registeredOperationsByName.find(name);
1062 if (it !=
impl.registeredOperationsByName.end())
1063 return it->getValue();
1064 return std::nullopt;
1068 std::unique_ptr<RegisteredOperationName::Impl> ownedImpl,
1072 auto &ctxImpl = ctx->
getImpl();
1073 assert(ctxImpl.multiThreadedExecutionContext == 0 &&
1074 "registering a new operation kind while in a multi-threaded execution "
1079 if (!attrNames.empty()) {
1081 ctxImpl.abstractDialectSymbolAllocator.Allocate<StringAttr>(
1084 for (
unsigned i : llvm::seq<unsigned>(0, attrNames.size()))
1085 new (&cachedAttrNames[i]) StringAttr(StringAttr::get(ctx, attrNames[i]));
1086 impl->attributeNames = cachedAttrNames;
1088 StringRef name =
impl->getName().strref();
1090 ctxImpl.operations[name] = std::move(ownedImpl);
1093 auto emplaced = ctxImpl.registeredOperations.try_emplace(
1095 assert(emplaced.second &&
"operation name registration must be successful");
1096 auto emplacedByName = ctxImpl.registeredOperationsByName.try_emplace(
1098 (
void)emplacedByName;
1099 assert(emplacedByName.second &&
1100 "operation name registration must be successful");
1104 ctxImpl.sortedRegisteredOperations.
insert(
1105 llvm::upper_bound(ctxImpl.sortedRegisteredOperations, value,
1106 [](
auto &lhs,
auto &rhs) {
1107 return lhs.getIdentifier().strref() <
1108 rhs.getIdentifier().strref();
1113void *RegisteredOperationName::allocateModelStorage() {
1114 return ::operator
new(
sizeof(
Impl));
1122 const AbstractType *type = lookupMutable(typeID, context);
1124 llvm::report_fatal_error(
1125 "Trying to create a Type that was not registered in this MLIRContext.");
1131 return impl.registeredTypes.lookup(typeID);
1134std::optional<std::reference_wrapper<const AbstractType>>
1137 const AbstractType *type =
impl.nameToType.lookup(name);
1140 return std::nullopt;
1152BFloat16Type BFloat16Type::get(
MLIRContext *context) {
1155Float16Type Float16Type::get(
MLIRContext *context) {
1158FloatTF32Type FloatTF32Type::get(MLIRContext *context) {
1161Float32Type Float32Type::get(MLIRContext *context) {
1164Float64Type Float64Type::get(MLIRContext *context) {
1167Float80Type Float80Type::get(MLIRContext *context) {
1170Float128Type Float128Type::get(MLIRContext *context) {
1175IndexType IndexType::get(MLIRContext *context) {
1183 IntegerType::SignednessSemantics signedness,
1185 if (signedness != IntegerType::Signless)
1186 return IntegerType();
1202 return IntegerType();
1206IntegerType IntegerType::get(MLIRContext *context,
unsigned width,
1207 IntegerType::SignednessSemantics signedness) {
1210 return Base::get(context, width, signedness);
1215 MLIRContext *context,
unsigned width,
1216 SignednessSemantics signedness) {
1219 return Base::getChecked(
emitError, context, width, signedness);
1223NoneType NoneType::get(MLIRContext *context) {
1228 return Base::get(context);
1238 return getImpl().attributeUniquer;
1242void AttributeUniquer::initializeAttributeStorage(
AttributeStorage *storage,
1260DistinctAttrStorage *
1261detail::DistinctAttributeUniquer::allocateStorage(MLIRContext *context,
1262 Attribute referencedAttr) {
1267DictionaryAttr DictionaryAttr::getEmpty(MLIRContext *context) {
1274 auto dialectNamePair =
value.split(
'.');
1275 if (dialectNamePair.first.empty() || dialectNamePair.second.empty())
1285 llvm::sys::SmartScopedLock<true> lock(
impl.dialectRefStrAttrMutex);
1286 impl.dialectReferencingStrAttrs[dialectNamePair.first].push_back(
this);
1299 return getImpl().affineUniquer;
1302AffineMap AffineMap::getImpl(
unsigned dimCount,
unsigned symbolCount,
1308 symbolCount, results);
1317[[maybe_unused]]
static bool
1321 int64_t maxSymbolPosition = -1;
1324 if ((maxDimPosition >= dimCount) || (maxSymbolPosition >= symbolCount)) {
1326 <<
"maximum dimensional identifier position in result expression must "
1327 "be less than `dimCount` and maximum symbolic identifier position "
1328 "in result expression must be less than `symbolCount`";
1335 return getImpl(0, 0, {}, context);
1340 return getImpl(dimCount, symbolCount, {}, context);
1352 return getImpl(dimCount, symbolCount, results, context);
1364 assert(!constraints.empty());
1365 assert(constraints.size() == eqFlags.size());
1367 auto &
impl = constraints[0].getContext()->getImpl();
1382 return [ctx] {
return emitError(UnknownLoc::get(ctx)); };
static llvm::ManagedStatic< DebugCounterOptions > clOptions
static size_t hash(const T &value)
Local helper to compute std::hash for a value.
static bool willBeValidAffineMap(unsigned dimCount, unsigned symbolCount, ArrayRef< AffineExpr > results)
Check whether the arguments passed to the AffineMap::get() are consistent.
static bool isThreadingGloballyDisabled()
static IntegerType getCachedIntegerType(unsigned width, IntegerType::SignednessSemantics signedness, MLIRContext *context)
Return an existing integer type instance if one is cached within the context.
This class contains all of the static information common to all instances of a registered Attribute.
static const AbstractAttribute & lookup(TypeID typeID, MLIRContext *context)
Look up the specified abstract attribute in the MLIRContext and return a reference to it.
This class contains all of the static information common to all instances of a registered Type.
static const AbstractType & lookup(TypeID typeID, MLIRContext *context)
Look up the specified abstract type in the MLIRContext and return a reference to it.
Base type for affine expression.
A multi-dimensional affine map Affine map's are immutable like Type's, and they are uniqued.
static AffineMap get(MLIRContext *context)
Returns a zero result affine map with no dimensions or symbols: () -> ().
constexpr AffineMap()=default
Base storage class appearing in an attribute.
void initializeAbstractAttribute(const AbstractAttribute &abstractAttr)
Set the abstract attribute for this storage instance.
Attributes are known-constant values of operations.
Special case of IntegerAttr to represent boolean integers, i.e., signless i1 integers.
static BoolAttr get(MLIRContext *context, bool value)
This class is the main interface for diagnostics.
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
bool isSubsetOf(const DialectRegistry &rhs) const
Returns true if the current registry is a subset of 'rhs', i.e.
void appendTo(DialectRegistry &destination) const
void applyExtensions(Dialect *dialect) const
Apply any held extensions that require the given dialect.
Dialects are groups of MLIR operations, types and attributes, as well as behavior associated with the...
void addType(TypeID typeID, AbstractType &&typeInfo)
Register a type instance with this dialect.
void addAttribute(TypeID typeID, AbstractAttribute &&attrInfo)
Register an attribute instance with this dialect.
A dialect that can be defined at runtime.
This class represents a diagnostic that is inflight and set to be reported.
constexpr IntegerSet()=default
static IntegerSet get(unsigned dimCount, unsigned symbolCount, ArrayRef< AffineExpr > constraints, ArrayRef< bool > eqFlags)
This class defines the main interface for locations in MLIR and acts as a non-nullable wrapper around...
This is the implementation of the MLIRContext class, using the pImpl idiom.
llvm::ThreadPoolInterface * threadPool
This points to the ThreadPool used when processing MLIR tasks in parallel.
DictionaryAttr emptyDictionaryAttr
bool printStackTraceOnDiagnostic
If the current stack trace should be attached when emitting diagnostics.
llvm::DenseMap< StringRef, AbstractAttribute * > nameToAttribute
This is a mapping from attribute name to the abstract attribute describing it.
DenseMap< StringRef, std::unique_ptr< Dialect > > loadedDialects
This is a list of dialects that are created referring to this context.
llvm::DenseMap< TypeID, RegisteredOperationName > registeredOperations
A vector of operation info specifically for registered operations.
BoolAttr falseAttr
Cached Attribute Instances.
llvm::sys::SmartRWMutex< true > operationInfoMutex
A mutex used when accessing operation information.
BFloat16Type bf16Ty
Cached Type Instances.
DenseMap< StringRef, SmallVector< StringAttrStorage * > > dialectReferencingStrAttrs
std::unique_ptr< TransientScopeState > transientState
llvm::StringMap< RegisteredOperationName > registeredOperationsByName
std::atomic< int > multiThreadedExecutionContext
Track if we are currently executing in a threaded execution environment (like the pass-manager): this...
StringAttr emptyStringAttr
std::function< void(function_ref< void()>, const tracing::Action &)> actionHandler
An action handler for handling actions that are dispatched through this context.
bool allowUnregisteredDialects
In most cases, creating operation in unregistered dialect is not desired and indicate a misconfigurat...
llvm::sys::SmartMutex< true > dialectRefStrAttrMutex
Map of string attributes that may reference a dialect, that are awaiting that dialect to be loaded.
llvm::DenseMap< StringRef, AbstractType * > nameToType
This is a mapping from type name to the abstract type describing it.
StorageUniquer typeUniquer
bool printOpOnDiagnostic
If the operation should be attached to diagnostics printed via the Operation::emit methods.
llvm::BumpPtrAllocator abstractDialectSymbolAllocator
An allocator used for AbstractAttribute and AbstractType objects.
DenseMap< TypeID, AbstractType * > registeredTypes
StorageUniquer affineUniquer
DiagnosticEngine diagEngine
std::unique_ptr< remark::detail::RemarkEngine > remarkEngine
UnknownLoc unknownLocAttr
DenseMap< TypeID, AbstractAttribute * > registeredAttributes
llvm::StringMap< std::unique_ptr< OperationName::Impl > > operations
This is a mapping from operation name to the operation info describing it.
std::unique_ptr< llvm::ThreadPoolInterface > ownedThreadPool
In case where the thread pool is owned by the context, this ensures destruction with the context.
SmallVector< RegisteredOperationName, 0 > sortedRegisteredOperations
This is a sorted container of registered operations for a deterministic and efficient getRegisteredOp...
DistinctAttributeAllocator distinctAttributeAllocator
A distinct attribute allocator that allocates every time since the address of the distinct attribute ...
MLIRContextImpl(bool threadingIsEnabled)
StorageUniquer attributeUniquer
DialectRegistry dialectsRegistry
bool threadingIsEnabled
Enable support for multi-threading within MLIR.
MLIRContext is the top-level object for a collection of MLIR operations.
void appendDialectRegistry(const DialectRegistry ®istry)
Append the contents of the given dialect registry to the registry associated with this context.
bool shouldPrintStackTraceOnDiagnostic()
Return true if we should attach the current stacktrace to diagnostics when emitted.
unsigned getNumThreads()
Return the number of threads used by the thread pool in this context.
bool isInTransientScope() const
Returns true if the context is currently in a transient scope.
bool isOperationRegistered(StringRef name)
Return true if this operation name is registered in this context.
MLIRContext(Threading multithreading=Threading::ENABLED)
Create a new Context.
void disableMultithreading(bool disable=true)
Set the flag specifying if multi-threading is disabled by the context.
T * getOrLoadDialect()
Get (or create) a dialect for the given derived dialect type.
void printStackTraceOnDiagnostic(bool enable)
Set the flag specifying if we should attach the current stacktrace when emitting diagnostics.
Dialect * getLoadedDialect(StringRef name)
Get a registered IR dialect with the given namespace.
bool hasActionHandler()
Return true if a valid ActionHandler is set.
void setRemarkEngine(std::unique_ptr< remark::detail::RemarkEngine > engine)
Set the remark engine for this context.
void setThreadPool(llvm::ThreadPoolInterface &pool)
Set a new thread pool to be used in this context.
const HandlerTy & getActionHandler() const
Return a reference to the currently registered action handler.
void enableMultithreading(bool enable=true)
remark::detail::RemarkEngine * getRemarkEngine()
Returns the remark engine for this context, or nullptr if none has been set.
std::vector< Dialect * > getLoadedDialects()
Return information about all IR dialects loaded in the context.
ArrayRef< RegisteredOperationName > getRegisteredOperationsByDialect(StringRef dialectName)
Return a sorted array containing the information for registered operations filtered by dialect name.
void printOpOnDiagnostic(bool enable)
Set the flag specifying if we should attach the operation to diagnostics emitted via Operation::emit.
void registerActionHandler(HandlerTy handler)
Register a handler for handling actions that are dispatched through this context.
ArrayRef< RegisteredOperationName > getRegisteredOperations()
Return a sorted array containing the information about all registered operations.
llvm::hash_code getRegistryHash()
Returns a hash of the registry of the context that may be used to give a rough indicator of if the st...
void enterMultiThreadedExecution()
These APIs are tracking whether the context will be used in a multithreading environment: this has no...
const DialectRegistry & getDialectRegistry()
Return the dialect registry associated with this context.
DynamicDialect * getOrLoadDynamicDialect(StringRef dialectNamespace, function_ref< void(DynamicDialect *)> ctor)
Get (or create) a dynamic dialect for the given name.
StorageUniquer & getAttributeUniquer()
Returns the storage uniquer used for constructing attribute storage instances.
StorageUniquer & getAffineUniquer()
Returns the storage uniquer used for creating affine constructs.
void endTransientScope()
Ends the transient scope and resets the context to the base state, pruning all types,...
std::function< void(function_ref< void()>, const tracing::Action &)> HandlerTy
Signatures for the action handler that can be registered with the context.
StorageUniquer & getTypeUniquer()
Returns the storage uniquer used for constructing type storage instances.
llvm::ThreadPoolInterface & getThreadPool()
Return the thread pool used by this context.
std::vector< StringRef > getAvailableDialects()
Return information about all available dialects in the registry in this context.
bool isMultithreadingEnabled()
Return true if multi-threading is enabled by the context.
void allowUnregisteredDialects(bool allow=true)
Enables creating operations in unregistered dialects.
bool allowsUnregisteredDialects()
Return true if we allow to create operation for unregistered dialects.
DiagnosticEngine & getDiagEngine()
Returns the diagnostic engine for this context.
MLIRContextImpl & getImpl()
void exitMultiThreadedExecution()
bool shouldPrintOpOnDiagnostic()
Return true if we should attach the operation to diagnostics emitted via Operation::emit.
void beginTransientScope()
Begins a transient scope on the context, freezing the current state (all loaded dialects,...
void loadAllAvailableDialects()
Load all dialects available in the registry in this context.
T * getLoadedDialect()
Get a registered IR dialect for the given derived dialect type.
NamedAttrList is array of NamedAttributes that tracks whether it is sorted and does some basic work t...
DictionaryAttr getDictionary(MLIRContext *context) const
Return a dictionary attribute for the underlying dictionary.
Attribute set(StringAttr name, Attribute value)
If the an attribute exists with the specified name, change it to the new value.
This is a pure-virtual base class that exposes the asmprinter hooks necessary to implement a custom p...
virtual void printGenericOp(Operation *op, bool printOpName=true)=0
Print the entire operation with the default generic assembly form.
StringAttr name
The name of the operation.
TypeID typeID
The unique identifier of the derived Op class.
Impl(StringRef, Dialect *dialect, TypeID typeID, detail::InterfaceMap interfaceMap)
Dialect * dialect
The following fields are only populated when the operation is registered.
detail::InterfaceMap interfaceMap
A map of interfaces that were registered to this operation.
StringRef getStringRef() const
Return the name of this operation. This always succeeds.
Dialect * getDialect() const
Return the dialect this operation is registered to if the dialect is loaded in the context,...
OperationName(StringRef name, MLIRContext *context)
StringRef getDialectNamespace() const
Return the name of the dialect this operation is registered to.
llvm::unique_function< ParseResult(OpAsmParser &, OperationState &)> ParseAssemblyFn
llvm::function_ref< void(StringRef, Attribute &)> InherentAttrVisitor
MLIRContext * getContext()
Return the context this operation is associated with.
Operation is the basic unit of execution within MLIR.
PropertyRef getPropertiesStorage()
Return a generic (but typed) reference to the property type storage.
MLIRContext * getContext()
Return the context this operation is associated with.
Type-safe wrapper around a void* for passing properties, including the properties structs of operatio...
This is a "type erased" representation of a registered operation.
static void insert(Dialect &dialect)
Register a new operation in a Dialect object.
static std::optional< RegisteredOperationName > lookup(StringRef name, MLIRContext *ctx)
Lookup the registered operation information for the given operation.
A utility class to get or create instances of "storage classes".
void beginTransientScope()
Begins a transient scope.
void endTransientScope()
Ends the transient scope and resets back to the base state, freeing all transiently allocated storage...
This class provides an efficient unique identifier for a specific C++ type.
static TypeID get()
Construct a type info object for the given type T.
static T get(MLIRContext *ctx, Args &&...args)
Get an uniqued instance of an attribute T.
An allocator for distinct attribute storage instances.
void beginTransientScope()
DistinctAttrStorage * allocate(Attribute referencedAttr)
This class provides an efficient mapping between a given Interface type, and a particular implementat...
An action is a specific action that is to be taken by the compiler, that can be toggled and controlle...
llvm::unique_function< InFlightDiagnostic()> getDefaultDiagnosticEmitFn(MLIRContext *ctx)
Utility method to generate a callback that can be used to generate a diagnostic when checking the con...
Include the generated interface declarations.
void getMaxDimAndSymbol(ArrayRef< AffineExprContainer > exprsList, int64_t &maxDim, int64_t &maxSym)
Calculates maximum dimension and symbol positions from the expressions in exprsLists and stores them ...
InFlightDiagnostic emitError(Location loc)
Utility method to emit an error message using this location.
void registerMLIRContextCLOptions()
Register a set of useful command-line options that can be used to configure various flags within the ...
auto get(MLIRContext *context, Ts &&...params)
Helper method that injects context only if needed, this helps unify some of the attribute constructio...
llvm::DenseMap< KeyT, ValueT, KeyInfoT, BucketT > DenseMap
function_ref< Dialect *(MLIRContext *)> DialectAllocatorFunctionRef
llvm::function_ref< Fn > function_ref
Bundled state dynamically allocated when in a transient scope.
llvm::DenseMap< StringRef, size_t > baseDialectReferencingStrAttrCounts
Number of entries in dialectReferencingStrAttrs per dialect at snapshot time.
llvm::DenseSet< StringRef > baseOperations
Set of operation names in operations at snapshot time.
LogicalResult foldHook(Operation *, ArrayRef< Attribute >, SmallVectorImpl< OpFoldResult > &) final
int getOpPropertyByteSize() final
void setInherentAttr(Operation *op, StringAttr name, Attribute value) final
llvm::hash_code hashProperties(PropertyRef) final
void initProperties(OperationName opName, PropertyRef storage, PropertyRef init) final
OperationName::ParseAssemblyFn getParseAssemblyFn() final
void deleteProperties(PropertyRef) final
bool hasTrait(TypeID) final
LogicalResult verifyRegionInvariants(Operation *) final
std::optional< Attribute > getInherentAttr(Operation *op, StringRef name) final
Implementation for properties.
void walkInherentAttrs(Operation *op, InherentAttrVisitor visitor) final
void getCanonicalizationPatterns(RewritePatternSet &, MLIRContext *) final
LogicalResult setPropertiesFromAttr(OperationName, PropertyRef, Attribute, function_ref< InFlightDiagnostic()> emitError) final
void populateDefaultAttrs(const OperationName &, NamedAttrList &) final
void printAssembly(Operation *, OpAsmPrinter &, StringRef) final
LogicalResult verifyInvariants(Operation *) final
void populateDefaultProperties(OperationName opName, PropertyRef properties) final
LogicalResult verifyInherentAttrs(OperationName opName, NamedAttrList &attributes, function_ref< InFlightDiagnostic()> emitError) final
Attribute getPropertiesAsAttr(Operation *) final
bool compareProperties(PropertyRef, PropertyRef) final
void copyProperties(PropertyRef, PropertyRef) final
A binary operation appearing in an affine expression.
An integer constant appearing in affine expression.
A dimensional or symbolic identifier appearing in an affine expression.
StringRef value
The raw string value.
Dialect * referencedDialect
If the string value contains a dialect namespace prefix (e.g.
void initialize(MLIRContext *context)
Initialize the storage given an MLIRContext.
static T get(MLIRContext *ctx, Args &&...args)
Get an uniqued instance of a type T.