Searched refs:ModHash (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/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);
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/LTO/ |
| H A D | LTO.cpp | 148 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey() local 149 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey() 180 auto ModHash = Index.getModuleHash(EntryIt->first()); in computeLTOCacheKey() local 181 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
|
| /openbsd-src/gnu/llvm/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 257 ModuleHash *ModHash; member in __anonef3ea4f30111::ModuleBitcodeWriter 271 ModuleHash *ModHash = nullptr) in ModuleBitcodeWriter() argument 274 Buffer(Buffer), GenerateHash(GenerateHash), ModHash(ModHash), in ModuleBitcodeWriter() 4639 if (ModHash) in writeModuleHash() 4641 llvm::copy(Vals, std::begin(*ModHash)); in writeModuleHash() 4855 bool GenerateHash, ModuleHash *ModHash) { in writeModule() argument 4867 GenerateHash, ModHash); in writeModule() 4883 bool GenerateHash, ModuleHash *ModHash) { in WriteBitcodeToFile() argument 4895 ModHash); in WriteBitcodeToFile() 4944 const ModuleHash *ModHash; member in __anonef3ea4f31711::ThinLinkBitcodeWriter [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | ModuleSummaryIndex.h | 1614 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) { 1615 std::string Suffix = utostr((uint64_t(ModHash[0]) << 32) | 1616 ModHash[1]); // Take the first 64 bits
|