@@ -131,12 +131,13 @@ static void promoteModule(Module &TheModule, const ModuleSummaryIndex &Index) {
131
131
report_fatal_error (" renameModuleForThinLTO failed" );
132
132
}
133
133
134
- static void crossImportIntoModule (Module &TheModule,
135
- const ModuleSummaryIndex &Index,
136
- StringMap<MemoryBufferRef> &ModuleMap) {
134
+ static void
135
+ crossImportIntoModule (Module &TheModule, const ModuleSummaryIndex &Index,
136
+ StringMap<MemoryBufferRef> &ModuleMap,
137
+ const FunctionImporter::ImportMapTy &ImportList) {
137
138
ModuleLoader Loader (TheModule.getContext (), ModuleMap);
138
139
FunctionImporter Importer (Index, Loader);
139
- Importer.importFunctions (TheModule);
140
+ Importer.importFunctions (TheModule, ImportList );
140
141
}
141
142
142
143
static void optimizeModule (Module &TheModule, TargetMachine &TM) {
@@ -185,6 +186,7 @@ std::unique_ptr<MemoryBuffer> codegenModule(Module &TheModule,
185
186
static std::unique_ptr<MemoryBuffer>
186
187
ProcessThinLTOModule (Module &TheModule, const ModuleSummaryIndex &Index,
187
188
StringMap<MemoryBufferRef> &ModuleMap, TargetMachine &TM,
189
+ const FunctionImporter::ImportMapTy &ImportList,
188
190
ThinLTOCodeGenerator::CachingOptions CacheOptions,
189
191
StringRef SaveTempsDir, unsigned count) {
190
192
@@ -200,7 +202,7 @@ ProcessThinLTOModule(Module &TheModule, const ModuleSummaryIndex &Index,
200
202
// Save temps: after promotion.
201
203
saveTempBitcode (TheModule, SaveTempsDir, count, " .2.promoted.bc" );
202
204
203
- crossImportIntoModule (TheModule, Index, ModuleMap);
205
+ crossImportIntoModule (TheModule, Index, ModuleMap, ImportList );
204
206
205
207
// Save temps: after cross-module import.
206
208
saveTempBitcode (TheModule, SaveTempsDir, count, " .3.imported.bc" );
@@ -317,7 +319,15 @@ void ThinLTOCodeGenerator::promote(Module &TheModule,
317
319
void ThinLTOCodeGenerator::crossModuleImport (Module &TheModule,
318
320
ModuleSummaryIndex &Index) {
319
321
auto ModuleMap = generateModuleMap (Modules);
320
- crossImportIntoModule (TheModule, Index, ModuleMap);
322
+
323
+ // Generate import/export list
324
+ auto ModuleCount = Index.modulePaths ().size ();
325
+ StringMap<FunctionImporter::ImportMapTy> ImportLists (ModuleCount);
326
+ StringMap<FunctionImporter::ExportSetTy> ExportLists (ModuleCount);
327
+ ComputeCrossModuleImport (Index, ImportLists, ExportLists);
328
+ auto &ImportList = ImportLists[TheModule.getModuleIdentifier ()];
329
+
330
+ crossImportIntoModule (TheModule, Index, ModuleMap, ImportList);
321
331
}
322
332
323
333
/* *
@@ -358,6 +368,13 @@ void ThinLTOCodeGenerator::run() {
358
368
359
369
// Prepare the module map.
360
370
auto ModuleMap = generateModuleMap (Modules);
371
+ auto ModuleCount = Modules.size ();
372
+
373
+ // Collect the import/export lists for all modules from the call-graph in the
374
+ // combined index.
375
+ StringMap<FunctionImporter::ImportMapTy> ImportLists (ModuleCount);
376
+ StringMap<FunctionImporter::ExportSetTy> ExportLists (ModuleCount);
377
+ ComputeCrossModuleImport (*Index, ImportLists, ExportLists);
361
378
362
379
// Parallel optimizer + codegen
363
380
{
@@ -376,9 +393,10 @@ void ThinLTOCodeGenerator::run() {
376
393
saveTempBitcode (*TheModule, SaveTempsDir, count, " .0.original.bc" );
377
394
}
378
395
396
+ auto &ImportList = ImportLists[TheModule->getModuleIdentifier ()];
379
397
ProducedBinaries[count] = ProcessThinLTOModule (
380
- *TheModule, *Index, ModuleMap, *TMBuilder.create (), CacheOptions ,
381
- SaveTempsDir, count);
398
+ *TheModule, *Index, ModuleMap, *TMBuilder.create (), ImportList ,
399
+ CacheOptions, SaveTempsDir, count);
382
400
}, count);
383
401
count++;
384
402
}
0 commit comments