Home
last modified time | relevance | path

Searched refs:KeyTy (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/dsymutil/
H A DBinaryHolder.h102 struct KeyTy { struct
106 KeyTy() : Filename(), Timestamp() {} in KeyTy() function
107 KeyTy(StringRef Filename, TimestampTy Timestamp) in KeyTy() argument
121 DenseMap<KeyTy, ObjectEntry> MemberCache;
148 template <> struct DenseMapInfo<dsymutil::BinaryHolder::ArchiveEntry::KeyTy> {
150 static inline dsymutil::BinaryHolder::ArchiveEntry::KeyTy getEmptyKey() {
151 return dsymutil::BinaryHolder::ArchiveEntry::KeyTy();
154 static inline dsymutil::BinaryHolder::ArchiveEntry::KeyTy getTombstoneKey() {
155 return dsymutil::BinaryHolder::ArchiveEntry::KeyTy("/", {});
159 getHashValue(const dsymutil::BinaryHolder::ArchiveEntry::KeyTy &K) {
[all …]
H A DBinaryHolder.cpp173 KeyTy Key = {ObjectFilename, Timestamp}; in getObjectEntry()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Linker/
H A DIRMover.h27 struct KeyTy { struct
30 KeyTy(ArrayRef<Type *> E, bool P);
31 KeyTy(const StructType *ST);
32 bool operator==(const KeyTy &that) const;
33 bool operator!=(const KeyTy &that) const;
37 static unsigned getHashValue(const KeyTy &Key);
39 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DLLVMContextImpl.h76 struct KeyTy { struct
80 KeyTy(const ArrayRef<Type*>& E, bool P) : in KeyTy() argument
83 KeyTy(const StructType *ST) in KeyTy() function
86 bool operator==(const KeyTy& that) const {
93 bool operator!=(const KeyTy& that) const {
106 static unsigned getHashValue(const KeyTy& Key) { in getHashValue()
113 return getHashValue(KeyTy(ST)); in getHashValue()
116 static bool isEqual(const KeyTy& LHS, const StructType *RHS) { in isEqual()
119 return LHS == KeyTy(RHS); in isEqual()
128 struct KeyTy { struct
[all …]
H A DMetadataImpl.h23 const typename InfoT::KeyTy &Key) { in getUniqued()
H A DType.cpp324 const FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg); in get()
369 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
H A DDebugInfoMetadata.cpp67 DILocationInfo::KeyTy(Line, Column, Scope, in getImpl()
290 GenericDINodeInfo::KeyTy Key(Tag, Header, DwarfOps); in getImpl()
309 setHash(GenericDINodeInfo::KeyTy::calculateHash(this)); in recalculateHash()
318 CLASS##Info::KeyTy(UNWRAP_ARGS(ARGS)))) \
H A DMetadata.cpp699 setHash(MDTupleInfo::KeyTy::calculateHash(this)); in recalculateHash()
829 MDTupleInfo::KeyTy Key(MDs); in getImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/
H A DIRMover.cpp1531 IRMover::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P) in KeyTy() function in IRMover::StructTypeKeyInfo::KeyTy
1534 IRMover::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST) in KeyTy() function in IRMover::StructTypeKeyInfo::KeyTy
1537 bool IRMover::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const { in operator ==()
1541 bool IRMover::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const { in operator !=()
1553 unsigned IRMover::StructTypeKeyInfo::getHashValue(const KeyTy &Key) { in getHashValue()
1559 return getHashValue(KeyTy(ST)); in getHashValue()
1562 bool IRMover::StructTypeKeyInfo::isEqual(const KeyTy &LHS, in isEqual()
1566 return LHS == KeyTy(RHS); in isEqual()
1573 return KeyTy(LHS) == KeyTy(RHS); in isEqual()
1597 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp97 template <typename KeyTy>
99 RemoveFromReverseMap(DenseMap<Instruction *, SmallPtrSet<KeyTy, 4>> &ReverseMap, in RemoveFromReverseMap() argument
100 Instruction *Inst, KeyTy Val) { in RemoveFromReverseMap()
101 typename DenseMap<Instruction *, SmallPtrSet<KeyTy, 4>>::iterator InstIt = in RemoveFromReverseMap()