Searched refs:ModHash (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/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);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ThinLTOBitcodeWriter.cpp | 456 ModuleHash ModHash = {{0}}; in splitAndWriteThinLTOBitcode() local 458 /*GenerateHash=*/true, &ModHash); in splitAndWriteThinLTOBitcode() 471 W2.writeThinLinkBitcode(M, Index, ModHash); in splitAndWriteThinLTOBitcode() 531 ModuleHash ModHash = {{0}}; in writeThinLTOBitcode() local 533 /*GenerateHash=*/true, &ModHash); in writeThinLTOBitcode() 538 WriteThinLinkBitcodeToFile(M, *ThinLinkOS, *Index, ModHash); in writeThinLTOBitcode()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTO.cpp | 144 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey() local 145 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey() 176 auto ModHash = Index.getModuleHash(EntryIt->first()); in computeLTOCacheKey() local 177 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 257 ModuleHash *ModHash; member in __anonc5ba43100111::ModuleBitcodeWriter 271 ModuleHash *ModHash = nullptr) in ModuleBitcodeWriter() argument 274 Buffer(Buffer), GenerateHash(GenerateHash), ModHash(ModHash), in ModuleBitcodeWriter() 4391 if (ModHash) in writeModuleHash() 4393 llvm::copy(Vals, std::begin(*ModHash)); in writeModuleHash() 4647 ModHash); in WriteBitcodeToFile() 4696 const ModuleHash *ModHash; member in __anonc5ba43101311::ThinLinkBitcodeWriter 4702 const ModuleHash &ModHash) in ThinLinkBitcodeWriter() argument 4705 ModHash(&ModHash) {} in ThinLinkBitcodeWriter() 4830 ModHash); in writeThinLinkBitcode() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndex.h | 1402 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) { 1405 NewName += utostr((uint64_t(ModHash[0]) << 32) | 1406 ModHash[1]); // Take the first 64 bits
|