Home
last modified time | relevance | path

Searched refs:getTombstoneKey (Results 1 – 25 of 109) sorted by relevance

12345

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DDenseMapInfo.h73 static inline T* getTombstoneKey() {
90 static inline char getTombstoneKey() { return ~0 - 1; }
101 static inline unsigned char getTombstoneKey() { return ~0 - 1; }
112 static inline unsigned short getTombstoneKey() { return 0xFFFF - 1; }
123 static inline unsigned getTombstoneKey() { return ~0U - 1; }
134 static inline unsigned long getTombstoneKey() { return ~0UL - 1L; }
148 static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; }
163 static inline short getTombstoneKey() { return -0x7FFF - 1; }
171 static inline int getTombstoneKey() { return -0x7fffffff - 1; }
185 static inline long getTombstoneKey() { return getEmptyKey() - 1L; }
[all …]
H A DCachedHashString.h53 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 DDenseMap.h122 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear()
308 TheBucket->getFirst() = getTombstoneKey(); in erase()
316 TheBucket->getFirst() = getTombstoneKey(); in erase()
364 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll()
400 const KeyT TombstoneKey = getTombstoneKey(); in moveFromOldBuckets()
438 !KeyInfoT::isEqual(getBuckets()[i].getFirst(), getTombstoneKey())) in copyFrom()
459 static const KeyT getTombstoneKey() { in getTombstoneKey() function
460 return KeyInfoT::getTombstoneKey(); in getTombstoneKey()
621 const KeyT TombstoneKey = getTombstoneKey(); in LookupBucketFor()
939 const KeyT TombstoneKey = this->getTombstoneKey(); in swap()
[all …]
H A DPointerEmbeddedInt.h108 static inline T getTombstoneKey() { return IntInfo::getTombstoneKey(); }
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-dwp/
H A DDWPStringPool.h16 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenTBAA.h230 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());
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DBaseSubobject.h64 static clang::BaseSubobject getTombstoneKey() {
66 DenseMapInfo<const clang::CXXRecordDecl *>::getTombstoneKey(),
67 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getTombstoneKey()));
H A DTypeOrdering.h42 static inline clang::QualType getTombstoneKey() {
62 static inline clang::CanQualType getTombstoneKey() {
H A DNestedNameSpecifier.h542 static clang::NestedNameSpecifierLoc getTombstoneKey() {
543 return clang::NestedNameSpecifierLoc(FirstInfo::getTombstoneKey(),
544 SecondInfo::getTombstoneKey());
H A DASTTypeTraits.h111 static inline ASTNodeKind getTombstoneKey() { in getTombstoneKey() function
356 static inline DynTypedNode getTombstoneKey() {
358 Node.NodeKind = ASTNodeKind::DenseMapInfo::getTombstoneKey();
381 auto TombStone = ASTNodeKind::DenseMapInfo::getTombstoneKey();
H A DCharUnits.h227 static clang::CharUnits getTombstoneKey() {
229 DenseMapInfo<clang::CharUnits::QuantityType>::getTombstoneKey();
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp127 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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DItaniumCXXABI.cpp84 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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h52 static inline PoolEntry *getTombstoneKey() { in getTombstoneKey() function
76 if (P == getEmptyKey() || P == getTombstoneKey()) in isEqual()
82 if (P1 == getEmptyKey() || P1 == getTombstoneKey()) in isEqual()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DMemoryLocation.h320 static inline LocationSize getTombstoneKey() {
336 static inline MemoryLocation getTombstoneKey() {
337 return MemoryLocation(DenseMapInfo<const Value *>::getTombstoneKey(),
338 DenseMapInfo<LocationSize>::getTombstoneKey());
H A DIRSimilarityIdentifier.h216 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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
H A DFileEntry.h52 static inline gsym::FileEntry getTombstoneKey() {
53 uint32_t key = DenseMapInfo<uint32_t>::getTombstoneKey();
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h30 static wasm::WasmSignature getTombstoneKey() {
54 static wasm::WasmGlobalType getTombstoneKey() {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValueHandle.h104 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 DDominators.h118 static inline BasicBlockEdge getTombstoneKey() {
119 return BasicBlockEdge(BBInfo::getTombstoneKey(), BBInfo::getTombstoneKey());
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DAliasAnalysisSummary.h253 static inline cflaa::InstantiatedValue getTombstoneKey() {
254 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getTombstoneKey(),
255 DenseMapInfo<unsigned>::getTombstoneKey()};
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCRegister.h98 static inline unsigned getTombstoneKey() {
99 return DenseMapInfo<unsigned>::getTombstoneKey();
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRegister.h152 static inline unsigned getTombstoneKey() {
153 return DenseMapInfo<unsigned>::getTombstoneKey();
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DCallGraph.h224 static inline clang::CallGraphNode::CallRecord getTombstoneKey() {
226 DenseMapInfo<clang::CallGraphNode *>::getTombstoneKey(),
227 DenseMapInfo<clang::Expr *>::getTombstoneKey());
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h164 using DenseMapInfo<DeclContext *>::getTombstoneKey;
171 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()

12345