1 //===- TypeID.cpp - MLIR TypeID -------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "mlir/Support/TypeID.h"
10 #include "llvm/ADT/DenseMap.h"
11 #include "llvm/ADT/StringRef.h"
12 #include "llvm/Support/Debug.h"
13 #include "llvm/Support/RWMutex.h"
15 #include "llvm/Support/Signals.h"
16 #include "llvm/Support/raw_ostream.h"
20 #define DEBUG_TYPE "typeid"
22 //===----------------------------------------------------------------------===//
24 //===----------------------------------------------------------------------===//
27 struct ImplicitTypeIDRegistry
{
28 /// Lookup or insert a TypeID for the given type name.
29 TypeID
lookupOrInsert(StringRef typeName
) {
30 LLVM_DEBUG(llvm::dbgs() << "ImplicitTypeIDRegistry::lookupOrInsert("
31 << typeName
<< ")\n");
33 // Perform a heuristic check to see if this type is in an anonymous
34 // namespace. String equality is not valid for anonymous types, so we try to
35 // abort whenever we see them.
38 if (typeName
.contains("anonymous-namespace")) {
40 if (typeName
.contains("anonymous namespace")) {
44 llvm::raw_string_ostream
errorOS(errorStr
);
45 errorOS
<< "TypeID::get<" << typeName
46 << ">(): Using TypeID on a class with an anonymous "
47 "namespace requires an explicit TypeID definition. The "
48 "implicit fallback uses string name, which does not "
49 "guarantee uniqueness in anonymous contexts. Define an "
50 "explicit TypeID instantiation for this type using "
51 "`MLIR_DECLARE_EXPLICIT_TYPE_ID`/"
52 "`MLIR_DEFINE_EXPLICIT_TYPE_ID` or "
53 "`MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID`.\n";
55 llvm::report_fatal_error(errorStr
);
59 { // Try a read-only lookup first.
60 llvm::sys::SmartScopedReader
<true> guard(mutex
);
61 auto it
= typeNameToID
.find(typeName
);
62 if (it
!= typeNameToID
.end())
65 llvm::sys::SmartScopedWriter
<true> guard(mutex
);
66 auto it
= typeNameToID
.try_emplace(typeName
, TypeID());
68 it
.first
->second
= typeIDAllocator
.allocate();
69 return it
.first
->second
;
72 /// A mutex that guards access to the registry.
73 llvm::sys::SmartRWMutex
<true> mutex
;
75 /// An allocator used for TypeID objects.
76 TypeIDAllocator typeIDAllocator
;
78 /// A map type name to TypeID.
79 DenseMap
<StringRef
, TypeID
> typeNameToID
;
83 TypeID
detail::FallbackTypeIDResolver::registerImplicitTypeID(StringRef name
) {
84 static ImplicitTypeIDRegistry registry
;
85 return registry
.lookupOrInsert(name
);
88 //===----------------------------------------------------------------------===//
90 //===----------------------------------------------------------------------===//
92 MLIR_DEFINE_EXPLICIT_TYPE_ID(void)