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"
27 struct ImplicitTypeIDRegistry {
29 TypeID lookupOrInsert(StringRef typeName) {
30 LLVM_DEBUG(llvm::dbgs() <<
"ImplicitTypeIDRegistry::lookupOrInsert("
31 << typeName <<
")\n");
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);
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;
73 llvm::sys::SmartRWMutex<true> mutex;
84 static ImplicitTypeIDRegistry registry;
85 return registry.lookupOrInsert(name);
#define MLIR_DEFINE_EXPLICIT_TYPE_ID(CLASS_NAME)
This class provides a way to define new TypeIDs at runtime.
This class provides an efficient unique identifier for a specific C++ type.
static TypeID registerImplicitTypeID(StringRef name)
Register an implicit type ID for the given type name.
Include the generated interface declarations.