Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h392 void setModulePath(StringRef ModPath) { ModulePath = ModPath; }
1454 uint64_t getModuleId(const StringRef ModPath) const {
1455 return ModulePathStringTable.lookup(ModPath).first;
1459 const ModuleHash &getModuleHash(const StringRef ModPath) const {
1460 auto It = ModulePathStringTable.find(ModPath);
1488 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId,
1490 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;
1494 ModuleInfo *getModule(StringRef ModPath) {
1495 auto It = ModulePathStringTable.find(ModPath);
/llvm-project-15.0.7/llvm/lib/IR/
H A DAsmWriter.cpp1053 for (auto &ModPath : TheIndex->modulePaths()) in processIndex() local
1054 ModuleIdToPathMap[ModPath.second.first] = ModPath.first(); in processIndex()
2862 for (auto &ModPath : TheIndex->modulePaths()) in printModuleSummaryIndex() local
2863 moduleVec[Machine.getModulePathSlot(ModPath.first())] = std::make_pair( in printModuleSummaryIndex()
2866 ModPath.second.first == -1u ? RegularLTOModuleName in printModuleSummaryIndex()
2867 : (std::string)std::string(ModPath.first()), in printModuleSummaryIndex()
2868 ModPath.second.second); in printModuleSummaryIndex()
/llvm-project-15.0.7/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp541 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
542 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DCompilerInstance.cpp1898 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); in findOrCompileModuleAndReadAST() local
1899 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); in findOrCompileModuleAndReadAST()