2015-11-24 14:07:49 +08:00
|
|
|
//===- FunctionImport.cpp - ThinLTO Summary-based Function Import ---------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements Function import based on summaries.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Transforms/IPO/FunctionImport.h"
|
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2016-03-27 23:27:30 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2015-11-24 14:07:49 +08:00
|
|
|
#include "llvm/ADT/StringSet.h"
|
|
|
|
#include "llvm/IR/AutoUpgrade.h"
|
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IRReader/IRReader.h"
|
|
|
|
#include "llvm/Linker/Linker.h"
|
2016-03-15 08:04:37 +08:00
|
|
|
#include "llvm/Object/ModuleSummaryIndexObjectFile.h"
|
2015-11-24 14:07:49 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2016-02-11 02:11:31 +08:00
|
|
|
#include "llvm/Transforms/Utils/FunctionImportUtils.h"
|
2015-12-09 16:17:35 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
#define DEBUG_TYPE "function-import"
|
2015-12-09 16:17:35 +08:00
|
|
|
|
2015-11-24 14:07:49 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2016-03-27 23:27:30 +08:00
|
|
|
STATISTIC(NumImported, "Number of functions imported");
|
|
|
|
|
2015-11-25 06:55:46 +08:00
|
|
|
/// Limit on instruction count of imported functions.
|
|
|
|
static cl::opt<unsigned> ImportInstrLimit(
|
|
|
|
"import-instr-limit", cl::init(100), cl::Hidden, cl::value_desc("N"),
|
|
|
|
cl::desc("Only import functions with less than N instructions"));
|
|
|
|
|
2016-02-11 07:31:45 +08:00
|
|
|
static cl::opt<float>
|
|
|
|
ImportInstrFactor("import-instr-evolution-factor", cl::init(0.7),
|
|
|
|
cl::Hidden, cl::value_desc("x"),
|
|
|
|
cl::desc("As we import functions, multiply the "
|
|
|
|
"`import-instr-limit` threshold by this factor "
|
|
|
|
"before processing newly imported functions"));
|
|
|
|
|
2016-03-27 23:27:30 +08:00
|
|
|
static cl::opt<bool> PrintImports("print-imports", cl::init(false), cl::Hidden,
|
|
|
|
cl::desc("Print imported functions"));
|
|
|
|
|
2015-11-24 14:07:49 +08:00
|
|
|
// Load lazily a module from \p FileName in \p Context.
|
|
|
|
static std::unique_ptr<Module> loadFile(const std::string &FileName,
|
|
|
|
LLVMContext &Context) {
|
|
|
|
SMDiagnostic Err;
|
|
|
|
DEBUG(dbgs() << "Loading '" << FileName << "'\n");
|
2016-01-22 08:15:53 +08:00
|
|
|
// Metadata isn't loaded until functions are imported, to minimize
|
|
|
|
// the memory overhead.
|
2016-01-08 22:17:41 +08:00
|
|
|
std::unique_ptr<Module> Result =
|
|
|
|
getLazyIRFileModule(FileName, Err, Context,
|
|
|
|
/* ShouldLazyLoadMetadata = */ true);
|
2015-11-24 14:07:49 +08:00
|
|
|
if (!Result) {
|
|
|
|
Err.print("function-import", errs());
|
2016-04-01 13:33:11 +08:00
|
|
|
report_fatal_error("Abort");
|
2015-11-24 14:07:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2015-12-09 16:17:35 +08:00
|
|
|
namespace {
|
2016-02-11 07:31:45 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
/// Given a list of possible callee implementation for a call site, select one
|
|
|
|
/// that fits the \p Threshold.
|
|
|
|
///
|
|
|
|
/// FIXME: select "best" instead of first that fits. But what is "best"?
|
|
|
|
/// - The smallest: more likely to be inlined.
|
|
|
|
/// - The one with the least outgoing edges (already well optimized).
|
|
|
|
/// - One from a module already being imported from in order to reduce the
|
|
|
|
/// number of source modules parsed/linked.
|
|
|
|
/// - One that has PGO data attached.
|
|
|
|
/// - [insert you fancy metric here]
|
|
|
|
static const FunctionSummary *
|
|
|
|
selectCallee(const GlobalValueInfoList &CalleeInfoList, unsigned Threshold) {
|
|
|
|
auto It = llvm::find_if(
|
|
|
|
CalleeInfoList, [&](const std::unique_ptr<GlobalValueInfo> &GlobInfo) {
|
|
|
|
assert(GlobInfo->summary() &&
|
|
|
|
"We should not have a Global Info without summary");
|
|
|
|
auto *Summary = cast<FunctionSummary>(GlobInfo->summary());
|
|
|
|
|
|
|
|
if (GlobalValue::isWeakAnyLinkage(Summary->linkage()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (Summary->instCount() > Threshold)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
if (It == CalleeInfoList.end())
|
|
|
|
return nullptr;
|
2015-12-09 16:17:35 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
return cast<FunctionSummary>((*It)->summary());
|
|
|
|
}
|
2015-12-09 16:17:35 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
/// Return the summary for the function \p GUID that fits the \p Threshold, or
|
|
|
|
/// null if there's no match.
|
2016-04-02 13:07:53 +08:00
|
|
|
static const FunctionSummary *selectCallee(GlobalValue::GUID GUID,
|
|
|
|
unsigned Threshold,
|
2016-03-26 13:40:34 +08:00
|
|
|
const ModuleSummaryIndex &Index) {
|
|
|
|
auto CalleeInfoList = Index.findGlobalValueInfoList(GUID);
|
|
|
|
if (CalleeInfoList == Index.end()) {
|
|
|
|
return nullptr; // This function does not have a summary
|
2015-12-17 07:16:33 +08:00
|
|
|
}
|
2016-03-26 13:40:34 +08:00
|
|
|
return selectCallee(CalleeInfoList->second, Threshold);
|
2015-12-09 16:17:35 +08:00
|
|
|
}
|
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
/// Return true if the global \p GUID is exported by module \p ExportModulePath.
|
|
|
|
static bool isGlobalExported(const ModuleSummaryIndex &Index,
|
2016-04-02 13:07:53 +08:00
|
|
|
StringRef ExportModulePath,
|
|
|
|
GlobalValue::GUID GUID) {
|
2016-03-26 13:40:34 +08:00
|
|
|
auto CalleeInfoList = Index.findGlobalValueInfoList(GUID);
|
|
|
|
if (CalleeInfoList == Index.end())
|
|
|
|
// This global does not have a summary, it is not part of the ThinLTO
|
|
|
|
// process
|
|
|
|
return false;
|
|
|
|
auto DefinedInCalleeModule = llvm::find_if(
|
|
|
|
CalleeInfoList->second,
|
|
|
|
[&](const std::unique_ptr<GlobalValueInfo> &GlobInfo) {
|
|
|
|
auto *Summary = GlobInfo->summary();
|
|
|
|
assert(Summary && "Unexpected GlobalValueInfo without summary");
|
|
|
|
return Summary->modulePath() == ExportModulePath;
|
|
|
|
});
|
|
|
|
return (DefinedInCalleeModule != CalleeInfoList->second.end());
|
2015-11-25 05:15:19 +08:00
|
|
|
}
|
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
using EdgeInfo = std::pair<const FunctionSummary *, unsigned /* Threshold */>;
|
|
|
|
|
|
|
|
/// Compute the list of functions to import for a given caller. Mark these
|
|
|
|
/// imported functions and the symbols they reference in their source module as
|
|
|
|
/// exported from their source module.
|
|
|
|
static void computeImportForFunction(
|
2016-04-10 23:17:26 +08:00
|
|
|
const FunctionSummary &Summary, const ModuleSummaryIndex &Index,
|
|
|
|
unsigned Threshold,
|
2016-04-02 13:07:53 +08:00
|
|
|
const std::map<GlobalValue::GUID, FunctionSummary *> &DefinedFunctions,
|
2016-03-26 13:40:34 +08:00
|
|
|
SmallVectorImpl<EdgeInfo> &Worklist,
|
|
|
|
FunctionImporter::ImportMapTy &ImportsForModule,
|
|
|
|
StringMap<FunctionImporter::ExportSetTy> &ExportLists) {
|
|
|
|
for (auto &Edge : Summary.calls()) {
|
|
|
|
auto GUID = Edge.first;
|
|
|
|
DEBUG(dbgs() << " edge -> " << GUID << " Threshold:" << Threshold << "\n");
|
|
|
|
|
|
|
|
if (DefinedFunctions.count(GUID)) {
|
|
|
|
DEBUG(dbgs() << "ignored! Target already in destination module.\n");
|
2015-11-24 14:07:49 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
auto *CalleeSummary = selectCallee(GUID, Threshold, Index);
|
|
|
|
if (!CalleeSummary) {
|
|
|
|
DEBUG(dbgs() << "ignored! No qualifying callee with summary found.\n");
|
2015-11-25 06:55:46 +08:00
|
|
|
continue;
|
|
|
|
}
|
2016-03-26 13:40:34 +08:00
|
|
|
assert(CalleeSummary->instCount() <= Threshold &&
|
|
|
|
"selectCallee() didn't honor the threshold");
|
|
|
|
|
|
|
|
auto &ProcessedThreshold =
|
|
|
|
ImportsForModule[CalleeSummary->modulePath()][GUID];
|
|
|
|
/// Since the traversal of the call graph is DFS, we can revisit a function
|
|
|
|
/// a second time with a higher threshold. In this case, it is added back to
|
|
|
|
/// the worklist with the new threshold.
|
|
|
|
if (ProcessedThreshold && ProcessedThreshold > Threshold) {
|
|
|
|
DEBUG(dbgs() << "ignored! Target was already seen with Threshold "
|
|
|
|
<< ProcessedThreshold << "\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Mark this function as imported in this module, with the current Threshold
|
|
|
|
ProcessedThreshold = Threshold;
|
|
|
|
|
|
|
|
// Make exports in the source module.
|
|
|
|
auto ExportModulePath = CalleeSummary->modulePath();
|
|
|
|
auto ExportList = ExportLists[ExportModulePath];
|
|
|
|
ExportList.insert(GUID);
|
|
|
|
// Mark all functions and globals referenced by this function as exported to
|
|
|
|
// the outside if they are defined in the same source module.
|
|
|
|
for (auto &Edge : CalleeSummary->calls()) {
|
|
|
|
auto CalleeGUID = Edge.first;
|
|
|
|
if (isGlobalExported(Index, ExportModulePath, CalleeGUID))
|
|
|
|
ExportList.insert(CalleeGUID);
|
|
|
|
}
|
|
|
|
for (auto &GUID : CalleeSummary->refs()) {
|
|
|
|
if (isGlobalExported(Index, ExportModulePath, GUID))
|
|
|
|
ExportList.insert(GUID);
|
|
|
|
}
|
2015-11-25 06:55:46 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
// Insert the newly imported function to the worklist.
|
|
|
|
Worklist.push_back(std::make_pair(CalleeSummary, Threshold));
|
|
|
|
}
|
|
|
|
}
|
2016-02-11 07:31:45 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
/// Given the list of globals defined in a module, compute the list of imports
|
|
|
|
/// as well as the list of "exports", i.e. the list of symbols referenced from
|
|
|
|
/// another module (that may require promotion).
|
|
|
|
static void ComputeImportForModule(
|
2016-04-02 13:07:53 +08:00
|
|
|
const std::map<GlobalValue::GUID, FunctionSummary *> &DefinedFunctions,
|
2016-03-26 13:40:34 +08:00
|
|
|
const ModuleSummaryIndex &Index,
|
|
|
|
FunctionImporter::ImportMapTy &ImportsForModule,
|
|
|
|
StringMap<FunctionImporter::ExportSetTy> &ExportLists) {
|
|
|
|
// Worklist contains the list of function imported in this module, for which
|
|
|
|
// we will analyse the callees and may import further down the callgraph.
|
|
|
|
SmallVector<EdgeInfo, 128> Worklist;
|
|
|
|
|
|
|
|
// Populate the worklist with the import for the functions in the current
|
|
|
|
// module
|
|
|
|
for (auto &FuncInfo : DefinedFunctions) {
|
|
|
|
auto *Summary = FuncInfo.second;
|
|
|
|
DEBUG(dbgs() << "Initalize import for " << FuncInfo.first << "\n");
|
2016-04-10 23:17:26 +08:00
|
|
|
computeImportForFunction(*Summary, Index, ImportInstrLimit,
|
2016-03-26 13:40:34 +08:00
|
|
|
DefinedFunctions, Worklist, ImportsForModule,
|
|
|
|
ExportLists);
|
|
|
|
}
|
2015-11-24 14:07:49 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
while (!Worklist.empty()) {
|
|
|
|
auto FuncInfo = Worklist.pop_back_val();
|
|
|
|
auto *Summary = FuncInfo.first;
|
|
|
|
auto Threshold = FuncInfo.second;
|
2015-11-24 14:07:49 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
// Process the newly imported functions and add callees to the worklist.
|
|
|
|
// Adjust the threshold
|
|
|
|
Threshold = Threshold * ImportInstrFactor;
|
2015-12-09 16:17:35 +08:00
|
|
|
|
2016-04-10 23:17:26 +08:00
|
|
|
computeImportForFunction(*Summary, Index, Threshold, DefinedFunctions,
|
|
|
|
Worklist, ImportsForModule, ExportLists);
|
2016-03-26 13:40:34 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-09 16:17:35 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
/// Compute all the import and export for every module in the Index.
|
|
|
|
void llvm::ComputeCrossModuleImport(
|
|
|
|
const ModuleSummaryIndex &Index,
|
|
|
|
StringMap<FunctionImporter::ImportMapTy> &ImportLists,
|
|
|
|
StringMap<FunctionImporter::ExportSetTy> &ExportLists) {
|
|
|
|
auto ModuleCount = Index.modulePaths().size();
|
|
|
|
|
|
|
|
// Collect for each module the list of function it defines.
|
|
|
|
// GUID -> Summary
|
2016-04-02 13:07:53 +08:00
|
|
|
StringMap<std::map<GlobalValue::GUID, FunctionSummary *>>
|
|
|
|
Module2FunctionInfoMap(ModuleCount);
|
2016-03-26 13:40:34 +08:00
|
|
|
|
|
|
|
for (auto &GlobalList : Index) {
|
|
|
|
auto GUID = GlobalList.first;
|
|
|
|
for (auto &GlobInfo : GlobalList.second) {
|
|
|
|
auto *Summary = dyn_cast_or_null<FunctionSummary>(GlobInfo->summary());
|
|
|
|
if (!Summary)
|
|
|
|
/// Ignore global variable, focus on functions
|
|
|
|
continue;
|
|
|
|
DEBUG(dbgs() << "Adding definition: Module '" << Summary->modulePath()
|
|
|
|
<< "' defines '" << GUID << "'\n");
|
|
|
|
Module2FunctionInfoMap[Summary->modulePath()][GUID] = Summary;
|
2015-11-24 14:07:49 +08:00
|
|
|
}
|
2016-03-26 13:40:34 +08:00
|
|
|
}
|
2015-11-24 14:07:49 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
// For each module that has function defined, compute the import/export lists.
|
|
|
|
for (auto &DefinedFunctions : Module2FunctionInfoMap) {
|
|
|
|
auto &ImportsForModule = ImportLists[DefinedFunctions.first()];
|
|
|
|
DEBUG(dbgs() << "Computing import for Module '" << DefinedFunctions.first()
|
|
|
|
<< "'\n");
|
2016-04-10 23:17:26 +08:00
|
|
|
ComputeImportForModule(DefinedFunctions.second, Index, ImportsForModule,
|
|
|
|
ExportLists);
|
2016-03-26 13:40:34 +08:00
|
|
|
}
|
2015-11-24 14:07:49 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
#ifndef NDEBUG
|
|
|
|
DEBUG(dbgs() << "Import/Export lists for " << ImportLists.size()
|
|
|
|
<< " modules:\n");
|
|
|
|
for (auto &ModuleImports : ImportLists) {
|
|
|
|
auto ModName = ModuleImports.first();
|
|
|
|
auto &Exports = ExportLists[ModName];
|
|
|
|
DEBUG(dbgs() << "* Module " << ModName << " exports " << Exports.size()
|
|
|
|
<< " functions. Imports from " << ModuleImports.second.size()
|
|
|
|
<< " modules.\n");
|
|
|
|
for (auto &Src : ModuleImports.second) {
|
|
|
|
auto SrcModName = Src.first();
|
|
|
|
DEBUG(dbgs() << " - " << Src.second.size() << " functions imported from "
|
|
|
|
<< SrcModName << "\n");
|
|
|
|
}
|
2015-12-03 10:37:33 +08:00
|
|
|
}
|
2016-03-26 13:40:34 +08:00
|
|
|
#endif
|
2015-12-03 10:37:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Automatically import functions in Module \p DestModule based on the summaries
|
|
|
|
// index.
|
|
|
|
//
|
2016-03-26 13:40:34 +08:00
|
|
|
bool FunctionImporter::importFunctions(
|
|
|
|
Module &DestModule, const FunctionImporter::ImportMapTy &ImportList) {
|
2015-12-09 07:04:19 +08:00
|
|
|
DEBUG(dbgs() << "Starting import for Module "
|
2015-12-03 10:58:14 +08:00
|
|
|
<< DestModule.getModuleIdentifier() << "\n");
|
2015-12-03 10:37:33 +08:00
|
|
|
unsigned ImportedCount = 0;
|
2015-11-24 14:07:49 +08:00
|
|
|
|
2015-12-03 10:37:33 +08:00
|
|
|
// Linker that will be used for importing function
|
2015-12-15 07:17:03 +08:00
|
|
|
Linker TheLinker(DestModule);
|
2015-12-09 16:17:35 +08:00
|
|
|
// Do the actual import of functions now, one Module at a time
|
2016-03-26 13:40:34 +08:00
|
|
|
std::set<StringRef> ModuleNameOrderedList;
|
|
|
|
for (auto &FunctionsToImportPerModule : ImportList) {
|
|
|
|
ModuleNameOrderedList.insert(FunctionsToImportPerModule.first());
|
|
|
|
}
|
|
|
|
for (auto &Name : ModuleNameOrderedList) {
|
2015-12-09 16:17:35 +08:00
|
|
|
// Get the module for the import
|
2016-03-26 13:40:34 +08:00
|
|
|
const auto &FunctionsToImportPerModule = ImportList.find(Name);
|
|
|
|
assert(FunctionsToImportPerModule != ImportList.end());
|
|
|
|
std::unique_ptr<Module> SrcModule = ModuleLoader(Name);
|
2015-12-09 16:17:35 +08:00
|
|
|
assert(&DestModule.getContext() == &SrcModule->getContext() &&
|
|
|
|
"Context mismatch");
|
|
|
|
|
2016-01-22 08:15:53 +08:00
|
|
|
// If modules were created with lazy metadata loading, materialize it
|
|
|
|
// now, before linking it (otherwise this will be a noop).
|
|
|
|
SrcModule->materializeMetadata();
|
|
|
|
UpgradeDebugInfo(*SrcModule);
|
2015-12-18 01:14:09 +08:00
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
auto &ImportGUIDs = FunctionsToImportPerModule->second;
|
|
|
|
// Find the globals to import
|
|
|
|
DenseSet<const GlobalValue *> GlobalsToImport;
|
|
|
|
for (auto &GV : *SrcModule) {
|
2016-04-05 02:52:23 +08:00
|
|
|
if (!GV.hasName())
|
|
|
|
continue;
|
|
|
|
auto GUID = GV.getGUID();
|
|
|
|
auto Import = ImportGUIDs.count(GUID);
|
|
|
|
DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing " << GUID << " "
|
|
|
|
<< GV.getName() << " from " << SrcModule->getSourceFileName()
|
|
|
|
<< "\n");
|
|
|
|
if (Import) {
|
2016-03-26 13:40:34 +08:00
|
|
|
GV.materialize();
|
|
|
|
GlobalsToImport.insert(&GV);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto &GV : SrcModule->aliases()) {
|
|
|
|
if (!GV.hasName())
|
|
|
|
continue;
|
|
|
|
auto GUID = GV.getGUID();
|
2016-04-05 02:52:23 +08:00
|
|
|
auto Import = ImportGUIDs.count(GUID);
|
|
|
|
DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing " << GUID << " "
|
|
|
|
<< GV.getName() << " from " << SrcModule->getSourceFileName()
|
|
|
|
<< "\n");
|
|
|
|
if (Import) {
|
2016-03-26 13:40:34 +08:00
|
|
|
// Alias can't point to "available_externally". However when we import
|
2016-03-27 23:01:11 +08:00
|
|
|
// linkOnceODR the linkage does not change. So we import the alias
|
|
|
|
// and aliasee only in this case.
|
2016-03-26 13:40:34 +08:00
|
|
|
const GlobalObject *GO = GV.getBaseObject();
|
|
|
|
if (!GO->hasLinkOnceODRLinkage())
|
|
|
|
continue;
|
2016-03-27 23:01:11 +08:00
|
|
|
GV.materialize();
|
|
|
|
GlobalsToImport.insert(&GV);
|
2016-03-26 13:40:34 +08:00
|
|
|
GlobalsToImport.insert(GO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto &GV : SrcModule->globals()) {
|
|
|
|
if (!GV.hasName())
|
|
|
|
continue;
|
2016-03-29 22:49:26 +08:00
|
|
|
auto GUID = GV.getGUID();
|
2016-04-05 02:52:23 +08:00
|
|
|
auto Import = ImportGUIDs.count(GUID);
|
|
|
|
DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing " << GUID << " "
|
|
|
|
<< GV.getName() << " from " << SrcModule->getSourceFileName()
|
|
|
|
<< "\n");
|
|
|
|
if (Import) {
|
2016-03-26 13:40:34 +08:00
|
|
|
GV.materialize();
|
|
|
|
GlobalsToImport.insert(&GV);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-09 16:17:35 +08:00
|
|
|
// Link in the specified functions.
|
2016-03-26 13:40:34 +08:00
|
|
|
if (renameModuleForThinLTO(*SrcModule, Index, &GlobalsToImport))
|
2016-03-19 08:40:31 +08:00
|
|
|
return true;
|
|
|
|
|
2016-03-27 23:27:30 +08:00
|
|
|
if (PrintImports) {
|
|
|
|
for (const auto *GV : GlobalsToImport)
|
|
|
|
dbgs() << DestModule.getSourceFileName() << ": Import " << GV->getName()
|
|
|
|
<< " from " << SrcModule->getSourceFileName() << "\n";
|
|
|
|
}
|
|
|
|
|
2015-12-17 07:16:33 +08:00
|
|
|
if (TheLinker.linkInModule(std::move(SrcModule), Linker::Flags::None,
|
2016-03-26 13:40:34 +08:00
|
|
|
&GlobalsToImport))
|
2015-12-09 16:17:35 +08:00
|
|
|
report_fatal_error("Function Import: link error");
|
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
ImportedCount += GlobalsToImport.size();
|
2015-12-09 16:17:35 +08:00
|
|
|
}
|
2015-12-18 01:14:09 +08:00
|
|
|
|
2016-03-27 23:27:30 +08:00
|
|
|
NumImported += ImportedCount;
|
|
|
|
|
2015-12-09 16:17:35 +08:00
|
|
|
DEBUG(dbgs() << "Imported " << ImportedCount << " functions for Module "
|
2015-12-03 10:37:33 +08:00
|
|
|
<< DestModule.getModuleIdentifier() << "\n");
|
|
|
|
return ImportedCount;
|
2015-11-24 14:07:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Summary file to use for function importing when using -function-import from
|
|
|
|
/// the command line.
|
|
|
|
static cl::opt<std::string>
|
|
|
|
SummaryFile("summary-file",
|
|
|
|
cl::desc("The summary file to use for function importing."));
|
|
|
|
|
|
|
|
static void diagnosticHandler(const DiagnosticInfo &DI) {
|
|
|
|
raw_ostream &OS = errs();
|
|
|
|
DiagnosticPrinterRawOStream DP(OS);
|
|
|
|
DI.print(DP);
|
|
|
|
OS << '\n';
|
|
|
|
}
|
|
|
|
|
2016-03-15 08:04:37 +08:00
|
|
|
/// Parse the summary index out of an IR file and return the summary
|
2015-11-24 14:07:49 +08:00
|
|
|
/// index object if found, or nullptr if not.
|
2016-03-15 08:04:37 +08:00
|
|
|
static std::unique_ptr<ModuleSummaryIndex>
|
|
|
|
getModuleSummaryIndexForFile(StringRef Path, std::string &Error,
|
|
|
|
DiagnosticHandlerFunction DiagnosticHandler) {
|
2015-11-24 14:07:49 +08:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer;
|
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
|
|
|
|
MemoryBuffer::getFile(Path);
|
|
|
|
if (std::error_code EC = BufferOrErr.getError()) {
|
|
|
|
Error = EC.message();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
Buffer = std::move(BufferOrErr.get());
|
2016-03-15 08:04:37 +08:00
|
|
|
ErrorOr<std::unique_ptr<object::ModuleSummaryIndexObjectFile>> ObjOrErr =
|
|
|
|
object::ModuleSummaryIndexObjectFile::create(Buffer->getMemBufferRef(),
|
|
|
|
DiagnosticHandler);
|
2015-11-24 14:07:49 +08:00
|
|
|
if (std::error_code EC = ObjOrErr.getError()) {
|
|
|
|
Error = EC.message();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return (*ObjOrErr)->takeIndex();
|
|
|
|
}
|
|
|
|
|
2015-12-24 18:03:35 +08:00
|
|
|
namespace {
|
2015-11-24 14:07:49 +08:00
|
|
|
/// Pass that performs cross-module function import provided a summary file.
|
|
|
|
class FunctionImportPass : public ModulePass {
|
2016-03-15 08:04:37 +08:00
|
|
|
/// Optional module summary index to use for importing, otherwise
|
2015-12-08 03:21:11 +08:00
|
|
|
/// the summary-file option must be specified.
|
2016-03-15 08:04:37 +08:00
|
|
|
const ModuleSummaryIndex *Index;
|
2015-11-24 14:07:49 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// Pass identification, replacement for typeid
|
|
|
|
static char ID;
|
|
|
|
|
2015-12-08 03:21:11 +08:00
|
|
|
/// Specify pass name for debug output
|
|
|
|
const char *getPassName() const override {
|
|
|
|
return "Function Importing";
|
|
|
|
}
|
|
|
|
|
2016-03-15 08:04:37 +08:00
|
|
|
explicit FunctionImportPass(const ModuleSummaryIndex *Index = nullptr)
|
2015-12-08 03:21:11 +08:00
|
|
|
: ModulePass(ID), Index(Index) {}
|
2015-11-24 14:07:49 +08:00
|
|
|
|
|
|
|
bool runOnModule(Module &M) override {
|
2015-12-08 03:21:11 +08:00
|
|
|
if (SummaryFile.empty() && !Index)
|
|
|
|
report_fatal_error("error: -function-import requires -summary-file or "
|
|
|
|
"file from frontend\n");
|
2016-03-15 08:04:37 +08:00
|
|
|
std::unique_ptr<ModuleSummaryIndex> IndexPtr;
|
2015-12-08 03:21:11 +08:00
|
|
|
if (!SummaryFile.empty()) {
|
|
|
|
if (Index)
|
|
|
|
report_fatal_error("error: -summary-file and index from frontend\n");
|
|
|
|
std::string Error;
|
2016-03-15 08:04:37 +08:00
|
|
|
IndexPtr =
|
|
|
|
getModuleSummaryIndexForFile(SummaryFile, Error, diagnosticHandler);
|
2015-12-08 03:21:11 +08:00
|
|
|
if (!IndexPtr) {
|
|
|
|
errs() << "Error loading file '" << SummaryFile << "': " << Error
|
|
|
|
<< "\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Index = IndexPtr.get();
|
2015-11-24 14:07:49 +08:00
|
|
|
}
|
|
|
|
|
2016-03-26 13:40:34 +08:00
|
|
|
// First step is collecting the import/export lists
|
|
|
|
// The export list is not used yet, but could limit the amount of renaming
|
|
|
|
// performed in renameModuleForThinLTO()
|
|
|
|
StringMap<FunctionImporter::ImportMapTy> ImportLists;
|
|
|
|
StringMap<FunctionImporter::ExportSetTy> ExportLists;
|
|
|
|
ComputeCrossModuleImport(*Index, ImportLists, ExportLists);
|
|
|
|
auto &ImportList = ImportLists[M.getModuleIdentifier()];
|
|
|
|
|
|
|
|
// Next we need to promote to global scope and rename any local values that
|
2016-01-09 01:06:29 +08:00
|
|
|
// are potentially exported to other modules.
|
2016-03-26 13:40:34 +08:00
|
|
|
if (renameModuleForThinLTO(M, *Index, nullptr)) {
|
2016-01-09 01:06:29 +08:00
|
|
|
errs() << "Error renaming module\n";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-24 14:07:49 +08:00
|
|
|
// Perform the import now.
|
2015-12-09 06:39:40 +08:00
|
|
|
auto ModuleLoader = [&M](StringRef Identifier) {
|
|
|
|
return loadFile(Identifier, M.getContext());
|
|
|
|
};
|
2015-12-15 07:17:03 +08:00
|
|
|
FunctionImporter Importer(*Index, ModuleLoader);
|
2016-03-26 13:40:34 +08:00
|
|
|
return Importer.importFunctions(M, ImportList);
|
2015-11-24 14:07:49 +08:00
|
|
|
}
|
|
|
|
};
|
2015-12-24 18:03:35 +08:00
|
|
|
} // anonymous namespace
|
2015-11-24 14:07:49 +08:00
|
|
|
|
|
|
|
char FunctionImportPass::ID = 0;
|
|
|
|
INITIALIZE_PASS_BEGIN(FunctionImportPass, "function-import",
|
|
|
|
"Summary Based Function Import", false, false)
|
|
|
|
INITIALIZE_PASS_END(FunctionImportPass, "function-import",
|
|
|
|
"Summary Based Function Import", false, false)
|
|
|
|
|
|
|
|
namespace llvm {
|
2016-03-15 08:04:37 +08:00
|
|
|
Pass *createFunctionImportPass(const ModuleSummaryIndex *Index = nullptr) {
|
2015-12-08 03:21:11 +08:00
|
|
|
return new FunctionImportPass(Index);
|
|
|
|
}
|
2015-11-24 14:07:49 +08:00
|
|
|
}
|