| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | FoldingSet.h | 251 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID); 273 static inline unsigned ComputeHash(T &X, FoldingSetNodeID &TempID, 298 unsigned ComputeHash() const { in ComputeHash() function 370 unsigned ComputeHash() const { in ComputeHash() function 371 return FoldingSetNodeIDRef(Bits.data(), Bits.size()).ComputeHash(); in ComputeHash() 409 DefaultFoldingSetTrait<T>::ComputeHash(T &X, FoldingSetNodeID &TempID) { in ComputeHash() function 411 return TempID.ComputeHash(); in ComputeHash() 425 DefaultContextualFoldingSetTrait<T, Ctx>::ComputeHash(T &X, in ComputeHash() function 429 return TempID.ComputeHash(); in ComputeHash() 546 return FoldingSetTrait<T>::ComputeHash(*TN, TempID); in ComputeNodeHash() [all …]
|
| H A D | ImmutableSet.h | 293 digest += ID.ComputeHash(); in computeDigest()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderInternals.h | 93 static hash_value_type ComputeHash(const internal_key_type &Key) { in ComputeHash() function 141 static hash_value_type ComputeHash(const internal_key_type& a); 218 static hash_value_type ComputeHash(Selector Sel); 269 static hash_value_type ComputeHash(internal_key_ref ikey);
|
| H A D | ASTCommon.h | 73 unsigned ComputeHash(Selector Sel);
|
| H A D | MultiOnDiskHashTable.h | 238 auto KeyHash = Info::ComputeHash(Key); in find()
|
| H A D | GlobalModuleIndex.cpp | 85 static hash_value_type ComputeHash(const internal_key_type& a) { in ComputeHash() function in __anon244be4660311::IdentifierIndexReaderTrait 729 static hash_value_type ComputeHash(key_type_ref Key) { in ComputeHash() function in __anon244be4660811::IdentifierIndexWriterTrait
|
| H A D | ASTCommon.cpp | 276 unsigned serialization::ComputeHash(Selector Sel) { in ComputeHash() function in serialization
|
| /llvm-project-15.0.7/llvm/unittests/ProfileData/ |
| H A D | InstrProfTest.cpp | 1040 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("func2")); in TEST_P() 1042 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("func3")); in TEST_P() 1044 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar1")); in TEST_P() 1046 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar2")); in TEST_P() 1048 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar3")); in TEST_P() 1052 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar4")); in TEST_P() 1054 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("foo4")); in TEST_P() 1075 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar1")); in TEST_P() 1077 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar2")); in TEST_P() 1079 R = Symtab.getFuncName(IndexedInstrProf::ComputeHash("bar3")); in TEST_P() [all …]
|
| /llvm-project-15.0.7/llvm/unittests/ADT/ |
| H A D | FoldingSet.cpp | 34 EXPECT_EQ(a.ComputeHash(), b.ComputeHash()); in TEST()
|
| /llvm-project-15.0.7/llvm/include/llvm/ProfileData/ |
| H A D | MemProf.h | 462 hash_value_type ComputeHash(uint64_t K) { return K; } in ComputeHash() function 510 static hash_value_type ComputeHash(key_type_ref K) { return K; } in ComputeHash() function 549 static hash_value_type ComputeHash(key_type_ref K) { return K; } in ComputeHash() function 589 hash_value_type ComputeHash(internal_key_type K) { return K; } in ComputeHash() function
|
| H A D | InstrProf.h | 432 uint64_t ComputeHash(StringRef K); 509 IndexedInstrProf::ComputeHash(FuncName), Ins.first->getKey())); in addFuncName() 988 inline uint64_t ComputeHash(HashT Type, StringRef K) { in ComputeHash() function 1031 inline uint64_t ComputeHash(StringRef K) { return ComputeHash(HashType, K); } in ComputeHash() function
|
| H A D | InstrProfReader.h | 425 hash_value_type ComputeHash(StringRef K);
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 70 : Key(Key), Data(Data), Next(nullptr), Hash(InfoObj.ComputeHash(Key)) {} in Item() 135 unsigned Hash = InfoObj.ComputeHash(Key); in contains() 345 hash_value_type KeyHash = InfoObj.ComputeHash(IKey);
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | ScalarEvolution.h | 192 static unsigned ComputeHash(const SCEV &X, FoldingSetNodeID &TempID) { 193 return X.FastID.ComputeHash(); 270 static unsigned ComputeHash(const SCEVPredicate &X, 272 return X.FastID.ComputeHash();
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | InstrProfWriter.cpp | 113 static hash_value_type ComputeHash(key_type_ref K) { in ComputeHash() function in llvm::InstrProfRecordWriterTrait 114 return IndexedInstrProf::ComputeHash(K); in ComputeHash()
|
| H A D | InstrProfReader.cpp | 246 Value = IndexedInstrProf::ComputeHash(VD.first); in readValueProfileData() 632 InstrProfLookupTrait::ComputeHash(StringRef K) { in ComputeHash() function in InstrProfLookupTrait 633 return IndexedInstrProf::ComputeHash(HashType, K); in ComputeHash()
|
| H A D | InstrProfCorrelator.cpp | 168 maybeSwap<uint64_t>(IndexedInstrProf::ComputeHash(FunctionName)), in addProbe()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | FoldingSet.cpp | 280 unsigned IDHash = ID.ComputeHash(); in FindNodeOrInsertPos()
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConstraintManager.h | 335 unsigned hash = ID.ComputeHash(); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
| /llvm-project-15.0.7/clang/include/clang/Analysis/ |
| H A D | ProgramPoint.h | 190 return ID.ComputeHash(); in getHashValue()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 1662 const uint64_t NameHash = llvm::IndexedInstrProf::ComputeHash(NameValue); in addFunctionMappingRecord() 1717 const int64_t FilenamesRef = llvm::IndexedInstrProf::ComputeHash(Filenames); in emit()
|
| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | Indexing.cpp | 111 return ID.ComputeHash(); in getHashValue()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ODRHash.cpp | 234 return ID.ComputeHash(); in CalculateHash()
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/Coverage/ |
| H A D | CoverageMappingReader.cpp | 651 llvm::IndexedInstrProf::ComputeHash(FilenameRegion); in readCoverageHeader()
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonCommonGEP.cpp | 492 return ID.ComputeHash(); in node_hash()
|