Searched refs:getTombstoneKey (Results 1 - 25 of 95) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMapInfo.h31 //static inline T getTombstoneKey();
45 static inline T* getTombstoneKey() { function in struct:llvm::DenseMapInfo
62 static inline char getTombstoneKey() { return ~0 - 1; } function in struct:llvm::DenseMapInfo
73 static inline unsigned char getTombstoneKey() { return ~0 - 1; } function in struct:llvm::DenseMapInfo
84 static inline unsigned short getTombstoneKey() { return 0xFFFF - 1; } function in struct:llvm::DenseMapInfo
95 static inline unsigned getTombstoneKey() { return ~0U - 1; } function in struct:llvm::DenseMapInfo
106 static inline unsigned long getTombstoneKey() { return ~0UL - 1L; } function in struct:llvm::DenseMapInfo
120 static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; } function in struct:llvm::DenseMapInfo
135 static inline short getTombstoneKey() { return -0x7FFF - 1; } function in struct:llvm::DenseMapInfo
143 static inline int getTombstoneKey() { retur function in struct:llvm::DenseMapInfo
157 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } function in struct:llvm::DenseMapInfo
171 static inline long long getTombstoneKey() { return -0x7fffffffffffffffLL-1; } function in struct:llvm::DenseMapInfo
195 static inline Pair getTombstoneKey() { function in struct:llvm::DenseMapInfo
227 static inline StringRef getTombstoneKey() { function in struct:llvm::DenseMapInfo
255 static inline ArrayRef<T> getTombstoneKey() { function in struct:llvm::DenseMapInfo
278 static inline hash_code getTombstoneKey() { return hash_code(-2); } function in struct:llvm::DenseMapInfo
285 static inline ElementCount getTombstoneKey() { return {~0U - 1, false}; } function in struct:llvm::DenseMapInfo
[all...]
H A DCachedHashString.h54 static CachedHashStringRef getTombstoneKey() { function in struct:llvm::DenseMapInfo
55 return CachedHashStringRef(DenseMapInfo<StringRef>::getTombstoneKey(), 1);
59 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!");
81 return DenseMapInfo<char *>::getTombstoneKey();
158 static CachedHashString getTombstoneKey() { function in struct:llvm::DenseMapInfo
164 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!");
H A DPointerEmbeddedInt.h108 static inline T getTombstoneKey() { return IntInfo::getTombstoneKey(); }
H A DDenseMap.h121 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
278 TheBucket->getFirst() = getTombstoneKey();
286 TheBucket->getFirst() = getTombstoneKey();
334 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
370 const KeyT TombstoneKey = getTombstoneKey();
408 !KeyInfoT::isEqual(getBuckets()[i].getFirst(), getTombstoneKey()))
429 static const KeyT getTombstoneKey() { function in class:llvm::DenseMapBase
430 return KeyInfoT::getTombstoneKey();
591 const KeyT TombstoneKey = getTombstoneKey();
909 const KeyT TombstoneKey = this->getTombstoneKey();
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DDWPStringPool.h16 static inline const char *getTombstoneKey() { function in struct:llvm::DWPStringPool::CStrDenseMapInfo
21 assert(Val != getTombstoneKey() && "Cannot hash the tombstone key!");
27 if (RHS == getTombstoneKey())
28 return LHS == getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DBaseSubobject.h64 static clang::BaseSubobject getTombstoneKey() { function in struct:llvm::DenseMapInfo
66 DenseMapInfo<const clang::CXXRecordDecl *>::getTombstoneKey(),
67 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getTombstoneKey()));
H A DTypeOrdering.h42 static inline clang::QualType getTombstoneKey() { function in struct:llvm::DenseMapInfo
62 static inline clang::CanQualType getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DCharUnits.h227 static clang::CharUnits getTombstoneKey() { function in struct:llvm::DenseMapInfo
229 DenseMapInfo<clang::CharUnits::QuantityType>::getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Core/
H A DSymbolTable.h65 static StringRef getTombstoneKey() { return StringRef(" ", 1); } function in struct:lld::SymbolTable::StringRefMappingInfo
78 static const DefinedAtom * getTombstoneKey() { return (DefinedAtom*)(-1); } function in struct:lld::SymbolTable::AtomMappingInfo
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DWasmTraits.h30 static wasm::WasmSignature getTombstoneKey() { function in struct:llvm::DenseMapInfo
54 static wasm::WasmGlobalType getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DFileEntry.h53 static inline gsym::FileEntry getTombstoneKey() { function in struct:llvm::DenseMapInfo
54 uint32_t key = DenseMapInfo<uint32_t>::getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCRegister.h97 static inline unsigned getTombstoneKey() { function in struct:llvm::DenseMapInfo
98 return DenseMapInfo<unsigned>::getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegister.h143 static inline unsigned getTombstoneKey() { function in struct:llvm::DenseMapInfo
144 return DenseMapInfo<unsigned>::getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenTBAA.h230 static clang::CodeGen::TBAAAccessInfo getTombstoneKey() { function in struct:llvm::DenseMapInfo
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-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h52 static inline PoolEntry *getTombstoneKey() { function in class:llvm::PBQP::ValuePool::PoolEntryDSInfo
76 if (P == getEmptyKey() || P == getTombstoneKey())
82 if (P1 == getEmptyKey() || P1 == getTombstoneKey())
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h276 static inline LocationSize getTombstoneKey() { function in struct:llvm::MemoryLocation::DenseMapInfo
292 static inline MemoryLocation getTombstoneKey() { function in struct:llvm::MemoryLocation::DenseMapInfo
293 return MemoryLocation(DenseMapInfo<const Value *>::getTombstoneKey(),
294 DenseMapInfo<LocationSize>::getTombstoneKey());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Linker/
H A DIRMover.h36 static StructType *getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DBypassSlowDivision.h51 static DivRemMapKey getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DItaniumCXXABI.cpp84 V, llvm::DenseMapInfo<T>::getTombstoneKey());
108 static DecompositionDeclName getTombstoneKey() { function in struct:llvm::DenseMapInfo
109 return {ArrayInfo::getTombstoneKey()};
112 assert(!isEqual(Key, getEmptyKey()) && !isEqual(Key, getTombstoneKey()));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueHandle.h100 V != DenseMapInfo<Value *>::getTombstoneKey();
180 static inline WeakVH getTombstoneKey() { function in struct:llvm::DenseMapInfo
181 return WeakVH(DenseMapInfo<Value *>::getTombstoneKey());
315 static inline AssertingVH<T> getTombstoneKey() { function in struct:llvm::DenseMapInfo
317 Res.setRawValPtr(DenseMapInfo<Value *>::getTombstoneKey());
546 static inline PoisoningVH<T> getTombstoneKey() { function in struct:llvm::DenseMapInfo
548 Res.setRawValPtr(DenseMapInfo<Value *>::getTombstoneKey());
H A DDominators.h111 static inline BasicBlockEdge getTombstoneKey() { function in struct:llvm::DenseMapInfo
112 return BasicBlockEdge(BBInfo::getTombstoneKey(), BBInfo::getTombstoneKey());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86OptimizeLEAs.cpp127 static inline MemOpKey getTombstoneKey() { function in struct:llvm::DenseMapInfo
128 return MemOpKey(PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(),
129 PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(),
130 PtrInfo::getTombstoneKey());
137 assert(Val.Disp != PtrInfo::getTombstoneKey() &&
181 if (RHS.Disp == PtrInfo::getTombstoneKey())
182 return LHS.Disp == PtrInfo::getTombstoneKey();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h150 using DenseMapInfo<DeclContext *>::getTombstoneKey;
157 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h471 static inline lldb_private::ConstString getTombstoneKey() { function in struct:llvm::DenseMapInfo
473 DenseMapInfo<const char *>::getTombstoneKey());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysisSummary.h250 static inline cflaa::InstantiatedValue getTombstoneKey() { function in struct:llvm::DenseMapInfo
251 return cflaa::InstantiatedValue{DenseMapInfo<Value *>::getTombstoneKey(),
252 DenseMapInfo<unsigned>::getTombstoneKey()};

Completed in 310 milliseconds

1234