2018-06-23 13:03:48 +08:00
|
|
|
//===- MLIRContext.cpp - MLIR Type Classes --------------------------------===//
|
|
|
|
//
|
2020-01-26 11:58:30 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
2019-12-24 01:35:36 +08:00
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-06-23 13:03:48 +08:00
|
|
|
//
|
2019-12-24 01:35:36 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-06-23 13:03:48 +08:00
|
|
|
|
|
|
|
#include "mlir/IR/MLIRContext.h"
|
2018-10-10 01:59:27 +08:00
|
|
|
#include "AffineExprDetail.h"
|
2018-10-10 07:39:24 +08:00
|
|
|
#include "AffineMapDetail.h"
|
2018-10-26 06:46:10 +08:00
|
|
|
#include "AttributeDetail.h"
|
2018-10-11 00:45:59 +08:00
|
|
|
#include "IntegerSetDetail.h"
|
2018-11-09 04:28:35 +08:00
|
|
|
#include "LocationDetail.h"
|
2018-10-31 05:59:22 +08:00
|
|
|
#include "TypeDetail.h"
|
2018-06-30 09:09:29 +08:00
|
|
|
#include "mlir/IR/AffineExpr.h"
|
|
|
|
#include "mlir/IR/AffineMap.h"
|
2018-07-05 01:43:29 +08:00
|
|
|
#include "mlir/IR/Attributes.h"
|
2019-05-02 02:14:15 +08:00
|
|
|
#include "mlir/IR/Diagnostics.h"
|
2019-03-02 08:58:00 +08:00
|
|
|
#include "mlir/IR/Dialect.h"
|
2019-07-11 06:49:27 +08:00
|
|
|
#include "mlir/IR/Function.h"
|
2018-07-05 01:43:29 +08:00
|
|
|
#include "mlir/IR/Identifier.h"
|
2018-08-08 05:24:38 +08:00
|
|
|
#include "mlir/IR/IntegerSet.h"
|
2018-08-28 12:05:16 +08:00
|
|
|
#include "mlir/IR/Location.h"
|
2019-06-22 11:20:27 +08:00
|
|
|
#include "mlir/IR/Module.h"
|
2018-06-23 13:03:48 +08:00
|
|
|
#include "mlir/IR/Types.h"
|
2019-08-02 07:38:26 +08:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2018-06-23 13:03:48 +08:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2018-11-10 03:27:28 +08:00
|
|
|
#include "llvm/ADT/SetVector.h"
|
2020-04-12 13:06:45 +08:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
2019-05-14 00:00:22 +08:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2018-06-23 13:03:48 +08:00
|
|
|
#include "llvm/Support/Allocator.h"
|
2020-04-04 10:02:39 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2019-03-13 01:00:21 +08:00
|
|
|
#include "llvm/Support/RWMutex.h"
|
2018-08-02 01:18:59 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2018-10-22 10:49:31 +08:00
|
|
|
#include <memory>
|
2018-09-22 09:12:15 +08:00
|
|
|
|
2018-06-23 13:03:48 +08:00
|
|
|
using namespace mlir;
|
2018-10-09 01:20:25 +08:00
|
|
|
using namespace mlir::detail;
|
2019-04-28 09:35:04 +08:00
|
|
|
|
|
|
|
using llvm::hash_combine;
|
|
|
|
using llvm::hash_combine_range;
|
2018-06-23 13:03:48 +08:00
|
|
|
|
2020-04-12 14:11:51 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MLIRContext CommandLine Options
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// This struct contains command line options that can be used to initialize
|
|
|
|
/// various bits of an MLIRContext. This uses a struct wrapper to avoid the need
|
|
|
|
/// for global command line options.
|
|
|
|
struct MLIRContextOptions {
|
2020-05-03 03:28:57 +08:00
|
|
|
llvm::cl::opt<bool> disableThreading{
|
|
|
|
"mlir-disable-threading",
|
|
|
|
llvm::cl::desc("Disabling multi-threading within MLIR")};
|
|
|
|
|
2020-04-12 14:11:51 +08:00
|
|
|
llvm::cl::opt<bool> printOpOnDiagnostic{
|
|
|
|
"mlir-print-op-on-diagnostic",
|
|
|
|
llvm::cl::desc("When a diagnostic is emitted on an operation, also print "
|
|
|
|
"the operation as an attached note"),
|
|
|
|
llvm::cl::init(true)};
|
|
|
|
|
|
|
|
llvm::cl::opt<bool> printStackTraceOnDiagnostic{
|
|
|
|
"mlir-print-stacktrace-on-diagnostic",
|
|
|
|
llvm::cl::desc("When a diagnostic is emitted, also print the stack trace "
|
|
|
|
"as an attached note")};
|
|
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
|
|
|
static llvm::ManagedStatic<MLIRContextOptions> clOptions;
|
|
|
|
|
|
|
|
/// Register a set of useful command-line options that can be used to configure
|
|
|
|
/// various flags within the MLIRContext. These flags are used when constructing
|
|
|
|
/// an MLIR context for initialization.
|
|
|
|
void mlir::registerMLIRContextCLOptions() {
|
|
|
|
// Make sure that the options struct has been initialized.
|
|
|
|
*clOptions;
|
|
|
|
}
|
2020-04-04 10:02:39 +08:00
|
|
|
|
2020-04-12 14:11:51 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Builtin Dialect
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// A builtin dialect to define types/etc that are necessary for the validity of
|
|
|
|
/// the IR.
|
|
|
|
struct BuiltinDialect : public Dialect {
|
|
|
|
BuiltinDialect(MLIRContext *context) : Dialect(/*name=*/"", context) {
|
2020-04-24 10:01:51 +08:00
|
|
|
addAttributes<AffineMapAttr, ArrayAttr, BoolAttr, DenseIntOrFPElementsAttr,
|
|
|
|
DenseStringElementsAttr, DictionaryAttr, FloatAttr,
|
|
|
|
SymbolRefAttr, IntegerAttr, IntegerSetAttr, OpaqueAttr,
|
|
|
|
OpaqueElementsAttr, SparseElementsAttr, StringAttr, TypeAttr,
|
|
|
|
UnitAttr>();
|
2020-04-12 14:11:51 +08:00
|
|
|
addAttributes<CallSiteLoc, FileLineColLoc, FusedLoc, NameLoc, OpaqueLoc,
|
|
|
|
UnknownLoc>();
|
|
|
|
|
|
|
|
addTypes<ComplexType, FloatType, FunctionType, IndexType, IntegerType,
|
|
|
|
MemRefType, UnrankedMemRefType, NoneType, OpaqueType,
|
|
|
|
RankedTensorType, TupleType, UnrankedTensorType, VectorType>();
|
|
|
|
|
|
|
|
// TODO: These operations should be moved to a different dialect when they
|
|
|
|
// have been fully decoupled from the core.
|
|
|
|
addOperations<FuncOp, ModuleOp, ModuleTerminatorOp>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2020-05-03 03:28:57 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Locking Utilities
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/// Utility reader lock that takes a runtime flag that specifies if we really
|
|
|
|
/// need to lock.
|
|
|
|
struct ScopedReaderLock {
|
|
|
|
ScopedReaderLock(llvm::sys::SmartRWMutex<true> &mutexParam, bool shouldLock)
|
|
|
|
: mutex(shouldLock ? &mutexParam : nullptr) {
|
|
|
|
if (mutex)
|
|
|
|
mutex->lock_shared();
|
|
|
|
}
|
|
|
|
~ScopedReaderLock() {
|
|
|
|
if (mutex)
|
|
|
|
mutex->unlock_shared();
|
|
|
|
}
|
|
|
|
llvm::sys::SmartRWMutex<true> *mutex;
|
|
|
|
};
|
|
|
|
/// Utility writer lock that takes a runtime flag that specifies if we really
|
|
|
|
/// need to lock.
|
|
|
|
struct ScopedWriterLock {
|
|
|
|
ScopedWriterLock(llvm::sys::SmartRWMutex<true> &mutexParam, bool shouldLock)
|
|
|
|
: mutex(shouldLock ? &mutexParam : nullptr) {
|
|
|
|
if (mutex)
|
|
|
|
mutex->lock();
|
|
|
|
}
|
|
|
|
~ScopedWriterLock() {
|
|
|
|
if (mutex)
|
|
|
|
mutex->unlock();
|
|
|
|
}
|
|
|
|
llvm::sys::SmartRWMutex<true> *mutex;
|
|
|
|
};
|
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2020-04-12 14:11:51 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// AffineMap and IntegerSet hashing
|
|
|
|
//===----------------------------------------------------------------------===//
|
2020-04-04 10:02:39 +08:00
|
|
|
|
2019-03-15 05:13:29 +08:00
|
|
|
/// A utility function to safely get or create a uniqued instance within the
|
|
|
|
/// given set container.
|
|
|
|
template <typename ValueT, typename DenseInfoT, typename KeyT,
|
|
|
|
typename ConstructorFn>
|
|
|
|
static ValueT safeGetOrCreate(DenseSet<ValueT, DenseInfoT> &container,
|
|
|
|
KeyT &&key, llvm::sys::SmartRWMutex<true> &mutex,
|
2020-05-03 03:28:57 +08:00
|
|
|
bool threadingIsEnabled,
|
2019-03-15 05:13:29 +08:00
|
|
|
ConstructorFn &&constructorFn) {
|
2020-05-03 03:28:57 +08:00
|
|
|
// Check for an existing instance in read-only mode.
|
|
|
|
if (threadingIsEnabled) {
|
2019-03-15 05:13:29 +08:00
|
|
|
llvm::sys::SmartScopedReader<true> instanceLock(mutex);
|
|
|
|
auto it = container.find_as(key);
|
|
|
|
if (it != container.end())
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
2019-10-04 19:37:14 +08:00
|
|
|
// Acquire a writer-lock so that we can safely create the new instance.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedWriterLock instanceLock(mutex, threadingIsEnabled);
|
2019-03-15 05:13:29 +08:00
|
|
|
|
|
|
|
// Check for an existing instance again here, because another writer thread
|
2020-05-03 03:28:57 +08:00
|
|
|
// may have already created one. Otherwise, construct a new instance.
|
2019-03-15 05:13:29 +08:00
|
|
|
auto existing = container.insert_as(ValueT(), key);
|
2020-05-03 03:28:57 +08:00
|
|
|
if (existing.second)
|
|
|
|
return *existing.first = constructorFn();
|
|
|
|
return *existing.first;
|
2019-03-15 05:13:29 +08:00
|
|
|
}
|
|
|
|
|
2018-06-23 13:03:48 +08:00
|
|
|
namespace {
|
2018-10-10 07:39:24 +08:00
|
|
|
struct AffineMapKeyInfo : DenseMapInfo<AffineMap> {
|
2018-07-04 11:16:08 +08:00
|
|
|
// Affine maps are uniqued based on their dim/symbol counts and affine
|
|
|
|
// expressions.
|
2019-05-30 05:56:41 +08:00
|
|
|
using KeyTy = std::tuple<unsigned, unsigned, ArrayRef<AffineExpr>>;
|
2018-10-10 07:39:24 +08:00
|
|
|
using DenseMapInfo<AffineMap>::isEqual;
|
2018-06-30 09:09:29 +08:00
|
|
|
|
2018-12-04 06:27:24 +08:00
|
|
|
static unsigned getHashValue(const AffineMap &key) {
|
2019-05-30 05:56:41 +08:00
|
|
|
return getHashValue(
|
|
|
|
KeyTy(key.getNumDims(), key.getNumSymbols(), key.getResults()));
|
2018-12-04 06:27:24 +08:00
|
|
|
}
|
|
|
|
|
2018-06-30 09:09:29 +08:00
|
|
|
static unsigned getHashValue(KeyTy key) {
|
2018-07-04 11:16:08 +08:00
|
|
|
return hash_combine(
|
2018-07-05 01:43:29 +08:00
|
|
|
std::get<0>(key), std::get<1>(key),
|
2019-05-30 05:56:41 +08:00
|
|
|
hash_combine_range(std::get<2>(key).begin(), std::get<2>(key).end()));
|
2018-06-30 09:09:29 +08:00
|
|
|
}
|
|
|
|
|
2018-10-10 07:39:24 +08:00
|
|
|
static bool isEqual(const KeyTy &lhs, AffineMap rhs) {
|
2018-07-04 11:16:08 +08:00
|
|
|
if (rhs == getEmptyKey() || rhs == getTombstoneKey())
|
|
|
|
return false;
|
2018-10-10 07:39:24 +08:00
|
|
|
return lhs == std::make_tuple(rhs.getNumDims(), rhs.getNumSymbols(),
|
2019-05-30 05:56:41 +08:00
|
|
|
rhs.getResults());
|
2018-06-30 09:09:29 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-25 23:33:02 +08:00
|
|
|
struct IntegerSetKeyInfo : DenseMapInfo<IntegerSet> {
|
|
|
|
// Integer sets are uniqued based on their dim/symbol counts, affine
|
|
|
|
// expressions appearing in the LHS of constraints, and eqFlags.
|
|
|
|
using KeyTy =
|
|
|
|
std::tuple<unsigned, unsigned, ArrayRef<AffineExpr>, ArrayRef<bool>>;
|
|
|
|
using DenseMapInfo<IntegerSet>::isEqual;
|
|
|
|
|
2018-12-04 06:27:24 +08:00
|
|
|
static unsigned getHashValue(const IntegerSet &key) {
|
|
|
|
return getHashValue(KeyTy(key.getNumDims(), key.getNumSymbols(),
|
|
|
|
key.getConstraints(), key.getEqFlags()));
|
|
|
|
}
|
|
|
|
|
2018-10-25 23:33:02 +08:00
|
|
|
static unsigned getHashValue(KeyTy key) {
|
|
|
|
return hash_combine(
|
|
|
|
std::get<0>(key), std::get<1>(key),
|
|
|
|
hash_combine_range(std::get<2>(key).begin(), std::get<2>(key).end()),
|
|
|
|
hash_combine_range(std::get<3>(key).begin(), std::get<3>(key).end()));
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isEqual(const KeyTy &lhs, IntegerSet rhs) {
|
|
|
|
if (rhs == getEmptyKey() || rhs == getTombstoneKey())
|
|
|
|
return false;
|
|
|
|
return lhs == std::make_tuple(rhs.getNumDims(), rhs.getNumSymbols(),
|
|
|
|
rhs.getConstraints(), rhs.getEqFlags());
|
|
|
|
}
|
|
|
|
};
|
2018-06-23 13:03:48 +08:00
|
|
|
} // end anonymous namespace.
|
|
|
|
|
2020-04-12 14:11:51 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// MLIRContextImpl
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-06-23 13:03:48 +08:00
|
|
|
namespace mlir {
|
|
|
|
/// This is the implementation of the MLIRContext class, using the pImpl idiom.
|
|
|
|
/// This class is completely private to this file, so everything is public.
|
|
|
|
class MLIRContextImpl {
|
|
|
|
public:
|
2019-03-15 05:14:14 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Identifier uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Identifier allocator and mutex for thread safety.
|
|
|
|
llvm::BumpPtrAllocator identifierAllocator;
|
|
|
|
llvm::sys::SmartRWMutex<true> identifierMutex;
|
|
|
|
|
2019-05-02 02:14:15 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Diagnostics
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
DiagnosticEngine diagEngine;
|
|
|
|
|
2020-03-30 06:35:38 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Options
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// In most cases, creating operation in unregistered dialect is not desired
|
|
|
|
/// and indicate a misconfiguration of the compiler. This option enables to
|
|
|
|
/// detect such use cases
|
|
|
|
bool allowUnregisteredDialects = false;
|
|
|
|
|
2020-05-03 03:28:57 +08:00
|
|
|
/// Enable support for multi-threading within MLIR.
|
|
|
|
bool threadingIsEnabled = true;
|
|
|
|
|
2020-04-04 10:02:39 +08:00
|
|
|
/// If the operation should be attached to diagnostics printed via the
|
|
|
|
/// Operation::emit methods.
|
2020-04-12 14:11:51 +08:00
|
|
|
bool printOpOnDiagnostic = true;
|
2020-04-04 10:02:39 +08:00
|
|
|
|
|
|
|
/// If the current stack trace should be attached when emitting diagnostics.
|
2020-04-12 14:11:51 +08:00
|
|
|
bool printStackTraceOnDiagnostic = false;
|
2020-04-04 10:02:39 +08:00
|
|
|
|
2019-03-15 05:14:00 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Other
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2019-03-15 05:14:14 +08:00
|
|
|
/// A general purpose mutex to lock access to parts of the context that do not
|
2019-05-02 02:14:15 +08:00
|
|
|
/// have a more specific mutex, e.g. registry operations.
|
2019-03-15 05:14:14 +08:00
|
|
|
llvm::sys::SmartRWMutex<true> contextMutex;
|
2018-08-28 12:05:16 +08:00
|
|
|
|
2018-10-22 10:49:31 +08:00
|
|
|
/// This is a list of dialects that are created referring to this context.
|
|
|
|
/// The MLIRContext owns the objects.
|
|
|
|
std::vector<std::unique_ptr<Dialect>> dialects;
|
|
|
|
|
|
|
|
/// This is a mapping from operation name to AbstractOperation for registered
|
|
|
|
/// operations.
|
2019-04-28 09:35:04 +08:00
|
|
|
llvm::StringMap<AbstractOperation> registeredOperations;
|
2018-10-22 10:49:31 +08:00
|
|
|
|
2020-04-11 14:46:52 +08:00
|
|
|
/// This is a mapping from type id to Dialect for registered attributes and
|
|
|
|
/// types.
|
|
|
|
DenseMap<TypeID, Dialect *> registeredDialectSymbols;
|
2019-01-03 06:16:40 +08:00
|
|
|
|
2018-06-29 11:45:33 +08:00
|
|
|
/// These are identifiers uniqued into this MLIRContext.
|
2020-04-12 13:06:45 +08:00
|
|
|
llvm::StringSet<llvm::BumpPtrAllocator &> identifiers;
|
2018-06-29 11:45:33 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Affine uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Affine allocator and mutex for thread safety.
|
|
|
|
llvm::BumpPtrAllocator affineAllocator;
|
|
|
|
llvm::sys::SmartRWMutex<true> affineMutex;
|
|
|
|
|
2018-06-30 09:09:29 +08:00
|
|
|
// Affine map uniquing.
|
2018-10-10 07:39:24 +08:00
|
|
|
using AffineMapSet = DenseSet<AffineMap, AffineMapKeyInfo>;
|
2018-06-30 09:09:29 +08:00
|
|
|
AffineMapSet affineMaps;
|
|
|
|
|
2018-10-25 23:33:02 +08:00
|
|
|
// Integer set uniquing.
|
|
|
|
using IntegerSets = DenseSet<IntegerSet, IntegerSetKeyInfo>;
|
|
|
|
IntegerSets integerSets;
|
|
|
|
|
2019-10-04 19:37:14 +08:00
|
|
|
// Affine expression uniquing.
|
2019-05-21 16:34:13 +08:00
|
|
|
StorageUniquer affineUniquer;
|
2018-07-25 13:34:09 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Type uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
2019-04-26 12:01:21 +08:00
|
|
|
StorageUniquer typeUniquer;
|
2018-07-17 00:45:22 +08:00
|
|
|
|
2019-06-22 00:20:42 +08:00
|
|
|
/// Cached Type Instances.
|
|
|
|
FloatType bf16Ty, f16Ty, f32Ty, f64Ty;
|
|
|
|
IndexType indexTy;
|
|
|
|
IntegerType int1Ty, int8Ty, int16Ty, int32Ty, int64Ty, int128Ty;
|
|
|
|
NoneType noneType;
|
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Attribute uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
2019-05-01 01:31:29 +08:00
|
|
|
StorageUniquer attributeUniquer;
|
2019-03-15 05:13:29 +08:00
|
|
|
|
2019-06-22 00:20:42 +08:00
|
|
|
/// Cached Attribute Instances.
|
|
|
|
BoolAttr falseAttr, trueAttr;
|
|
|
|
UnitAttr unitAttr;
|
2019-06-22 09:27:49 +08:00
|
|
|
UnknownLoc unknownLocAttr;
|
2019-06-22 00:20:42 +08:00
|
|
|
|
2018-06-23 13:03:48 +08:00
|
|
|
public:
|
2020-05-03 03:28:57 +08:00
|
|
|
MLIRContextImpl() : identifiers(identifierAllocator) {}
|
2018-06-23 13:03:48 +08:00
|
|
|
};
|
|
|
|
} // end namespace mlir
|
|
|
|
|
2018-09-22 09:12:15 +08:00
|
|
|
MLIRContext::MLIRContext() : impl(new MLIRContextImpl()) {
|
2020-05-03 03:28:57 +08:00
|
|
|
// Initialize values based on the command line flags if they were provided.
|
|
|
|
if (clOptions.isConstructed()) {
|
|
|
|
disableMultithreading(clOptions->disableThreading);
|
|
|
|
printOpOnDiagnostic(clOptions->printOpOnDiagnostic);
|
|
|
|
printStackTraceOnDiagnostic(clOptions->printStackTraceOnDiagnostic);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register dialects with this context.
|
2018-10-22 10:49:31 +08:00
|
|
|
new BuiltinDialect(this);
|
|
|
|
registerAllDialects(this);
|
2019-06-22 00:20:42 +08:00
|
|
|
|
|
|
|
// Initialize several common attributes and types to avoid the need to lock
|
|
|
|
// the context when accessing them.
|
|
|
|
|
|
|
|
//// Types.
|
|
|
|
/// Floating-point Types.
|
|
|
|
impl->bf16Ty = TypeUniquer::get<FloatType>(this, StandardTypes::BF16);
|
|
|
|
impl->f16Ty = TypeUniquer::get<FloatType>(this, StandardTypes::F16);
|
|
|
|
impl->f32Ty = TypeUniquer::get<FloatType>(this, StandardTypes::F32);
|
|
|
|
impl->f64Ty = TypeUniquer::get<FloatType>(this, StandardTypes::F64);
|
|
|
|
/// Index Type.
|
|
|
|
impl->indexTy = TypeUniquer::get<IndexType>(this, StandardTypes::Index);
|
|
|
|
/// Integer Types.
|
2020-01-11 03:48:24 +08:00
|
|
|
impl->int1Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 1,
|
|
|
|
IntegerType::Signless);
|
|
|
|
impl->int8Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 8,
|
|
|
|
IntegerType::Signless);
|
|
|
|
impl->int16Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer,
|
|
|
|
16, IntegerType::Signless);
|
|
|
|
impl->int32Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer,
|
|
|
|
32, IntegerType::Signless);
|
|
|
|
impl->int64Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer,
|
|
|
|
64, IntegerType::Signless);
|
|
|
|
impl->int128Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer,
|
|
|
|
128, IntegerType::Signless);
|
2019-06-22 00:20:42 +08:00
|
|
|
/// None Type.
|
|
|
|
impl->noneType = TypeUniquer::get<NoneType>(this, StandardTypes::None);
|
|
|
|
|
|
|
|
//// Attributes.
|
|
|
|
//// Note: These must be registered after the types as they may generate one
|
|
|
|
//// of the above types internally.
|
|
|
|
/// Bool Attributes.
|
|
|
|
// Note: The context is also used within the BoolAttrStorage.
|
|
|
|
impl->falseAttr = AttributeUniquer::get<BoolAttr>(
|
|
|
|
this, StandardAttributes::Bool, this, false);
|
|
|
|
impl->trueAttr = AttributeUniquer::get<BoolAttr>(
|
|
|
|
this, StandardAttributes::Bool, this, true);
|
|
|
|
/// Unit Attribute.
|
|
|
|
impl->unitAttr =
|
|
|
|
AttributeUniquer::get<UnitAttr>(this, StandardAttributes::Unit);
|
2019-06-22 09:27:49 +08:00
|
|
|
/// Unknown Location Attribute.
|
|
|
|
impl->unknownLocAttr = AttributeUniquer::get<UnknownLoc>(
|
|
|
|
this, StandardAttributes::UnknownLocation);
|
2018-09-22 09:12:15 +08:00
|
|
|
}
|
2018-06-23 13:03:48 +08:00
|
|
|
|
2018-07-24 02:44:40 +08:00
|
|
|
MLIRContext::~MLIRContext() {}
|
2018-06-23 13:03:48 +08:00
|
|
|
|
2019-03-15 05:13:29 +08:00
|
|
|
/// Copy the specified array of elements into memory managed by the provided
|
|
|
|
/// bump pointer allocator. This assumes the elements are all PODs.
|
|
|
|
template <typename T>
|
|
|
|
static ArrayRef<T> copyArrayRefInto(llvm::BumpPtrAllocator &allocator,
|
|
|
|
ArrayRef<T> elements) {
|
|
|
|
auto result = allocator.Allocate<T>(elements.size());
|
|
|
|
std::uninitialized_copy(elements.begin(), elements.end(), result);
|
|
|
|
return ArrayRef<T>(result, elements.size());
|
|
|
|
}
|
|
|
|
|
2018-10-22 10:49:31 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Diagnostic Handlers
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-02 02:14:15 +08:00
|
|
|
/// Returns the diagnostic engine for this context.
|
|
|
|
DiagnosticEngine &MLIRContext::getDiagEngine() { return getImpl().diagEngine; }
|
|
|
|
|
2018-10-22 10:49:31 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Dialect and Operation Registration
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-10-26 07:44:04 +08:00
|
|
|
/// Return information about all registered IR dialects.
|
2019-03-24 07:42:01 +08:00
|
|
|
std::vector<Dialect *> MLIRContext::getRegisteredDialects() {
|
2019-03-15 05:14:14 +08:00
|
|
|
// Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedReaderLock registryLock(impl->contextMutex, impl->threadingIsEnabled);
|
2018-10-26 07:44:04 +08:00
|
|
|
std::vector<Dialect *> result;
|
2020-05-03 03:28:57 +08:00
|
|
|
result.reserve(impl->dialects.size());
|
|
|
|
for (auto &dialect : impl->dialects)
|
2018-10-26 07:44:04 +08:00
|
|
|
result.push_back(dialect.get());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-01-03 01:26:35 +08:00
|
|
|
/// Get a registered IR dialect with the given namespace. If none is found,
|
|
|
|
/// then return nullptr.
|
2019-03-24 07:42:01 +08:00
|
|
|
Dialect *MLIRContext::getRegisteredDialect(StringRef name) {
|
2019-03-15 05:14:14 +08:00
|
|
|
// Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedReaderLock registryLock(impl->contextMutex, impl->threadingIsEnabled);
|
|
|
|
|
|
|
|
// Dialects are sorted by name, so we can use binary search for lookup.
|
|
|
|
auto it = llvm::lower_bound(
|
|
|
|
impl->dialects, name,
|
|
|
|
[](const auto &lhs, StringRef rhs) { return lhs->getNamespace() < rhs; });
|
|
|
|
return (it != impl->dialects.end() && (*it)->getNamespace() == name)
|
|
|
|
? (*it).get()
|
|
|
|
: nullptr;
|
2018-11-21 06:47:10 +08:00
|
|
|
}
|
|
|
|
|
2018-10-22 10:49:31 +08:00
|
|
|
/// Register this dialect object with the specified context. The context
|
|
|
|
/// takes ownership of the heap allocated dialect.
|
|
|
|
void Dialect::registerDialect(MLIRContext *context) {
|
2019-03-15 05:14:14 +08:00
|
|
|
auto &impl = context->getImpl();
|
2019-08-21 10:58:35 +08:00
|
|
|
std::unique_ptr<Dialect> dialect(this);
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedWriterLock registryLock(impl.contextMutex, impl.threadingIsEnabled);
|
2019-08-21 10:58:35 +08:00
|
|
|
|
|
|
|
// Get the correct insertion position sorted by namespace.
|
2020-05-03 03:28:57 +08:00
|
|
|
auto insertPt = llvm::lower_bound(
|
|
|
|
impl.dialects, dialect, [](const auto &lhs, const auto &rhs) {
|
|
|
|
return lhs->getNamespace() < rhs->getNamespace();
|
|
|
|
});
|
2019-08-21 10:58:35 +08:00
|
|
|
|
2019-04-16 07:32:00 +08:00
|
|
|
// Abort if dialect with namespace has already been registered.
|
2019-08-21 10:58:35 +08:00
|
|
|
if (insertPt != impl.dialects.end() &&
|
|
|
|
(*insertPt)->getNamespace() == getNamespace()) {
|
|
|
|
llvm::report_fatal_error("a dialect with namespace '" + getNamespace() +
|
2019-04-16 07:32:00 +08:00
|
|
|
"' has already been registered");
|
|
|
|
}
|
2019-08-21 10:58:35 +08:00
|
|
|
impl.dialects.insert(insertPt, std::move(dialect));
|
2018-10-22 10:49:31 +08:00
|
|
|
}
|
|
|
|
|
2020-03-30 06:35:38 +08:00
|
|
|
bool MLIRContext::allowsUnregisteredDialects() {
|
|
|
|
return impl->allowUnregisteredDialects;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MLIRContext::allowUnregisteredDialects(bool allowing) {
|
|
|
|
impl->allowUnregisteredDialects = allowing;
|
|
|
|
}
|
|
|
|
|
2020-05-03 03:28:57 +08:00
|
|
|
/// Return true if multi-threading is disabled by the context.
|
|
|
|
bool MLIRContext::isMultithreadingEnabled() {
|
|
|
|
return impl->threadingIsEnabled && llvm::llvm_is_multithreaded();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the flag specifying if multi-threading is disabled by the context.
|
|
|
|
void MLIRContext::disableMultithreading(bool disable) {
|
|
|
|
impl->threadingIsEnabled = !disable;
|
|
|
|
|
|
|
|
// Update the threading mode for each of the uniquers.
|
|
|
|
impl->affineUniquer.disableMultithreading(disable);
|
|
|
|
impl->attributeUniquer.disableMultithreading(disable);
|
|
|
|
impl->typeUniquer.disableMultithreading(disable);
|
|
|
|
}
|
|
|
|
|
2020-04-04 10:02:39 +08:00
|
|
|
/// Return true if we should attach the operation to diagnostics emitted via
|
|
|
|
/// Operation::emit.
|
|
|
|
bool MLIRContext::shouldPrintOpOnDiagnostic() {
|
|
|
|
return impl->printOpOnDiagnostic;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the flag specifying if we should attach the operation to diagnostics
|
|
|
|
/// emitted via Operation::emit.
|
|
|
|
void MLIRContext::printOpOnDiagnostic(bool enable) {
|
2020-04-12 14:11:51 +08:00
|
|
|
impl->printOpOnDiagnostic = enable;
|
2020-04-04 10:02:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Return true if we should attach the current stacktrace to diagnostics when
|
|
|
|
/// emitted.
|
|
|
|
bool MLIRContext::shouldPrintStackTraceOnDiagnostic() {
|
|
|
|
return impl->printStackTraceOnDiagnostic;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the flag specifying if we should attach the current stacktrace when
|
|
|
|
/// emitting diagnostics.
|
|
|
|
void MLIRContext::printStackTraceOnDiagnostic(bool enable) {
|
2020-04-12 14:11:51 +08:00
|
|
|
impl->printStackTraceOnDiagnostic = enable;
|
2020-04-04 10:02:39 +08:00
|
|
|
}
|
|
|
|
|
2018-10-26 07:44:04 +08:00
|
|
|
/// Return information about all registered operations. This isn't very
|
|
|
|
/// efficient, typically you should ask the operations about their properties
|
|
|
|
/// directly.
|
2019-03-24 07:42:01 +08:00
|
|
|
std::vector<AbstractOperation *> MLIRContext::getRegisteredOperations() {
|
2018-10-26 07:44:04 +08:00
|
|
|
std::vector<std::pair<StringRef, AbstractOperation *>> opsToSort;
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
{ // Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedReaderLock registryLock(impl->contextMutex, impl->threadingIsEnabled);
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
// We just have the operations in a non-deterministic hash table order. Dump
|
|
|
|
// into a temporary array, then sort it by operation name to get a stable
|
|
|
|
// ordering.
|
2019-04-28 09:35:04 +08:00
|
|
|
llvm::StringMap<AbstractOperation> ®isteredOps =
|
2020-05-03 03:28:57 +08:00
|
|
|
impl->registeredOperations;
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
opsToSort.reserve(registeredOps.size());
|
|
|
|
for (auto &elt : registeredOps)
|
|
|
|
opsToSort.push_back({elt.first(), &elt.second});
|
|
|
|
}
|
2018-10-26 07:44:04 +08:00
|
|
|
|
|
|
|
llvm::array_pod_sort(opsToSort.begin(), opsToSort.end());
|
|
|
|
|
|
|
|
std::vector<AbstractOperation *> result;
|
|
|
|
result.reserve(opsToSort.size());
|
|
|
|
for (auto &elt : opsToSort)
|
|
|
|
result.push_back(elt.second);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-10-22 10:49:31 +08:00
|
|
|
void Dialect::addOperation(AbstractOperation opInfo) {
|
2019-06-06 04:56:01 +08:00
|
|
|
assert((getNamespace().empty() ||
|
|
|
|
opInfo.name.split('.').first == getNamespace()) &&
|
|
|
|
"op name doesn't start with dialect namespace");
|
2018-10-22 10:49:31 +08:00
|
|
|
assert(&opInfo.dialect == this && "Dialect object mismatch");
|
|
|
|
auto &impl = context->getImpl();
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedWriterLock registryLock(impl.contextMutex, impl.threadingIsEnabled);
|
2018-10-22 10:49:31 +08:00
|
|
|
if (!impl.registeredOperations.insert({opInfo.name, opInfo}).second) {
|
2019-03-30 13:30:54 +08:00
|
|
|
llvm::errs() << "error: operation named '" << opInfo.name
|
2018-10-22 10:49:31 +08:00
|
|
|
<< "' is already registered.\n";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-11 06:14:13 +08:00
|
|
|
/// Register a dialect-specific symbol(e.g. type) with the current context.
|
2020-04-11 14:46:52 +08:00
|
|
|
void Dialect::addSymbol(TypeID typeID) {
|
2019-01-03 06:16:40 +08:00
|
|
|
auto &impl = context->getImpl();
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedWriterLock registryLock(impl.contextMutex, impl.threadingIsEnabled);
|
2020-04-11 14:46:52 +08:00
|
|
|
if (!impl.registeredDialectSymbols.insert({typeID, this}).second) {
|
2019-05-11 06:14:13 +08:00
|
|
|
llvm::errs() << "error: dialect symbol already registered.\n";
|
2019-01-03 06:16:40 +08:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-22 10:49:31 +08:00
|
|
|
/// Look up the specified operation in the operation set and return a pointer
|
|
|
|
/// to it if present. Otherwise, return a null pointer.
|
|
|
|
const AbstractOperation *AbstractOperation::lookup(StringRef opName,
|
|
|
|
MLIRContext *context) {
|
|
|
|
auto &impl = context->getImpl();
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedReaderLock registryLock(impl.contextMutex, impl.threadingIsEnabled);
|
2018-10-22 10:49:31 +08:00
|
|
|
auto it = impl.registeredOperations.find(opName);
|
|
|
|
if (it != impl.registeredOperations.end())
|
|
|
|
return &it->second;
|
|
|
|
return nullptr;
|
2018-07-06 00:12:11 +08:00
|
|
|
}
|
2018-06-23 13:03:48 +08:00
|
|
|
|
2018-06-29 11:45:33 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-05 01:43:29 +08:00
|
|
|
// Identifier uniquing
|
2018-06-29 11:45:33 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Return an identifier for the specified string.
|
2019-03-24 07:42:01 +08:00
|
|
|
Identifier Identifier::get(StringRef str, MLIRContext *context) {
|
2018-06-29 11:45:33 +08:00
|
|
|
auto &impl = context->getImpl();
|
2019-03-15 05:14:14 +08:00
|
|
|
|
2020-05-03 03:28:57 +08:00
|
|
|
// Check for an existing identifier in read-only mode.
|
|
|
|
if (context->isMultithreadingEnabled()) {
|
2019-03-15 05:14:14 +08:00
|
|
|
llvm::sys::SmartScopedReader<true> contextLock(impl.identifierMutex);
|
|
|
|
auto it = impl.identifiers.find(str);
|
|
|
|
if (it != impl.identifiers.end())
|
Reimplement mlir::Identifier to be a wrapper around 'StringMapEntry*' instead of a wrapper around a 'const char*'. This makes it so strref() can be computed without calling strlen, which is more efficient and less error-prone. While here...
Summary:
..., reimplement DenseMapInfo<mlir::Identifier>::getHashValue in terms of mlir::hash_value(Identifier).
Both of these improvements were suggested by River, thanks!
Reviewers: rriddle!
Subscribers: mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, aartbik, liufengdb, Joonsoo, grosul1, frgossen, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77999
2020-04-13 13:15:26 +08:00
|
|
|
return Identifier(&*it);
|
2019-03-15 05:14:14 +08:00
|
|
|
}
|
|
|
|
|
Implement some micro-optimizations for Identifier. NFC
Summary:
Identifier doesn't maintain a length, so every time strref() is called,
it does a strlen. In the case of comparisons, this isn't necessary:
there is no need to scan a string to get its length, then rescan it to
do the comparison. Just done one comparison.
This also moves some assertions in Identifier::get as another
microoptimization for 'assertions enabled' modes.
Reviewers: rriddle!
Subscribers: mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, liufengdb, Joonsoo, grosul1, frgossen, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77958
2020-04-12 09:15:56 +08:00
|
|
|
// Check invariants after seeing if we already have something in the
|
|
|
|
// identifier table - if we already had it in the table, then it already
|
|
|
|
// passed invariant checks.
|
|
|
|
assert(!str.empty() && "Cannot create an empty identifier");
|
|
|
|
assert(str.find('\0') == StringRef::npos &&
|
|
|
|
"Cannot create an identifier with a nul character");
|
|
|
|
|
2019-10-04 19:37:14 +08:00
|
|
|
// Acquire a writer-lock so that we can safely create the new instance.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedWriterLock contextLock(impl.identifierMutex, impl.threadingIsEnabled);
|
2020-04-12 13:06:45 +08:00
|
|
|
auto it = impl.identifiers.insert(str).first;
|
Reimplement mlir::Identifier to be a wrapper around 'StringMapEntry*' instead of a wrapper around a 'const char*'. This makes it so strref() can be computed without calling strlen, which is more efficient and less error-prone. While here...
Summary:
..., reimplement DenseMapInfo<mlir::Identifier>::getHashValue in terms of mlir::hash_value(Identifier).
Both of these improvements were suggested by River, thanks!
Reviewers: rriddle!
Subscribers: mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, arpith-jacob, mgester, lucyrfox, aartbik, liufengdb, Joonsoo, grosul1, frgossen, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D77999
2020-04-13 13:15:26 +08:00
|
|
|
return Identifier(&*it);
|
2018-06-29 11:45:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-05 01:43:29 +08:00
|
|
|
// Type uniquing
|
2018-06-29 11:45:33 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-04-11 14:46:52 +08:00
|
|
|
static Dialect &lookupDialectForSymbol(MLIRContext *ctx, TypeID typeID) {
|
2019-05-11 06:14:13 +08:00
|
|
|
auto &impl = ctx->getImpl();
|
2020-04-11 14:46:52 +08:00
|
|
|
auto it = impl.registeredDialectSymbols.find(typeID);
|
2019-05-11 06:14:13 +08:00
|
|
|
assert(it != impl.registeredDialectSymbols.end() &&
|
|
|
|
"symbol is not registered.");
|
|
|
|
return *it->second;
|
|
|
|
}
|
|
|
|
|
[mlir] NFC: fix trivial typo in source files
Summary: fix trivial typos in the source files
Reviewers: mravishankar, antiagainst, nicolasvasilache, herhut, rriddle, aartbik
Reviewed By: antiagainst, rriddle
Subscribers: mehdi_amini, rriddle, jpienaar, burmako, shauheen, antiagainst, nicolasvasilache, csigg, arpith-jacob, mgester, lucyrfox, aartbik, liufengdb, Joonsoo, bader, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D76876
2020-03-27 02:51:37 +08:00
|
|
|
/// Returns the storage uniquer used for constructing type storage instances.
|
2019-04-26 12:01:21 +08:00
|
|
|
/// This should not be used directly.
|
|
|
|
StorageUniquer &MLIRContext::getTypeUniquer() { return getImpl().typeUniquer; }
|
2018-12-22 02:18:03 +08:00
|
|
|
|
2019-01-03 06:16:40 +08:00
|
|
|
/// Get the dialect that registered the type with the provided typeid.
|
2020-04-11 14:46:52 +08:00
|
|
|
Dialect &TypeUniquer::lookupDialectForType(MLIRContext *ctx, TypeID typeID) {
|
2019-05-11 06:14:13 +08:00
|
|
|
return lookupDialectForSymbol(ctx, typeID);
|
2018-12-22 02:18:03 +08:00
|
|
|
}
|
|
|
|
|
2019-06-22 00:20:42 +08:00
|
|
|
FloatType FloatType::get(StandardTypes::Kind kind, MLIRContext *context) {
|
|
|
|
assert(kindof(kind) && "Not a FP kind.");
|
|
|
|
switch (kind) {
|
|
|
|
case StandardTypes::BF16:
|
|
|
|
return context->getImpl().bf16Ty;
|
|
|
|
case StandardTypes::F16:
|
|
|
|
return context->getImpl().f16Ty;
|
|
|
|
case StandardTypes::F32:
|
|
|
|
return context->getImpl().f32Ty;
|
|
|
|
case StandardTypes::F64:
|
|
|
|
return context->getImpl().f64Ty;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("unexpected floating-point kind");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get an instance of the IndexType.
|
|
|
|
IndexType IndexType::get(MLIRContext *context) {
|
|
|
|
return context->getImpl().indexTy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return an existing integer type instance if one is cached within the
|
|
|
|
/// context.
|
2020-01-11 03:48:24 +08:00
|
|
|
static IntegerType
|
|
|
|
getCachedIntegerType(unsigned width,
|
|
|
|
IntegerType::SignednessSemantics signedness,
|
|
|
|
MLIRContext *context) {
|
|
|
|
if (signedness != IntegerType::Signless)
|
|
|
|
return IntegerType();
|
|
|
|
|
2019-06-22 00:20:42 +08:00
|
|
|
switch (width) {
|
|
|
|
case 1:
|
|
|
|
return context->getImpl().int1Ty;
|
|
|
|
case 8:
|
|
|
|
return context->getImpl().int8Ty;
|
|
|
|
case 16:
|
|
|
|
return context->getImpl().int16Ty;
|
|
|
|
case 32:
|
|
|
|
return context->getImpl().int32Ty;
|
|
|
|
case 64:
|
|
|
|
return context->getImpl().int64Ty;
|
|
|
|
case 128:
|
|
|
|
return context->getImpl().int128Ty;
|
|
|
|
default:
|
|
|
|
return IntegerType();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
IntegerType IntegerType::get(unsigned width, MLIRContext *context) {
|
2020-01-11 03:48:24 +08:00
|
|
|
return get(width, IntegerType::Signless, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
IntegerType IntegerType::get(unsigned width,
|
|
|
|
IntegerType::SignednessSemantics signedness,
|
|
|
|
MLIRContext *context) {
|
|
|
|
if (auto cached = getCachedIntegerType(width, signedness, context))
|
2019-06-22 00:20:42 +08:00
|
|
|
return cached;
|
2020-01-11 03:48:24 +08:00
|
|
|
return Base::get(context, StandardTypes::Integer, width, signedness);
|
|
|
|
}
|
|
|
|
|
|
|
|
IntegerType IntegerType::getChecked(unsigned width, Location location) {
|
|
|
|
return getChecked(width, IntegerType::Signless, location);
|
2019-06-22 00:20:42 +08:00
|
|
|
}
|
|
|
|
|
2020-01-11 03:48:24 +08:00
|
|
|
IntegerType IntegerType::getChecked(unsigned width,
|
|
|
|
SignednessSemantics signedness,
|
2019-06-22 00:20:42 +08:00
|
|
|
Location location) {
|
2020-01-11 03:48:24 +08:00
|
|
|
if (auto cached =
|
|
|
|
getCachedIntegerType(width, signedness, location->getContext()))
|
2019-06-22 00:20:42 +08:00
|
|
|
return cached;
|
2020-01-11 03:48:24 +08:00
|
|
|
return Base::getChecked(location, StandardTypes::Integer, width, signedness);
|
2019-06-22 00:20:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get an instance of the NoneType.
|
|
|
|
NoneType NoneType::get(MLIRContext *context) {
|
|
|
|
return context->getImpl().noneType;
|
|
|
|
}
|
|
|
|
|
2018-07-05 01:43:29 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Attribute uniquing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-01 01:31:29 +08:00
|
|
|
/// Returns the storage uniquer used for constructing attribute storage
|
|
|
|
/// instances. This should not be used directly.
|
|
|
|
StorageUniquer &MLIRContext::getAttributeUniquer() {
|
|
|
|
return getImpl().attributeUniquer;
|
2018-08-20 12:17:22 +08:00
|
|
|
}
|
|
|
|
|
2020-04-12 14:00:11 +08:00
|
|
|
/// Initialize the given attribute storage instance.
|
|
|
|
void AttributeUniquer::initializeAttributeStorage(AttributeStorage *storage,
|
|
|
|
MLIRContext *ctx,
|
|
|
|
TypeID attrID) {
|
|
|
|
storage->initializeDialect(lookupDialectForSymbol(ctx, attrID));
|
|
|
|
|
|
|
|
// If the attribute did not provide a type, then default to NoneType.
|
|
|
|
if (!storage->getType())
|
|
|
|
storage->setType(NoneType::get(ctx));
|
2019-05-11 06:14:13 +08:00
|
|
|
}
|
|
|
|
|
2019-06-22 00:20:42 +08:00
|
|
|
BoolAttr BoolAttr::get(bool value, MLIRContext *context) {
|
|
|
|
return value ? context->getImpl().trueAttr : context->getImpl().falseAttr;
|
|
|
|
}
|
|
|
|
|
|
|
|
UnitAttr UnitAttr::get(MLIRContext *context) {
|
|
|
|
return context->getImpl().unitAttr;
|
|
|
|
}
|
|
|
|
|
2019-06-26 07:57:32 +08:00
|
|
|
Location UnknownLoc::get(MLIRContext *context) {
|
2019-06-22 09:27:49 +08:00
|
|
|
return context->getImpl().unknownLocAttr;
|
|
|
|
}
|
|
|
|
|
2018-07-05 01:43:29 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-05-21 16:34:13 +08:00
|
|
|
// AffineMap uniquing
|
2018-07-05 01:43:29 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-21 16:34:13 +08:00
|
|
|
StorageUniquer &MLIRContext::getAffineUniquer() {
|
|
|
|
return getImpl().affineUniquer;
|
|
|
|
}
|
|
|
|
|
2019-08-08 01:31:14 +08:00
|
|
|
AffineMap AffineMap::getImpl(unsigned dimCount, unsigned symbolCount,
|
|
|
|
ArrayRef<AffineExpr> results,
|
|
|
|
MLIRContext *context) {
|
|
|
|
auto &impl = context->getImpl();
|
2019-05-30 05:56:41 +08:00
|
|
|
auto key = std::make_tuple(dimCount, symbolCount, results);
|
2018-07-04 11:16:08 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// Safely get or create an AffineMap instance.
|
2020-05-03 03:28:57 +08:00
|
|
|
return safeGetOrCreate(
|
|
|
|
impl.affineMaps, key, impl.affineMutex, impl.threadingIsEnabled, [&] {
|
|
|
|
auto *res = impl.affineAllocator.Allocate<detail::AffineMapStorage>();
|
2018-07-04 11:16:08 +08:00
|
|
|
|
2020-05-03 03:28:57 +08:00
|
|
|
// Copy the results into the bump pointer.
|
|
|
|
results = copyArrayRefInto(impl.affineAllocator, results);
|
2018-07-04 11:16:08 +08:00
|
|
|
|
2020-05-03 03:28:57 +08:00
|
|
|
// Initialize the memory using placement new.
|
|
|
|
new (res)
|
|
|
|
detail::AffineMapStorage{dimCount, symbolCount, results, context};
|
|
|
|
return AffineMap(res);
|
|
|
|
});
|
2018-06-30 09:09:29 +08:00
|
|
|
}
|
|
|
|
|
2019-08-08 01:31:14 +08:00
|
|
|
AffineMap AffineMap::get(MLIRContext *context) {
|
|
|
|
return getImpl(/*dimCount=*/0, /*symbolCount=*/0, /*results=*/{}, context);
|
|
|
|
}
|
|
|
|
|
2020-03-11 03:10:34 +08:00
|
|
|
AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
|
|
|
|
MLIRContext *context) {
|
2020-04-01 16:47:06 +08:00
|
|
|
return getImpl(dimCount, symbolCount, /*results=*/{}, context);
|
2020-03-11 03:10:34 +08:00
|
|
|
}
|
|
|
|
|
2019-08-08 01:31:14 +08:00
|
|
|
AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
|
[MLIR] Improve support for 0-dimensional Affine Maps.
Summary:
Modified AffineMap::get to remove support for the overload which allowed
an ArrayRef of AffineExpr but no context (and gathered the context from a
presumed first entry, resulting in bugs when there were 0 results).
Instead, we support only a ArrayRef and a context, and a version which
takes a single AffineExpr.
Additionally, removed some now needless case logic which previously
special cased which call to AffineMap::get to use.
Reviewers: flaub, bondhugula, rriddle!, nicolasvasilache, ftynse, ulysseB, mravishankar, antiagainst, aartbik
Subscribers: mehdi_amini, jpienaar, burmako, shauheen, antiagainst, arpith-jacob, mgester, lucyrfox, liufengdb, Joonsoo, bader, grosul1, frgossen, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D78226
2020-04-16 02:12:47 +08:00
|
|
|
AffineExpr result) {
|
|
|
|
return getImpl(dimCount, symbolCount, {result}, result.getContext());
|
2019-08-08 01:31:14 +08:00
|
|
|
}
|
|
|
|
|
2020-04-01 16:47:06 +08:00
|
|
|
AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
|
|
|
|
ArrayRef<AffineExpr> results, MLIRContext *context) {
|
|
|
|
return getImpl(dimCount, symbolCount, results, context);
|
|
|
|
}
|
|
|
|
|
2018-08-08 05:24:38 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Integer Sets: these are allocated into the bump pointer, and are immutable.
|
2018-10-25 23:33:02 +08:00
|
|
|
// Unlike AffineMap's, these are uniqued only if they are small.
|
2018-08-08 05:24:38 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-10-11 00:45:59 +08:00
|
|
|
IntegerSet IntegerSet::get(unsigned dimCount, unsigned symbolCount,
|
|
|
|
ArrayRef<AffineExpr> constraints,
|
2018-10-25 23:33:02 +08:00
|
|
|
ArrayRef<bool> eqFlags) {
|
|
|
|
// The number of constraints can't be zero.
|
|
|
|
assert(!constraints.empty());
|
|
|
|
assert(constraints.size() == eqFlags.size());
|
2018-08-08 05:24:38 +08:00
|
|
|
|
2018-10-25 23:33:02 +08:00
|
|
|
auto &impl = constraints[0].getContext()->getImpl();
|
2018-08-08 05:24:38 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// A utility function to construct a new IntegerSetStorage instance.
|
|
|
|
auto constructorFn = [&] {
|
|
|
|
auto *res = impl.affineAllocator.Allocate<detail::IntegerSetStorage>();
|
2018-10-25 23:33:02 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// Copy the results and equality flags into the bump pointer.
|
|
|
|
constraints = copyArrayRefInto(impl.affineAllocator, constraints);
|
|
|
|
eqFlags = copyArrayRefInto(impl.affineAllocator, eqFlags);
|
2018-10-25 23:33:02 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// Initialize the memory using placement new.
|
|
|
|
new (res)
|
|
|
|
detail::IntegerSetStorage{dimCount, symbolCount, constraints, eqFlags};
|
|
|
|
return IntegerSet(res);
|
|
|
|
};
|
2018-10-25 23:33:02 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// If this instance is uniqued, then we handle it separately so that multiple
|
2019-10-20 15:11:03 +08:00
|
|
|
// threads may simultaneously access existing instances.
|
2019-03-15 05:13:45 +08:00
|
|
|
if (constraints.size() < IntegerSet::kUniquingThreshold) {
|
|
|
|
auto key = std::make_tuple(dimCount, symbolCount, constraints, eqFlags);
|
|
|
|
return safeGetOrCreate(impl.integerSets, key, impl.affineMutex,
|
2020-05-03 03:28:57 +08:00
|
|
|
impl.threadingIsEnabled, constructorFn);
|
2019-03-15 05:13:45 +08:00
|
|
|
}
|
2018-10-11 00:45:59 +08:00
|
|
|
|
2019-10-04 19:37:14 +08:00
|
|
|
// Otherwise, acquire a writer-lock so that we can safely create the new
|
2019-03-15 05:13:45 +08:00
|
|
|
// instance.
|
2020-05-03 03:28:57 +08:00
|
|
|
ScopedWriterLock affineLock(impl.affineMutex, impl.threadingIsEnabled);
|
2019-03-15 05:13:45 +08:00
|
|
|
return constructorFn();
|
2018-08-08 05:24:38 +08:00
|
|
|
}
|
2020-02-21 02:31:44 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// StorageUniquerSupport
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Utility method to generate a default location for use when checking the
|
|
|
|
/// construction invariants of a storage object. This is defined out-of-line to
|
|
|
|
/// avoid the need to include Location.h.
|
|
|
|
const AttributeStorage *
|
|
|
|
mlir::detail::generateUnknownStorageLocation(MLIRContext *ctx) {
|
|
|
|
return reinterpret_cast<const AttributeStorage *>(
|
|
|
|
ctx->getImpl().unknownLocAttr.getAsOpaquePointer());
|
|
|
|
}
|