Searched refs:ModHash (Results 1 – 5 of 5) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/Bitcode/ |
| H A D | BitcodeWriter.h | 91 bool GenerateHash = false, ModuleHash *ModHash = nullptr); 101 const ModuleHash &ModHash); 133 ModuleHash *ModHash = nullptr); 144 const ModuleHash &ModHash);
|
| /llvm-project-15.0.7/llvm/lib/Transforms/IPO/ |
| H A D | ThinLTOBitcodeWriter.cpp | 464 ModuleHash ModHash = {{0}}; in splitAndWriteThinLTOBitcode() local 466 /*GenerateHash=*/true, &ModHash); in splitAndWriteThinLTOBitcode() 479 W2.writeThinLinkBitcode(M, Index, ModHash); in splitAndWriteThinLTOBitcode() 539 ModuleHash ModHash = {{0}}; in writeThinLTOBitcode() local 541 /*GenerateHash=*/true, &ModHash); in writeThinLTOBitcode() 546 writeThinLinkBitcodeToFile(M, *ThinLinkOS, *Index, ModHash); in writeThinLTOBitcode()
|
| /llvm-project-15.0.7/llvm/lib/LTO/ |
| H A D | LTO.cpp | 145 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey() local 146 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey() 177 auto ModHash = Index.getModuleHash(EntryIt->first()); in computeLTOCacheKey() local 178 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
|
| /llvm-project-15.0.7/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 258 ModuleHash *ModHash; member in __anon33774a8c0111::ModuleBitcodeWriter 272 ModuleHash *ModHash = nullptr) in ModuleBitcodeWriter() argument 275 Buffer(Buffer), GenerateHash(GenerateHash), ModHash(ModHash), in ModuleBitcodeWriter() 4448 if (ModHash) in writeModuleHash() 4450 llvm::copy(Vals, std::begin(*ModHash)); in writeModuleHash() 4704 ModHash); in WriteBitcodeToFile() 4753 const ModuleHash *ModHash; member in __anon33774a8c1311::ThinLinkBitcodeWriter 4759 const ModuleHash &ModHash) in ThinLinkBitcodeWriter() argument 4762 ModHash(&ModHash) {} in ThinLinkBitcodeWriter() 4887 ModHash); in writeThinLinkBitcode() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndex.h | 1467 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) { 1470 NewName += utostr((uint64_t(ModHash[0]) << 32) | 1471 ModHash[1]); // Take the first 64 bits
|