2016-08-11 22:58:12 +08:00
|
|
|
//===-LTOBackend.cpp - LLVM Link Time Optimizer Backend -------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2016-08-11 22:58:12 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the "backend" phase of LTO, i.e. it performs
|
|
|
|
// optimization and code generation on a loaded module. It is generally used
|
|
|
|
// internally by the LTO class but can also be used independently, for example
|
|
|
|
// to implement a standalone ThinLTO backend.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/LTO/LTOBackend.h"
|
2016-09-08 01:46:16 +08:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
|
|
#include "llvm/Analysis/CGSCCPassManager.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2016-11-11 13:34:58 +08:00
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
|
|
|
#include "llvm/Bitcode/BitcodeWriter.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2016-09-08 01:46:16 +08:00
|
|
|
#include "llvm/IR/PassManager.h"
|
2019-06-15 00:20:51 +08:00
|
|
|
#include "llvm/IR/RemarkStreamer.h"
|
2016-09-08 01:46:16 +08:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2016-08-17 14:23:09 +08:00
|
|
|
#include "llvm/LTO/LTO.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2017-03-29 07:35:34 +08:00
|
|
|
#include "llvm/Object/ModuleSymbolTable.h"
|
2016-09-08 01:46:16 +08:00
|
|
|
#include "llvm/Passes/PassBuilder.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/FileSystem.h"
|
2018-04-13 13:03:28 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/Program.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/ThreadPool.h"
|
2019-06-15 00:20:51 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Transforms/IPO.h"
|
|
|
|
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
|
2017-01-11 17:43:56 +08:00
|
|
|
#include "llvm/Transforms/Scalar/LoopPassManager.h"
|
2016-08-11 22:58:12 +08:00
|
|
|
#include "llvm/Transforms/Utils/FunctionImportUtils.h"
|
|
|
|
#include "llvm/Transforms/Utils/SplitModule.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace lto;
|
|
|
|
|
2016-10-19 03:39:31 +08:00
|
|
|
LLVM_ATTRIBUTE_NORETURN static void reportOpenError(StringRef Path, Twine Msg) {
|
2016-09-18 06:32:42 +08:00
|
|
|
errs() << "failed to open " << Path << ": " << Msg << '\n';
|
|
|
|
errs().flush();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2016-08-11 22:58:12 +08:00
|
|
|
Error Config::addSaveTemps(std::string OutputFileName,
|
|
|
|
bool UseInputModulePath) {
|
|
|
|
ShouldDiscardValueNames = false;
|
|
|
|
|
|
|
|
std::error_code EC;
|
|
|
|
ResolutionFile = llvm::make_unique<raw_fd_ostream>(
|
2016-08-18 08:12:33 +08:00
|
|
|
OutputFileName + "resolution.txt", EC, sys::fs::OpenFlags::F_Text);
|
2016-08-11 22:58:12 +08:00
|
|
|
if (EC)
|
|
|
|
return errorCodeToError(EC);
|
|
|
|
|
|
|
|
auto setHook = [&](std::string PathSuffix, ModuleHookFn &Hook) {
|
|
|
|
// Keep track of the hook provided by the linker, which also needs to run.
|
|
|
|
ModuleHookFn LinkerHook = Hook;
|
2016-08-23 00:17:40 +08:00
|
|
|
Hook = [=](unsigned Task, const Module &M) {
|
2016-08-11 22:58:12 +08:00
|
|
|
// If the linker's hook returned false, we need to pass that result
|
|
|
|
// through.
|
|
|
|
if (LinkerHook && !LinkerHook(Task, M))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::string PathPrefix;
|
|
|
|
// If this is the combined module (not a ThinLTO backend compile) or the
|
|
|
|
// user hasn't requested using the input module's path, emit to a file
|
|
|
|
// named from the provided OutputFileName with the Task ID appended.
|
|
|
|
if (M.getModuleIdentifier() == "ld-temp.o" || !UseInputModulePath) {
|
2018-05-05 22:37:20 +08:00
|
|
|
PathPrefix = OutputFileName;
|
|
|
|
if (Task != (unsigned)-1)
|
|
|
|
PathPrefix += utostr(Task) + ".";
|
2016-08-11 22:58:12 +08:00
|
|
|
} else
|
2018-05-05 22:37:20 +08:00
|
|
|
PathPrefix = M.getModuleIdentifier() + ".";
|
|
|
|
std::string Path = PathPrefix + PathSuffix + ".bc";
|
2016-08-11 22:58:12 +08:00
|
|
|
std::error_code EC;
|
|
|
|
raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
|
2016-09-18 06:32:42 +08:00
|
|
|
// Because -save-temps is a debugging feature, we report the error
|
|
|
|
// directly and exit.
|
|
|
|
if (EC)
|
|
|
|
reportOpenError(Path, EC.message());
|
2018-02-15 03:11:32 +08:00
|
|
|
WriteBitcodeToFile(M, OS, /*ShouldPreserveUseListOrder=*/false);
|
2016-08-11 22:58:12 +08:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
setHook("0.preopt", PreOptModuleHook);
|
|
|
|
setHook("1.promote", PostPromoteModuleHook);
|
|
|
|
setHook("2.internalize", PostInternalizeModuleHook);
|
|
|
|
setHook("3.import", PostImportModuleHook);
|
|
|
|
setHook("4.opt", PostOptModuleHook);
|
|
|
|
setHook("5.precodegen", PreCodeGenModuleHook);
|
|
|
|
|
|
|
|
CombinedIndexHook = [=](const ModuleSummaryIndex &Index) {
|
2016-08-18 08:12:33 +08:00
|
|
|
std::string Path = OutputFileName + "index.bc";
|
2016-08-11 22:58:12 +08:00
|
|
|
std::error_code EC;
|
|
|
|
raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::F_None);
|
2016-09-18 06:32:42 +08:00
|
|
|
// Because -save-temps is a debugging feature, we report the error
|
|
|
|
// directly and exit.
|
|
|
|
if (EC)
|
|
|
|
reportOpenError(Path, EC.message());
|
2016-08-11 22:58:12 +08:00
|
|
|
WriteIndexToFile(Index, OS);
|
2018-01-22 21:35:40 +08:00
|
|
|
|
|
|
|
Path = OutputFileName + "index.dot";
|
|
|
|
raw_fd_ostream OSDot(Path, EC, sys::fs::OpenFlags::F_None);
|
|
|
|
if (EC)
|
|
|
|
reportOpenError(Path, EC.message());
|
|
|
|
Index.exportToDot(OSDot);
|
2016-08-11 22:58:12 +08:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2016-11-11 12:28:40 +08:00
|
|
|
return Error::success();
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
std::unique_ptr<TargetMachine>
|
2017-05-23 05:11:35 +08:00
|
|
|
createTargetMachine(Config &Conf, const Target *TheTarget, Module &M) {
|
|
|
|
StringRef TheTriple = M.getTargetTriple();
|
2016-08-11 22:58:12 +08:00
|
|
|
SubtargetFeatures Features;
|
|
|
|
Features.getDefaultSubtargetFeatures(Triple(TheTriple));
|
2016-09-07 09:08:31 +08:00
|
|
|
for (const std::string &A : Conf.MAttrs)
|
2016-08-11 22:58:12 +08:00
|
|
|
Features.AddFeature(A);
|
|
|
|
|
2017-05-23 05:11:35 +08:00
|
|
|
Reloc::Model RelocModel;
|
|
|
|
if (Conf.RelocModel)
|
|
|
|
RelocModel = *Conf.RelocModel;
|
|
|
|
else
|
|
|
|
RelocModel =
|
|
|
|
M.getPICLevel() == PICLevel::NotPIC ? Reloc::Static : Reloc::PIC_;
|
|
|
|
|
2018-09-22 02:41:31 +08:00
|
|
|
Optional<CodeModel::Model> CodeModel;
|
|
|
|
if (Conf.CodeModel)
|
|
|
|
CodeModel = *Conf.CodeModel;
|
|
|
|
else
|
|
|
|
CodeModel = M.getCodeModel();
|
|
|
|
|
2016-08-11 22:58:12 +08:00
|
|
|
return std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine(
|
2017-05-23 05:11:35 +08:00
|
|
|
TheTriple, Conf.CPU, Features.getString(), Conf.Options, RelocModel,
|
2018-09-22 02:41:31 +08:00
|
|
|
CodeModel, Conf.CGOptLevel));
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|
|
|
|
|
2017-08-02 09:28:31 +08:00
|
|
|
static void runNewPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
|
2018-07-19 22:51:32 +08:00
|
|
|
unsigned OptLevel, bool IsThinLTO,
|
|
|
|
ModuleSummaryIndex *ExportSummary,
|
|
|
|
const ModuleSummaryIndex *ImportSummary) {
|
2017-08-02 09:28:31 +08:00
|
|
|
Optional<PGOOptions> PGOOpt;
|
|
|
|
if (!Conf.SampleProfile.empty())
|
2019-03-05 04:21:27 +08:00
|
|
|
PGOOpt = PGOOptions(Conf.SampleProfile, "", Conf.ProfileRemapping,
|
|
|
|
PGOOptions::SampleUse, PGOOptions::NoCSAction, true);
|
|
|
|
else if (Conf.RunCSIRInstr) {
|
|
|
|
PGOOpt = PGOOptions("", Conf.CSIRProfile, Conf.ProfileRemapping,
|
|
|
|
PGOOptions::IRUse, PGOOptions::CSIRInstr);
|
|
|
|
} else if (!Conf.CSIRProfile.empty()) {
|
|
|
|
PGOOpt = PGOOptions(Conf.CSIRProfile, "", Conf.ProfileRemapping,
|
|
|
|
PGOOptions::IRUse, PGOOptions::CSIRUse);
|
|
|
|
}
|
2017-08-02 09:28:31 +08:00
|
|
|
|
2019-04-20 00:11:59 +08:00
|
|
|
PassBuilder PB(TM, PipelineTuningOptions(), PGOOpt);
|
2017-01-24 08:58:24 +08:00
|
|
|
AAManager AA;
|
|
|
|
|
|
|
|
// Parse a custom AA pipeline if asked to.
|
2018-10-17 18:36:23 +08:00
|
|
|
if (auto Err = PB.parseAAPipeline(AA, "default"))
|
2017-08-02 11:03:19 +08:00
|
|
|
report_fatal_error("Error parsing default AA pipeline");
|
2017-01-24 08:58:24 +08:00
|
|
|
|
2017-08-02 11:03:19 +08:00
|
|
|
LoopAnalysisManager LAM(Conf.DebugPassManager);
|
|
|
|
FunctionAnalysisManager FAM(Conf.DebugPassManager);
|
|
|
|
CGSCCAnalysisManager CGAM(Conf.DebugPassManager);
|
|
|
|
ModuleAnalysisManager MAM(Conf.DebugPassManager);
|
2017-01-24 08:58:24 +08:00
|
|
|
|
|
|
|
// Register the AA manager first so that our version is the one used.
|
|
|
|
FAM.registerPass([&] { return std::move(AA); });
|
|
|
|
|
|
|
|
// Register all the basic analyses with the managers.
|
|
|
|
PB.registerModuleAnalyses(MAM);
|
|
|
|
PB.registerCGSCCAnalyses(CGAM);
|
|
|
|
PB.registerFunctionAnalyses(FAM);
|
|
|
|
PB.registerLoopAnalyses(LAM);
|
|
|
|
PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
|
|
|
|
|
2017-08-02 11:03:19 +08:00
|
|
|
ModulePassManager MPM(Conf.DebugPassManager);
|
2017-01-24 08:58:24 +08:00
|
|
|
// FIXME (davide): verify the input.
|
|
|
|
|
|
|
|
PassBuilder::OptimizationLevel OL;
|
|
|
|
|
|
|
|
switch (OptLevel) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Invalid optimization level");
|
|
|
|
case 0:
|
|
|
|
OL = PassBuilder::O0;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
OL = PassBuilder::O1;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
OL = PassBuilder::O2;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
OL = PassBuilder::O3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-06-01 19:39:39 +08:00
|
|
|
if (IsThinLTO)
|
2018-07-19 22:51:32 +08:00
|
|
|
MPM = PB.buildThinLTODefaultPipeline(OL, Conf.DebugPassManager,
|
|
|
|
ImportSummary);
|
2017-06-01 19:39:39 +08:00
|
|
|
else
|
2018-07-19 22:51:32 +08:00
|
|
|
MPM = PB.buildLTODefaultPipeline(OL, Conf.DebugPassManager, ExportSummary);
|
2017-01-24 08:58:24 +08:00
|
|
|
MPM.run(Mod, MAM);
|
|
|
|
|
|
|
|
// FIXME (davide): verify the output.
|
|
|
|
}
|
|
|
|
|
2016-09-08 01:46:16 +08:00
|
|
|
static void runNewPMCustomPasses(Module &Mod, TargetMachine *TM,
|
|
|
|
std::string PipelineDesc,
|
2016-09-17 05:03:21 +08:00
|
|
|
std::string AAPipelineDesc,
|
2016-09-08 01:46:16 +08:00
|
|
|
bool DisableVerify) {
|
|
|
|
PassBuilder PB(TM);
|
|
|
|
AAManager AA;
|
2016-09-17 05:03:21 +08:00
|
|
|
|
|
|
|
// Parse a custom AA pipeline if asked to.
|
|
|
|
if (!AAPipelineDesc.empty())
|
2018-10-17 18:36:23 +08:00
|
|
|
if (auto Err = PB.parseAAPipeline(AA, AAPipelineDesc))
|
|
|
|
report_fatal_error("unable to parse AA pipeline description '" +
|
|
|
|
AAPipelineDesc + "': " + toString(std::move(Err)));
|
2016-09-17 05:03:21 +08:00
|
|
|
|
2016-09-08 01:46:16 +08:00
|
|
|
LoopAnalysisManager LAM;
|
|
|
|
FunctionAnalysisManager FAM;
|
|
|
|
CGSCCAnalysisManager CGAM;
|
|
|
|
ModuleAnalysisManager MAM;
|
|
|
|
|
|
|
|
// Register the AA manager first so that our version is the one used.
|
|
|
|
FAM.registerPass([&] { return std::move(AA); });
|
|
|
|
|
|
|
|
// Register all the basic analyses with the managers.
|
|
|
|
PB.registerModuleAnalyses(MAM);
|
|
|
|
PB.registerCGSCCAnalyses(CGAM);
|
|
|
|
PB.registerFunctionAnalyses(FAM);
|
|
|
|
PB.registerLoopAnalyses(LAM);
|
|
|
|
PB.crossRegisterProxies(LAM, FAM, CGAM, MAM);
|
|
|
|
|
|
|
|
ModulePassManager MPM;
|
|
|
|
|
|
|
|
// Always verify the input.
|
|
|
|
MPM.addPass(VerifierPass());
|
|
|
|
|
|
|
|
// Now, add all the passes we've been requested to.
|
2018-10-17 18:36:23 +08:00
|
|
|
if (auto Err = PB.parsePassPipeline(MPM, PipelineDesc))
|
|
|
|
report_fatal_error("unable to parse pass pipeline description '" +
|
|
|
|
PipelineDesc + "': " + toString(std::move(Err)));
|
2016-09-08 01:46:16 +08:00
|
|
|
|
|
|
|
if (!DisableVerify)
|
|
|
|
MPM.addPass(VerifierPass());
|
|
|
|
MPM.run(Mod, MAM);
|
|
|
|
}
|
|
|
|
|
2016-09-07 09:08:31 +08:00
|
|
|
static void runOldPMPasses(Config &Conf, Module &Mod, TargetMachine *TM,
|
2017-03-23 02:22:59 +08:00
|
|
|
bool IsThinLTO, ModuleSummaryIndex *ExportSummary,
|
|
|
|
const ModuleSummaryIndex *ImportSummary) {
|
2016-08-11 22:58:12 +08:00
|
|
|
legacy::PassManager passes;
|
|
|
|
passes.add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
|
|
|
|
|
|
|
|
PassManagerBuilder PMB;
|
|
|
|
PMB.LibraryInfo = new TargetLibraryInfoImpl(Triple(TM->getTargetTriple()));
|
|
|
|
PMB.Inliner = createFunctionInliningPass();
|
2017-03-23 02:22:59 +08:00
|
|
|
PMB.ExportSummary = ExportSummary;
|
|
|
|
PMB.ImportSummary = ImportSummary;
|
2016-08-11 22:58:12 +08:00
|
|
|
// Unconditionally verify input since it is not verified before this
|
|
|
|
// point and has unknown origin.
|
|
|
|
PMB.VerifyInput = true;
|
2016-09-07 09:08:31 +08:00
|
|
|
PMB.VerifyOutput = !Conf.DisableVerify;
|
2016-08-11 22:58:12 +08:00
|
|
|
PMB.LoopVectorize = true;
|
|
|
|
PMB.SLPVectorize = true;
|
2016-09-07 09:08:31 +08:00
|
|
|
PMB.OptLevel = Conf.OptLevel;
|
2016-12-17 00:48:46 +08:00
|
|
|
PMB.PGOSampleUse = Conf.SampleProfile;
|
2019-03-05 04:21:27 +08:00
|
|
|
PMB.EnablePGOCSInstrGen = Conf.RunCSIRInstr;
|
|
|
|
if (!Conf.RunCSIRInstr && !Conf.CSIRProfile.empty()) {
|
|
|
|
PMB.EnablePGOCSInstrUse = true;
|
|
|
|
PMB.PGOInstrUse = Conf.CSIRProfile;
|
|
|
|
}
|
2016-11-24 08:23:09 +08:00
|
|
|
if (IsThinLTO)
|
2016-08-11 22:58:12 +08:00
|
|
|
PMB.populateThinLTOPassManager(passes);
|
|
|
|
else
|
|
|
|
PMB.populateLTOPassManager(passes);
|
2016-09-07 09:08:31 +08:00
|
|
|
passes.run(Mod);
|
2016-09-01 01:02:44 +08:00
|
|
|
}
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2016-09-07 09:08:31 +08:00
|
|
|
bool opt(Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod,
|
2017-03-23 02:22:59 +08:00
|
|
|
bool IsThinLTO, ModuleSummaryIndex *ExportSummary,
|
|
|
|
const ModuleSummaryIndex *ImportSummary) {
|
2017-01-24 08:58:24 +08:00
|
|
|
// FIXME: Plumb the combined index into the new pass manager.
|
|
|
|
if (!Conf.OptPipeline.empty())
|
2016-09-17 05:03:21 +08:00
|
|
|
runNewPMCustomPasses(Mod, TM, Conf.OptPipeline, Conf.AAPipeline,
|
|
|
|
Conf.DisableVerify);
|
[ThinLTO] Move -lto-use-new-pm to llvm-lto2, and change it to -use-new-pm.
Summary:
As we teach Clang to use ThinkLTO + new PM, it's good for the users to
inject through Config, instead of setting a flag in the LTOBackend
library. Move the flag to llvm-lto2.
As it moves to llvm-lto2, a new name -use-new-pm seems simpler and as
clear.
Reviewers: davide, tejohnson
Subscribers: mehdi_amini, Prazek, inglorion, eraman, chandlerc, llvm-commits
Differential Revision: https://reviews.llvm.org/D33799
llvm-svn: 304492
2017-06-02 07:13:44 +08:00
|
|
|
else if (Conf.UseNewPM)
|
2018-07-19 22:51:32 +08:00
|
|
|
runNewPMPasses(Conf, Mod, TM, Conf.OptLevel, IsThinLTO, ExportSummary,
|
|
|
|
ImportSummary);
|
2017-01-24 08:58:24 +08:00
|
|
|
else
|
2017-03-23 02:22:59 +08:00
|
|
|
runOldPMPasses(Conf, Mod, TM, IsThinLTO, ExportSummary, ImportSummary);
|
2016-09-07 09:08:31 +08:00
|
|
|
return !Conf.PostOptModuleHook || Conf.PostOptModuleHook(Task, Mod);
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
void codegen(Config &Conf, TargetMachine *TM, AddStreamFn AddStream,
|
2016-09-07 09:08:31 +08:00
|
|
|
unsigned Task, Module &Mod) {
|
|
|
|
if (Conf.PreCodeGenModuleHook && !Conf.PreCodeGenModuleHook(Task, Mod))
|
2016-08-11 22:58:12 +08:00
|
|
|
return;
|
|
|
|
|
2018-05-22 04:26:49 +08:00
|
|
|
std::unique_ptr<ToolOutputFile> DwoOut;
|
2019-06-15 23:38:51 +08:00
|
|
|
SmallString<1024> DwoFile(Conf.SplitDwarfOutput);
|
2018-04-13 13:03:28 +08:00
|
|
|
if (!Conf.DwoDir.empty()) {
|
2018-05-22 04:26:49 +08:00
|
|
|
std::error_code EC;
|
|
|
|
if (auto EC = llvm::sys::fs::create_directories(Conf.DwoDir))
|
|
|
|
report_fatal_error("Failed to create directory " + Conf.DwoDir + ": " +
|
|
|
|
EC.message());
|
|
|
|
|
2018-06-01 02:25:59 +08:00
|
|
|
DwoFile = Conf.DwoDir;
|
2018-05-22 04:26:49 +08:00
|
|
|
sys::path::append(DwoFile, std::to_string(Task) + ".dwo");
|
2019-06-15 23:38:51 +08:00
|
|
|
TM->Options.MCOptions.SplitDwarfFile = DwoFile.str().str();
|
|
|
|
} else
|
|
|
|
TM->Options.MCOptions.SplitDwarfFile = Conf.SplitDwarfFile;
|
2018-06-01 02:25:59 +08:00
|
|
|
|
|
|
|
if (!DwoFile.empty()) {
|
|
|
|
std::error_code EC;
|
2018-05-22 04:56:28 +08:00
|
|
|
DwoOut = llvm::make_unique<ToolOutputFile>(DwoFile, EC, sys::fs::F_None);
|
2018-05-22 04:26:49 +08:00
|
|
|
if (EC)
|
|
|
|
report_fatal_error("Failed to open " + DwoFile + ": " + EC.message());
|
2018-04-13 13:03:28 +08:00
|
|
|
}
|
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
auto Stream = AddStream(Task);
|
2016-08-11 22:58:12 +08:00
|
|
|
legacy::PassManager CodeGenPasses;
|
2018-05-22 04:26:49 +08:00
|
|
|
if (TM->addPassesToEmitFile(CodeGenPasses, *Stream->OS,
|
|
|
|
DwoOut ? &DwoOut->os() : nullptr,
|
2018-05-22 04:16:41 +08:00
|
|
|
Conf.CGFileType))
|
2016-08-11 22:58:12 +08:00
|
|
|
report_fatal_error("Failed to setup codegen");
|
2016-09-07 09:08:31 +08:00
|
|
|
CodeGenPasses.run(Mod);
|
2018-05-22 04:26:49 +08:00
|
|
|
|
|
|
|
if (DwoOut)
|
|
|
|
DwoOut->keep();
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
void splitCodeGen(Config &C, TargetMachine *TM, AddStreamFn AddStream,
|
2016-08-11 22:58:12 +08:00
|
|
|
unsigned ParallelCodeGenParallelismLevel,
|
2016-09-07 09:08:31 +08:00
|
|
|
std::unique_ptr<Module> Mod) {
|
2016-08-11 22:58:12 +08:00
|
|
|
ThreadPool CodegenThreadPool(ParallelCodeGenParallelismLevel);
|
|
|
|
unsigned ThreadCount = 0;
|
|
|
|
const Target *T = &TM->getTarget();
|
|
|
|
|
|
|
|
SplitModule(
|
2016-09-07 09:08:31 +08:00
|
|
|
std::move(Mod), ParallelCodeGenParallelismLevel,
|
2016-08-11 22:58:12 +08:00
|
|
|
[&](std::unique_ptr<Module> MPart) {
|
|
|
|
// We want to clone the module in a new context to multi-thread the
|
|
|
|
// codegen. We do it by serializing partition modules to bitcode
|
|
|
|
// (while still on the main thread, in order to avoid data races) and
|
|
|
|
// spinning up new threads which deserialize the partitions into
|
|
|
|
// separate contexts.
|
|
|
|
// FIXME: Provide a more direct way to do this in LLVM.
|
|
|
|
SmallString<0> BC;
|
|
|
|
raw_svector_ostream BCOS(BC);
|
2018-02-15 03:11:32 +08:00
|
|
|
WriteBitcodeToFile(*MPart, BCOS);
|
2016-08-11 22:58:12 +08:00
|
|
|
|
|
|
|
// Enqueue the task
|
|
|
|
CodegenThreadPool.async(
|
|
|
|
[&](const SmallString<0> &BC, unsigned ThreadId) {
|
|
|
|
LTOLLVMContext Ctx(C);
|
2016-11-13 15:00:17 +08:00
|
|
|
Expected<std::unique_ptr<Module>> MOrErr = parseBitcodeFile(
|
2016-08-11 22:58:12 +08:00
|
|
|
MemoryBufferRef(StringRef(BC.data(), BC.size()), "ld-temp.o"),
|
|
|
|
Ctx);
|
|
|
|
if (!MOrErr)
|
|
|
|
report_fatal_error("Failed to read bitcode");
|
|
|
|
std::unique_ptr<Module> MPartInCtx = std::move(MOrErr.get());
|
|
|
|
|
|
|
|
std::unique_ptr<TargetMachine> TM =
|
2017-05-23 05:11:35 +08:00
|
|
|
createTargetMachine(C, T, *MPartInCtx);
|
2016-08-24 05:30:12 +08:00
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
codegen(C, TM.get(), AddStream, ThreadId, *MPartInCtx);
|
2016-08-11 22:58:12 +08:00
|
|
|
},
|
|
|
|
// Pass BC using std::move to ensure that it get moved rather than
|
|
|
|
// copied into the thread's context.
|
|
|
|
std::move(BC), ThreadCount++);
|
|
|
|
},
|
|
|
|
false);
|
2016-09-29 11:29:28 +08:00
|
|
|
|
|
|
|
// Because the inner lambda (which runs in a worker thread) captures our local
|
|
|
|
// variables, we need to wait for the worker threads to terminate before we
|
|
|
|
// can leave the function scope.
|
2016-09-29 09:28:36 +08:00
|
|
|
CodegenThreadPool.wait();
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 09:08:31 +08:00
|
|
|
Expected<const Target *> initAndLookupTarget(Config &C, Module &Mod) {
|
2016-08-11 22:58:12 +08:00
|
|
|
if (!C.OverrideTriple.empty())
|
2016-09-07 09:08:31 +08:00
|
|
|
Mod.setTargetTriple(C.OverrideTriple);
|
|
|
|
else if (Mod.getTargetTriple().empty())
|
|
|
|
Mod.setTargetTriple(C.DefaultTriple);
|
2016-08-11 22:58:12 +08:00
|
|
|
|
|
|
|
std::string Msg;
|
2016-09-07 09:08:31 +08:00
|
|
|
const Target *T = TargetRegistry::lookupTarget(Mod.getTargetTriple(), Msg);
|
2016-08-11 22:58:12 +08:00
|
|
|
if (!T)
|
|
|
|
return make_error<StringError>(Msg, inconvertibleErrorCode());
|
|
|
|
return T;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-05-04 04:24:12 +08:00
|
|
|
static Error
|
2017-09-23 09:03:17 +08:00
|
|
|
finalizeOptimizationRemarks(std::unique_ptr<ToolOutputFile> DiagOutputFile) {
|
2017-02-13 22:39:51 +08:00
|
|
|
// Make sure we flush the diagnostic remarks file in case the linker doesn't
|
|
|
|
// call the global destructors before exiting.
|
|
|
|
if (!DiagOutputFile)
|
2018-05-04 04:24:12 +08:00
|
|
|
return Error::success();
|
2017-02-13 22:39:51 +08:00
|
|
|
DiagOutputFile->keep();
|
|
|
|
DiagOutputFile->os().flush();
|
2018-05-04 04:24:12 +08:00
|
|
|
return Error::success();
|
2017-02-13 22:39:51 +08:00
|
|
|
}
|
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
Error lto::backend(Config &C, AddStreamFn AddStream,
|
2016-08-11 22:58:12 +08:00
|
|
|
unsigned ParallelCodeGenParallelismLevel,
|
2017-01-21 06:18:52 +08:00
|
|
|
std::unique_ptr<Module> Mod,
|
|
|
|
ModuleSummaryIndex &CombinedIndex) {
|
2016-09-07 09:08:31 +08:00
|
|
|
Expected<const Target *> TOrErr = initAndLookupTarget(C, *Mod);
|
2016-08-11 22:58:12 +08:00
|
|
|
if (!TOrErr)
|
|
|
|
return TOrErr.takeError();
|
|
|
|
|
2017-05-23 05:11:35 +08:00
|
|
|
std::unique_ptr<TargetMachine> TM = createTargetMachine(C, *TOrErr, *Mod);
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2017-02-12 11:31:30 +08:00
|
|
|
// Setup optimization remarks.
|
2019-06-18 00:06:00 +08:00
|
|
|
auto DiagFileOrErr = lto::setupOptimizationRemarks(
|
|
|
|
Mod->getContext(), C.RemarksFilename, C.RemarksPasses, C.RemarksFormat,
|
|
|
|
C.RemarksWithHotness);
|
2017-02-12 11:31:30 +08:00
|
|
|
if (!DiagFileOrErr)
|
|
|
|
return DiagFileOrErr.takeError();
|
2017-02-13 22:39:51 +08:00
|
|
|
auto DiagnosticOutputFile = std::move(*DiagFileOrErr);
|
2017-02-12 11:31:30 +08:00
|
|
|
|
2017-02-13 22:39:51 +08:00
|
|
|
if (!C.CodeGenOnly) {
|
2017-03-23 02:22:59 +08:00
|
|
|
if (!opt(C, TM.get(), 0, *Mod, /*IsThinLTO=*/false,
|
2018-05-04 04:24:12 +08:00
|
|
|
/*ExportSummary=*/&CombinedIndex, /*ImportSummary=*/nullptr))
|
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2017-02-13 22:39:51 +08:00
|
|
|
}
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2016-08-24 05:30:12 +08:00
|
|
|
if (ParallelCodeGenParallelismLevel == 1) {
|
2016-09-24 05:33:43 +08:00
|
|
|
codegen(C, TM.get(), AddStream, 0, *Mod);
|
2016-08-24 05:30:12 +08:00
|
|
|
} else {
|
2016-09-24 05:33:43 +08:00
|
|
|
splitCodeGen(C, TM.get(), AddStream, ParallelCodeGenParallelismLevel,
|
2016-09-07 09:08:31 +08:00
|
|
|
std::move(Mod));
|
2016-08-24 05:30:12 +08:00
|
|
|
}
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|
|
|
|
|
2018-01-29 16:03:30 +08:00
|
|
|
static void dropDeadSymbols(Module &Mod, const GVSummaryMapTy &DefinedGlobals,
|
|
|
|
const ModuleSummaryIndex &Index) {
|
2018-02-06 08:43:39 +08:00
|
|
|
std::vector<GlobalValue*> DeadGVs;
|
2018-02-05 23:44:27 +08:00
|
|
|
for (auto &GV : Mod.global_values())
|
2018-02-02 20:21:26 +08:00
|
|
|
if (GlobalValueSummary *GVS = DefinedGlobals.lookup(GV.getGUID()))
|
2018-02-06 08:43:39 +08:00
|
|
|
if (!Index.isGlobalValueLive(GVS)) {
|
|
|
|
DeadGVs.push_back(&GV);
|
|
|
|
convertToDeclaration(GV);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now that all dead bodies have been dropped, delete the actual objects
|
|
|
|
// themselves when possible.
|
|
|
|
for (GlobalValue *GV : DeadGVs) {
|
|
|
|
GV->removeDeadConstantUsers();
|
|
|
|
// Might reference something defined in native object (i.e. dropped a
|
|
|
|
// non-prevailing IR def, but we need to keep the declaration).
|
|
|
|
if (GV->use_empty())
|
|
|
|
GV->eraseFromParent();
|
|
|
|
}
|
2018-01-29 16:03:30 +08:00
|
|
|
}
|
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
Error lto::thinBackend(Config &Conf, unsigned Task, AddStreamFn AddStream,
|
2017-03-23 02:22:59 +08:00
|
|
|
Module &Mod, const ModuleSummaryIndex &CombinedIndex,
|
2016-08-11 22:58:12 +08:00
|
|
|
const FunctionImporter::ImportMapTy &ImportList,
|
|
|
|
const GVSummaryMapTy &DefinedGlobals,
|
2016-12-14 09:17:59 +08:00
|
|
|
MapVector<StringRef, BitcodeModule> &ModuleMap) {
|
2016-08-16 08:44:46 +08:00
|
|
|
Expected<const Target *> TOrErr = initAndLookupTarget(Conf, Mod);
|
2016-08-11 22:58:12 +08:00
|
|
|
if (!TOrErr)
|
|
|
|
return TOrErr.takeError();
|
|
|
|
|
2017-05-23 05:11:35 +08:00
|
|
|
std::unique_ptr<TargetMachine> TM = createTargetMachine(Conf, *TOrErr, Mod);
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2018-05-04 04:24:12 +08:00
|
|
|
// Setup optimization remarks.
|
|
|
|
auto DiagFileOrErr = lto::setupOptimizationRemarks(
|
2019-03-13 05:22:27 +08:00
|
|
|
Mod.getContext(), Conf.RemarksFilename, Conf.RemarksPasses,
|
2019-06-18 00:06:00 +08:00
|
|
|
Conf.RemarksFormat, Conf.RemarksWithHotness, Task);
|
2018-05-04 04:24:12 +08:00
|
|
|
if (!DiagFileOrErr)
|
|
|
|
return DiagFileOrErr.takeError();
|
|
|
|
auto DiagnosticOutputFile = std::move(*DiagFileOrErr);
|
|
|
|
|
2016-08-22 14:25:41 +08:00
|
|
|
if (Conf.CodeGenOnly) {
|
2016-09-24 05:33:43 +08:00
|
|
|
codegen(Conf, TM.get(), AddStream, Task, Mod);
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-22 14:25:41 +08:00
|
|
|
}
|
|
|
|
|
2016-08-16 08:44:46 +08:00
|
|
|
if (Conf.PreOptModuleHook && !Conf.PreOptModuleHook(Task, Mod))
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2016-08-16 08:44:46 +08:00
|
|
|
renameModuleForThinLTO(Mod, CombinedIndex);
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2018-01-29 16:03:30 +08:00
|
|
|
dropDeadSymbols(Mod, DefinedGlobals, CombinedIndex);
|
|
|
|
|
[LTO] Drop non-prevailing definitions only if linkage is not local or appending
Summary:
This fixes PR 37422
In ELF, non-weak symbols can also be non-prevailing. In this particular
PR, the __llvm_profile_* symbols are non-prevailing but weren't getting
dropped - causing multiply-defined errors with lld.
Also add a test, strong_non_prevailing.ll, to ensure that multiple
copies of a strong symbol are dropped.
To fix the test regressions exposed by this fix,
- do not mark prevailing copies for symbols with 'appending' linkage.
There's no one prevailing copy for such symbols.
- fix the prevailing version in dead-strip-fulllto.ll
- explicitly pass exported symbols to llvm-lto in fumcimport.ll and
funcimport_var.ll
Reviewers: tejohnson, pcc
Subscribers: mehdi_amini, inglorion, eraman, steven_wu, dexonsmith,
dang, srhines, llvm-commits
Differential Revision: https://reviews.llvm.org/D54125
llvm-svn: 346436
2018-11-09 04:10:07 +08:00
|
|
|
thinLTOResolvePrevailingInModule(Mod, DefinedGlobals);
|
2016-08-18 08:59:24 +08:00
|
|
|
|
2016-08-16 08:44:46 +08:00
|
|
|
if (Conf.PostPromoteModuleHook && !Conf.PostPromoteModuleHook(Task, Mod))
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
|
|
|
|
if (!DefinedGlobals.empty())
|
2016-08-16 08:44:46 +08:00
|
|
|
thinLTOInternalizeModule(Mod, DefinedGlobals);
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2016-08-16 08:44:46 +08:00
|
|
|
if (Conf.PostInternalizeModuleHook &&
|
|
|
|
!Conf.PostInternalizeModuleHook(Task, Mod))
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
|
|
|
|
auto ModuleLoader = [&](StringRef Identifier) {
|
2016-08-24 00:53:34 +08:00
|
|
|
assert(Mod.getContext().isODRUniquingDebugTypes() &&
|
2016-09-15 02:48:43 +08:00
|
|
|
"ODR Type uniquing should be enabled on the context");
|
2016-12-14 09:17:59 +08:00
|
|
|
auto I = ModuleMap.find(Identifier);
|
|
|
|
assert(I != ModuleMap.end());
|
|
|
|
return I->second.getLazyModule(Mod.getContext(),
|
2016-12-17 05:25:01 +08:00
|
|
|
/*ShouldLazyLoadMetadata=*/true,
|
|
|
|
/*IsImporting*/ true);
|
2016-08-11 22:58:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
FunctionImporter Importer(CombinedIndex, ModuleLoader);
|
2016-11-10 01:49:19 +08:00
|
|
|
if (Error Err = Importer.importFunctions(Mod, ImportList).takeError())
|
|
|
|
return Err;
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2016-08-16 08:44:46 +08:00
|
|
|
if (Conf.PostImportModuleHook && !Conf.PostImportModuleHook(Task, Mod))
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2017-03-23 02:22:59 +08:00
|
|
|
if (!opt(Conf, TM.get(), Task, Mod, /*IsThinLTO=*/true,
|
|
|
|
/*ExportSummary=*/nullptr, /*ImportSummary=*/&CombinedIndex))
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
|
2016-09-24 05:33:43 +08:00
|
|
|
codegen(Conf, TM.get(), AddStream, Task, Mod);
|
2018-05-04 04:24:12 +08:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 22:58:12 +08:00
|
|
|
}
|