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

12

/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A DDenseMapInfo.h25 //static inline T getTombstoneKey();
38 static inline T* getTombstoneKey() { function in struct:llvm::DenseMapInfo
53 static inline char getTombstoneKey() { return ~0 - 1; } function in struct:llvm::DenseMapInfo
63 static inline unsigned getTombstoneKey() { return ~0U - 1; } function in struct:llvm::DenseMapInfo
73 static inline unsigned long getTombstoneKey() { return ~0UL - 1L; } function in struct:llvm::DenseMapInfo
85 static inline unsigned long long getTombstoneKey() { return ~0ULL - 1ULL; } function in struct:llvm::DenseMapInfo
98 static inline int getTombstoneKey() { return -0x7fffffff - 1; } function in struct:llvm::DenseMapInfo
110 static inline long getTombstoneKey() { return getEmptyKey() - 1L; } function in struct:llvm::DenseMapInfo
122 static inline long long getTombstoneKey() { return -0x7fffffffffffffffLL-1; } function in struct:llvm::DenseMapInfo
143 static inline Pair getTombstoneKey() { function in struct:llvm::DenseMapInfo
[all...]
H A DDenseMap.h88 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
196 TheBucket->first = getTombstoneKey();
204 TheBucket->first = getTombstoneKey();
254 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
283 const KeyT TombstoneKey = getTombstoneKey();
323 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey()))
343 static const KeyT getTombstoneKey() { function in class:llvm::DenseMapBase
344 return KeyInfoT::getTombstoneKey();
477 const KeyT TombstoneKey = getTombstoneKey();
747 const KeyT TombstoneKey = this->getTombstoneKey();
[all...]
H A DValueMap.h258 static inline VH getTombstoneKey() { function in struct:llvm::DenseMapInfo
259 return VH(PointerInfo::getTombstoneKey(), NULL);
H A DImmutableList.h210 static inline ImmutableList<T> getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DPointerIntPair.h164 static Ty getTombstoneKey() {
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DBaseSubobject.h62 static clang::BaseSubobject getTombstoneKey() { function in struct:llvm::DenseMapInfo
64 DenseMapInfo<const clang::CXXRecordDecl *>::getTombstoneKey(),
65 clang::CharUnits::fromQuantity(DenseMapInfo<int64_t>::getTombstoneKey()));
H A DTypeOrdering.h43 static inline clang::QualType getTombstoneKey() { function in struct:llvm::DenseMapInfo
63 static inline clang::CanQualType getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DCharUnits.h203 static clang::CharUnits getTombstoneKey() { function in struct:llvm::DenseMapInfo
205 DenseMapInfo<clang::CharUnits::QuantityType>::getTombstoneKey();
H A DGlobalDecl.h101 static inline clang::GlobalDecl getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DDeclarationName.h577 static inline clang::DeclarationName getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DDebugLoc.h39 /// getTombstoneKey() - A private constructor that returns an unknown that
41 static DebugLoc getTombstoneKey() { function in class:llvm::DebugLoc
108 static DebugLoc getTombstoneKey() { return DebugLoc::getTombstoneKey(); } function in struct:llvm::DenseMapInfo
H A DValueHandle.h111 V != DenseMapInfo<Value *>::getTombstoneKey();
245 static inline T* getTombstoneKey() { function in struct:llvm::DenseMapInfo
246 return AssertingVH<T>(PointerInfo::getTombstoneKey());
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenTBAA.h137 static clang::CodeGen::TBAAPathTag getTombstoneKey() { function in struct:llvm::DenseMapInfo
139 DenseMapInfo<const clang::Type *>::getTombstoneKey(),
140 DenseMapInfo<const MDNode *>::getTombstoneKey(),
141 DenseMapInfo<uint64_t>::getTombstoneKey());
/freebsd-10.3-release/contrib/llvm/lib/IR/
H A DLLVMContextImpl.h60 static inline KeyTy getTombstoneKey() { return KeyTy(APInt(1,1), 0); } function in struct:llvm::DenseMapAPIntKeyInfo
86 static inline KeyTy getTombstoneKey() { function in struct:llvm::DenseMapAPFloatKeyInfo
120 static inline StructType* getTombstoneKey() { function in struct:llvm::AnonStructTypeKeyInfo
121 return DenseMapInfo<StructType*>::getTombstoneKey();
132 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
168 static inline FunctionType* getTombstoneKey() { function in struct:llvm::FunctionTypeKeyInfo
169 return DenseMapInfo<FunctionType*>::getTombstoneKey();
181 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
H A DConstantsContext.h663 static inline ConstantClass* getTombstoneKey() { function in struct:llvm::ConstantAggrUniqueMap::MapInfo
664 return ConstantClassInfo::getTombstoneKey();
681 if (RHS == getEmptyKey() || RHS == getTombstoneKey())
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp58 Inst == DenseMapInfo<Instruction*>::getTombstoneKey();
79 static inline SimpleValue getTombstoneKey() { function in struct:llvm::DenseMapInfo
80 return DenseMapInfo<Instruction*>::getTombstoneKey();
201 Inst == DenseMapInfo<Instruction*>::getTombstoneKey();
222 static inline CallValue getTombstoneKey() { function in struct:llvm::DenseMapInfo
223 return DenseMapInfo<Instruction*>::getTombstoneKey();
/freebsd-10.3-release/contrib/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h67 TBAAInfo = DenseMapInfo<const MDNode *>::getTombstoneKey();
77 TBAAInfo == DenseMapInfo<const MDNode *>::getTombstoneKey())
H A DAliasAnalysis.h565 static inline AliasAnalysis::Location getTombstoneKey() { function in struct:llvm::DenseMapInfo
567 AliasAnalysis::Location(DenseMapInfo<const Value *>::getTombstoneKey(),
/freebsd-10.3-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1052 static inline MachineInstr *getTombstoneKey() {
1060 if (RHS == getEmptyKey() || RHS == getTombstoneKey() ||
1061 LHS == getEmptyKey() || LHS == getTombstoneKey())
/freebsd-10.3-release/contrib/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp59 static DivOpInfo getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DProgramPoint.h682 static inline clang::ProgramPoint getTombstoneKey() { function in struct:llvm::DenseMapInfo
684 reinterpret_cast<uintptr_t>(DenseMapInfo<void*>::getTombstoneKey()) & ~0x7;
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DSourceLocation.h405 static inline clang::FileID getTombstoneKey() { function in struct:clang::llvm::DenseMapInfo
H A DIdentifierTable.h801 static inline clang::Selector getTombstoneKey() {
/freebsd-10.3-release/contrib/llvm/include/llvm/IR/
H A DAttributes.h372 static inline AttributeSet getTombstoneKey() { function in struct:llvm::AttributeSet::DenseMapInfo
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DScopeInfo.h217 static inline WeakObjectProfileTy getTombstoneKey() { function in class:clang::sema::FunctionScopeInfo::WeakObjectProfileTy::DenseMapInfo

Completed in 131 milliseconds

12