Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h572 void setModulePath(StringRef ModPath) { ModulePath = ModPath; }
1812 const ModuleHash &getModuleHash(const StringRef ModPath) const {
1813 auto It = ModulePathStringTable.find(ModPath);
1846 ModuleInfo *addModule(StringRef ModPath, ModuleHash Hash = ModuleHash{{0}}) {
1847 return &*ModulePathStringTable.insert({ModPath, Hash}).first;
1851 ModuleInfo *getModule(StringRef ModPath) {
1852 auto It = ModulePathStringTable.find(ModPath);
1858 const ModuleInfo *getModule(StringRef ModPath) const {
1859 auto It = ModulePathStringTable.find(ModPath);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp572 for (auto &[ModPath, _] : modulePaths()) in exportToDot()
573 ModulePaths.push_back(ModPath); in exportToDot()
576 for (auto &ModPath : ModulePaths) in exportToDot() local
577 ModuleIdMap.try_emplace(ModPath, ModuleIdMap.size()); in exportToDot()
H A DAsmWriter.cpp1161 for (auto &[ModPath, _] : TheIndex->modulePaths()) in processIndex()
1162 ModulePaths.push_back(ModPath); in processIndex()
1164 for (auto &ModPath : ModulePaths) in processIndex() local
1165 CreateModulePathSlot(ModPath); in processIndex()
3204 for (auto &[ModPath, ModHash] : TheIndex->modulePaths()) in printModuleSummaryIndex()
3205 moduleVec[Machine.getModulePathSlot(ModPath)] = std::make_pair( in printModuleSummaryIndex()
3208 ModPath.empty() ? RegularLTOModuleName : std::string(ModPath), ModHash); in printModuleSummaryIndex()
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp601 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
602 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1990 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); in findOrCompileModuleAndReadAST() local
1991 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); in findOrCompileModuleAndReadAST()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp611 for (auto &[ModPath, _] : Index.modulePaths()) in forEachModule()
612 ModulePaths.push_back(ModPath); in forEachModule()
614 for (auto &ModPath : ModulePaths) in forEachModule() local
615 Callback(*Index.modulePaths().find(ModPath)); in forEachModule()