Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h533 void setModulePath(StringRef ModPath) { ModulePath = ModPath; }
1700 const ModuleHash &getModuleHash(const StringRef ModPath) const {
1701 auto It = ModulePathStringTable.find(ModPath);
1734 ModuleInfo *addModule(StringRef ModPath, ModuleHash Hash = ModuleHash{{0}}) {
1735 return &*ModulePathStringTable.insert({ModPath, Hash}).first;
1739 ModuleInfo *getModule(StringRef ModPath) {
1740 auto It = ModulePathStringTable.find(ModPath);
1746 const ModuleInfo *getModule(StringRef ModPath) const {
1747 auto It = ModulePathStringTable.find(ModPath);
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp561 for (auto &[ModPath, _] : modulePaths()) in exportToDot()
562 ModulePaths.push_back(ModPath); in exportToDot()
565 for (auto &ModPath : ModulePaths) in exportToDot() local
566 ModuleIdMap.try_emplace(ModPath, ModuleIdMap.size()); in exportToDot()
H A DAsmWriter.cpp1096 for (auto &[ModPath, _] : TheIndex->modulePaths()) in processIndex()
1097 ModulePaths.push_back(ModPath); in processIndex()
1099 for (auto &ModPath : ModulePaths) in processIndex() local
1100 CreateModulePathSlot(ModPath); in processIndex()
2951 for (auto &[ModPath, ModHash] : TheIndex->modulePaths()) in printModuleSummaryIndex()
2952 moduleVec[Machine.getModulePathSlot(ModPath)] = std::make_pair( in printModuleSummaryIndex()
2955 ModPath.empty() ? RegularLTOModuleName : std::string(ModPath), ModHash); in printModuleSummaryIndex()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp538 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
539 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1933 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); in findOrCompileModuleAndReadAST() local
1934 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); in findOrCompileModuleAndReadAST()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp539 for (auto &[ModPath, _] : Index.modulePaths()) in forEachModule()
540 ModulePaths.push_back(ModPath); in forEachModule()
542 for (auto &ModPath : ModulePaths) in forEachModule() local
543 Callback(*Index.modulePaths().find(ModPath)); in forEachModule()