1 //===- MLIRContext.cpp - MLIR Type Classes --------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "mlir/IR/MLIRContext.h"
10 #include "AffineExprDetail.h"
11 #include "AffineMapDetail.h"
12 #include "AttributeDetail.h"
13 #include "IntegerSetDetail.h"
14 #include "TypeDetail.h"
15 #include "mlir/IR/AffineExpr.h"
16 #include "mlir/IR/AffineMap.h"
17 #include "mlir/IR/Attributes.h"
18 #include "mlir/IR/BuiltinDialect.h"
19 #include "mlir/IR/Diagnostics.h"
20 #include "mlir/IR/Dialect.h"
21 #include "mlir/IR/IntegerSet.h"
22 #include "mlir/IR/Location.h"
23 #include "mlir/IR/OpImplementation.h"
24 #include "mlir/IR/Types.h"
25 #include "mlir/Support/DebugAction.h"
26 #include "llvm/ADT/DenseMap.h"
27 #include "llvm/ADT/DenseSet.h"
28 #include "llvm/ADT/SetVector.h"
29 #include "llvm/ADT/SmallString.h"
30 #include "llvm/ADT/StringSet.h"
31 #include "llvm/ADT/Twine.h"
32 #include "llvm/Support/Allocator.h"
33 #include "llvm/Support/CommandLine.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/Mutex.h"
36 #include "llvm/Support/RWMutex.h"
37 #include "llvm/Support/ThreadPool.h"
38 #include "llvm/Support/raw_ostream.h"
39 #include <memory>
40 
41 #define DEBUG_TYPE "mlircontext"
42 
43 using namespace mlir;
44 using namespace mlir::detail;
45 
46 //===----------------------------------------------------------------------===//
47 // MLIRContext CommandLine Options
48 //===----------------------------------------------------------------------===//
49 
50 namespace {
51 /// This struct contains command line options that can be used to initialize
52 /// various bits of an MLIRContext. This uses a struct wrapper to avoid the need
53 /// for global command line options.
54 struct MLIRContextOptions {
55   llvm::cl::opt<bool> disableThreading{
56       "mlir-disable-threading",
57       llvm::cl::desc("Disable multi-threading within MLIR, overrides any "
58                      "further call to MLIRContext::enableMultiThreading()")};
59 
60   llvm::cl::opt<bool> printOpOnDiagnostic{
61       "mlir-print-op-on-diagnostic",
62       llvm::cl::desc("When a diagnostic is emitted on an operation, also print "
63                      "the operation as an attached note"),
64       llvm::cl::init(true)};
65 
66   llvm::cl::opt<bool> printStackTraceOnDiagnostic{
67       "mlir-print-stacktrace-on-diagnostic",
68       llvm::cl::desc("When a diagnostic is emitted, also print the stack trace "
69                      "as an attached note")};
70 };
71 } // namespace
72 
73 static llvm::ManagedStatic<MLIRContextOptions> clOptions;
74 
75 static bool isThreadingGloballyDisabled() {
76 #if LLVM_ENABLE_THREADS != 0
77   return clOptions.isConstructed() && clOptions->disableThreading;
78 #else
79   return true;
80 #endif
81 }
82 
83 /// Register a set of useful command-line options that can be used to configure
84 /// various flags within the MLIRContext. These flags are used when constructing
85 /// an MLIR context for initialization.
86 void mlir::registerMLIRContextCLOptions() {
87   // Make sure that the options struct has been initialized.
88   *clOptions;
89 }
90 
91 //===----------------------------------------------------------------------===//
92 // Locking Utilities
93 //===----------------------------------------------------------------------===//
94 
95 namespace {
96 /// Utility writer lock that takes a runtime flag that specifies if we really
97 /// need to lock.
98 struct ScopedWriterLock {
99   ScopedWriterLock(llvm::sys::SmartRWMutex<true> &mutexParam, bool shouldLock)
100       : mutex(shouldLock ? &mutexParam : nullptr) {
101     if (mutex)
102       mutex->lock();
103   }
104   ~ScopedWriterLock() {
105     if (mutex)
106       mutex->unlock();
107   }
108   llvm::sys::SmartRWMutex<true> *mutex;
109 };
110 } // namespace
111 
112 //===----------------------------------------------------------------------===//
113 // MLIRContextImpl
114 //===----------------------------------------------------------------------===//
115 
116 namespace mlir {
117 /// This is the implementation of the MLIRContext class, using the pImpl idiom.
118 /// This class is completely private to this file, so everything is public.
119 class MLIRContextImpl {
120 public:
121   //===--------------------------------------------------------------------===//
122   // Debugging
123   //===--------------------------------------------------------------------===//
124 
125   /// An action manager for use within the context.
126   DebugActionManager debugActionManager;
127 
128   //===--------------------------------------------------------------------===//
129   // Diagnostics
130   //===--------------------------------------------------------------------===//
131   DiagnosticEngine diagEngine;
132 
133   //===--------------------------------------------------------------------===//
134   // Options
135   //===--------------------------------------------------------------------===//
136 
137   /// In most cases, creating operation in unregistered dialect is not desired
138   /// and indicate a misconfiguration of the compiler. This option enables to
139   /// detect such use cases
140   bool allowUnregisteredDialects = false;
141 
142   /// Enable support for multi-threading within MLIR.
143   bool threadingIsEnabled = true;
144 
145   /// Track if we are currently executing in a threaded execution environment
146   /// (like the pass-manager): this is only a debugging feature to help reducing
147   /// the chances of data races one some context APIs.
148 #ifndef NDEBUG
149   std::atomic<int> multiThreadedExecutionContext{0};
150 #endif
151 
152   /// If the operation should be attached to diagnostics printed via the
153   /// Operation::emit methods.
154   bool printOpOnDiagnostic = true;
155 
156   /// If the current stack trace should be attached when emitting diagnostics.
157   bool printStackTraceOnDiagnostic = false;
158 
159   //===--------------------------------------------------------------------===//
160   // Other
161   //===--------------------------------------------------------------------===//
162 
163   /// This points to the ThreadPool used when processing MLIR tasks in parallel.
164   /// It can't be nullptr when multi-threading is enabled. Otherwise if
165   /// multi-threading is disabled, and the threadpool wasn't externally provided
166   /// using `setThreadPool`, this will be nullptr.
167   llvm::ThreadPool *threadPool = nullptr;
168 
169   /// In case where the thread pool is owned by the context, this ensures
170   /// destruction with the context.
171   std::unique_ptr<llvm::ThreadPool> ownedThreadPool;
172 
173   /// This is a list of dialects that are created referring to this context.
174   /// The MLIRContext owns the objects.
175   DenseMap<StringRef, std::unique_ptr<Dialect>> loadedDialects;
176   DialectRegistry dialectsRegistry;
177 
178   /// An allocator used for AbstractAttribute and AbstractType objects.
179   llvm::BumpPtrAllocator abstractDialectSymbolAllocator;
180 
181   /// This is a mapping from operation name to the operation info describing it.
182   llvm::StringMap<OperationName::Impl> operations;
183 
184   /// A vector of operation info specifically for registered operations.
185   llvm::StringMap<RegisteredOperationName> registeredOperations;
186 
187   /// This is a sorted container of registered operations for a deterministic
188   /// and efficient `getRegisteredOperations` implementation.
189   SmallVector<RegisteredOperationName, 0> sortedRegisteredOperations;
190 
191   /// A mutex used when accessing operation information.
192   llvm::sys::SmartRWMutex<true> operationInfoMutex;
193 
194   //===--------------------------------------------------------------------===//
195   // Affine uniquing
196   //===--------------------------------------------------------------------===//
197 
198   // Affine expression, map and integer set uniquing.
199   StorageUniquer affineUniquer;
200 
201   //===--------------------------------------------------------------------===//
202   // Type uniquing
203   //===--------------------------------------------------------------------===//
204 
205   DenseMap<TypeID, AbstractType *> registeredTypes;
206   StorageUniquer typeUniquer;
207 
208   /// Cached Type Instances.
209   BFloat16Type bf16Ty;
210   Float16Type f16Ty;
211   Float32Type f32Ty;
212   Float64Type f64Ty;
213   Float80Type f80Ty;
214   Float128Type f128Ty;
215   IndexType indexTy;
216   IntegerType int1Ty, int8Ty, int16Ty, int32Ty, int64Ty, int128Ty;
217   NoneType noneType;
218 
219   //===--------------------------------------------------------------------===//
220   // Attribute uniquing
221   //===--------------------------------------------------------------------===//
222 
223   DenseMap<TypeID, AbstractAttribute *> registeredAttributes;
224   StorageUniquer attributeUniquer;
225 
226   /// Cached Attribute Instances.
227   BoolAttr falseAttr, trueAttr;
228   UnitAttr unitAttr;
229   UnknownLoc unknownLocAttr;
230   DictionaryAttr emptyDictionaryAttr;
231   StringAttr emptyStringAttr;
232 
233   /// Map of string attributes that may reference a dialect, that are awaiting
234   /// that dialect to be loaded.
235   llvm::sys::SmartMutex<true> dialectRefStrAttrMutex;
236   DenseMap<StringRef, SmallVector<StringAttrStorage *>>
237       dialectReferencingStrAttrs;
238 
239 public:
240   MLIRContextImpl(bool threadingIsEnabled)
241       : threadingIsEnabled(threadingIsEnabled) {
242     if (threadingIsEnabled) {
243       ownedThreadPool = std::make_unique<llvm::ThreadPool>();
244       threadPool = ownedThreadPool.get();
245     }
246   }
247   ~MLIRContextImpl() {
248     for (auto typeMapping : registeredTypes)
249       typeMapping.second->~AbstractType();
250     for (auto attrMapping : registeredAttributes)
251       attrMapping.second->~AbstractAttribute();
252   }
253 };
254 } // namespace mlir
255 
256 MLIRContext::MLIRContext(Threading setting)
257     : MLIRContext(DialectRegistry(), setting) {}
258 
259 MLIRContext::MLIRContext(const DialectRegistry &registry, Threading setting)
260     : impl(new MLIRContextImpl(setting == Threading::ENABLED &&
261                                !isThreadingGloballyDisabled())) {
262   // Initialize values based on the command line flags if they were provided.
263   if (clOptions.isConstructed()) {
264     printOpOnDiagnostic(clOptions->printOpOnDiagnostic);
265     printStackTraceOnDiagnostic(clOptions->printStackTraceOnDiagnostic);
266   }
267 
268   // Pre-populate the registry.
269   registry.appendTo(impl->dialectsRegistry);
270 
271   // Ensure the builtin dialect is always pre-loaded.
272   getOrLoadDialect<BuiltinDialect>();
273 
274   // Initialize several common attributes and types to avoid the need to lock
275   // the context when accessing them.
276 
277   //// Types.
278   /// Floating-point Types.
279   impl->bf16Ty = TypeUniquer::get<BFloat16Type>(this);
280   impl->f16Ty = TypeUniquer::get<Float16Type>(this);
281   impl->f32Ty = TypeUniquer::get<Float32Type>(this);
282   impl->f64Ty = TypeUniquer::get<Float64Type>(this);
283   impl->f80Ty = TypeUniquer::get<Float80Type>(this);
284   impl->f128Ty = TypeUniquer::get<Float128Type>(this);
285   /// Index Type.
286   impl->indexTy = TypeUniquer::get<IndexType>(this);
287   /// Integer Types.
288   impl->int1Ty = TypeUniquer::get<IntegerType>(this, 1, IntegerType::Signless);
289   impl->int8Ty = TypeUniquer::get<IntegerType>(this, 8, IntegerType::Signless);
290   impl->int16Ty =
291       TypeUniquer::get<IntegerType>(this, 16, IntegerType::Signless);
292   impl->int32Ty =
293       TypeUniquer::get<IntegerType>(this, 32, IntegerType::Signless);
294   impl->int64Ty =
295       TypeUniquer::get<IntegerType>(this, 64, IntegerType::Signless);
296   impl->int128Ty =
297       TypeUniquer::get<IntegerType>(this, 128, IntegerType::Signless);
298   /// None Type.
299   impl->noneType = TypeUniquer::get<NoneType>(this);
300 
301   //// Attributes.
302   //// Note: These must be registered after the types as they may generate one
303   //// of the above types internally.
304   /// Unknown Location Attribute.
305   impl->unknownLocAttr = AttributeUniquer::get<UnknownLoc>(this);
306   /// Bool Attributes.
307   impl->falseAttr = IntegerAttr::getBoolAttrUnchecked(impl->int1Ty, false);
308   impl->trueAttr = IntegerAttr::getBoolAttrUnchecked(impl->int1Ty, true);
309   /// Unit Attribute.
310   impl->unitAttr = AttributeUniquer::get<UnitAttr>(this);
311   /// The empty dictionary attribute.
312   impl->emptyDictionaryAttr = DictionaryAttr::getEmptyUnchecked(this);
313   /// The empty string attribute.
314   impl->emptyStringAttr = StringAttr::getEmptyStringAttrUnchecked(this);
315 
316   // Register the affine storage objects with the uniquer.
317   impl->affineUniquer
318       .registerParametricStorageType<AffineBinaryOpExprStorage>();
319   impl->affineUniquer
320       .registerParametricStorageType<AffineConstantExprStorage>();
321   impl->affineUniquer.registerParametricStorageType<AffineDimExprStorage>();
322   impl->affineUniquer.registerParametricStorageType<AffineMapStorage>();
323   impl->affineUniquer.registerParametricStorageType<IntegerSetStorage>();
324 }
325 
326 MLIRContext::~MLIRContext() = default;
327 
328 /// Copy the specified array of elements into memory managed by the provided
329 /// bump pointer allocator.  This assumes the elements are all PODs.
330 template <typename T>
331 static ArrayRef<T> copyArrayRefInto(llvm::BumpPtrAllocator &allocator,
332                                     ArrayRef<T> elements) {
333   auto result = allocator.Allocate<T>(elements.size());
334   std::uninitialized_copy(elements.begin(), elements.end(), result);
335   return ArrayRef<T>(result, elements.size());
336 }
337 
338 //===----------------------------------------------------------------------===//
339 // Debugging
340 //===----------------------------------------------------------------------===//
341 
342 DebugActionManager &MLIRContext::getDebugActionManager() {
343   return getImpl().debugActionManager;
344 }
345 
346 //===----------------------------------------------------------------------===//
347 // Diagnostic Handlers
348 //===----------------------------------------------------------------------===//
349 
350 /// Returns the diagnostic engine for this context.
351 DiagnosticEngine &MLIRContext::getDiagEngine() { return getImpl().diagEngine; }
352 
353 //===----------------------------------------------------------------------===//
354 // Dialect and Operation Registration
355 //===----------------------------------------------------------------------===//
356 
357 void MLIRContext::appendDialectRegistry(const DialectRegistry &registry) {
358   registry.appendTo(impl->dialectsRegistry);
359 
360   // For the already loaded dialects, apply any possible extensions immediately.
361   registry.applyExtensions(this);
362 }
363 
364 const DialectRegistry &MLIRContext::getDialectRegistry() {
365   return impl->dialectsRegistry;
366 }
367 
368 /// Return information about all registered IR dialects.
369 std::vector<Dialect *> MLIRContext::getLoadedDialects() {
370   std::vector<Dialect *> result;
371   result.reserve(impl->loadedDialects.size());
372   for (auto &dialect : impl->loadedDialects)
373     result.push_back(dialect.second.get());
374   llvm::array_pod_sort(result.begin(), result.end(),
375                        [](Dialect *const *lhs, Dialect *const *rhs) -> int {
376                          return (*lhs)->getNamespace() < (*rhs)->getNamespace();
377                        });
378   return result;
379 }
380 std::vector<StringRef> MLIRContext::getAvailableDialects() {
381   std::vector<StringRef> result;
382   for (auto dialect : impl->dialectsRegistry.getDialectNames())
383     result.push_back(dialect);
384   return result;
385 }
386 
387 /// Get a registered IR dialect with the given namespace. If none is found,
388 /// then return nullptr.
389 Dialect *MLIRContext::getLoadedDialect(StringRef name) {
390   // Dialects are sorted by name, so we can use binary search for lookup.
391   auto it = impl->loadedDialects.find(name);
392   return (it != impl->loadedDialects.end()) ? it->second.get() : nullptr;
393 }
394 
395 Dialect *MLIRContext::getOrLoadDialect(StringRef name) {
396   Dialect *dialect = getLoadedDialect(name);
397   if (dialect)
398     return dialect;
399   DialectAllocatorFunctionRef allocator =
400       impl->dialectsRegistry.getDialectAllocator(name);
401   return allocator ? allocator(this) : nullptr;
402 }
403 
404 /// Get a dialect for the provided namespace and TypeID: abort the program if a
405 /// dialect exist for this namespace with different TypeID. Returns a pointer to
406 /// the dialect owned by the context.
407 Dialect *
408 MLIRContext::getOrLoadDialect(StringRef dialectNamespace, TypeID dialectID,
409                               function_ref<std::unique_ptr<Dialect>()> ctor) {
410   auto &impl = getImpl();
411   // Get the correct insertion position sorted by namespace.
412   auto dialectIt = impl.loadedDialects.find(dialectNamespace);
413 
414   if (dialectIt == impl.loadedDialects.end()) {
415     LLVM_DEBUG(llvm::dbgs()
416                << "Load new dialect in Context " << dialectNamespace << "\n");
417 #ifndef NDEBUG
418     if (impl.multiThreadedExecutionContext != 0)
419       llvm::report_fatal_error(
420           "Loading a dialect (" + dialectNamespace +
421           ") while in a multi-threaded execution context (maybe "
422           "the PassManager): this can indicate a "
423           "missing `dependentDialects` in a pass for example.");
424 #endif
425     std::unique_ptr<Dialect> &dialect =
426         impl.loadedDialects.insert({dialectNamespace, ctor()}).first->second;
427     assert(dialect && "dialect ctor failed");
428 
429     // Refresh all the identifiers dialect field, this catches cases where a
430     // dialect may be loaded after identifier prefixed with this dialect name
431     // were already created.
432     auto stringAttrsIt = impl.dialectReferencingStrAttrs.find(dialectNamespace);
433     if (stringAttrsIt != impl.dialectReferencingStrAttrs.end()) {
434       for (StringAttrStorage *storage : stringAttrsIt->second)
435         storage->referencedDialect = dialect.get();
436       impl.dialectReferencingStrAttrs.erase(stringAttrsIt);
437     }
438 
439     // Apply any extensions to this newly loaded dialect.
440     impl.dialectsRegistry.applyExtensions(dialect.get());
441     return dialect.get();
442   }
443 
444   // Abort if dialect with namespace has already been registered.
445   std::unique_ptr<Dialect> &dialect = dialectIt->second;
446   if (dialect->getTypeID() != dialectID)
447     llvm::report_fatal_error("a dialect with namespace '" + dialectNamespace +
448                              "' has already been registered");
449 
450   return dialect.get();
451 }
452 
453 void MLIRContext::loadAllAvailableDialects() {
454   for (StringRef name : getAvailableDialects())
455     getOrLoadDialect(name);
456 }
457 
458 llvm::hash_code MLIRContext::getRegistryHash() {
459   llvm::hash_code hash(0);
460   // Factor in number of loaded dialects, attributes, operations, types.
461   hash = llvm::hash_combine(hash, impl->loadedDialects.size());
462   hash = llvm::hash_combine(hash, impl->registeredAttributes.size());
463   hash = llvm::hash_combine(hash, impl->registeredOperations.size());
464   hash = llvm::hash_combine(hash, impl->registeredTypes.size());
465   return hash;
466 }
467 
468 bool MLIRContext::allowsUnregisteredDialects() {
469   return impl->allowUnregisteredDialects;
470 }
471 
472 void MLIRContext::allowUnregisteredDialects(bool allowing) {
473   impl->allowUnregisteredDialects = allowing;
474 }
475 
476 /// Return true if multi-threading is enabled by the context.
477 bool MLIRContext::isMultithreadingEnabled() {
478   return impl->threadingIsEnabled && llvm::llvm_is_multithreaded();
479 }
480 
481 /// Set the flag specifying if multi-threading is disabled by the context.
482 void MLIRContext::disableMultithreading(bool disable) {
483   // This API can be overridden by the global debugging flag
484   // --mlir-disable-threading
485   if (isThreadingGloballyDisabled())
486     return;
487 
488   impl->threadingIsEnabled = !disable;
489 
490   // Update the threading mode for each of the uniquers.
491   impl->affineUniquer.disableMultithreading(disable);
492   impl->attributeUniquer.disableMultithreading(disable);
493   impl->typeUniquer.disableMultithreading(disable);
494 
495   // Destroy thread pool (stop all threads) if it is no longer needed, or create
496   // a new one if multithreading was re-enabled.
497   if (disable) {
498     // If the thread pool is owned, explicitly set it to nullptr to avoid
499     // keeping a dangling pointer around. If the thread pool is externally
500     // owned, we don't do anything.
501     if (impl->ownedThreadPool) {
502       assert(impl->threadPool);
503       impl->threadPool = nullptr;
504       impl->ownedThreadPool.reset();
505     }
506   } else if (!impl->threadPool) {
507     // The thread pool isn't externally provided.
508     assert(!impl->ownedThreadPool);
509     impl->ownedThreadPool = std::make_unique<llvm::ThreadPool>();
510     impl->threadPool = impl->ownedThreadPool.get();
511   }
512 }
513 
514 void MLIRContext::setThreadPool(llvm::ThreadPool &pool) {
515   assert(!isMultithreadingEnabled() &&
516          "expected multi-threading to be disabled when setting a ThreadPool");
517   impl->threadPool = &pool;
518   impl->ownedThreadPool.reset();
519   enableMultithreading();
520 }
521 
522 unsigned MLIRContext::getNumThreads() {
523   if (isMultithreadingEnabled()) {
524     assert(impl->threadPool &&
525            "multi-threading is enabled but threadpool not set");
526     return impl->threadPool->getThreadCount();
527   }
528   // No multithreading or active thread pool. Return 1 thread.
529   return 1;
530 }
531 
532 llvm::ThreadPool &MLIRContext::getThreadPool() {
533   assert(isMultithreadingEnabled() &&
534          "expected multi-threading to be enabled within the context");
535   assert(impl->threadPool &&
536          "multi-threading is enabled but threadpool not set");
537   return *impl->threadPool;
538 }
539 
540 void MLIRContext::enterMultiThreadedExecution() {
541 #ifndef NDEBUG
542   ++impl->multiThreadedExecutionContext;
543 #endif
544 }
545 void MLIRContext::exitMultiThreadedExecution() {
546 #ifndef NDEBUG
547   --impl->multiThreadedExecutionContext;
548 #endif
549 }
550 
551 /// Return true if we should attach the operation to diagnostics emitted via
552 /// Operation::emit.
553 bool MLIRContext::shouldPrintOpOnDiagnostic() {
554   return impl->printOpOnDiagnostic;
555 }
556 
557 /// Set the flag specifying if we should attach the operation to diagnostics
558 /// emitted via Operation::emit.
559 void MLIRContext::printOpOnDiagnostic(bool enable) {
560   impl->printOpOnDiagnostic = enable;
561 }
562 
563 /// Return true if we should attach the current stacktrace to diagnostics when
564 /// emitted.
565 bool MLIRContext::shouldPrintStackTraceOnDiagnostic() {
566   return impl->printStackTraceOnDiagnostic;
567 }
568 
569 /// Set the flag specifying if we should attach the current stacktrace when
570 /// emitting diagnostics.
571 void MLIRContext::printStackTraceOnDiagnostic(bool enable) {
572   impl->printStackTraceOnDiagnostic = enable;
573 }
574 
575 /// Return information about all registered operations.
576 ArrayRef<RegisteredOperationName> MLIRContext::getRegisteredOperations() {
577   return impl->sortedRegisteredOperations;
578 }
579 
580 bool MLIRContext::isOperationRegistered(StringRef name) {
581   return RegisteredOperationName::lookup(name, this).hasValue();
582 }
583 
584 void Dialect::addType(TypeID typeID, AbstractType &&typeInfo) {
585   auto &impl = context->getImpl();
586   assert(impl.multiThreadedExecutionContext == 0 &&
587          "Registering a new type kind while in a multi-threaded execution "
588          "context");
589   auto *newInfo =
590       new (impl.abstractDialectSymbolAllocator.Allocate<AbstractType>())
591           AbstractType(std::move(typeInfo));
592   if (!impl.registeredTypes.insert({typeID, newInfo}).second)
593     llvm::report_fatal_error("Dialect Type already registered.");
594 }
595 
596 void Dialect::addAttribute(TypeID typeID, AbstractAttribute &&attrInfo) {
597   auto &impl = context->getImpl();
598   assert(impl.multiThreadedExecutionContext == 0 &&
599          "Registering a new attribute kind while in a multi-threaded execution "
600          "context");
601   auto *newInfo =
602       new (impl.abstractDialectSymbolAllocator.Allocate<AbstractAttribute>())
603           AbstractAttribute(std::move(attrInfo));
604   if (!impl.registeredAttributes.insert({typeID, newInfo}).second)
605     llvm::report_fatal_error("Dialect Attribute already registered.");
606 }
607 
608 //===----------------------------------------------------------------------===//
609 // AbstractAttribute
610 //===----------------------------------------------------------------------===//
611 
612 /// Get the dialect that registered the attribute with the provided typeid.
613 const AbstractAttribute &AbstractAttribute::lookup(TypeID typeID,
614                                                    MLIRContext *context) {
615   const AbstractAttribute *abstract = lookupMutable(typeID, context);
616   if (!abstract)
617     llvm::report_fatal_error("Trying to create an Attribute that was not "
618                              "registered in this MLIRContext.");
619   return *abstract;
620 }
621 
622 AbstractAttribute *AbstractAttribute::lookupMutable(TypeID typeID,
623                                                     MLIRContext *context) {
624   auto &impl = context->getImpl();
625   auto it = impl.registeredAttributes.find(typeID);
626   if (it == impl.registeredAttributes.end())
627     return nullptr;
628   return it->second;
629 }
630 
631 //===----------------------------------------------------------------------===//
632 // OperationName
633 //===----------------------------------------------------------------------===//
634 
635 OperationName::OperationName(StringRef name, MLIRContext *context) {
636   MLIRContextImpl &ctxImpl = context->getImpl();
637 
638   // Check for an existing name in read-only mode.
639   bool isMultithreadingEnabled = context->isMultithreadingEnabled();
640   if (isMultithreadingEnabled) {
641     // Check the registered info map first. In the overwhelmingly common case,
642     // the entry will be in here and it also removes the need to acquire any
643     // locks.
644     auto registeredIt = ctxImpl.registeredOperations.find(name);
645     if (LLVM_LIKELY(registeredIt != ctxImpl.registeredOperations.end())) {
646       impl = registeredIt->second.impl;
647       return;
648     }
649 
650     llvm::sys::SmartScopedReader<true> contextLock(ctxImpl.operationInfoMutex);
651     auto it = ctxImpl.operations.find(name);
652     if (it != ctxImpl.operations.end()) {
653       impl = &it->second;
654       return;
655     }
656   }
657 
658   // Acquire a writer-lock so that we can safely create the new instance.
659   ScopedWriterLock lock(ctxImpl.operationInfoMutex, isMultithreadingEnabled);
660 
661   auto it = ctxImpl.operations.insert({name, OperationName::Impl(nullptr)});
662   if (it.second)
663     it.first->second.name = StringAttr::get(context, name);
664   impl = &it.first->second;
665 }
666 
667 StringRef OperationName::getDialectNamespace() const {
668   if (Dialect *dialect = getDialect())
669     return dialect->getNamespace();
670   return getStringRef().split('.').first;
671 }
672 
673 //===----------------------------------------------------------------------===//
674 // RegisteredOperationName
675 //===----------------------------------------------------------------------===//
676 
677 Optional<RegisteredOperationName>
678 RegisteredOperationName::lookup(StringRef name, MLIRContext *ctx) {
679   auto &impl = ctx->getImpl();
680   auto it = impl.registeredOperations.find(name);
681   if (it != impl.registeredOperations.end())
682     return it->getValue();
683   return llvm::None;
684 }
685 
686 ParseResult
687 RegisteredOperationName::parseAssembly(OpAsmParser &parser,
688                                        OperationState &result) const {
689   return impl->parseAssemblyFn(parser, result);
690 }
691 
692 void RegisteredOperationName::insert(
693     StringRef name, Dialect &dialect, TypeID typeID,
694     ParseAssemblyFn &&parseAssembly, PrintAssemblyFn &&printAssembly,
695     VerifyInvariantsFn &&verifyInvariants,
696     VerifyRegionInvariantsFn &&verifyRegionInvariants, FoldHookFn &&foldHook,
697     GetCanonicalizationPatternsFn &&getCanonicalizationPatterns,
698     detail::InterfaceMap &&interfaceMap, HasTraitFn &&hasTrait,
699     ArrayRef<StringRef> attrNames) {
700   MLIRContext *ctx = dialect.getContext();
701   auto &ctxImpl = ctx->getImpl();
702   assert(ctxImpl.multiThreadedExecutionContext == 0 &&
703          "registering a new operation kind while in a multi-threaded execution "
704          "context");
705 
706   // Register the attribute names of this operation.
707   MutableArrayRef<StringAttr> cachedAttrNames;
708   if (!attrNames.empty()) {
709     cachedAttrNames = MutableArrayRef<StringAttr>(
710         ctxImpl.abstractDialectSymbolAllocator.Allocate<StringAttr>(
711             attrNames.size()),
712         attrNames.size());
713     for (unsigned i : llvm::seq<unsigned>(0, attrNames.size()))
714       new (&cachedAttrNames[i]) StringAttr(StringAttr::get(ctx, attrNames[i]));
715   }
716 
717   // Insert the operation info if it doesn't exist yet.
718   auto it = ctxImpl.operations.insert({name, OperationName::Impl(nullptr)});
719   if (it.second)
720     it.first->second.name = StringAttr::get(ctx, name);
721   OperationName::Impl &impl = it.first->second;
722 
723   if (impl.isRegistered()) {
724     llvm::errs() << "error: operation named '" << name
725                  << "' is already registered.\n";
726     abort();
727   }
728   auto emplaced = ctxImpl.registeredOperations.try_emplace(
729       name, RegisteredOperationName(&impl));
730   assert(emplaced.second && "operation name registration must be successful");
731 
732   // Add emplaced operation name to the sorted operations container.
733   RegisteredOperationName &value = emplaced.first->getValue();
734   ctxImpl.sortedRegisteredOperations.insert(
735       llvm::upper_bound(ctxImpl.sortedRegisteredOperations, value,
736                         [](auto &lhs, auto &rhs) {
737                           return lhs.getIdentifier().compare(
738                               rhs.getIdentifier());
739                         }),
740       value);
741 
742   // Update the registered info for this operation.
743   impl.dialect = &dialect;
744   impl.typeID = typeID;
745   impl.interfaceMap = std::move(interfaceMap);
746   impl.foldHookFn = std::move(foldHook);
747   impl.getCanonicalizationPatternsFn = std::move(getCanonicalizationPatterns);
748   impl.hasTraitFn = std::move(hasTrait);
749   impl.parseAssemblyFn = std::move(parseAssembly);
750   impl.printAssemblyFn = std::move(printAssembly);
751   impl.verifyInvariantsFn = std::move(verifyInvariants);
752   impl.verifyRegionInvariantsFn = std::move(verifyRegionInvariants);
753   impl.attributeNames = cachedAttrNames;
754 }
755 
756 //===----------------------------------------------------------------------===//
757 // AbstractType
758 //===----------------------------------------------------------------------===//
759 
760 const AbstractType &AbstractType::lookup(TypeID typeID, MLIRContext *context) {
761   const AbstractType *type = lookupMutable(typeID, context);
762   if (!type)
763     llvm::report_fatal_error(
764         "Trying to create a Type that was not registered in this MLIRContext.");
765   return *type;
766 }
767 
768 AbstractType *AbstractType::lookupMutable(TypeID typeID, MLIRContext *context) {
769   auto &impl = context->getImpl();
770   auto it = impl.registeredTypes.find(typeID);
771   if (it == impl.registeredTypes.end())
772     return nullptr;
773   return it->second;
774 }
775 
776 //===----------------------------------------------------------------------===//
777 // Type uniquing
778 //===----------------------------------------------------------------------===//
779 
780 /// Returns the storage uniquer used for constructing type storage instances.
781 /// This should not be used directly.
782 StorageUniquer &MLIRContext::getTypeUniquer() { return getImpl().typeUniquer; }
783 
784 BFloat16Type BFloat16Type::get(MLIRContext *context) {
785   return context->getImpl().bf16Ty;
786 }
787 Float16Type Float16Type::get(MLIRContext *context) {
788   return context->getImpl().f16Ty;
789 }
790 Float32Type Float32Type::get(MLIRContext *context) {
791   return context->getImpl().f32Ty;
792 }
793 Float64Type Float64Type::get(MLIRContext *context) {
794   return context->getImpl().f64Ty;
795 }
796 Float80Type Float80Type::get(MLIRContext *context) {
797   return context->getImpl().f80Ty;
798 }
799 Float128Type Float128Type::get(MLIRContext *context) {
800   return context->getImpl().f128Ty;
801 }
802 
803 /// Get an instance of the IndexType.
804 IndexType IndexType::get(MLIRContext *context) {
805   return context->getImpl().indexTy;
806 }
807 
808 /// Return an existing integer type instance if one is cached within the
809 /// context.
810 static IntegerType
811 getCachedIntegerType(unsigned width,
812                      IntegerType::SignednessSemantics signedness,
813                      MLIRContext *context) {
814   if (signedness != IntegerType::Signless)
815     return IntegerType();
816 
817   switch (width) {
818   case 1:
819     return context->getImpl().int1Ty;
820   case 8:
821     return context->getImpl().int8Ty;
822   case 16:
823     return context->getImpl().int16Ty;
824   case 32:
825     return context->getImpl().int32Ty;
826   case 64:
827     return context->getImpl().int64Ty;
828   case 128:
829     return context->getImpl().int128Ty;
830   default:
831     return IntegerType();
832   }
833 }
834 
835 IntegerType IntegerType::get(MLIRContext *context, unsigned width,
836                              IntegerType::SignednessSemantics signedness) {
837   if (auto cached = getCachedIntegerType(width, signedness, context))
838     return cached;
839   return Base::get(context, width, signedness);
840 }
841 
842 IntegerType
843 IntegerType::getChecked(function_ref<InFlightDiagnostic()> emitError,
844                         MLIRContext *context, unsigned width,
845                         SignednessSemantics signedness) {
846   if (auto cached = getCachedIntegerType(width, signedness, context))
847     return cached;
848   return Base::getChecked(emitError, context, width, signedness);
849 }
850 
851 /// Get an instance of the NoneType.
852 NoneType NoneType::get(MLIRContext *context) {
853   if (NoneType cachedInst = context->getImpl().noneType)
854     return cachedInst;
855   // Note: May happen when initializing the singleton attributes of the builtin
856   // dialect.
857   return Base::get(context);
858 }
859 
860 //===----------------------------------------------------------------------===//
861 // Attribute uniquing
862 //===----------------------------------------------------------------------===//
863 
864 /// Returns the storage uniquer used for constructing attribute storage
865 /// instances. This should not be used directly.
866 StorageUniquer &MLIRContext::getAttributeUniquer() {
867   return getImpl().attributeUniquer;
868 }
869 
870 /// Initialize the given attribute storage instance.
871 void AttributeUniquer::initializeAttributeStorage(AttributeStorage *storage,
872                                                   MLIRContext *ctx,
873                                                   TypeID attrID) {
874   storage->initializeAbstractAttribute(AbstractAttribute::lookup(attrID, ctx));
875 
876   // If the attribute did not provide a type, then default to NoneType.
877   if (!storage->getType())
878     storage->setType(NoneType::get(ctx));
879 }
880 
881 BoolAttr BoolAttr::get(MLIRContext *context, bool value) {
882   return value ? context->getImpl().trueAttr : context->getImpl().falseAttr;
883 }
884 
885 UnitAttr UnitAttr::get(MLIRContext *context) {
886   return context->getImpl().unitAttr;
887 }
888 
889 UnknownLoc UnknownLoc::get(MLIRContext *context) {
890   return context->getImpl().unknownLocAttr;
891 }
892 
893 /// Return empty dictionary.
894 DictionaryAttr DictionaryAttr::getEmpty(MLIRContext *context) {
895   return context->getImpl().emptyDictionaryAttr;
896 }
897 
898 void StringAttrStorage::initialize(MLIRContext *context) {
899   // Check for a dialect namespace prefix, if there isn't one we don't need to
900   // do any additional initialization.
901   auto dialectNamePair = value.split('.');
902   if (dialectNamePair.first.empty() || dialectNamePair.second.empty())
903     return;
904 
905   // If one exists, we check to see if this dialect is loaded. If it is, we set
906   // the dialect now, if it isn't we record this storage for initialization
907   // later if the dialect ever gets loaded.
908   if ((referencedDialect = context->getLoadedDialect(dialectNamePair.first)))
909     return;
910 
911   MLIRContextImpl &impl = context->getImpl();
912   llvm::sys::SmartScopedLock<true> lock(impl.dialectRefStrAttrMutex);
913   impl.dialectReferencingStrAttrs[dialectNamePair.first].push_back(this);
914 }
915 
916 /// Return an empty string.
917 StringAttr StringAttr::get(MLIRContext *context) {
918   return context->getImpl().emptyStringAttr;
919 }
920 
921 //===----------------------------------------------------------------------===//
922 // AffineMap uniquing
923 //===----------------------------------------------------------------------===//
924 
925 StorageUniquer &MLIRContext::getAffineUniquer() {
926   return getImpl().affineUniquer;
927 }
928 
929 AffineMap AffineMap::getImpl(unsigned dimCount, unsigned symbolCount,
930                              ArrayRef<AffineExpr> results,
931                              MLIRContext *context) {
932   auto &impl = context->getImpl();
933   auto *storage = impl.affineUniquer.get<AffineMapStorage>(
934       [&](AffineMapStorage *storage) { storage->context = context; }, dimCount,
935       symbolCount, results);
936   return AffineMap(storage);
937 }
938 
939 /// Check whether the arguments passed to the AffineMap::get() are consistent.
940 /// This method checks whether the highest index of dimensional identifier
941 /// present in result expressions is less than `dimCount` and the highest index
942 /// of symbolic identifier present in result expressions is less than
943 /// `symbolCount`.
944 LLVM_ATTRIBUTE_UNUSED static bool
945 willBeValidAffineMap(unsigned dimCount, unsigned symbolCount,
946                      ArrayRef<AffineExpr> results) {
947   int64_t maxDimPosition = -1;
948   int64_t maxSymbolPosition = -1;
949   getMaxDimAndSymbol(ArrayRef<ArrayRef<AffineExpr>>(results), maxDimPosition,
950                      maxSymbolPosition);
951   if ((maxDimPosition >= dimCount) || (maxSymbolPosition >= symbolCount)) {
952     LLVM_DEBUG(
953         llvm::dbgs()
954         << "maximum dimensional identifier position in result expression must "
955            "be less than `dimCount` and maximum symbolic identifier position "
956            "in result expression must be less than `symbolCount`\n");
957     return false;
958   }
959   return true;
960 }
961 
962 AffineMap AffineMap::get(MLIRContext *context) {
963   return getImpl(/*dimCount=*/0, /*symbolCount=*/0, /*results=*/{}, context);
964 }
965 
966 AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
967                          MLIRContext *context) {
968   return getImpl(dimCount, symbolCount, /*results=*/{}, context);
969 }
970 
971 AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
972                          AffineExpr result) {
973   assert(willBeValidAffineMap(dimCount, symbolCount, {result}));
974   return getImpl(dimCount, symbolCount, {result}, result.getContext());
975 }
976 
977 AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
978                          ArrayRef<AffineExpr> results, MLIRContext *context) {
979   assert(willBeValidAffineMap(dimCount, symbolCount, results));
980   return getImpl(dimCount, symbolCount, results, context);
981 }
982 
983 //===----------------------------------------------------------------------===//
984 // Integer Sets: these are allocated into the bump pointer, and are immutable.
985 // Unlike AffineMap's, these are uniqued only if they are small.
986 //===----------------------------------------------------------------------===//
987 
988 IntegerSet IntegerSet::get(unsigned dimCount, unsigned symbolCount,
989                            ArrayRef<AffineExpr> constraints,
990                            ArrayRef<bool> eqFlags) {
991   // The number of constraints can't be zero.
992   assert(!constraints.empty());
993   assert(constraints.size() == eqFlags.size());
994 
995   auto &impl = constraints[0].getContext()->getImpl();
996   auto *storage = impl.affineUniquer.get<IntegerSetStorage>(
997       [](IntegerSetStorage *) {}, dimCount, symbolCount, constraints, eqFlags);
998   return IntegerSet(storage);
999 }
1000 
1001 //===----------------------------------------------------------------------===//
1002 // StorageUniquerSupport
1003 //===----------------------------------------------------------------------===//
1004 
1005 /// Utility method to generate a callback that can be used to generate a
1006 /// diagnostic when checking the construction invariants of a storage object.
1007 /// This is defined out-of-line to avoid the need to include Location.h.
1008 llvm::unique_function<InFlightDiagnostic()>
1009 mlir::detail::getDefaultDiagnosticEmitFn(MLIRContext *ctx) {
1010   return [ctx] { return emitError(UnknownLoc::get(ctx)); };
1011 }
1012 llvm::unique_function<InFlightDiagnostic()>
1013 mlir::detail::getDefaultDiagnosticEmitFn(const Location &loc) {
1014   return [=] { return emitError(loc); };
1015 }
1016