Searched refs:ModHash (Results 1 – 7 of 7) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitcode/ |
D | BitcodeWriter.h | 91 bool GenerateHash = false, ModuleHash *ModHash = nullptr); 101 const ModuleHash &ModHash); 133 ModuleHash *ModHash = nullptr); 144 const ModuleHash &ModHash);
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | ThinLTOBitcodeWriter.cpp | 406 ModuleHash ModHash = {{0}}; in splitAndWriteThinLTOBitcode() local 408 /*GenerateHash=*/true, &ModHash); in splitAndWriteThinLTOBitcode() 421 W2.writeThinLinkBitcode(M, Index, ModHash); in splitAndWriteThinLTOBitcode() 481 ModuleHash ModHash = {{0}}; in writeThinLTOBitcode() local 483 /*GenerateHash=*/true, &ModHash); in writeThinLTOBitcode() 488 WriteThinLinkBitcodeToFile(M, *ThinLinkOS, *Index, ModHash); in writeThinLTOBitcode()
|
/external/llvm/lib/LTO/ |
D | ThinLTOCodeGenerator.cpp | 250 auto ModHash = Index.getModuleHash(ModuleID); in ModuleCacheEntry() local 251 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in ModuleCacheEntry() 258 auto ModHash = Index.getModuleHash(Entry.first()); in ModuleCacheEntry() local 259 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in ModuleCacheEntry()
|
/external/llvm/include/llvm/IR/ |
D | ModuleSummaryIndex.h | 448 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) { in getGlobalNameForLocal() argument 451 NewName += utohexstr(ModHash[0]); // Take the first 32 bits in getGlobalNameForLocal()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/ |
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() 160 auto ModHash = Index.getModuleHash(Entry.first()); in computeLTOCacheKey() local 161 Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash))); in computeLTOCacheKey()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 254 ModuleHash *ModHash; member in __anon0d49e68c0111::ModuleBitcodeWriter 268 ModuleHash *ModHash = nullptr) in ModuleBitcodeWriter() argument 271 Buffer(Buffer), GenerateHash(GenerateHash), ModHash(ModHash), in ModuleBitcodeWriter() 4223 if (ModHash) in writeModuleHash() 4225 llvm::copy(Vals, std::begin(*ModHash)); in writeModuleHash() 4439 bool GenerateHash, ModuleHash *ModHash) { in writeModule() argument 4451 GenerateHash, ModHash); in writeModule() 4467 bool GenerateHash, ModuleHash *ModHash) { in WriteBitcodeToFile() argument 4479 ModHash); in WriteBitcodeToFile() 4527 const ModuleHash *ModHash; member in __anon0d49e68c0f11::ThinLinkBitcodeWriter [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ModuleSummaryIndex.h | 1262 static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash) { 1265 NewName += utostr((uint64_t(ModHash[0]) << 32) | 1266 ModHash[1]); // Take the first 64 bits
|