Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp618 const DenseMap<StringRef, FunctionImporter::ExportSetTy> &ExportLists; member
622 const DenseMap<StringRef, FunctionImporter::ExportSetTy> &ExportLists, in IsExported()
624 : ExportLists(ExportLists), GUIDPreservedSymbols(GUIDPreservedSymbols) {} in IsExported()
627 const auto &ExportList = ExportLists.find(ModuleIdentifier); in operator ()()
628 return (ExportList != ExportLists.end() && ExportList->second.count(VI)) || in operator ()()
691 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in promote() local
694 ExportLists); in promote()
708 Index, IsExported(ExportLists, GUIDPreservedSymbols), in promote()
743 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in crossModuleImport() local
746 ExportLists); in crossModuleImport()
[all …]
H A DLTO.cpp1927 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists( in runThinLTO() local
2009 isPrevailing, ImportLists, ExportLists); in runThinLTO()
2019 const auto &ExportList = ExportLists.find(ModuleIdentifier); in runThinLTO()
2020 return (ExportList != ExportLists.end() && ExportList->second.count(VI)) || in runThinLTO()
2059 ImportLists[Mod.first], ExportLists[Mod.first], in runThinLTO()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DFunctionImport.cpp399 DenseMap<StringRef, FunctionImporter::ExportSetTy> *const ExportLists; member in GlobalsImporter
467 if (ExportLists) in onImportingSummaryImpl()
468 (*ExportLists)[RefSummary->modulePath()].insert(VI); in onImportingSummaryImpl()
485 DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists) in GlobalsImporter() argument
488 ExportLists(ExportLists) {} in GlobalsImporter()
513 DenseMap<StringRef, FunctionImporter::ExportSetTy> *const ExportLists; member in ModuleImportsManager
519 DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists = nullptr) in ModuleImportsManager() argument
520 : IsPrevailing(IsPrevailing), Index(Index), ExportLists(ExportLists) {} in ModuleImportsManager()
538 DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists =
578 ExportLists); in computeImportForModule()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DFunctionImport.h366 DenseMap<StringRef, FunctionImporter::ExportSetTy> &ExportLists);