Searched refs:ExportLists (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/ |
H A D | ThinLTOCodeGenerator.cpp | 615 const StringMap<FunctionImporter::ExportSetTy> &ExportLists; member 618 IsExported(const StringMap<FunctionImporter::ExportSetTy> &ExportLists, in IsExported() 620 : ExportLists(ExportLists), GUIDPreservedSymbols(GUIDPreservedSymbols) {} in IsExported() 623 const auto &ExportList = ExportLists.find(ModuleIdentifier); in operator ()() 624 return (ExportList != ExportLists.end() && ExportList->second.count(VI)) || in operator ()() 683 StringMap<FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in promote() local 685 ExportLists); in promote() 701 Index, IsExported(ExportLists, GUIDPreservedSymbols), in promote() 732 StringMap<FunctionImporter::ExportSetTy> ExportLists(ModuleCount); in crossModuleImport() local 734 ExportLists); in crossModuleImport() [all …]
|
H A D | LTO.cpp | 1435 StringMap<FunctionImporter::ExportSetTy> ExportLists( in runThinLTO() local 1459 ImportLists, ExportLists); in runThinLTO() 1485 const auto &ExportList = ExportLists.find(ModuleIdentifier); in runThinLTO() 1486 return (ExportList != ExportLists.end() && ExportList->second.count(VI)) || in runThinLTO() 1525 ExportLists[Mod.first], ResolvedODR[Mod.first], in runThinLTO()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | FunctionImport.cpp | 310 StringMap<FunctionImporter::ExportSetTy> *ExportLists) { in computeImportForReferencedGlobals() argument 344 if (ExportLists) in computeImportForReferencedGlobals() 345 (*ExportLists)[RefSummary->modulePath()].insert(VI); in computeImportForReferencedGlobals() 387 StringMap<FunctionImporter::ExportSetTy> *ExportLists, in computeImportForFunction() argument 390 Worklist, ImportList, ExportLists); in computeImportForFunction() 534 if (ExportLists) in computeImportForFunction() 535 (*ExportLists)[ExportModulePath].insert(VI); in computeImportForFunction() 562 StringMap<FunctionImporter::ExportSetTy> *ExportLists = nullptr) { in ComputeImportForModule() argument 588 ExportLists, ImportThresholds); in ComputeImportForModule() 599 Worklist, ImportList, ExportLists, in ComputeImportForModule() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/ |
H A D | FunctionImport.h | 150 StringMap<FunctionImporter::ExportSetTy> &ExportLists);
|