Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h393 void setModulePath(StringRef ModPath) { ModulePath = ModPath; }
1389 uint64_t getModuleId(const StringRef ModPath) const {
1390 return ModulePathStringTable.lookup(ModPath).first;
1394 const ModuleHash &getModuleHash(const StringRef ModPath) const {
1395 auto It = ModulePathStringTable.find(ModPath);
1423 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId,
1425 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;
1429 ModuleInfo *getModule(StringRef ModPath) {
1430 auto It = ModulePathStringTable.find(ModPath);
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1056 for (auto &ModPath : TheIndex->modulePaths()) in processIndex() local
1057 ModuleIdToPathMap[ModPath.second.first] = ModPath.first(); in processIndex()
2903 for (auto &ModPath : TheIndex->modulePaths()) in printModuleSummaryIndex() local
2904 moduleVec[Machine.getModulePathSlot(ModPath.first())] = std::make_pair( in printModuleSummaryIndex()
2907 ModPath.second.first == -1u ? RegularLTOModuleName in printModuleSummaryIndex()
2908 : (std::string)std::string(ModPath.first()), in printModuleSummaryIndex()
2909 ModPath.second.second); in printModuleSummaryIndex()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp527 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
528 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1804 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); in findOrCompileModuleAndReadAST() local
1805 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); in findOrCompileModuleAndReadAST()