Searched refs:ModHash (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Bitcode/ |
H A D | BitcodeWriter.h | 91 bool GenerateHash = false, ModuleHash *ModHash = nullptr); 101 const ModuleHash &ModHash); 134 ModuleHash *ModHash = nullptr); 145 const ModuleHash &ModHash);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | ThinLTOBitcodeWriter.cpp | 489 ModuleHash ModHash = {{0}}; in splitAndWriteThinLTOBitcode() local 491 /*GenerateHash=*/true, &ModHash); in splitAndWriteThinLTOBitcode() 504 W2.writeThinLinkBitcode(M, Index, ModHash); in splitAndWriteThinLTOBitcode() 566 ModuleHash ModHash = {{0}}; in writeThinLTOBitcode() local 568 /*GenerateHash=*/true, &ModHash); in writeThinLTOBitcode() 573 writeThinLinkBitcodeToFile(M, *ThinLinkOS, *Index, ModHash); in writeThinLTOBitcode()
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | LTO.cpp | 162 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey() local 163 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey() 208 auto ModHash = Entry.getHash(); in computeLTOCacheKey() local 209 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | BitcodeWriter.cpp | 269 ModuleHash *ModHash; member in __anoneb218b5c0111::ModuleBitcodeWriter 282 ModuleHash *ModHash = nullptr) in ModuleBitcodeWriter() argument 285 GenerateHash(GenerateHash), ModHash(ModHash), in ModuleBitcodeWriter() 4861 if (ModHash) in writeModuleHash() 4863 llvm::copy(Vals, std::begin(*ModHash)); in writeModuleHash() 5084 bool GenerateHash, ModuleHash *ModHash) { in writeModule() argument 5096 GenerateHash, ModHash); in writeModule() 5113 bool GenerateHash, ModuleHash *ModHash) { in WriteBitcodeToFile() argument 5116 ModHash); in WriteBitcodeToFile() 5177 const ModuleHash *ModHash; member in __anoneb218b5c1b11::ThinLinkBitcodeWriter [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ModuleSummaryIndex.h | 1753 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) { 1754 std::string Suffix = utostr((uint64_t(ModHash[0]) << 32) | 1755 ModHash[1]); // Take the first 64 bits
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AsmWriter.cpp | 3041 for (auto &[ModPath, ModHash] : TheIndex->modulePaths()) in printModuleSummaryIndex() 3045 ModPath.empty() ? RegularLTOModuleName : std::string(ModPath), ModHash); in printModuleSummaryIndex()
|