Home
last modified time | relevance | path

Searched refs:ModPath (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/IR/
DModuleSummaryIndex.cpp24 StringRef ModPath; in mergeFrom() local
36 if (ModPath.empty()) { in mergeFrom()
38 ModPath = addModulePath(Path, NextModuleId, Other->getModuleHash(Path)) in mergeFrom()
41 assert(ModPath == Summary->modulePath() && in mergeFrom()
47 Summary->setModulePath(ModPath); in mergeFrom()
/external/llvm/include/llvm/IR/
DModuleSummaryIndex.h158 void setModulePath(StringRef ModPath) { ModulePath = ModPath; } in setModulePath() argument
428 uint64_t getModuleId(const StringRef ModPath) const { in getModuleId() argument
429 return ModulePathStringTable.lookup(ModPath).first; in getModuleId()
433 const ModuleHash &getModuleHash(const StringRef ModPath) const { in getModuleHash() argument
434 auto It = ModulePathStringTable.find(ModPath); in getModuleHash()
465 addModulePath(StringRef ModPath, uint64_t ModId,
468 ModPath,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DModuleSummaryIndex.h319 void setModulePath(StringRef ModPath) { ModulePath = ModPath; }
1015 uint64_t getModuleId(const StringRef ModPath) const {
1016 return ModulePathStringTable.lookup(ModPath).first;
1020 const ModuleHash &getModuleHash(const StringRef ModPath) const {
1021 auto It = ModulePathStringTable.find(ModPath);
1047 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId,
1049 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;
1053 ModuleInfo *getModule(StringRef ModPath) {
1054 auto It = ModulePathStringTable.find(ModPath);
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp346 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
347 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-lto/
Dllvm-lto.cpp431 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
432 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DAsmWriter.cpp1017 for (auto &ModPath : TheIndex->modulePaths()) in processIndex() local
1018 ModuleIdToPathMap[ModPath.second.first] = ModPath.first(); in processIndex()
2610 for (auto &ModPath : TheIndex->modulePaths()) in printModuleSummaryIndex() local
2611 moduleVec[Machine.getModulePathSlot(ModPath.first())] = std::make_pair( in printModuleSummaryIndex()
2614 ModPath.second.first == -1u ? RegularLTOModuleName in printModuleSummaryIndex()
2615 : (std::string)ModPath.first(), in printModuleSummaryIndex()
2616 ModPath.second.second); in printModuleSummaryIndex()
/external/clang/lib/Frontend/
DCompilerInstance.cpp1489 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); in loadModule() local
1490 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); in loadModule()