Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h338 void setModulePath(StringRef ModPath) { ModulePath = ModPath; }
1090 uint64_t getModuleId(const StringRef ModPath) const {
1091 return ModulePathStringTable.lookup(ModPath).first;
1095 const ModuleHash &getModuleHash(const StringRef ModPath) const {
1096 auto It = ModulePathStringTable.find(ModPath);
1122 ModuleInfo *addModule(StringRef ModPath, uint64_t ModId,
1124 return &*ModulePathStringTable.insert({ModPath, {ModId, Hash}}).first;
1128 ModuleInfo *getModule(StringRef ModPath) {
1129 auto It = ModulePathStringTable.find(ModPath);
/freebsd-12.1/contrib/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp435 for (auto &ModPath : Index.modulePaths()) { in loadAllFilesForIndex() local
436 const auto &Filename = ModPath.first(); in loadAllFilesForIndex()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DAsmWriter.cpp1023 for (auto &ModPath : TheIndex->modulePaths()) in processIndex() local
1024 ModuleIdToPathMap[ModPath.second.first] = ModPath.first(); in processIndex()
2655 for (auto &ModPath : TheIndex->modulePaths()) in printModuleSummaryIndex() local
2656 moduleVec[Machine.getModulePathSlot(ModPath.first())] = std::make_pair( in printModuleSummaryIndex()
2659 ModPath.second.first == -1u ? RegularLTOModuleName in printModuleSummaryIndex()
2660 : (std::string)ModPath.first(), in printModuleSummaryIndex()
2661 ModPath.second.second); in printModuleSummaryIndex()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInstance.cpp1760 ModuleBuildStack ModPath = getSourceManager().getModuleBuildStack(); in loadModule() local
1761 ModuleBuildStack::iterator Pos = ModPath.begin(), PosEnd = ModPath.end(); in loadModule()