2018-06-23 13:03:48 +08:00
|
|
|
//===- MLIRContext.cpp - MLIR Type Classes --------------------------------===//
|
|
|
|
//
|
|
|
|
// Copyright 2019 The MLIR Authors.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
// =============================================================================
|
|
|
|
|
|
|
|
#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"
|
2018-07-05 01:43:29 +08:00
|
|
|
#include "mlir/Support/STLExtras.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"
|
2018-06-29 11:45:33 +08:00
|
|
|
#include "llvm/ADT/StringMap.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"
|
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
|
|
|
|
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,
|
|
|
|
ConstructorFn &&constructorFn) {
|
|
|
|
{ // Check for an existing instance in read-only mode.
|
|
|
|
llvm::sys::SmartScopedReader<true> instanceLock(mutex);
|
|
|
|
auto it = container.find_as(key);
|
|
|
|
if (it != container.end())
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aquire a writer-lock so that we can safely create the new instance.
|
|
|
|
llvm::sys::SmartScopedWriter<true> instanceLock(mutex);
|
|
|
|
|
|
|
|
// Check for an existing instance again here, because another writer thread
|
|
|
|
// may have already created one.
|
|
|
|
auto existing = container.insert_as(ValueT(), key);
|
|
|
|
if (!existing.second)
|
|
|
|
return *existing.first;
|
|
|
|
|
|
|
|
// Otherwise, construct a new instance of the value.
|
|
|
|
return *existing.first = constructorFn();
|
|
|
|
}
|
|
|
|
|
2018-06-23 13:03:48 +08:00
|
|
|
namespace {
|
2019-05-11 06:14:13 +08:00
|
|
|
/// A builtin dialect to define types/etc that are necessary for the validity of
|
|
|
|
/// the IR.
|
2019-03-02 08:58:00 +08:00
|
|
|
struct BuiltinDialect : public Dialect {
|
2019-03-30 13:30:54 +08:00
|
|
|
BuiltinDialect(MLIRContext *context) : Dialect(/*name=*/"", context) {
|
2019-06-07 07:15:42 +08:00
|
|
|
addAttributes<AffineMapAttr, ArrayAttr, BoolAttr, DenseElementsAttr,
|
2019-07-12 02:41:04 +08:00
|
|
|
DictionaryAttr, FloatAttr, SymbolRefAttr, IntegerAttr,
|
2019-06-07 07:15:42 +08:00
|
|
|
IntegerSetAttr, OpaqueAttr, OpaqueElementsAttr,
|
2019-06-14 08:24:33 +08:00
|
|
|
SparseElementsAttr, StringAttr, TypeAttr, UnitAttr>();
|
2019-06-22 09:27:49 +08:00
|
|
|
addAttributes<CallSiteLoc, FileLineColLoc, FusedLoc, NameLoc, UnknownLoc>();
|
|
|
|
|
2019-05-11 06:14:13 +08:00
|
|
|
addTypes<ComplexType, FloatType, FunctionType, IndexType, IntegerType,
|
|
|
|
MemRefType, NoneType, OpaqueType, RankedTensorType, TupleType,
|
|
|
|
UnrankedTensorType, VectorType>();
|
2019-06-04 03:08:22 +08:00
|
|
|
|
2019-06-22 11:20:27 +08:00
|
|
|
// TODO: These operations should be moved to a different dialect when they
|
|
|
|
// have been fully decoupled from the core.
|
|
|
|
addOperations<FuncOp, ModuleOp, ModuleTerminatorOp>();
|
2019-03-02 08:58:00 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
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
|
|
|
|
2019-05-11 06:14:13 +08:00
|
|
|
/// This is a mapping from class identifier to Dialect for registered
|
|
|
|
/// attributes and types.
|
|
|
|
DenseMap<const ClassID *, 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.
|
2018-07-24 02:44:40 +08:00
|
|
|
llvm::StringMap<char, 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-05-21 16:34:13 +08:00
|
|
|
// Affine expression uniqui'ing.
|
|
|
|
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:
|
2019-06-19 04:35:02 +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()) {
|
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.
|
|
|
|
impl->int1Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 1);
|
|
|
|
impl->int8Ty = TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 8);
|
|
|
|
impl->int16Ty =
|
|
|
|
TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 16);
|
|
|
|
impl->int32Ty =
|
|
|
|
TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 32);
|
|
|
|
impl->int64Ty =
|
|
|
|
TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 64);
|
|
|
|
impl->int128Ty =
|
|
|
|
TypeUniquer::get<IntegerType>(this, StandardTypes::Integer, 128);
|
|
|
|
/// 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.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(getImpl().contextMutex);
|
|
|
|
|
2018-10-26 07:44:04 +08:00
|
|
|
std::vector<Dialect *> result;
|
|
|
|
result.reserve(getImpl().dialects.size());
|
|
|
|
for (auto &dialect : getImpl().dialects)
|
|
|
|
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.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(getImpl().contextMutex);
|
2019-01-03 01:26:35 +08:00
|
|
|
for (auto &dialect : getImpl().dialects)
|
|
|
|
if (name == dialect->getNamespace())
|
|
|
|
return dialect.get();
|
|
|
|
return 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.
|
|
|
|
llvm::sys::SmartScopedWriter<true> registryLock(impl.contextMutex);
|
2019-08-21 10:58:35 +08:00
|
|
|
|
|
|
|
// Get the correct insertion position sorted by namespace.
|
|
|
|
auto insertPt =
|
|
|
|
llvm::lower_bound(impl.dialects, dialect,
|
|
|
|
[](const std::unique_ptr<Dialect> &lhs,
|
|
|
|
const std::unique_ptr<Dialect> &rhs) {
|
|
|
|
return lhs->getNamespace() < rhs->getNamespace();
|
|
|
|
});
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(getImpl().contextMutex);
|
|
|
|
|
|
|
|
// 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 =
|
2019-03-15 05:14:14 +08:00
|
|
|
getImpl().registeredOperations;
|
|
|
|
|
|
|
|
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.
|
|
|
|
llvm::sys::SmartScopedWriter<true> registryLock(impl.contextMutex);
|
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.
|
|
|
|
void Dialect::addSymbol(const ClassID *const classID) {
|
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.
|
|
|
|
llvm::sys::SmartScopedWriter<true> registryLock(impl.contextMutex);
|
2019-05-11 06:14:13 +08:00
|
|
|
if (!impl.registeredDialectSymbols.insert({classID, this}).second) {
|
|
|
|
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.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(impl.contextMutex);
|
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
|
|
|
assert(!str.empty() && "Cannot create an empty identifier");
|
|
|
|
assert(str.find('\0') == StringRef::npos &&
|
|
|
|
"Cannot create an identifier with a nul character");
|
|
|
|
|
|
|
|
auto &impl = context->getImpl();
|
2019-03-15 05:14:14 +08:00
|
|
|
|
|
|
|
{ // Check for an existing identifier in read-only mode.
|
|
|
|
llvm::sys::SmartScopedReader<true> contextLock(impl.identifierMutex);
|
|
|
|
auto it = impl.identifiers.find(str);
|
|
|
|
if (it != impl.identifiers.end())
|
|
|
|
return Identifier(it->getKeyData());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aquire a writer-lock so that we can safely create the new instance.
|
|
|
|
llvm::sys::SmartScopedWriter<true> contextLock(impl.identifierMutex);
|
2018-06-29 11:45:33 +08:00
|
|
|
auto it = impl.identifiers.insert({str, char()}).first;
|
|
|
|
return Identifier(it->getKeyData());
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-05 01:43:29 +08:00
|
|
|
// Type uniquing
|
2018-06-29 11:45:33 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-11 06:14:13 +08:00
|
|
|
static Dialect &lookupDialectForSymbol(MLIRContext *ctx,
|
|
|
|
const ClassID *const classID) {
|
|
|
|
auto &impl = ctx->getImpl();
|
|
|
|
auto it = impl.registeredDialectSymbols.find(classID);
|
|
|
|
assert(it != impl.registeredDialectSymbols.end() &&
|
|
|
|
"symbol is not registered.");
|
|
|
|
return *it->second;
|
|
|
|
}
|
|
|
|
|
2019-04-26 12:01:21 +08:00
|
|
|
/// Returns the storage unqiuer used for constructing type storage instances.
|
|
|
|
/// 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.
|
2019-05-23 00:56:11 +08:00
|
|
|
Dialect &TypeUniquer::lookupDialectForType(MLIRContext *ctx,
|
|
|
|
const ClassID *const 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.
|
|
|
|
static IntegerType getCachedIntegerType(unsigned width, MLIRContext *context) {
|
|
|
|
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) {
|
|
|
|
if (auto cached = getCachedIntegerType(width, context))
|
|
|
|
return cached;
|
|
|
|
return Base::get(context, StandardTypes::Integer, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
IntegerType IntegerType::getChecked(unsigned width, MLIRContext *context,
|
|
|
|
Location location) {
|
|
|
|
if (auto cached = getCachedIntegerType(width, context))
|
|
|
|
return cached;
|
|
|
|
return Base::getChecked(location, context, StandardTypes::Integer, width);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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
|
|
|
}
|
|
|
|
|
2019-05-11 06:14:13 +08:00
|
|
|
/// Returns a functor used to initialize new attribute storage instances.
|
|
|
|
std::function<void(AttributeStorage *)>
|
|
|
|
AttributeUniquer::getInitFn(MLIRContext *ctx, const ClassID *const attrID) {
|
|
|
|
return [ctx, attrID](AttributeStorage *storage) {
|
|
|
|
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-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.
|
|
|
|
return safeGetOrCreate(impl.affineMaps, key, impl.affineMutex, [&] {
|
|
|
|
auto *res = impl.affineAllocator.Allocate<detail::AffineMapStorage>();
|
2018-07-04 11:16:08 +08:00
|
|
|
|
2019-05-30 05:56:41 +08:00
|
|
|
// Copy the results into the bump pointer.
|
2019-03-15 05:13:45 +08:00
|
|
|
results = copyArrayRefInto(impl.affineAllocator, results);
|
2018-07-04 11:16:08 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// Initialize the memory using placement new.
|
2019-08-21 01:43:45 +08:00
|
|
|
new (res) detail::AffineMapStorage{dimCount, symbolCount, results, context};
|
2019-03-15 05:13:45 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
|
|
|
|
ArrayRef<AffineExpr> results) {
|
|
|
|
// The number of results can't be zero.
|
|
|
|
assert(!results.empty());
|
|
|
|
return getImpl(dimCount, symbolCount, results, results[0].getContext());
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
// threads may simulatenously access existing instances.
|
|
|
|
if (constraints.size() < IntegerSet::kUniquingThreshold) {
|
|
|
|
auto key = std::make_tuple(dimCount, symbolCount, constraints, eqFlags);
|
|
|
|
return safeGetOrCreate(impl.integerSets, key, impl.affineMutex,
|
|
|
|
constructorFn);
|
|
|
|
}
|
2018-10-11 00:45:59 +08:00
|
|
|
|
2019-03-15 05:13:45 +08:00
|
|
|
// Otherwise, aquire a writer-lock so that we can safely create the new
|
|
|
|
// instance.
|
|
|
|
llvm::sys::SmartScopedWriter<true> affineLock(impl.affineMutex);
|
|
|
|
return constructorFn();
|
2018-08-08 05:24:38 +08:00
|
|
|
}
|