| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMapInfo.h | 69 static inline T* getTombstoneKey() { 86 static inline char getTombstoneKey() { return ~0 - 1; } 97 static inline unsigned char getTombstoneKey() { return ~0 - 1; } 119 static inline unsigned getTombstoneKey() { return ~0U - 1; } 159 static inline short getTombstoneKey() { return -0x7FFF - 1; } 167 static inline int getTombstoneKey() { return -0x7fffffff - 1; } 219 static inline Pair getTombstoneKey() { 220 return std::make_pair(FirstInfo::getTombstoneKey(), 221 SecondInfo::getTombstoneKey()); 243 static inline Tuple getTombstoneKey() { [all …]
|
| H A D | CachedHashString.h | 53 static CachedHashStringRef getTombstoneKey() { 54 return CachedHashStringRef(DenseMapInfo<StringRef>::getTombstoneKey(), 1); 58 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!"); 80 return DenseMapInfo<char *>::getTombstoneKey(); 157 static CachedHashString getTombstoneKey() { 163 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!");
|
| H A D | PointerEmbeddedInt.h | 108 static inline T getTombstoneKey() { return IntInfo::getTombstoneKey(); }
|
| H A D | DenseMap.h | 122 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 308 TheBucket->getFirst() = getTombstoneKey(); in erase() 316 TheBucket->getFirst() = getTombstoneKey(); in erase() 400 const KeyT TombstoneKey = getTombstoneKey(); in moveFromOldBuckets() 459 static const KeyT getTombstoneKey() { in getTombstoneKey() function 460 return KeyInfoT::getTombstoneKey(); in getTombstoneKey() 621 const KeyT TombstoneKey = getTombstoneKey(); in LookupBucketFor() 942 const KeyT TombstoneKey = this->getTombstoneKey(); in swap() 1054 const KeyT TombstoneKey = this->getTombstoneKey(); in grow() 1283 const KeyT Tombstone = KeyInfoT::getTombstoneKey(); in AdvancePastEmptyBuckets() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWP/ |
| H A D | DWPStringPool.h | 16 static inline const char *getTombstoneKey() { in getTombstoneKey() function 21 assert(Val != getTombstoneKey() && "Cannot hash the tombstone key!"); in getHashValue() 27 if (RHS == getTombstoneKey()) in isEqual() 28 return LHS == getTombstoneKey(); in isEqual()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | WasmTraits.h | 30 static wasm::WasmSignature getTombstoneKey() { 54 static wasm::WasmGlobalType getTombstoneKey() { 71 static wasm::WasmLimits getTombstoneKey() { 94 static wasm::WasmTableType getTombstoneKey() { 96 1, DenseMapInfo<wasm::WasmLimits>::getTombstoneKey()};
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenTBAA.h | 230 static clang::CodeGen::TBAAAccessInfo getTombstoneKey() { 231 unsigned UnsignedKey = DenseMapInfo<unsigned>::getTombstoneKey(); 234 DenseMapInfo<MDNode *>::getTombstoneKey(), 235 DenseMapInfo<MDNode *>::getTombstoneKey(), 236 DenseMapInfo<uint64_t>::getTombstoneKey(), 237 DenseMapInfo<uint64_t>::getTombstoneKey());
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | BaseSubobject.h | 64 static clang::BaseSubobject getTombstoneKey() { 66 DenseMapInfo<const clang::CXXRecordDecl *>::getTombstoneKey(), 67 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getTombstoneKey()));
|
| H A D | TypeOrdering.h | 42 static inline clang::QualType getTombstoneKey() { 62 static inline clang::CanQualType getTombstoneKey() {
|
| H A D | NestedNameSpecifier.h | 542 static clang::NestedNameSpecifierLoc getTombstoneKey() { 543 return clang::NestedNameSpecifierLoc(FirstInfo::getTombstoneKey(), 544 SecondInfo::getTombstoneKey());
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86OptimizeLEAs.cpp | 127 static inline MemOpKey getTombstoneKey() { in getTombstoneKey() function 128 return MemOpKey(PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(), in getTombstoneKey() 129 PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(), in getTombstoneKey() 130 PtrInfo::getTombstoneKey()); in getTombstoneKey() 137 assert(Val.Disp != PtrInfo::getTombstoneKey() && in getHashValue() 181 if (RHS.Disp == PtrInfo::getTombstoneKey()) in isEqual() 182 return LHS.Disp == PtrInfo::getTombstoneKey(); in isEqual()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/ |
| H A D | CostAllocator.h | 52 static inline PoolEntry *getTombstoneKey() { in getTombstoneKey() function 76 if (P == getEmptyKey() || P == getTombstoneKey()) in isEqual() 82 if (P1 == getEmptyKey() || P1 == getTombstoneKey()) in isEqual()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ItaniumCXXABI.cpp | 84 V, llvm::DenseMapInfo<T>::getTombstoneKey()); in isDenseMapKeyTombstone() 108 static DecompositionDeclName getTombstoneKey() { in getTombstoneKey() function 109 return {ArrayInfo::getTombstoneKey()}; in getTombstoneKey() 112 assert(!isEqual(Key, getEmptyKey()) && !isEqual(Key, getTombstoneKey())); in getHashValue()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/ |
| H A D | FileEntry.h | 52 static inline gsym::FileEntry getTombstoneKey() { 53 uint32_t key = DenseMapInfo<uint32_t>::getTombstoneKey();
|
| /freebsd-13.1/contrib/llvm-project/lld/include/lld/Core/ |
| H A D | SymbolTable.h | 65 static StringRef getTombstoneKey() { return StringRef(" ", 1); } in getTombstoneKey() function 78 static const DefinedAtom * getTombstoneKey() { return (DefinedAtom*)(-1); } in getTombstoneKey() function
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemoryLocation.h | 320 static inline LocationSize getTombstoneKey() { 336 static inline MemoryLocation getTombstoneKey() { 337 return MemoryLocation(DenseMapInfo<const Value *>::getTombstoneKey(), 338 DenseMapInfo<LocationSize>::getTombstoneKey());
|
| H A D | IRSimilarityIdentifier.h | 216 static inline IRInstructionData *getTombstoneKey() { in getTombstoneKey() function 228 if (RHS == getEmptyKey() || RHS == getTombstoneKey() || in isEqual() 229 LHS == getEmptyKey() || LHS == getTombstoneKey()) in isEqual() 374 assert(DenseMapInfo<unsigned>::getTombstoneKey() == in IRInstructionMapper()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCRegister.h | 99 static inline unsigned getTombstoneKey() { 100 return DenseMapInfo<unsigned>::getTombstoneKey();
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ValueHandle.h | 104 V != DenseMapInfo<Value *>::getTombstoneKey(); in isValid() 184 static inline WeakVH getTombstoneKey() { 185 return WeakVH(DenseMapInfo<Value *>::getTombstoneKey()); 533 static inline PoisoningVH<T> getTombstoneKey() { 535 Res.setRawValPtr(DenseMapInfo<Value *>::getTombstoneKey());
|
| H A D | Dominators.h | 118 static inline BasicBlockEdge getTombstoneKey() { 119 return BasicBlockEdge(BBInfo::getTombstoneKey(), BBInfo::getTombstoneKey());
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | AliasAnalysisSummary.h | 253 static inline cflaa::InstantiatedValue getTombstoneKey() { 254 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getTombstoneKey(), 255 DenseMapInfo<unsigned>::getTombstoneKey()};
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | Register.h | 152 static inline unsigned getTombstoneKey() { 153 return DenseMapInfo<unsigned>::getTombstoneKey();
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | CallGraph.h | 224 static inline clang::CallGraphNode::CallRecord getTombstoneKey() { 226 DenseMapInfo<clang::CallGraphNode *>::getTombstoneKey(), 227 DenseMapInfo<clang::Expr *>::getTombstoneKey());
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | ConstString.h | 441 static inline lldb_private::ConstString getTombstoneKey() { 443 DenseMapInfo<const char *>::getTombstoneKey());
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/ |
| H A D | DWARFLinkerDeclContext.h | 164 using DenseMapInfo<DeclContext *>::getTombstoneKey; 171 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
|