Searched refs:ExportLists (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | ThinLTOCodeGenerator.cpp | 628 const DenseMap<StringRef, FunctionImporter::ExportSetTy> &ExportLists; member 632 const DenseMap<StringRef, FunctionImporter::ExportSetTy> &ExportLists, in IsExported() 634 : ExportLists(ExportLists), GUIDPreservedSymbols(GUIDPreservedSymbols) {} in IsExported() 637 const auto &ExportList = ExportLists.find(ModuleIdentifier); in operator ()() 638 return (ExportList != ExportLists.end() && ExportList->second.count(VI)) || in operator ()() 701 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in promote() local 704 ExportLists); in promote() 718 Index, IsExported(ExportLists, GUIDPreservedSymbols), in promote() 753 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in crossModuleImport() local 756 ExportLists); in crossModuleImport() [all …]
|
H A D | LTO.cpp | 1721 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists( in runThinLTO() local 1803 isPrevailing, ImportLists, ExportLists); in runThinLTO() 1815 const auto &ExportList = ExportLists.find(ModuleIdentifier); in runThinLTO() 1816 return (ExportList != ExportLists.end() && ExportList->second.count(VI)) || in runThinLTO() 1858 ExportLists[Mod.first], ResolvedODR[Mod.first], in runThinLTO()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionImport.cpp | 326 DenseMap<StringRef, FunctionImporter::ExportSetTy> *const ExportLists; member in GlobalsImporter 402 if (ExportLists) in onImportingSummaryImpl() 403 (*ExportLists)[RefSummary->modulePath()].insert(VI); in onImportingSummaryImpl() 420 DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists) in GlobalsImporter() argument 423 ExportLists(ExportLists) {} in GlobalsImporter() 441 DenseMap<StringRef, FunctionImporter::ExportSetTy> *const ExportLists; member in ModuleImportsManager 447 DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists = nullptr) in ModuleImportsManager() argument 448 : IsPrevailing(IsPrevailing), Index(Index), ExportLists(ExportLists) {} in ModuleImportsManager() 465 DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists = 493 ExportLists); in computeImportForModule() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/ |
H A D | FunctionImport.h | 170 DenseMap<StringRef, FunctionImporter::ExportSetTy> &ExportLists);
|