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

12

/freebsd-10.0-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.h86 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
194 TheBucket->first = getTombstoneKey();
202 TheBucket->first = getTombstoneKey();
252 const KeyT EmptyKey = getEmptyKey(), TombstoneKey = getTombstoneKey();
281 const KeyT TombstoneKey = getTombstoneKey();
321 !KeyInfoT::isEqual(getBuckets()[i].first, getTombstoneKey()))
341 static const KeyT getTombstoneKey() { function in class:llvm::DenseMapBase
342 return KeyInfoT::getTombstoneKey();
476 const KeyT TombstoneKey = getTombstoneKey();
746 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.h163 static Ty getTombstoneKey() {
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DDebugLoc.h37 /// getTombstoneKey() - A private constructor that returns an unknown that
39 static DebugLoc getTombstoneKey() { function in class:llvm::DebugLoc
106 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.0-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.h41 static inline clang::QualType getTombstoneKey() { function in struct:llvm::DenseMapInfo
61 static inline clang::CanQualType getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DCharUnits.h204 static clang::CharUnits getTombstoneKey() { function in struct:llvm::DenseMapInfo
206 DenseMapInfo<clang::CharUnits::QuantityType>::getTombstoneKey();
H A DGlobalDecl.h100 static inline clang::GlobalDecl getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DDeclarationName.h573 static inline clang::DeclarationName getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-10.0-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.0-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.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp58 Inst == DenseMapInfo<Instruction*>::getTombstoneKey();
84 static inline SimpleValue getTombstoneKey() { function in struct:llvm::DenseMapInfo
85 return DenseMapInfo<Instruction*>::getTombstoneKey();
206 Inst == DenseMapInfo<Instruction*>::getTombstoneKey();
232 static inline CallValue getTombstoneKey() { function in struct:llvm::DenseMapInfo
233 return DenseMapInfo<Instruction*>::getTombstoneKey();
/freebsd-10.0-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.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstr.h1051 static inline MachineInstr *getTombstoneKey() {
1059 if (RHS == getEmptyKey() || RHS == getTombstoneKey() ||
1060 LHS == getEmptyKey() || LHS == getTombstoneKey())
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp59 static DivOpInfo getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-10.0-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.0-release/contrib/llvm/include/llvm/IR/
H A DAttributes.h365 static inline AttributeSet getTombstoneKey() { function in struct:llvm::DenseMapInfo
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DSourceLocation.h405 static inline clang::FileID getTombstoneKey() { function in struct:llvm::DenseMapInfo
H A DIdentifierTable.h779 static inline clang::Selector getTombstoneKey() {
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DScopeInfo.h210 static inline WeakObjectProfileTy getTombstoneKey() { function in class:clang::sema::FunctionScopeInfo::WeakObjectProfileTy::DenseMapInfo

Completed in 426 milliseconds

12