| /trueos/contrib/llvm/include/llvm/ADT/ |
| HD | DenseMapInfo.h | 38 static inline T* getTombstoneKey() { 53 static inline char getTombstoneKey() { return ~0 - 1; } 63 static inline unsigned getTombstoneKey() { return ~0U - 1; } 73 static inline unsigned long getTombstoneKey() { return ~0UL - 1L; } 85 static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; } 98 static inline int getTombstoneKey() { return -0x7fffffff - 1; } 110 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } 122 static inline long long getTombstoneKey() { return -0x7fffffffffffffffLL-1; } 143 static inline Pair getTombstoneKey() { 144 return std::make_pair(FirstInfo::getTombstoneKey(), [all …]
|
| HD | DenseMap.h | 88 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in clear() 196 TheBucket->first = getTombstoneKey(); in erase() 204 TheBucket->first = getTombstoneKey(); in erase() 254 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey(); in destroyAll() 283 const KeyT TombstoneKey = getTombstoneKey(); in moveFromOldBuckets() 323 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey())) in copyFrom() 343 static const KeyT getTombstoneKey() { in getTombstoneKey() function 344 return KeyInfoT::getTombstoneKey(); in getTombstoneKey() 477 const KeyT TombstoneKey = getTombstoneKey(); in LookupBucketFor() 747 const KeyT TombstoneKey = this->getTombstoneKey(); in swap() [all …]
|
| HD | ValueMap.h | 258 static inline VH getTombstoneKey() { 259 return VH(PointerInfo::getTombstoneKey(), NULL);
|
| HD | ImmutableList.h | 210 static inline ImmutableList<T> getTombstoneKey() {
|
| HD | PointerIntPair.h | 164 static Ty getTombstoneKey() {
|
| /trueos/contrib/llvm/lib/IR/ |
| HD | LLVMContextImpl.h | 60 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); } in getTombstoneKey() function 86 static inline KeyTy getTombstoneKey() { in getTombstoneKey() function 120 static inline StructType* getTombstoneKey() { in getTombstoneKey() function 121 return DenseMapInfo<StructType*>::getTombstoneKey(); in getTombstoneKey() 132 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual() 168 static inline FunctionType* getTombstoneKey() { in getTombstoneKey() function 169 return DenseMapInfo<FunctionType*>::getTombstoneKey(); in getTombstoneKey() 181 if (RHS == getEmptyKey() || RHS == getTombstoneKey()) in isEqual()
|
| HD | ConstantsContext.h | 663 static inline ConstantClass* getTombstoneKey() { 664 return ConstantClassInfo::getTombstoneKey(); 681 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
|
| /trueos/contrib/llvm/include/llvm/Support/ |
| HD | DebugLoc.h | 41 static DebugLoc getTombstoneKey() { 108 static DebugLoc getTombstoneKey() { return DebugLoc::getTombstoneKey(); }
|
| HD | ValueHandle.h | 111 V != DenseMapInfo<Value *>::getTombstoneKey(); in isValid() 245 static inline T* getTombstoneKey() { 246 return AssertingVH<T>(PointerInfo::getTombstoneKey());
|
| /trueos/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | BaseSubobject.h | 62 static clang::BaseSubobject getTombstoneKey() { 64 DenseMapInfo<const clang::CXXRecordDecl *>::getTombstoneKey(), 65 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getTombstoneKey()));
|
| HD | TypeOrdering.h | 43 static inline clang::QualType getTombstoneKey() { 63 static inline clang::CanQualType getTombstoneKey() {
|
| HD | CharUnits.h | 203 static clang::CharUnits getTombstoneKey() { 205 DenseMapInfo<clang::CharUnits::QuantityType>::getTombstoneKey();
|
| HD | GlobalDecl.h | 101 static inline clang::GlobalDecl getTombstoneKey() {
|
| HD | DeclarationName.h | 577 static inline clang::DeclarationName getTombstoneKey() {
|
| /trueos/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CodeGenTBAA.h | 137 static clang::CodeGen::TBAAPathTag getTombstoneKey() { 139 DenseMapInfo<const clang::Type *>::getTombstoneKey(), 140 DenseMapInfo<const MDNode *>::getTombstoneKey(), 141 DenseMapInfo<uint64_t>::getTombstoneKey());
|
| /trueos/contrib/llvm/lib/Transforms/Scalar/ |
| HD | EarlyCSE.cpp | 58 Inst == DenseMapInfo<Instruction*>::getTombstoneKey(); in isSentinel() 79 static inline SimpleValue getTombstoneKey() { in getTombstoneKey() function 80 return DenseMapInfo<Instruction*>::getTombstoneKey(); in getTombstoneKey() 201 Inst == DenseMapInfo<Instruction*>::getTombstoneKey(); in isSentinel() 222 static inline CallValue getTombstoneKey() { in getTombstoneKey() function 223 return DenseMapInfo<Instruction*>::getTombstoneKey(); in getTombstoneKey()
|
| /trueos/contrib/llvm/include/llvm/CodeGen/ |
| HD | MachineInstr.h | 1052 static inline MachineInstr *getTombstoneKey() { 1060 if (RHS == getEmptyKey() || RHS == getTombstoneKey() || 1061 LHS == getEmptyKey() || LHS == getTombstoneKey())
|
| /trueos/contrib/llvm/include/llvm/Analysis/ |
| HD | AliasSetTracker.h | 67 TBAAInfo = DenseMapInfo<const MDNode *>::getTombstoneKey(); in updateSizeAndTBAAInfo() 77 TBAAInfo == DenseMapInfo<const MDNode *>::getTombstoneKey()) in getTBAAInfo()
|
| HD | AliasAnalysis.h | 565 static inline AliasAnalysis::Location getTombstoneKey() { 567 AliasAnalysis::Location(DenseMapInfo<const Value *>::getTombstoneKey(),
|
| /trueos/contrib/llvm/tools/clang/include/clang/Analysis/ |
| HD | ProgramPoint.h | 682 static inline clang::ProgramPoint getTombstoneKey() { 684 reinterpret_cast<uintptr_t>(DenseMapInfo<void*>::getTombstoneKey()) & ~0x7;
|
| /trueos/contrib/llvm/lib/Transforms/Utils/ |
| HD | BypassSlowDivision.cpp | 59 static DivOpInfo getTombstoneKey() { in getTombstoneKey() function
|
| /trueos/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | SourceLocation.h | 405 static inline clang::FileID getTombstoneKey() {
|
| /trueos/contrib/llvm/include/llvm/IR/ |
| HD | Attributes.h | 372 static inline AttributeSet getTombstoneKey() {
|
| /trueos/contrib/llvm/tools/clang/include/clang/Serialization/ |
| HD | ASTBitCodes.h | 113 static inline QualType getTombstoneKey() { in getTombstoneKey() function
|
| /trueos/contrib/llvm/lib/MC/ |
| HD | MCDwarf.cpp | 1390 static const CIEKey getTombstoneKey() { return CIEKey(0, -1, 0, false); } in getTombstoneKey() function 1410 static CIEKey getTombstoneKey() { in getTombstoneKey() function 1411 return CIEKey::getTombstoneKey(); in getTombstoneKey()
|