Home
last modified time | relevance | path

Searched refs:ModHash (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Bitcode/
H A DBitcodeWriter.h91 bool GenerateHash = false, ModuleHash *ModHash = nullptr);
101 const ModuleHash &ModHash);
133 ModuleHash *ModHash = nullptr);
144 const ModuleHash &ModHash);
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DThinLTOBitcodeWriter.cpp397 ModuleHash ModHash = {{0}}; in splitAndWriteThinLTOBitcode() local
399 /*GenerateHash=*/true, &ModHash); in splitAndWriteThinLTOBitcode()
412 W2.writeThinLinkBitcode(M, Index, ModHash); in splitAndWriteThinLTOBitcode()
453 ModuleHash ModHash = {{0}}; in writeThinLTOBitcode() local
455 /*GenerateHash=*/true, &ModHash); in writeThinLTOBitcode()
460 WriteThinLinkBitcodeToFile(M, *ThinLinkOS, *Index, ModHash); in writeThinLTOBitcode()
/freebsd-12.1/contrib/llvm/lib/LTO/
H A DLTO.cpp145 auto ModHash = Index.getModuleHash(ModuleID); in computeLTOCacheKey() local
146 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
155 auto ModHash = Index.getModuleHash(Entry.first()); in computeLTOCacheKey() local
156 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
/freebsd-12.1/contrib/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp253 ModuleHash *ModHash; member in __anone309b5010111::ModuleBitcodeWriter
267 ModuleHash *ModHash = nullptr) in ModuleBitcodeWriter() argument
270 Buffer(Buffer), GenerateHash(GenerateHash), ModHash(ModHash), in ModuleBitcodeWriter()
4041 if (ModHash) in writeModuleHash()
4043 llvm::copy(Vals, std::begin(*ModHash)); in writeModuleHash()
4297 ModHash); in WriteBitcodeToFile()
4345 const ModuleHash *ModHash; member in __anone309b5010f11::ThinLinkBitcodeWriter
4351 const ModuleHash &ModHash) in ThinLinkBitcodeWriter() argument
4354 ModHash(&ModHash) {} in ThinLinkBitcodeWriter()
4479 ModHash); in writeThinLinkBitcode()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h1103 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) {
1106 NewName += utostr((uint64_t(ModHash[0]) << 32) |
1107 ModHash[1]); // Take the first 64 bits