2016-08-11 16:58:12 +02:00
|
|
|
//===-LTOBackend.cpp - LLVM Link Time Optimizer Backend -------------------===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01: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 16:58:12 +02: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-07 19:46:16 +02:00
|
|
|
#include "llvm/Analysis/AliasAnalysis.h"
|
|
|
|
#include "llvm/Analysis/CGSCCPassManager.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
|
|
|
#include "llvm/Analysis/TargetTransformInfo.h"
|
2016-11-11 06:34:58 +01:00
|
|
|
#include "llvm/Bitcode/BitcodeReader.h"
|
|
|
|
#include "llvm/Bitcode/BitcodeWriter.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/IR/LegacyPassManager.h"
|
2016-09-07 19:46:16 +02:00
|
|
|
#include "llvm/IR/PassManager.h"
|
2019-06-14 18:20:51 +02:00
|
|
|
#include "llvm/IR/RemarkStreamer.h"
|
2016-09-07 19:46:16 +02:00
|
|
|
#include "llvm/IR/Verifier.h"
|
2016-08-17 08:23:09 +02:00
|
|
|
#include "llvm/LTO/LTO.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/MC/SubtargetFeature.h"
|
2017-03-29 01:35:34 +02:00
|
|
|
#include "llvm/Object/ModuleSymbolTable.h"
|
2016-09-07 19:46:16 +02:00
|
|
|
#include "llvm/Passes/PassBuilder.h"
|
2019-08-15 19:47:44 +02:00
|
|
|
#include "llvm/Passes/StandardInstrumentations.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/Support/Error.h"
|
|
|
|
#include "llvm/Support/FileSystem.h"
|
2018-04-13 07:03:28 +02:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/Program.h"
|
[LTO] Support for embedding bitcode section during LTO
Summary:
This adds support for embedding bitcode in a binary during LTO. The libLTO gains supports the `-lto-embed-bitcode` flag. The option allows users of the LTO library to embed a bitcode section. For example, LLD can pass the option via `ld.lld -mllvm=-lto-embed-bitcode`.
This feature allows doing something comparable to `clang -c -fembed-bitcode`, but on the (LTO) linker level. Having bitcode alongside native code has many use-cases. To give an example, the MacOS linker can create a `-bitcode_bundle` section containing bitcode. Also, having this feature built into LLVM is an alternative to 3rd party tools such as [[ https://github.com/travitch/whole-program-llvm | wllvm ]] or [[ https://github.com/SRI-CSL/gllvm | gllvm ]]. As with these tools, this feature simplifies creating "whole-program" llvm bitcode files, but in contrast to wllvm/gllvm it does not rely on a specific llvm frontend/driver.
Patch by Josef Eisl <josef.eisl@oracle.com>
Reviewers: #llvm, #clang, rsmith, pcc, alexshap, tejohnson
Reviewed By: tejohnson
Subscribers: tejohnson, mehdi_amini, inglorion, hiraditya, aheejin, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits, #llvm, #clang
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D68213
2019-12-12 20:59:36 +01:00
|
|
|
#include "llvm/Support/SmallVectorMemoryBuffer.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
|
|
|
#include "llvm/Support/ThreadPool.h"
|
2019-06-14 18:20:51 +02:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
|
|
|
#include "llvm/Transforms/IPO.h"
|
|
|
|
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
|
2017-01-11 10:43:56 +01:00
|
|
|
#include "llvm/Transforms/Scalar/LoopPassManager.h"
|
2016-08-11 16:58:12 +02:00
|
|
|
#include "llvm/Transforms/Utils/FunctionImportUtils.h"
|
|
|
|
#include "llvm/Transforms/Utils/SplitModule.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace lto;
|
|
|
|
|
2016-10-18 21:39:31 +02:00
|
|
|
LLVM_ATTRIBUTE_NORETURN static void reportOpenError(StringRef Path, Twine Msg) {
|
2016-09-18 00:32:42 +02:00
|
|
|
errs() << "failed to open " << Path << ": " << Msg << '\n';
|
|
|
|
errs().flush();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2016-08-11 16:58:12 +02:00
|
|
|
Error Config::addSaveTemps(std::string OutputFileName,
|
|
|
|
bool UseInputModulePath) {
|
|
|
|
ShouldDiscardValueNames = false;
|
|
|
|
|
|
|
|
std::error_code EC;
|
2019-08-15 17:54:37 +02:00
|
|
|
ResolutionFile = std::make_unique<raw_fd_ostream>(
|
2019-08-05 07:43:48 +02:00
|
|
|
OutputFileName + "resolution.txt", EC, sys::fs::OpenFlags::OF_Text);
|
2016-08-11 16:58:12 +02: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-22 18:17:40 +02:00
|
|
|
Hook = [=](unsigned Task, const Module &M) {
|
2016-08-11 16:58:12 +02: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 16:37:20 +02:00
|
|
|
PathPrefix = OutputFileName;
|
|
|
|
if (Task != (unsigned)-1)
|
|
|
|
PathPrefix += utostr(Task) + ".";
|
2016-08-11 16:58:12 +02:00
|
|
|
} else
|
2018-05-05 16:37:20 +02:00
|
|
|
PathPrefix = M.getModuleIdentifier() + ".";
|
|
|
|
std::string Path = PathPrefix + PathSuffix + ".bc";
|
2016-08-11 16:58:12 +02:00
|
|
|
std::error_code EC;
|
2019-08-05 07:43:48 +02:00
|
|
|
raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::OF_None);
|
2016-09-18 00:32:42 +02:00
|
|
|
// Because -save-temps is a debugging feature, we report the error
|
|
|
|
// directly and exit.
|
|
|
|
if (EC)
|
|
|
|
reportOpenError(Path, EC.message());
|
2018-02-14 20:11:32 +01:00
|
|
|
WriteBitcodeToFile(M, OS, /*ShouldPreserveUseListOrder=*/false);
|
2016-08-11 16:58:12 +02: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);
|
|
|
|
|
2019-12-18 16:33:15 +01:00
|
|
|
CombinedIndexHook =
|
|
|
|
[=](const ModuleSummaryIndex &Index,
|
|
|
|
const DenseSet<GlobalValue::GUID> &GUIDPreservedSymbols) {
|
|
|
|
std::string Path = OutputFileName + "index.bc";
|
|
|
|
std::error_code EC;
|
|
|
|
raw_fd_ostream OS(Path, EC, sys::fs::OpenFlags::OF_None);
|
|
|
|
// Because -save-temps is a debugging feature, we report the error
|
|
|
|
// directly and exit.
|
|
|
|
if (EC)
|
|
|
|
reportOpenError(Path, EC.message());
|
|
|
|
WriteIndexToFile(Index, OS);
|
|
|
|
|
|
|
|
Path = OutputFileName + "index.dot";
|
|
|
|
raw_fd_ostream OSDot(Path, EC, sys::fs::OpenFlags::OF_None);
|
|
|
|
if (EC)
|
|
|
|
reportOpenError(Path, EC.message());
|
|
|
|
Index.exportToDot(OSDot, GUIDPreservedSymbols);
|
|
|
|
return true;
|
|
|
|
};
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2016-11-11 05:28:40 +01:00
|
|
|
return Error::success();
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
std::unique_ptr<TargetMachine>
|
2020-01-13 21:23:34 +01:00
|
|
|
createTargetMachine(const Config &Conf, const Target *TheTarget, Module &M) {
|
2017-05-22 23:11:35 +02:00
|
|
|
StringRef TheTriple = M.getTargetTriple();
|
2016-08-11 16:58:12 +02:00
|
|
|
SubtargetFeatures Features;
|
|
|
|
Features.getDefaultSubtargetFeatures(Triple(TheTriple));
|
2016-09-07 03:08:31 +02:00
|
|
|
for (const std::string &A : Conf.MAttrs)
|
2016-08-11 16:58:12 +02:00
|
|
|
Features.AddFeature(A);
|
|
|
|
|
2017-05-22 23:11:35 +02:00
|
|
|
Reloc::Model RelocModel;
|
|
|
|
if (Conf.RelocModel)
|
|
|
|
RelocModel = *Conf.RelocModel;
|
|
|
|
else
|
|
|
|
RelocModel =
|
|
|
|
M.getPICLevel() == PICLevel::NotPIC ? Reloc::Static : Reloc::PIC_;
|
|
|
|
|
2018-09-21 20:41:31 +02:00
|
|
|
Optional<CodeModel::Model> CodeModel;
|
|
|
|
if (Conf.CodeModel)
|
|
|
|
CodeModel = *Conf.CodeModel;
|
|
|
|
else
|
|
|
|
CodeModel = M.getCodeModel();
|
|
|
|
|
2016-08-11 16:58:12 +02:00
|
|
|
return std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine(
|
2017-05-22 23:11:35 +02:00
|
|
|
TheTriple, Conf.CPU, Features.getString(), Conf.Options, RelocModel,
|
2018-09-21 20:41:31 +02:00
|
|
|
CodeModel, Conf.CGOptLevel));
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
static void runNewPMPasses(const Config &Conf, Module &Mod, TargetMachine *TM,
|
2018-07-19 16:51:32 +02:00
|
|
|
unsigned OptLevel, bool IsThinLTO,
|
|
|
|
ModuleSummaryIndex *ExportSummary,
|
|
|
|
const ModuleSummaryIndex *ImportSummary) {
|
2017-08-02 03:28:31 +02:00
|
|
|
Optional<PGOOptions> PGOOpt;
|
|
|
|
if (!Conf.SampleProfile.empty())
|
2019-03-04 21:21:27 +01: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 03:28:31 +02:00
|
|
|
|
2019-08-15 19:47:44 +02:00
|
|
|
PassInstrumentationCallbacks PIC;
|
|
|
|
StandardInstrumentations SI;
|
|
|
|
SI.registerCallbacks(PIC);
|
2020-01-10 05:58:31 +01:00
|
|
|
PassBuilder PB(TM, Conf.PTO, PGOOpt, &PIC);
|
2017-01-24 01:58:24 +01:00
|
|
|
AAManager AA;
|
|
|
|
|
|
|
|
// Parse a custom AA pipeline if asked to.
|
2018-10-17 12:36:23 +02:00
|
|
|
if (auto Err = PB.parseAAPipeline(AA, "default"))
|
2017-08-02 05:03:19 +02:00
|
|
|
report_fatal_error("Error parsing default AA pipeline");
|
2017-01-24 01:58:24 +01:00
|
|
|
|
2017-08-02 05:03:19 +02:00
|
|
|
LoopAnalysisManager LAM(Conf.DebugPassManager);
|
|
|
|
FunctionAnalysisManager FAM(Conf.DebugPassManager);
|
|
|
|
CGSCCAnalysisManager CGAM(Conf.DebugPassManager);
|
|
|
|
ModuleAnalysisManager MAM(Conf.DebugPassManager);
|
2017-01-24 01:58:24 +01: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 05:03:19 +02:00
|
|
|
ModulePassManager MPM(Conf.DebugPassManager);
|
2017-01-24 01:58:24 +01:00
|
|
|
// FIXME (davide): verify the input.
|
|
|
|
|
|
|
|
PassBuilder::OptimizationLevel OL;
|
|
|
|
|
|
|
|
switch (OptLevel) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Invalid optimization level");
|
|
|
|
case 0:
|
[llvm] Make new pass manager's OptimizationLevel a class
Summary:
The old pass manager separated speed optimization and size optimization
levels into two unsigned values. Coallescing both in an enum in the new
pass manager may lead to unintentional casts and comparisons.
In particular, taking a look at how the loop unroll passes were constructed
previously, the Os/Oz are now (==new pass manager) treated just like O3,
likely unintentionally.
This change disallows raw comparisons between optimization levels, to
avoid such unintended effects. As an effect, the O{s|z} behavior changes
for loop unrolling and loop unroll and jam, matching O2 rather than O3.
The change also parameterizes the threshold values used for loop
unrolling, primarily to aid testing.
Reviewers: tejohnson, davidxl
Reviewed By: tejohnson
Subscribers: zzheng, ychen, mehdi_amini, hiraditya, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D72547
2020-01-16 17:51:50 +01:00
|
|
|
OL = PassBuilder::OptimizationLevel::O0;
|
2017-01-24 01:58:24 +01:00
|
|
|
break;
|
|
|
|
case 1:
|
[llvm] Make new pass manager's OptimizationLevel a class
Summary:
The old pass manager separated speed optimization and size optimization
levels into two unsigned values. Coallescing both in an enum in the new
pass manager may lead to unintentional casts and comparisons.
In particular, taking a look at how the loop unroll passes were constructed
previously, the Os/Oz are now (==new pass manager) treated just like O3,
likely unintentionally.
This change disallows raw comparisons between optimization levels, to
avoid such unintended effects. As an effect, the O{s|z} behavior changes
for loop unrolling and loop unroll and jam, matching O2 rather than O3.
The change also parameterizes the threshold values used for loop
unrolling, primarily to aid testing.
Reviewers: tejohnson, davidxl
Reviewed By: tejohnson
Subscribers: zzheng, ychen, mehdi_amini, hiraditya, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D72547
2020-01-16 17:51:50 +01:00
|
|
|
OL = PassBuilder::OptimizationLevel::O1;
|
2017-01-24 01:58:24 +01:00
|
|
|
break;
|
|
|
|
case 2:
|
[llvm] Make new pass manager's OptimizationLevel a class
Summary:
The old pass manager separated speed optimization and size optimization
levels into two unsigned values. Coallescing both in an enum in the new
pass manager may lead to unintentional casts and comparisons.
In particular, taking a look at how the loop unroll passes were constructed
previously, the Os/Oz are now (==new pass manager) treated just like O3,
likely unintentionally.
This change disallows raw comparisons between optimization levels, to
avoid such unintended effects. As an effect, the O{s|z} behavior changes
for loop unrolling and loop unroll and jam, matching O2 rather than O3.
The change also parameterizes the threshold values used for loop
unrolling, primarily to aid testing.
Reviewers: tejohnson, davidxl
Reviewed By: tejohnson
Subscribers: zzheng, ychen, mehdi_amini, hiraditya, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D72547
2020-01-16 17:51:50 +01:00
|
|
|
OL = PassBuilder::OptimizationLevel::O2;
|
2017-01-24 01:58:24 +01:00
|
|
|
break;
|
|
|
|
case 3:
|
[llvm] Make new pass manager's OptimizationLevel a class
Summary:
The old pass manager separated speed optimization and size optimization
levels into two unsigned values. Coallescing both in an enum in the new
pass manager may lead to unintentional casts and comparisons.
In particular, taking a look at how the loop unroll passes were constructed
previously, the Os/Oz are now (==new pass manager) treated just like O3,
likely unintentionally.
This change disallows raw comparisons between optimization levels, to
avoid such unintended effects. As an effect, the O{s|z} behavior changes
for loop unrolling and loop unroll and jam, matching O2 rather than O3.
The change also parameterizes the threshold values used for loop
unrolling, primarily to aid testing.
Reviewers: tejohnson, davidxl
Reviewed By: tejohnson
Subscribers: zzheng, ychen, mehdi_amini, hiraditya, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D72547
2020-01-16 17:51:50 +01:00
|
|
|
OL = PassBuilder::OptimizationLevel::O3;
|
2017-01-24 01:58:24 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-06-01 13:39:39 +02:00
|
|
|
if (IsThinLTO)
|
2018-07-19 16:51:32 +02:00
|
|
|
MPM = PB.buildThinLTODefaultPipeline(OL, Conf.DebugPassManager,
|
|
|
|
ImportSummary);
|
2017-06-01 13:39:39 +02:00
|
|
|
else
|
2018-07-19 16:51:32 +02:00
|
|
|
MPM = PB.buildLTODefaultPipeline(OL, Conf.DebugPassManager, ExportSummary);
|
2017-01-24 01:58:24 +01:00
|
|
|
MPM.run(Mod, MAM);
|
|
|
|
|
|
|
|
// FIXME (davide): verify the output.
|
|
|
|
}
|
|
|
|
|
2016-09-07 19:46:16 +02:00
|
|
|
static void runNewPMCustomPasses(Module &Mod, TargetMachine *TM,
|
|
|
|
std::string PipelineDesc,
|
2016-09-16 23:03:21 +02:00
|
|
|
std::string AAPipelineDesc,
|
2016-09-07 19:46:16 +02:00
|
|
|
bool DisableVerify) {
|
|
|
|
PassBuilder PB(TM);
|
|
|
|
AAManager AA;
|
2016-09-16 23:03:21 +02:00
|
|
|
|
|
|
|
// Parse a custom AA pipeline if asked to.
|
|
|
|
if (!AAPipelineDesc.empty())
|
2018-10-17 12:36:23 +02:00
|
|
|
if (auto Err = PB.parseAAPipeline(AA, AAPipelineDesc))
|
|
|
|
report_fatal_error("unable to parse AA pipeline description '" +
|
|
|
|
AAPipelineDesc + "': " + toString(std::move(Err)));
|
2016-09-16 23:03:21 +02:00
|
|
|
|
2016-09-07 19:46:16 +02: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 12:36:23 +02:00
|
|
|
if (auto Err = PB.parsePassPipeline(MPM, PipelineDesc))
|
|
|
|
report_fatal_error("unable to parse pass pipeline description '" +
|
|
|
|
PipelineDesc + "': " + toString(std::move(Err)));
|
2016-09-07 19:46:16 +02:00
|
|
|
|
|
|
|
if (!DisableVerify)
|
|
|
|
MPM.addPass(VerifierPass());
|
|
|
|
MPM.run(Mod, MAM);
|
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
static void runOldPMPasses(const Config &Conf, Module &Mod, TargetMachine *TM,
|
2017-03-22 19:22:59 +01:00
|
|
|
bool IsThinLTO, ModuleSummaryIndex *ExportSummary,
|
|
|
|
const ModuleSummaryIndex *ImportSummary) {
|
2016-08-11 16:58:12 +02:00
|
|
|
legacy::PassManager passes;
|
|
|
|
passes.add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
|
|
|
|
|
|
|
|
PassManagerBuilder PMB;
|
|
|
|
PMB.LibraryInfo = new TargetLibraryInfoImpl(Triple(TM->getTargetTriple()));
|
|
|
|
PMB.Inliner = createFunctionInliningPass();
|
2017-03-22 19:22:59 +01:00
|
|
|
PMB.ExportSummary = ExportSummary;
|
|
|
|
PMB.ImportSummary = ImportSummary;
|
2016-08-11 16:58:12 +02:00
|
|
|
// Unconditionally verify input since it is not verified before this
|
|
|
|
// point and has unknown origin.
|
|
|
|
PMB.VerifyInput = true;
|
2016-09-07 03:08:31 +02:00
|
|
|
PMB.VerifyOutput = !Conf.DisableVerify;
|
2016-08-11 16:58:12 +02:00
|
|
|
PMB.LoopVectorize = true;
|
|
|
|
PMB.SLPVectorize = true;
|
2016-09-07 03:08:31 +02:00
|
|
|
PMB.OptLevel = Conf.OptLevel;
|
2016-12-16 17:48:46 +01:00
|
|
|
PMB.PGOSampleUse = Conf.SampleProfile;
|
2019-03-04 21:21:27 +01:00
|
|
|
PMB.EnablePGOCSInstrGen = Conf.RunCSIRInstr;
|
|
|
|
if (!Conf.RunCSIRInstr && !Conf.CSIRProfile.empty()) {
|
|
|
|
PMB.EnablePGOCSInstrUse = true;
|
|
|
|
PMB.PGOInstrUse = Conf.CSIRProfile;
|
|
|
|
}
|
2016-11-24 01:23:09 +01:00
|
|
|
if (IsThinLTO)
|
2016-08-11 16:58:12 +02:00
|
|
|
PMB.populateThinLTOPassManager(passes);
|
|
|
|
else
|
|
|
|
PMB.populateLTOPassManager(passes);
|
2016-09-07 03:08:31 +02:00
|
|
|
passes.run(Mod);
|
2016-08-31 19:02:44 +02:00
|
|
|
}
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
bool opt(const Config &Conf, TargetMachine *TM, unsigned Task, Module &Mod,
|
2017-03-22 19:22:59 +01:00
|
|
|
bool IsThinLTO, ModuleSummaryIndex *ExportSummary,
|
|
|
|
const ModuleSummaryIndex *ImportSummary) {
|
2017-01-24 01:58:24 +01:00
|
|
|
// FIXME: Plumb the combined index into the new pass manager.
|
|
|
|
if (!Conf.OptPipeline.empty())
|
2016-09-16 23:03:21 +02: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 01:13:44 +02:00
|
|
|
else if (Conf.UseNewPM)
|
2018-07-19 16:51:32 +02:00
|
|
|
runNewPMPasses(Conf, Mod, TM, Conf.OptLevel, IsThinLTO, ExportSummary,
|
|
|
|
ImportSummary);
|
2017-01-24 01:58:24 +01:00
|
|
|
else
|
2017-03-22 19:22:59 +01:00
|
|
|
runOldPMPasses(Conf, Mod, TM, IsThinLTO, ExportSummary, ImportSummary);
|
2016-09-07 03:08:31 +02:00
|
|
|
return !Conf.PostOptModuleHook || Conf.PostOptModuleHook(Task, Mod);
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|
|
|
|
|
[LTO] Support for embedding bitcode section during LTO
Summary:
This adds support for embedding bitcode in a binary during LTO. The libLTO gains supports the `-lto-embed-bitcode` flag. The option allows users of the LTO library to embed a bitcode section. For example, LLD can pass the option via `ld.lld -mllvm=-lto-embed-bitcode`.
This feature allows doing something comparable to `clang -c -fembed-bitcode`, but on the (LTO) linker level. Having bitcode alongside native code has many use-cases. To give an example, the MacOS linker can create a `-bitcode_bundle` section containing bitcode. Also, having this feature built into LLVM is an alternative to 3rd party tools such as [[ https://github.com/travitch/whole-program-llvm | wllvm ]] or [[ https://github.com/SRI-CSL/gllvm | gllvm ]]. As with these tools, this feature simplifies creating "whole-program" llvm bitcode files, but in contrast to wllvm/gllvm it does not rely on a specific llvm frontend/driver.
Patch by Josef Eisl <josef.eisl@oracle.com>
Reviewers: #llvm, #clang, rsmith, pcc, alexshap, tejohnson
Reviewed By: tejohnson
Subscribers: tejohnson, mehdi_amini, inglorion, hiraditya, aheejin, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits, #llvm, #clang
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D68213
2019-12-12 20:59:36 +01:00
|
|
|
static cl::opt<bool> EmbedBitcode(
|
|
|
|
"lto-embed-bitcode", cl::init(false),
|
|
|
|
cl::desc("Embed LLVM bitcode in object files produced by LTO"));
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
static void EmitBitcodeSection(Module &M, const Config &Conf) {
|
[LTO] Support for embedding bitcode section during LTO
Summary:
This adds support for embedding bitcode in a binary during LTO. The libLTO gains supports the `-lto-embed-bitcode` flag. The option allows users of the LTO library to embed a bitcode section. For example, LLD can pass the option via `ld.lld -mllvm=-lto-embed-bitcode`.
This feature allows doing something comparable to `clang -c -fembed-bitcode`, but on the (LTO) linker level. Having bitcode alongside native code has many use-cases. To give an example, the MacOS linker can create a `-bitcode_bundle` section containing bitcode. Also, having this feature built into LLVM is an alternative to 3rd party tools such as [[ https://github.com/travitch/whole-program-llvm | wllvm ]] or [[ https://github.com/SRI-CSL/gllvm | gllvm ]]. As with these tools, this feature simplifies creating "whole-program" llvm bitcode files, but in contrast to wllvm/gllvm it does not rely on a specific llvm frontend/driver.
Patch by Josef Eisl <josef.eisl@oracle.com>
Reviewers: #llvm, #clang, rsmith, pcc, alexshap, tejohnson
Reviewed By: tejohnson
Subscribers: tejohnson, mehdi_amini, inglorion, hiraditya, aheejin, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits, #llvm, #clang
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D68213
2019-12-12 20:59:36 +01:00
|
|
|
if (!EmbedBitcode)
|
|
|
|
return;
|
|
|
|
SmallVector<char, 0> Buffer;
|
|
|
|
raw_svector_ostream OS(Buffer);
|
|
|
|
WriteBitcodeToFile(M, OS);
|
|
|
|
|
|
|
|
std::unique_ptr<MemoryBuffer> Buf(
|
|
|
|
new SmallVectorMemoryBuffer(std::move(Buffer)));
|
|
|
|
llvm::EmbedBitcodeInModule(M, Buf->getMemBufferRef(), /*EmbedBitcode*/ true,
|
|
|
|
/*EmbedMarker*/ false, /*CmdArgs*/ nullptr);
|
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
void codegen(const Config &Conf, TargetMachine *TM, AddStreamFn AddStream,
|
2016-09-07 03:08:31 +02:00
|
|
|
unsigned Task, Module &Mod) {
|
|
|
|
if (Conf.PreCodeGenModuleHook && !Conf.PreCodeGenModuleHook(Task, Mod))
|
2016-08-11 16:58:12 +02:00
|
|
|
return;
|
|
|
|
|
[LTO] Support for embedding bitcode section during LTO
Summary:
This adds support for embedding bitcode in a binary during LTO. The libLTO gains supports the `-lto-embed-bitcode` flag. The option allows users of the LTO library to embed a bitcode section. For example, LLD can pass the option via `ld.lld -mllvm=-lto-embed-bitcode`.
This feature allows doing something comparable to `clang -c -fembed-bitcode`, but on the (LTO) linker level. Having bitcode alongside native code has many use-cases. To give an example, the MacOS linker can create a `-bitcode_bundle` section containing bitcode. Also, having this feature built into LLVM is an alternative to 3rd party tools such as [[ https://github.com/travitch/whole-program-llvm | wllvm ]] or [[ https://github.com/SRI-CSL/gllvm | gllvm ]]. As with these tools, this feature simplifies creating "whole-program" llvm bitcode files, but in contrast to wllvm/gllvm it does not rely on a specific llvm frontend/driver.
Patch by Josef Eisl <josef.eisl@oracle.com>
Reviewers: #llvm, #clang, rsmith, pcc, alexshap, tejohnson
Reviewed By: tejohnson
Subscribers: tejohnson, mehdi_amini, inglorion, hiraditya, aheejin, steven_wu, dexonsmith, dang, cfe-commits, llvm-commits, #llvm, #clang
Tags: #clang, #llvm
Differential Revision: https://reviews.llvm.org/D68213
2019-12-12 20:59:36 +01:00
|
|
|
EmitBitcodeSection(Mod, Conf);
|
|
|
|
|
2018-05-21 22:26:49 +02:00
|
|
|
std::unique_ptr<ToolOutputFile> DwoOut;
|
2019-06-15 17:38:51 +02:00
|
|
|
SmallString<1024> DwoFile(Conf.SplitDwarfOutput);
|
2018-04-13 07:03:28 +02:00
|
|
|
if (!Conf.DwoDir.empty()) {
|
2018-05-21 22:26:49 +02: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-05-31 20:25:59 +02:00
|
|
|
DwoFile = Conf.DwoDir;
|
2018-05-21 22:26:49 +02:00
|
|
|
sys::path::append(DwoFile, std::to_string(Task) + ".dwo");
|
2019-06-15 17:38:51 +02:00
|
|
|
TM->Options.MCOptions.SplitDwarfFile = DwoFile.str().str();
|
|
|
|
} else
|
|
|
|
TM->Options.MCOptions.SplitDwarfFile = Conf.SplitDwarfFile;
|
2018-05-31 20:25:59 +02:00
|
|
|
|
|
|
|
if (!DwoFile.empty()) {
|
|
|
|
std::error_code EC;
|
2019-08-15 17:54:37 +02:00
|
|
|
DwoOut = std::make_unique<ToolOutputFile>(DwoFile, EC, sys::fs::OF_None);
|
2018-05-21 22:26:49 +02:00
|
|
|
if (EC)
|
|
|
|
report_fatal_error("Failed to open " + DwoFile + ": " + EC.message());
|
2018-04-13 07:03:28 +02:00
|
|
|
}
|
|
|
|
|
2016-09-23 23:33:43 +02:00
|
|
|
auto Stream = AddStream(Task);
|
2016-08-11 16:58:12 +02:00
|
|
|
legacy::PassManager CodeGenPasses;
|
2018-05-21 22:26:49 +02:00
|
|
|
if (TM->addPassesToEmitFile(CodeGenPasses, *Stream->OS,
|
|
|
|
DwoOut ? &DwoOut->os() : nullptr,
|
2018-05-21 22:16:41 +02:00
|
|
|
Conf.CGFileType))
|
2016-08-11 16:58:12 +02:00
|
|
|
report_fatal_error("Failed to setup codegen");
|
2016-09-07 03:08:31 +02:00
|
|
|
CodeGenPasses.run(Mod);
|
2018-05-21 22:26:49 +02:00
|
|
|
|
|
|
|
if (DwoOut)
|
|
|
|
DwoOut->keep();
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
void splitCodeGen(const Config &C, TargetMachine *TM, AddStreamFn AddStream,
|
2016-08-11 16:58:12 +02:00
|
|
|
unsigned ParallelCodeGenParallelismLevel,
|
2016-09-07 03:08:31 +02:00
|
|
|
std::unique_ptr<Module> Mod) {
|
2016-08-11 16:58:12 +02:00
|
|
|
ThreadPool CodegenThreadPool(ParallelCodeGenParallelismLevel);
|
|
|
|
unsigned ThreadCount = 0;
|
|
|
|
const Target *T = &TM->getTarget();
|
|
|
|
|
|
|
|
SplitModule(
|
2016-09-07 03:08:31 +02:00
|
|
|
std::move(Mod), ParallelCodeGenParallelismLevel,
|
2016-08-11 16:58:12 +02: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-14 20:11:32 +01:00
|
|
|
WriteBitcodeToFile(*MPart, BCOS);
|
2016-08-11 16:58:12 +02:00
|
|
|
|
|
|
|
// Enqueue the task
|
|
|
|
CodegenThreadPool.async(
|
|
|
|
[&](const SmallString<0> &BC, unsigned ThreadId) {
|
|
|
|
LTOLLVMContext Ctx(C);
|
2016-11-13 08:00:17 +01:00
|
|
|
Expected<std::unique_ptr<Module>> MOrErr = parseBitcodeFile(
|
2016-08-11 16:58:12 +02: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-22 23:11:35 +02:00
|
|
|
createTargetMachine(C, T, *MPartInCtx);
|
2016-08-23 23:30:12 +02:00
|
|
|
|
2016-09-23 23:33:43 +02:00
|
|
|
codegen(C, TM.get(), AddStream, ThreadId, *MPartInCtx);
|
2016-08-11 16:58:12 +02: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 05:29:28 +02: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 03:28:36 +02:00
|
|
|
CodegenThreadPool.wait();
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
Expected<const Target *> initAndLookupTarget(const Config &C, Module &Mod) {
|
2016-08-11 16:58:12 +02:00
|
|
|
if (!C.OverrideTriple.empty())
|
2016-09-07 03:08:31 +02:00
|
|
|
Mod.setTargetTriple(C.OverrideTriple);
|
|
|
|
else if (Mod.getTargetTriple().empty())
|
|
|
|
Mod.setTargetTriple(C.DefaultTriple);
|
2016-08-11 16:58:12 +02:00
|
|
|
|
|
|
|
std::string Msg;
|
2016-09-07 03:08:31 +02:00
|
|
|
const Target *T = TargetRegistry::lookupTarget(Mod.getTargetTriple(), Msg);
|
2016-08-11 16:58:12 +02:00
|
|
|
if (!T)
|
|
|
|
return make_error<StringError>(Msg, inconvertibleErrorCode());
|
|
|
|
return T;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-03 22:24:12 +02:00
|
|
|
static Error
|
2017-09-23 03:03:17 +02:00
|
|
|
finalizeOptimizationRemarks(std::unique_ptr<ToolOutputFile> DiagOutputFile) {
|
2017-02-13 15:39:51 +01: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-03 22:24:12 +02:00
|
|
|
return Error::success();
|
2017-02-13 15:39:51 +01:00
|
|
|
DiagOutputFile->keep();
|
|
|
|
DiagOutputFile->os().flush();
|
2018-05-03 22:24:12 +02:00
|
|
|
return Error::success();
|
2017-02-13 15:39:51 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
Error lto::backend(const Config &C, AddStreamFn AddStream,
|
2016-08-11 16:58:12 +02:00
|
|
|
unsigned ParallelCodeGenParallelismLevel,
|
2017-01-20 23:18:52 +01:00
|
|
|
std::unique_ptr<Module> Mod,
|
|
|
|
ModuleSummaryIndex &CombinedIndex) {
|
2016-09-07 03:08:31 +02:00
|
|
|
Expected<const Target *> TOrErr = initAndLookupTarget(C, *Mod);
|
2016-08-11 16:58:12 +02:00
|
|
|
if (!TOrErr)
|
|
|
|
return TOrErr.takeError();
|
|
|
|
|
2017-05-22 23:11:35 +02:00
|
|
|
std::unique_ptr<TargetMachine> TM = createTargetMachine(C, *TOrErr, *Mod);
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2017-02-12 04:31:30 +01:00
|
|
|
// Setup optimization remarks.
|
2019-06-17 18:06:00 +02:00
|
|
|
auto DiagFileOrErr = lto::setupOptimizationRemarks(
|
|
|
|
Mod->getContext(), C.RemarksFilename, C.RemarksPasses, C.RemarksFormat,
|
|
|
|
C.RemarksWithHotness);
|
2017-02-12 04:31:30 +01:00
|
|
|
if (!DiagFileOrErr)
|
|
|
|
return DiagFileOrErr.takeError();
|
2017-02-13 15:39:51 +01:00
|
|
|
auto DiagnosticOutputFile = std::move(*DiagFileOrErr);
|
2017-02-12 04:31:30 +01:00
|
|
|
|
2017-02-13 15:39:51 +01:00
|
|
|
if (!C.CodeGenOnly) {
|
2017-03-22 19:22:59 +01:00
|
|
|
if (!opt(C, TM.get(), 0, *Mod, /*IsThinLTO=*/false,
|
2018-05-03 22:24:12 +02:00
|
|
|
/*ExportSummary=*/&CombinedIndex, /*ImportSummary=*/nullptr))
|
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2017-02-13 15:39:51 +01:00
|
|
|
}
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2016-08-23 23:30:12 +02:00
|
|
|
if (ParallelCodeGenParallelismLevel == 1) {
|
2016-09-23 23:33:43 +02:00
|
|
|
codegen(C, TM.get(), AddStream, 0, *Mod);
|
2016-08-23 23:30:12 +02:00
|
|
|
} else {
|
2016-09-23 23:33:43 +02:00
|
|
|
splitCodeGen(C, TM.get(), AddStream, ParallelCodeGenParallelismLevel,
|
2016-09-07 03:08:31 +02:00
|
|
|
std::move(Mod));
|
2016-08-23 23:30:12 +02:00
|
|
|
}
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|
|
|
|
|
2018-01-29 09:03:30 +01:00
|
|
|
static void dropDeadSymbols(Module &Mod, const GVSummaryMapTy &DefinedGlobals,
|
|
|
|
const ModuleSummaryIndex &Index) {
|
2018-02-06 01:43:39 +01:00
|
|
|
std::vector<GlobalValue*> DeadGVs;
|
2018-02-05 16:44:27 +01:00
|
|
|
for (auto &GV : Mod.global_values())
|
2018-02-02 13:21:26 +01:00
|
|
|
if (GlobalValueSummary *GVS = DefinedGlobals.lookup(GV.getGUID()))
|
2018-02-06 01:43:39 +01: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 09:03:30 +01:00
|
|
|
}
|
|
|
|
|
2020-01-13 21:23:34 +01:00
|
|
|
Error lto::thinBackend(const Config &Conf, unsigned Task, AddStreamFn AddStream,
|
2017-03-22 19:22:59 +01:00
|
|
|
Module &Mod, const ModuleSummaryIndex &CombinedIndex,
|
2016-08-11 16:58:12 +02:00
|
|
|
const FunctionImporter::ImportMapTy &ImportList,
|
|
|
|
const GVSummaryMapTy &DefinedGlobals,
|
2016-12-14 02:17:59 +01:00
|
|
|
MapVector<StringRef, BitcodeModule> &ModuleMap) {
|
2016-08-16 02:44:46 +02:00
|
|
|
Expected<const Target *> TOrErr = initAndLookupTarget(Conf, Mod);
|
2016-08-11 16:58:12 +02:00
|
|
|
if (!TOrErr)
|
|
|
|
return TOrErr.takeError();
|
|
|
|
|
2017-05-22 23:11:35 +02:00
|
|
|
std::unique_ptr<TargetMachine> TM = createTargetMachine(Conf, *TOrErr, Mod);
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2018-05-03 22:24:12 +02:00
|
|
|
// Setup optimization remarks.
|
|
|
|
auto DiagFileOrErr = lto::setupOptimizationRemarks(
|
2019-03-12 22:22:27 +01:00
|
|
|
Mod.getContext(), Conf.RemarksFilename, Conf.RemarksPasses,
|
2019-06-17 18:06:00 +02:00
|
|
|
Conf.RemarksFormat, Conf.RemarksWithHotness, Task);
|
2018-05-03 22:24:12 +02:00
|
|
|
if (!DiagFileOrErr)
|
|
|
|
return DiagFileOrErr.takeError();
|
|
|
|
auto DiagnosticOutputFile = std::move(*DiagFileOrErr);
|
|
|
|
|
2016-08-22 08:25:41 +02:00
|
|
|
if (Conf.CodeGenOnly) {
|
2016-09-23 23:33:43 +02:00
|
|
|
codegen(Conf, TM.get(), AddStream, Task, Mod);
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-22 08:25:41 +02:00
|
|
|
}
|
|
|
|
|
2016-08-16 02:44:46 +02:00
|
|
|
if (Conf.PreOptModuleHook && !Conf.PreOptModuleHook(Task, Mod))
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2016-08-16 02:44:46 +02:00
|
|
|
renameModuleForThinLTO(Mod, CombinedIndex);
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2018-01-29 09:03:30 +01: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-08 21:10:07 +01:00
|
|
|
thinLTOResolvePrevailingInModule(Mod, DefinedGlobals);
|
2016-08-18 02:59:24 +02:00
|
|
|
|
2016-08-16 02:44:46 +02:00
|
|
|
if (Conf.PostPromoteModuleHook && !Conf.PostPromoteModuleHook(Task, Mod))
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
|
|
|
|
if (!DefinedGlobals.empty())
|
2016-08-16 02:44:46 +02:00
|
|
|
thinLTOInternalizeModule(Mod, DefinedGlobals);
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2016-08-16 02:44:46 +02:00
|
|
|
if (Conf.PostInternalizeModuleHook &&
|
|
|
|
!Conf.PostInternalizeModuleHook(Task, Mod))
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
|
|
|
|
auto ModuleLoader = [&](StringRef Identifier) {
|
2016-08-23 18:53:34 +02:00
|
|
|
assert(Mod.getContext().isODRUniquingDebugTypes() &&
|
2016-09-14 20:48:43 +02:00
|
|
|
"ODR Type uniquing should be enabled on the context");
|
2016-12-14 02:17:59 +01:00
|
|
|
auto I = ModuleMap.find(Identifier);
|
|
|
|
assert(I != ModuleMap.end());
|
|
|
|
return I->second.getLazyModule(Mod.getContext(),
|
2016-12-16 22:25:01 +01:00
|
|
|
/*ShouldLazyLoadMetadata=*/true,
|
|
|
|
/*IsImporting*/ true);
|
2016-08-11 16:58:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
FunctionImporter Importer(CombinedIndex, ModuleLoader);
|
2016-11-09 18:49:19 +01:00
|
|
|
if (Error Err = Importer.importFunctions(Mod, ImportList).takeError())
|
|
|
|
return Err;
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2016-08-16 02:44:46 +02:00
|
|
|
if (Conf.PostImportModuleHook && !Conf.PostImportModuleHook(Task, Mod))
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2017-03-22 19:22:59 +01:00
|
|
|
if (!opt(Conf, TM.get(), Task, Mod, /*IsThinLTO=*/true,
|
|
|
|
/*ExportSummary=*/nullptr, /*ImportSummary=*/&CombinedIndex))
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
|
2016-09-23 23:33:43 +02:00
|
|
|
codegen(Conf, TM.get(), AddStream, Task, Mod);
|
2018-05-03 22:24:12 +02:00
|
|
|
return finalizeOptimizationRemarks(std::move(DiagnosticOutputFile));
|
2016-08-11 16:58:12 +02:00
|
|
|
}
|