2018-06-22 22:03:48 -07: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-09 10:59:27 -07:00
|
|
|
#include "AffineExprDetail.h"
|
2018-10-09 16:39:24 -07:00
|
|
|
#include "AffineMapDetail.h"
|
2018-10-25 15:46:10 -07:00
|
|
|
#include "AttributeDetail.h"
|
2018-10-10 09:45:59 -07:00
|
|
|
#include "IntegerSetDetail.h"
|
2018-11-08 12:28:35 -08:00
|
|
|
#include "LocationDetail.h"
|
2018-10-30 14:59:22 -07:00
|
|
|
#include "TypeDetail.h"
|
2018-06-29 18:09:29 -07:00
|
|
|
#include "mlir/IR/AffineExpr.h"
|
|
|
|
#include "mlir/IR/AffineMap.h"
|
2018-07-04 10:43:29 -07:00
|
|
|
#include "mlir/IR/Attributes.h"
|
2019-05-01 11:14:15 -07:00
|
|
|
#include "mlir/IR/Diagnostics.h"
|
2019-03-01 16:58:00 -08:00
|
|
|
#include "mlir/IR/Dialect.h"
|
2018-08-19 21:17:22 -07:00
|
|
|
#include "mlir/IR/Function.h"
|
2018-07-04 10:43:29 -07:00
|
|
|
#include "mlir/IR/Identifier.h"
|
2018-08-07 14:24:38 -07:00
|
|
|
#include "mlir/IR/IntegerSet.h"
|
2018-08-27 21:05:16 -07:00
|
|
|
#include "mlir/IR/Location.h"
|
2018-06-22 22:03:48 -07:00
|
|
|
#include "mlir/IR/Types.h"
|
2018-07-04 10:43:29 -07:00
|
|
|
#include "mlir/Support/STLExtras.h"
|
2018-06-22 22:03:48 -07:00
|
|
|
#include "llvm/ADT/DenseSet.h"
|
2018-11-09 11:27:28 -08:00
|
|
|
#include "llvm/ADT/SetVector.h"
|
2018-06-28 20:45:33 -07:00
|
|
|
#include "llvm/ADT/StringMap.h"
|
2019-05-13 09:00:22 -07:00
|
|
|
#include "llvm/ADT/Twine.h"
|
2018-06-22 22:03:48 -07:00
|
|
|
#include "llvm/Support/Allocator.h"
|
2019-03-12 10:00:21 -07:00
|
|
|
#include "llvm/Support/RWMutex.h"
|
2018-08-01 10:18:59 -07:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2018-10-21 19:49:31 -07:00
|
|
|
#include <memory>
|
2018-09-21 18:12:15 -07:00
|
|
|
|
2018-06-22 22:03:48 -07:00
|
|
|
using namespace mlir;
|
2018-10-08 10:20:25 -07:00
|
|
|
using namespace mlir::detail;
|
2019-04-27 18:35:04 -07:00
|
|
|
|
|
|
|
using llvm::hash_combine;
|
|
|
|
using llvm::hash_combine_range;
|
2018-06-22 22:03:48 -07:00
|
|
|
|
2019-03-14 14:13:29 -07: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();
|
|
|
|
}
|
|
|
|
|
2019-04-23 02:37:07 -07:00
|
|
|
/// A utility function to thread-safely get or create a uniqued instance within
|
|
|
|
/// the given vector container.
|
|
|
|
template <typename ValueT, typename ConstructorFn>
|
|
|
|
ValueT safeGetOrCreate(std::vector<ValueT> &container, unsigned position,
|
|
|
|
llvm::sys::SmartRWMutex<true> &mutex,
|
|
|
|
ConstructorFn &&constructorFn) {
|
|
|
|
{ // Check for an existing instance in read-only mode.
|
|
|
|
llvm::sys::SmartScopedReader<true> lock(mutex);
|
|
|
|
if (container.size() > position && container[position])
|
|
|
|
return container[position];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Aquire a writer-lock so that we can safely create the new instance.
|
|
|
|
llvm::sys::SmartScopedWriter<true> lock(mutex);
|
|
|
|
|
|
|
|
// Check if we need to resize.
|
|
|
|
if (position >= container.size())
|
|
|
|
container.resize(position + 1, nullptr);
|
|
|
|
|
|
|
|
// Check for an existing instance again here, because another writer thread
|
|
|
|
// may have already created one.
|
|
|
|
auto *&result = container[position];
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
return result = constructorFn();
|
|
|
|
}
|
|
|
|
|
2019-03-14 14:13:29 -07:00
|
|
|
/// A utility function to safely get or create a uniqued instance within the
|
|
|
|
/// given map container.
|
|
|
|
template <typename ContainerTy, typename KeyT, typename ConstructorFn>
|
|
|
|
static typename ContainerTy::mapped_type
|
|
|
|
safeGetOrCreate(ContainerTy &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(key);
|
|
|
|
if (it != container.end())
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 *&result = container[key];
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
// Otherwise, construct a new instance of the value.
|
|
|
|
return result = constructorFn();
|
|
|
|
}
|
|
|
|
|
2018-06-22 22:03:48 -07:00
|
|
|
namespace {
|
2019-05-10 15:14:13 -07:00
|
|
|
/// A builtin dialect to define types/etc that are necessary for the validity of
|
|
|
|
/// the IR.
|
2019-03-01 16:58:00 -08:00
|
|
|
struct BuiltinDialect : public Dialect {
|
2019-03-29 22:30:54 -07:00
|
|
|
BuiltinDialect(MLIRContext *context) : Dialect(/*name=*/"", context) {
|
2019-06-06 16:15:42 -07:00
|
|
|
addAttributes<AffineMapAttr, ArrayAttr, BoolAttr, DenseElementsAttr,
|
|
|
|
DictionaryAttr, FloatAttr, FunctionAttr, IntegerAttr,
|
|
|
|
IntegerSetAttr, OpaqueAttr, OpaqueElementsAttr,
|
2019-06-13 17:24:33 -07:00
|
|
|
SparseElementsAttr, StringAttr, TypeAttr, UnitAttr>();
|
2019-05-10 15:14:13 -07:00
|
|
|
addTypes<ComplexType, FloatType, FunctionType, IndexType, IntegerType,
|
|
|
|
MemRefType, NoneType, OpaqueType, RankedTensorType, TupleType,
|
|
|
|
UnrankedTensorType, VectorType>();
|
2019-06-03 12:08:22 -07:00
|
|
|
|
|
|
|
// TODO: FuncOp should be moved to a different dialect when it has been
|
|
|
|
// fully decoupled from the core.
|
|
|
|
addOperations<FuncOp>();
|
2019-03-01 16:58:00 -08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-09 16:39:24 -07:00
|
|
|
struct AffineMapKeyInfo : DenseMapInfo<AffineMap> {
|
2018-07-03 20:16:08 -07:00
|
|
|
// Affine maps are uniqued based on their dim/symbol counts and affine
|
|
|
|
// expressions.
|
2019-05-29 14:56:41 -07:00
|
|
|
using KeyTy = std::tuple<unsigned, unsigned, ArrayRef<AffineExpr>>;
|
2018-10-09 16:39:24 -07:00
|
|
|
using DenseMapInfo<AffineMap>::isEqual;
|
2018-06-29 18:09:29 -07:00
|
|
|
|
2018-12-03 14:27:24 -08:00
|
|
|
static unsigned getHashValue(const AffineMap &key) {
|
2019-05-29 14:56:41 -07:00
|
|
|
return getHashValue(
|
|
|
|
KeyTy(key.getNumDims(), key.getNumSymbols(), key.getResults()));
|
2018-12-03 14:27:24 -08:00
|
|
|
}
|
|
|
|
|
2018-06-29 18:09:29 -07:00
|
|
|
static unsigned getHashValue(KeyTy key) {
|
2018-07-03 20:16:08 -07:00
|
|
|
return hash_combine(
|
2018-07-04 10:43:29 -07:00
|
|
|
std::get<0>(key), std::get<1>(key),
|
2019-05-29 14:56:41 -07:00
|
|
|
hash_combine_range(std::get<2>(key).begin(), std::get<2>(key).end()));
|
2018-06-29 18:09:29 -07:00
|
|
|
}
|
|
|
|
|
2018-10-09 16:39:24 -07:00
|
|
|
static bool isEqual(const KeyTy &lhs, AffineMap rhs) {
|
2018-07-03 20:16:08 -07:00
|
|
|
if (rhs == getEmptyKey() || rhs == getTombstoneKey())
|
|
|
|
return false;
|
2018-10-09 16:39:24 -07:00
|
|
|
return lhs == std::make_tuple(rhs.getNumDims(), rhs.getNumSymbols(),
|
2019-05-29 14:56:41 -07:00
|
|
|
rhs.getResults());
|
2018-06-29 18:09:29 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-25 08:33:02 -07: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-03 14:27:24 -08:00
|
|
|
static unsigned getHashValue(const IntegerSet &key) {
|
|
|
|
return getHashValue(KeyTy(key.getNumDims(), key.getNumSymbols(),
|
|
|
|
key.getConstraints(), key.getEqFlags()));
|
|
|
|
}
|
|
|
|
|
2018-10-25 08:33:02 -07: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-12-26 12:12:28 -08:00
|
|
|
struct CallSiteLocationKeyInfo : DenseMapInfo<CallSiteLocationStorage *> {
|
|
|
|
// Call locations are uniqued based on their held concret location
|
|
|
|
// and the caller location.
|
|
|
|
using KeyTy = std::pair<Location, Location>;
|
|
|
|
using DenseMapInfo<CallSiteLocationStorage *>::isEqual;
|
|
|
|
|
|
|
|
static unsigned getHashValue(CallSiteLocationStorage *key) {
|
|
|
|
return getHashValue(KeyTy(key->callee, key->caller));
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned getHashValue(KeyTy key) {
|
|
|
|
return hash_combine(key.first, key.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isEqual(const KeyTy &lhs, const CallSiteLocationStorage *rhs) {
|
|
|
|
if (rhs == getEmptyKey() || rhs == getTombstoneKey())
|
|
|
|
return false;
|
|
|
|
return lhs == std::make_pair(rhs->callee, rhs->caller);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-11-09 11:27:28 -08:00
|
|
|
struct FusedLocKeyInfo : DenseMapInfo<FusedLocationStorage *> {
|
|
|
|
// Fused locations are uniqued based on their held locations and an optional
|
|
|
|
// metadata attribute.
|
|
|
|
using KeyTy = std::pair<ArrayRef<Location>, Attribute>;
|
|
|
|
using DenseMapInfo<FusedLocationStorage *>::isEqual;
|
|
|
|
|
2018-12-01 11:38:20 -08:00
|
|
|
static unsigned getHashValue(FusedLocationStorage *key) {
|
|
|
|
return getHashValue(KeyTy(key->getLocations(), key->metadata));
|
|
|
|
}
|
|
|
|
|
2018-11-09 11:27:28 -08:00
|
|
|
static unsigned getHashValue(KeyTy key) {
|
|
|
|
return hash_combine(hash_combine_range(key.first.begin(), key.first.end()),
|
|
|
|
key.second);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isEqual(const KeyTy &lhs, const FusedLocationStorage *rhs) {
|
|
|
|
if (rhs == getEmptyKey() || rhs == getTombstoneKey())
|
|
|
|
return false;
|
|
|
|
return lhs == std::make_pair(rhs->getLocations(), rhs->metadata);
|
|
|
|
}
|
|
|
|
};
|
2018-06-22 22:03:48 -07: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-14 14:14:00 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Location uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Location allocator and mutex for thread safety.
|
2018-08-27 21:05:16 -07:00
|
|
|
llvm::BumpPtrAllocator locationAllocator;
|
2019-03-14 14:14:00 -07:00
|
|
|
llvm::sys::SmartRWMutex<true> locationMutex;
|
2018-08-27 21:05:16 -07:00
|
|
|
|
|
|
|
/// The singleton for UnknownLoc.
|
2019-03-14 14:14:00 -07:00
|
|
|
UnknownLocationStorage theUnknownLoc;
|
2018-08-27 21:05:16 -07:00
|
|
|
|
|
|
|
/// FileLineColLoc uniquing.
|
2018-11-08 12:28:35 -08:00
|
|
|
DenseMap<std::tuple<const char *, unsigned, unsigned>,
|
|
|
|
FileLineColLocationStorage *>
|
2018-08-27 21:05:16 -07:00
|
|
|
fileLineColLocs;
|
|
|
|
|
2018-12-26 12:12:28 -08:00
|
|
|
/// NameLocation uniquing.
|
|
|
|
DenseMap<const char *, NameLocationStorage *> nameLocs;
|
|
|
|
|
|
|
|
/// CallLocation uniquing.
|
|
|
|
DenseSet<CallSiteLocationStorage *, CallSiteLocationKeyInfo> callLocs;
|
|
|
|
|
2018-11-09 11:27:28 -08:00
|
|
|
/// FusedLoc uniquing.
|
|
|
|
using FusedLocations = DenseSet<FusedLocationStorage *, FusedLocKeyInfo>;
|
|
|
|
FusedLocations fusedLocs;
|
|
|
|
|
2019-03-14 14:14:14 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Identifier uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Identifier allocator and mutex for thread safety.
|
|
|
|
llvm::BumpPtrAllocator identifierAllocator;
|
|
|
|
llvm::sys::SmartRWMutex<true> identifierMutex;
|
|
|
|
|
2019-05-01 11:14:15 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Diagnostics
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
DiagnosticEngine diagEngine;
|
|
|
|
|
2019-03-14 14:14:00 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Other
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2019-03-14 14:14:14 -07:00
|
|
|
/// A general purpose mutex to lock access to parts of the context that do not
|
2019-05-01 11:14:15 -07:00
|
|
|
/// have a more specific mutex, e.g. registry operations.
|
2019-03-14 14:14:14 -07:00
|
|
|
llvm::sys::SmartRWMutex<true> contextMutex;
|
2018-08-27 21:05:16 -07:00
|
|
|
|
2018-10-21 19:49:31 -07: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-27 18:35:04 -07:00
|
|
|
llvm::StringMap<AbstractOperation> registeredOperations;
|
2018-10-21 19:49:31 -07:00
|
|
|
|
2019-05-10 15:14:13 -07:00
|
|
|
/// This is a mapping from class identifier to Dialect for registered
|
|
|
|
/// attributes and types.
|
|
|
|
DenseMap<const ClassID *, Dialect *> registeredDialectSymbols;
|
2019-01-02 14:16:40 -08:00
|
|
|
|
2018-06-28 20:45:33 -07:00
|
|
|
/// These are identifiers uniqued into this MLIRContext.
|
2018-07-23 11:44:40 -07:00
|
|
|
llvm::StringMap<char, llvm::BumpPtrAllocator &> identifiers;
|
2018-06-28 20:45:33 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Affine uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// Affine allocator and mutex for thread safety.
|
|
|
|
llvm::BumpPtrAllocator affineAllocator;
|
|
|
|
llvm::sys::SmartRWMutex<true> affineMutex;
|
|
|
|
|
2018-06-29 18:09:29 -07:00
|
|
|
// Affine map uniquing.
|
2018-10-09 16:39:24 -07:00
|
|
|
using AffineMapSet = DenseSet<AffineMap, AffineMapKeyInfo>;
|
2018-06-29 18:09:29 -07:00
|
|
|
AffineMapSet affineMaps;
|
|
|
|
|
2018-10-25 08:33:02 -07:00
|
|
|
// Integer set uniquing.
|
|
|
|
using IntegerSets = DenseSet<IntegerSet, IntegerSetKeyInfo>;
|
|
|
|
IntegerSets integerSets;
|
|
|
|
|
2019-05-21 01:34:13 -07:00
|
|
|
// Affine expression uniqui'ing.
|
|
|
|
StorageUniquer affineUniquer;
|
2018-07-24 22:34:09 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Type uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
2019-04-25 21:01:21 -07:00
|
|
|
StorageUniquer typeUniquer;
|
2018-07-16 09:45:22 -07:00
|
|
|
|
2019-06-21 09:20:42 -07:00
|
|
|
/// Cached Type Instances.
|
|
|
|
FloatType bf16Ty, f16Ty, f32Ty, f64Ty;
|
|
|
|
IndexType indexTy;
|
|
|
|
IntegerType int1Ty, int8Ty, int16Ty, int32Ty, int64Ty, int128Ty;
|
|
|
|
NoneType noneType;
|
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Attribute uniquing
|
|
|
|
//===--------------------------------------------------------------------===//
|
2019-04-30 10:31:29 -07:00
|
|
|
StorageUniquer attributeUniquer;
|
2019-03-14 14:13:29 -07:00
|
|
|
|
2019-06-21 09:20:42 -07:00
|
|
|
/// Cached Attribute Instances.
|
|
|
|
BoolAttr falseAttr, trueAttr;
|
|
|
|
UnitAttr unitAttr;
|
|
|
|
|
2018-06-22 22:03:48 -07:00
|
|
|
public:
|
2019-06-18 13:35:02 -07:00
|
|
|
MLIRContextImpl() : identifiers(identifierAllocator) {}
|
2018-06-22 22:03:48 -07:00
|
|
|
};
|
|
|
|
} // end namespace mlir
|
|
|
|
|
2018-09-21 18:12:15 -07:00
|
|
|
MLIRContext::MLIRContext() : impl(new MLIRContextImpl()) {
|
2018-10-21 19:49:31 -07:00
|
|
|
new BuiltinDialect(this);
|
|
|
|
registerAllDialects(this);
|
2019-06-21 09:20:42 -07: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);
|
2018-09-21 18:12:15 -07:00
|
|
|
}
|
2018-06-22 22:03:48 -07:00
|
|
|
|
2018-07-23 11:44:40 -07:00
|
|
|
MLIRContext::~MLIRContext() {}
|
2018-06-22 22:03:48 -07:00
|
|
|
|
2019-03-14 14:13:29 -07: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-21 19:49:31 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Diagnostic Handlers
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-03 11:40:57 -07:00
|
|
|
/// Helper function used to emit a diagnostic with an optionally empty twine
|
|
|
|
/// message. If the message is empty, then it is not inserted into the
|
|
|
|
/// diagnostic.
|
|
|
|
static InFlightDiagnostic emitDiag(MLIRContextImpl &ctx, Location location,
|
|
|
|
DiagnosticSeverity severity,
|
|
|
|
const llvm::Twine &message) {
|
|
|
|
auto diag = ctx.diagEngine.emit(location, severity);
|
|
|
|
if (!message.isTriviallyEmpty())
|
|
|
|
diag << message;
|
|
|
|
return diag;
|
|
|
|
}
|
|
|
|
|
|
|
|
InFlightDiagnostic MLIRContext::emitError(Location location) {
|
|
|
|
return emitError(location, /*message=*/{});
|
|
|
|
}
|
2019-05-03 10:01:01 -07:00
|
|
|
InFlightDiagnostic MLIRContext::emitError(Location location,
|
|
|
|
const llvm::Twine &message) {
|
2019-05-03 11:40:57 -07:00
|
|
|
return emitDiag(getImpl(), location, DiagnosticSeverity::Error, message);
|
2018-11-08 13:41:21 -08:00
|
|
|
}
|
|
|
|
|
2019-05-03 11:40:42 -07:00
|
|
|
/// Emit a warning message using the diagnostic engine.
|
2019-05-03 11:40:57 -07:00
|
|
|
InFlightDiagnostic MLIRContext::emitWarning(Location location) {
|
|
|
|
return emitWarning(location, /*message=*/{});
|
|
|
|
}
|
2019-05-03 11:40:42 -07:00
|
|
|
InFlightDiagnostic MLIRContext::emitWarning(Location location,
|
|
|
|
const Twine &message) {
|
2019-05-03 11:40:57 -07:00
|
|
|
return emitDiag(getImpl(), location, DiagnosticSeverity::Warning, message);
|
2019-05-03 11:40:42 -07:00
|
|
|
}
|
|
|
|
|
2019-05-01 12:13:44 -07:00
|
|
|
/// Emit a remark message using the diagnostic engine.
|
2019-05-03 11:40:57 -07:00
|
|
|
InFlightDiagnostic MLIRContext::emitRemark(Location location) {
|
|
|
|
return emitRemark(location, /*message=*/{});
|
|
|
|
}
|
2019-05-03 10:01:01 -07:00
|
|
|
InFlightDiagnostic MLIRContext::emitRemark(Location location,
|
|
|
|
const Twine &message) {
|
2019-05-03 11:40:57 -07:00
|
|
|
return emitDiag(getImpl(), location, DiagnosticSeverity::Remark, message);
|
2019-05-01 12:13:44 -07:00
|
|
|
}
|
|
|
|
|
2019-05-01 11:14:15 -07:00
|
|
|
/// Returns the diagnostic engine for this context.
|
|
|
|
DiagnosticEngine &MLIRContext::getDiagEngine() { return getImpl().diagEngine; }
|
|
|
|
|
2018-10-21 19:49:31 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Dialect and Operation Registration
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-10-25 16:44:04 -07:00
|
|
|
/// Return information about all registered IR dialects.
|
2019-03-23 16:42:01 -07:00
|
|
|
std::vector<Dialect *> MLIRContext::getRegisteredDialects() {
|
2019-03-14 14:14:14 -07:00
|
|
|
// Lock access to the context registry.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(getImpl().contextMutex);
|
|
|
|
|
2018-10-25 16:44:04 -07:00
|
|
|
std::vector<Dialect *> result;
|
|
|
|
result.reserve(getImpl().dialects.size());
|
|
|
|
for (auto &dialect : getImpl().dialects)
|
|
|
|
result.push_back(dialect.get());
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-01-02 09:26:35 -08:00
|
|
|
/// Get a registered IR dialect with the given namespace. If none is found,
|
|
|
|
/// then return nullptr.
|
2019-03-23 16:42:01 -07:00
|
|
|
Dialect *MLIRContext::getRegisteredDialect(StringRef name) {
|
2019-03-14 14:14:14 -07:00
|
|
|
// Lock access to the context registry.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(getImpl().contextMutex);
|
2019-01-02 09:26:35 -08:00
|
|
|
for (auto &dialect : getImpl().dialects)
|
|
|
|
if (name == dialect->getNamespace())
|
|
|
|
return dialect.get();
|
|
|
|
return nullptr;
|
2018-11-20 14:47:10 -08:00
|
|
|
}
|
|
|
|
|
2018-10-21 19:49:31 -07: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-14 14:14:14 -07:00
|
|
|
auto &impl = context->getImpl();
|
|
|
|
|
|
|
|
// Lock access to the context registry.
|
|
|
|
llvm::sys::SmartScopedWriter<true> registryLock(impl.contextMutex);
|
2019-04-15 16:32:00 -07:00
|
|
|
// Abort if dialect with namespace has already been registered.
|
|
|
|
if (llvm::any_of(impl.dialects, [this](std::unique_ptr<Dialect> &dialect) {
|
|
|
|
return dialect->getNamespace() == getNamespace();
|
|
|
|
})) {
|
|
|
|
llvm::report_fatal_error("a dialect with namespace '" +
|
|
|
|
Twine(getNamespace()) +
|
|
|
|
"' has already been registered");
|
|
|
|
}
|
2019-03-14 14:14:14 -07:00
|
|
|
impl.dialects.push_back(std::unique_ptr<Dialect>(this));
|
2018-10-21 19:49:31 -07:00
|
|
|
}
|
|
|
|
|
2018-10-25 16:44:04 -07:00
|
|
|
/// Return information about all registered operations. This isn't very
|
|
|
|
/// efficient, typically you should ask the operations about their properties
|
|
|
|
/// directly.
|
2019-03-23 16:42:01 -07:00
|
|
|
std::vector<AbstractOperation *> MLIRContext::getRegisteredOperations() {
|
2018-10-25 16:44:04 -07:00
|
|
|
std::vector<std::pair<StringRef, AbstractOperation *>> opsToSort;
|
2019-03-14 14:14:14 -07: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-27 18:35:04 -07:00
|
|
|
llvm::StringMap<AbstractOperation> ®isteredOps =
|
2019-03-14 14:14:14 -07:00
|
|
|
getImpl().registeredOperations;
|
|
|
|
|
|
|
|
opsToSort.reserve(registeredOps.size());
|
|
|
|
for (auto &elt : registeredOps)
|
|
|
|
opsToSort.push_back({elt.first(), &elt.second});
|
|
|
|
}
|
2018-10-25 16:44:04 -07: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-21 19:49:31 -07:00
|
|
|
void Dialect::addOperation(AbstractOperation opInfo) {
|
2019-06-05 13:56:01 -07:00
|
|
|
assert((getNamespace().empty() ||
|
|
|
|
opInfo.name.split('.').first == getNamespace()) &&
|
|
|
|
"op name doesn't start with dialect namespace");
|
2018-10-21 19:49:31 -07:00
|
|
|
assert(&opInfo.dialect == this && "Dialect object mismatch");
|
|
|
|
auto &impl = context->getImpl();
|
2019-03-14 14:14:14 -07:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
|
|
|
llvm::sys::SmartScopedWriter<true> registryLock(impl.contextMutex);
|
2018-10-21 19:49:31 -07:00
|
|
|
if (!impl.registeredOperations.insert({opInfo.name, opInfo}).second) {
|
2019-03-29 22:30:54 -07:00
|
|
|
llvm::errs() << "error: operation named '" << opInfo.name
|
2018-10-21 19:49:31 -07:00
|
|
|
<< "' is already registered.\n";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-10 15:14:13 -07:00
|
|
|
/// Register a dialect-specific symbol(e.g. type) with the current context.
|
|
|
|
void Dialect::addSymbol(const ClassID *const classID) {
|
2019-01-02 14:16:40 -08:00
|
|
|
auto &impl = context->getImpl();
|
2019-03-14 14:14:14 -07:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
|
|
|
llvm::sys::SmartScopedWriter<true> registryLock(impl.contextMutex);
|
2019-05-10 15:14:13 -07:00
|
|
|
if (!impl.registeredDialectSymbols.insert({classID, this}).second) {
|
|
|
|
llvm::errs() << "error: dialect symbol already registered.\n";
|
2019-01-02 14:16:40 -08:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-21 19:49:31 -07: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-14 14:14:14 -07:00
|
|
|
|
|
|
|
// Lock access to the context registry.
|
|
|
|
llvm::sys::SmartScopedReader<true> registryLock(impl.contextMutex);
|
2018-10-21 19:49:31 -07:00
|
|
|
auto it = impl.registeredOperations.find(opName);
|
|
|
|
if (it != impl.registeredOperations.end())
|
|
|
|
return &it->second;
|
|
|
|
return nullptr;
|
2018-07-05 09:12:11 -07:00
|
|
|
}
|
2018-06-22 22:03:48 -07:00
|
|
|
|
2018-06-28 20:45:33 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-04 10:43:29 -07:00
|
|
|
// Identifier uniquing
|
2018-06-28 20:45:33 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Return an identifier for the specified string.
|
2019-03-23 16:42:01 -07:00
|
|
|
Identifier Identifier::get(StringRef str, MLIRContext *context) {
|
2018-06-28 20:45:33 -07: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-14 14:14:14 -07: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-28 20:45:33 -07:00
|
|
|
auto it = impl.identifiers.insert({str, char()}).first;
|
|
|
|
return Identifier(it->getKeyData());
|
|
|
|
}
|
|
|
|
|
2018-08-27 21:05:16 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Location uniquing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-11-08 12:28:35 -08:00
|
|
|
UnknownLoc UnknownLoc::get(MLIRContext *context) {
|
2019-03-14 14:14:00 -07:00
|
|
|
return &context->getImpl().theUnknownLoc;
|
2018-08-27 21:05:16 -07:00
|
|
|
}
|
|
|
|
|
2019-06-18 13:35:02 -07:00
|
|
|
FileLineColLoc FileLineColLoc::get(Identifier filename, unsigned line,
|
2018-11-08 12:28:35 -08:00
|
|
|
unsigned column, MLIRContext *context) {
|
2018-08-27 21:05:16 -07:00
|
|
|
auto &impl = context->getImpl();
|
|
|
|
|
2019-03-14 14:14:00 -07:00
|
|
|
// Safely get or create a location instance.
|
|
|
|
auto key = std::make_tuple(filename.data(), line, column);
|
|
|
|
return safeGetOrCreate(impl.fileLineColLocs, key, impl.locationMutex, [&] {
|
|
|
|
return new (impl.locationAllocator.Allocate<FileLineColLocationStorage>())
|
|
|
|
FileLineColLocationStorage(filename, line, column);
|
|
|
|
});
|
2018-08-27 21:05:16 -07:00
|
|
|
}
|
|
|
|
|
2019-05-13 14:45:48 -07:00
|
|
|
NameLoc NameLoc::get(Identifier name, Location child, MLIRContext *context) {
|
2018-12-26 12:12:28 -08:00
|
|
|
auto &impl = context->getImpl();
|
2019-05-13 14:45:48 -07:00
|
|
|
assert(!child.isa<NameLoc>() &&
|
|
|
|
"a NameLoc cannot be used as a child of another NameLoc");
|
2018-12-26 12:12:28 -08:00
|
|
|
|
2019-03-14 14:14:00 -07:00
|
|
|
// Safely get or create a location instance.
|
|
|
|
return safeGetOrCreate(impl.nameLocs, name.data(), impl.locationMutex, [&] {
|
|
|
|
return new (impl.locationAllocator.Allocate<NameLocationStorage>())
|
2019-05-13 14:45:48 -07:00
|
|
|
NameLocationStorage(name, child);
|
2019-03-14 14:14:00 -07:00
|
|
|
});
|
2018-12-26 12:12:28 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
CallSiteLoc CallSiteLoc::get(Location callee, Location caller,
|
|
|
|
MLIRContext *context) {
|
|
|
|
auto &impl = context->getImpl();
|
|
|
|
|
2019-03-14 14:14:00 -07:00
|
|
|
// Safely get or create a location instance.
|
|
|
|
auto key = std::make_pair(callee, caller);
|
|
|
|
return safeGetOrCreate(impl.callLocs, key, impl.locationMutex, [&] {
|
|
|
|
return new (impl.locationAllocator.Allocate<CallSiteLocationStorage>())
|
|
|
|
CallSiteLocationStorage(callee, caller);
|
|
|
|
});
|
2018-12-26 12:12:28 -08:00
|
|
|
}
|
|
|
|
|
2018-11-09 11:27:28 -08:00
|
|
|
Location FusedLoc::get(ArrayRef<Location> locs, Attribute metadata,
|
|
|
|
MLIRContext *context) {
|
|
|
|
// Unique the set of locations to be fused.
|
2019-04-27 18:35:04 -07:00
|
|
|
llvm::SmallSetVector<Location, 4> decomposedLocs;
|
2018-11-09 11:27:28 -08:00
|
|
|
for (auto loc : locs) {
|
|
|
|
// If the location is a fused location we decompose it if it has no
|
|
|
|
// metadata or the metadata is the same as the top level metadata.
|
|
|
|
if (auto fusedLoc = loc.dyn_cast<FusedLoc>()) {
|
|
|
|
if (fusedLoc->getMetadata() == metadata) {
|
|
|
|
// UnknownLoc's have already been removed from FusedLocs so we can
|
|
|
|
// simply add all of the internal locations.
|
|
|
|
decomposedLocs.insert(fusedLoc->getLocations().begin(),
|
|
|
|
fusedLoc->getLocations().end());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Otherwise, only add known locations to the set.
|
|
|
|
if (!loc.isa<UnknownLoc>())
|
|
|
|
decomposedLocs.insert(loc);
|
|
|
|
}
|
|
|
|
locs = decomposedLocs.getArrayRef();
|
|
|
|
|
|
|
|
// Handle the simple cases of less than two locations.
|
|
|
|
if (locs.empty())
|
|
|
|
return UnknownLoc::get(context);
|
|
|
|
if (locs.size() == 1)
|
|
|
|
return locs.front();
|
|
|
|
|
|
|
|
auto &impl = context->getImpl();
|
|
|
|
|
2019-03-14 14:14:00 -07:00
|
|
|
// Safely get or create a location instance.
|
|
|
|
auto key = std::make_pair(locs, metadata);
|
|
|
|
return safeGetOrCreate(impl.fusedLocs, key, impl.locationMutex, [&] {
|
|
|
|
auto byteSize =
|
|
|
|
FusedLocationStorage::totalSizeToAlloc<Location>(locs.size());
|
|
|
|
auto rawMem = impl.locationAllocator.Allocate(
|
|
|
|
byteSize, alignof(FusedLocationStorage));
|
|
|
|
auto result = new (rawMem) FusedLocationStorage(locs.size(), metadata);
|
|
|
|
|
|
|
|
std::uninitialized_copy(locs.begin(), locs.end(),
|
|
|
|
result->getTrailingObjects<Location>());
|
|
|
|
return result;
|
|
|
|
});
|
2018-11-09 11:27:28 -08:00
|
|
|
}
|
|
|
|
|
2018-06-28 20:45:33 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-04 10:43:29 -07:00
|
|
|
// Type uniquing
|
2018-06-28 20:45:33 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-10 15:14:13 -07: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-25 21:01:21 -07: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-21 10:18:03 -08:00
|
|
|
|
2019-01-02 14:16:40 -08:00
|
|
|
/// Get the dialect that registered the type with the provided typeid.
|
2019-05-22 09:56:11 -07:00
|
|
|
Dialect &TypeUniquer::lookupDialectForType(MLIRContext *ctx,
|
|
|
|
const ClassID *const typeID) {
|
2019-05-10 15:14:13 -07:00
|
|
|
return lookupDialectForSymbol(ctx, typeID);
|
2018-12-21 10:18:03 -08:00
|
|
|
}
|
|
|
|
|
2019-06-21 09:20:42 -07: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-04 10:43:29 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Attribute uniquing
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-04-30 10:31:29 -07: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-19 21:17:22 -07:00
|
|
|
}
|
|
|
|
|
2019-05-10 15:14:13 -07: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-21 09:20:42 -07: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;
|
|
|
|
}
|
|
|
|
|
2018-07-04 10:43:29 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-05-21 01:34:13 -07:00
|
|
|
// AffineMap uniquing
|
2018-07-04 10:43:29 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-05-21 01:34:13 -07:00
|
|
|
StorageUniquer &MLIRContext::getAffineUniquer() {
|
|
|
|
return getImpl().affineUniquer;
|
|
|
|
}
|
|
|
|
|
2018-10-09 16:39:24 -07:00
|
|
|
AffineMap AffineMap::get(unsigned dimCount, unsigned symbolCount,
|
2019-05-29 14:56:41 -07:00
|
|
|
ArrayRef<AffineExpr> results) {
|
2018-07-03 20:16:08 -07:00
|
|
|
// The number of results can't be zero.
|
|
|
|
assert(!results.empty());
|
|
|
|
|
2018-10-09 10:59:27 -07:00
|
|
|
auto &impl = results[0].getContext()->getImpl();
|
2019-05-29 14:56:41 -07:00
|
|
|
auto key = std::make_tuple(dimCount, symbolCount, results);
|
2018-07-03 20:16:08 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
// Safely get or create an AffineMap instance.
|
|
|
|
return safeGetOrCreate(impl.affineMaps, key, impl.affineMutex, [&] {
|
|
|
|
auto *res = impl.affineAllocator.Allocate<detail::AffineMapStorage>();
|
2018-07-03 20:16:08 -07:00
|
|
|
|
2019-05-29 14:56:41 -07:00
|
|
|
// Copy the results into the bump pointer.
|
2019-03-14 14:13:45 -07:00
|
|
|
results = copyArrayRefInto(impl.affineAllocator, results);
|
2018-07-03 20:16:08 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
// Initialize the memory using placement new.
|
2019-05-29 14:56:41 -07:00
|
|
|
new (res) detail::AffineMapStorage{dimCount, symbolCount, results};
|
2019-03-14 14:13:45 -07:00
|
|
|
return AffineMap(res);
|
|
|
|
});
|
2018-06-29 18:09:29 -07:00
|
|
|
}
|
|
|
|
|
2018-08-07 14:24:38 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Integer Sets: these are allocated into the bump pointer, and are immutable.
|
2018-10-25 08:33:02 -07:00
|
|
|
// Unlike AffineMap's, these are uniqued only if they are small.
|
2018-08-07 14:24:38 -07:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2018-10-10 09:45:59 -07:00
|
|
|
IntegerSet IntegerSet::get(unsigned dimCount, unsigned symbolCount,
|
|
|
|
ArrayRef<AffineExpr> constraints,
|
2018-10-25 08:33:02 -07:00
|
|
|
ArrayRef<bool> eqFlags) {
|
|
|
|
// The number of constraints can't be zero.
|
|
|
|
assert(!constraints.empty());
|
|
|
|
assert(constraints.size() == eqFlags.size());
|
2018-08-07 14:24:38 -07:00
|
|
|
|
2018-10-25 08:33:02 -07:00
|
|
|
auto &impl = constraints[0].getContext()->getImpl();
|
2018-08-07 14:24:38 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
// A utility function to construct a new IntegerSetStorage instance.
|
|
|
|
auto constructorFn = [&] {
|
|
|
|
auto *res = impl.affineAllocator.Allocate<detail::IntegerSetStorage>();
|
2018-10-25 08:33:02 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
// Copy the results and equality flags into the bump pointer.
|
|
|
|
constraints = copyArrayRefInto(impl.affineAllocator, constraints);
|
|
|
|
eqFlags = copyArrayRefInto(impl.affineAllocator, eqFlags);
|
2018-10-25 08:33:02 -07:00
|
|
|
|
2019-03-14 14:13:45 -07:00
|
|
|
// Initialize the memory using placement new.
|
|
|
|
new (res)
|
|
|
|
detail::IntegerSetStorage{dimCount, symbolCount, constraints, eqFlags};
|
|
|
|
return IntegerSet(res);
|
|
|
|
};
|
2018-10-25 08:33:02 -07:00
|
|
|
|
2019-03-14 14:13:45 -07: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-10 09:45:59 -07:00
|
|
|
|
2019-03-14 14:13:45 -07: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-07 14:24:38 -07:00
|
|
|
}
|