blob: 76b65452f722239bc6a0d05fb93895387ccf9921 [file] [log] [blame]
Rui Ueyama25992482016-03-22 20:52:10 +00001//===- LTO.cpp ------------------------------------------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Rui Ueyama25992482016-03-22 20:52:10 +00006//
7//===----------------------------------------------------------------------===//
8
9#include "LTO.h"
10#include "Config.h"
Rui Ueyama25992482016-03-22 20:52:10 +000011#include "InputFiles.h"
Rui Ueyama3f851702017-10-02 21:00:41 +000012#include "LinkerScript.h"
Rafael Espindola4b075bb2017-07-26 23:39:10 +000013#include "SymbolTable.h"
Rui Ueyama25992482016-03-22 20:52:10 +000014#include "Symbols.h"
Bob Haarmanb8a59c82017-10-25 22:28:38 +000015#include "lld/Common/ErrorHandler.h"
Rui Ueyama3f851702017-10-02 21:00:41 +000016#include "lld/Common/TargetOptionsCommandFlags.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000017#include "llvm/ADT/STLExtras.h"
Rui Ueyama8c6a5aa2016-11-05 22:37:59 +000018#include "llvm/ADT/SmallString.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000019#include "llvm/ADT/StringRef.h"
20#include "llvm/ADT/Twine.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000021#include "llvm/BinaryFormat/ELF.h"
Rumeet Dhindsad366e362018-05-02 21:40:07 +000022#include "llvm/Bitcode/BitcodeReader.h"
23#include "llvm/Bitcode/BitcodeWriter.h"
Davide Italiano786d8e32016-09-29 00:40:08 +000024#include "llvm/IR/DiagnosticPrinter.h"
Peter Collingbournee02775f2017-03-01 23:00:10 +000025#include "llvm/LTO/Caching.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000026#include "llvm/LTO/Config.h"
Davide Italiano786d8e32016-09-29 00:40:08 +000027#include "llvm/LTO/LTO.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000028#include "llvm/Object/SymbolicFile.h"
29#include "llvm/Support/CodeGen.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000030#include "llvm/Support/Error.h"
31#include "llvm/Support/FileSystem.h"
32#include "llvm/Support/MemoryBuffer.h"
Eugene Zelenko22886a22016-11-05 01:00:56 +000033#include <algorithm>
34#include <cstddef>
35#include <memory>
36#include <string>
37#include <system_error>
38#include <vector>
Rui Ueyama25992482016-03-22 20:52:10 +000039
40using namespace llvm;
41using namespace llvm::object;
42using namespace llvm::ELF;
43
44using namespace lld;
45using namespace lld::elf;
46
Rui Ueyama66a9f252018-05-07 17:46:28 +000047// Creates an empty file to store a list of object files for final
Rumeet Dhindsad366e362018-05-02 21:40:07 +000048// linking of distributed ThinLTO.
Rui Ueyama66a9f252018-05-07 17:46:28 +000049static std::unique_ptr<raw_fd_ostream> openFile(StringRef File) {
Rumeet Dhindsad366e362018-05-02 21:40:07 +000050 std::error_code EC;
Rui Ueyama66a9f252018-05-07 17:46:28 +000051 auto Ret =
52 llvm::make_unique<raw_fd_ostream>(File, EC, sys::fs::OpenFlags::F_None);
Rui Ueyamad54f1c22018-05-07 22:11:24 +000053 if (EC) {
54 error("cannot open " + File + ": " + EC.message());
55 return nullptr;
56 }
Rui Ueyama66a9f252018-05-07 17:46:28 +000057 return Ret;
Rumeet Dhindsad366e362018-05-02 21:40:07 +000058}
59
Rui Ueyamad54f1c22018-05-07 22:11:24 +000060static std::string getThinLTOOutputFile(StringRef ModulePath) {
61 return lto::getThinLTOOutputFile(ModulePath,
62 Config->ThinLTOPrefixReplace.first,
Rumeet Dhindsa4fb51192018-05-07 23:14:12 +000063 Config->ThinLTOPrefixReplace.second);
Rui Ueyamad54f1c22018-05-07 22:11:24 +000064}
65
Rui Ueyama397dffd2018-05-07 23:24:07 +000066static lto::Config createConfig() {
67 lto::Config C;
Davide Italianod26c4a12016-05-15 19:29:38 +000068
Peter Collingbourne82a7f142018-08-06 20:12:12 +000069 // LLD supports the new relocations and address-significance tables.
Rui Ueyama397dffd2018-05-07 23:24:07 +000070 C.Options = InitTargetOptionsFromCodeGenFlags();
71 C.Options.RelaxELFRelocations = true;
Peter Collingbourne82a7f142018-08-06 20:12:12 +000072 C.Options.EmitAddrsig = true;
Davide Italianodf24d5b2016-06-02 22:58:11 +000073
Davide Italiano957f1202017-07-24 20:15:07 +000074 // Always emit a section per function/datum with LTO.
Rui Ueyama397dffd2018-05-07 23:24:07 +000075 C.Options.FunctionSections = true;
76 C.Options.DataSections = true;
Davide Italiano1f4e29c2017-07-24 19:38:13 +000077
Evgeniy Stepanovf12ac5b2017-05-22 21:11:44 +000078 if (Config->Relocatable)
Rui Ueyama397dffd2018-05-07 23:24:07 +000079 C.RelocModel = None;
Evgeniy Stepanovf12ac5b2017-05-22 21:11:44 +000080 else if (Config->Pic)
Rui Ueyama397dffd2018-05-07 23:24:07 +000081 C.RelocModel = Reloc::PIC_;
Evgeniy Stepanovf12ac5b2017-05-22 21:11:44 +000082 else
Rui Ueyama397dffd2018-05-07 23:24:07 +000083 C.RelocModel = Reloc::Static;
84
85 C.CodeModel = GetCodeModelFromCMModel();
86 C.DisableVerify = Config->DisableVerify;
87 C.DiagHandler = diagnosticHandler;
88 C.OptLevel = Config->LTOO;
89 C.CPU = GetCPUStr();
Fangrui Songccfc8412018-11-01 20:02:49 +000090 C.MAttrs = GetMAttrs();
Davide Italianodf24d5b2016-06-02 22:58:11 +000091
Davide Italiano786d8e32016-09-29 00:40:08 +000092 // Set up a custom pipeline if we've been asked to.
Rui Ueyama397dffd2018-05-07 23:24:07 +000093 C.OptPipeline = Config->LTONewPmPasses;
94 C.AAPipeline = Config->LTOAAPipeline;
Rui Ueyama25992482016-03-22 20:52:10 +000095
Davide Italianodb4b0a72017-02-13 17:49:18 +000096 // Set up optimization remarks if we've been asked to.
Rui Ueyama397dffd2018-05-07 23:24:07 +000097 C.RemarksFilename = Config->OptRemarksFilename;
98 C.RemarksWithHotness = Config->OptRemarksWithHotness;
99
100 C.SampleProfile = Config->LTOSampleProfile;
101 C.UseNewPM = Config->LTONewPassManager;
102 C.DebugPassManager = Config->LTODebugPassManager;
Yunlian Jiang496fb3e2018-07-16 17:55:48 +0000103 C.DwoDir = Config->DwoDir;
Davide Italianodb4b0a72017-02-13 17:49:18 +0000104
Rui Ueyama9f499902018-12-14 21:58:49 +0000105 if (Config->EmitLLVM) {
106 C.PostInternalizeModuleHook = [](size_t Task, const Module &M) {
107 if (std::unique_ptr<raw_fd_ostream> OS = openFile(Config->OutputFile))
108 WriteBitcodeToFile(M, *OS, false);
109 return false;
110 };
111 }
112
Rui Ueyama25992482016-03-22 20:52:10 +0000113 if (Config->SaveTemps)
Rui Ueyama397dffd2018-05-07 23:24:07 +0000114 checkError(C.addSaveTemps(Config->OutputFile.str() + ".",
115 /*UseInputModulePath*/ true));
116 return C;
117}
Davide Italiano786d8e32016-09-29 00:40:08 +0000118
Rui Ueyama397dffd2018-05-07 23:24:07 +0000119BitcodeCompiler::BitcodeCompiler() {
Rui Ueyama98e4a5c2018-09-11 14:37:27 +0000120 // Initialize IndexFile.
121 if (!Config->ThinLTOIndexOnlyArg.empty())
122 IndexFile = openFile(Config->ThinLTOIndexOnlyArg);
123
Rui Ueyama397dffd2018-05-07 23:24:07 +0000124 // Initialize LTOObj.
Davide Italiano7a7b35a2016-10-10 18:12:53 +0000125 lto::ThinBackend Backend;
Rumeet Dhindsad366e362018-05-02 21:40:07 +0000126 if (Config->ThinLTOIndexOnly) {
Rui Ueyama98e4a5c2018-09-11 14:37:27 +0000127 auto OnIndexWrite = [&](StringRef S) { ThinIndices.erase(S); };
Rui Ueyama4454b3d2018-05-07 17:59:43 +0000128 Backend = lto::createWriteIndexesThinBackend(
129 Config->ThinLTOPrefixReplace.first, Config->ThinLTOPrefixReplace.second,
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000130 Config->ThinLTOEmitImportsFiles, IndexFile.get(), OnIndexWrite);
Rui Ueyama397dffd2018-05-07 23:24:07 +0000131 } else if (Config->ThinLTOJobs != -1U) {
132 Backend = lto::createInProcessThinBackend(Config->ThinLTOJobs);
Rumeet Dhindsad366e362018-05-02 21:40:07 +0000133 }
134
Rui Ueyama397dffd2018-05-07 23:24:07 +0000135 LTOObj = llvm::make_unique<lto::LTO>(createConfig(), Backend,
Rui Ueyama66a9f252018-05-07 17:46:28 +0000136 Config->LTOPartitions);
Rui Ueyama25992482016-03-22 20:52:10 +0000137
Rui Ueyama397dffd2018-05-07 23:24:07 +0000138 // Initialize UsedStartStop.
Rui Ueyamaf52496e2017-11-03 21:21:47 +0000139 for (Symbol *Sym : Symtab->getSymbols()) {
Rui Ueyama98e4a5c2018-09-11 14:37:27 +0000140 StringRef S = Sym->getName();
Rafael Espindola4b075bb2017-07-26 23:39:10 +0000141 for (StringRef Prefix : {"__start_", "__stop_"})
Rui Ueyama98e4a5c2018-09-11 14:37:27 +0000142 if (S.startswith(Prefix))
143 UsedStartStop.insert(S.substr(Prefix.size()));
Rafael Espindola4b075bb2017-07-26 23:39:10 +0000144 }
145}
Rafael Espindolaae605c12016-04-21 20:35:25 +0000146
Eugene Zelenko22886a22016-11-05 01:00:56 +0000147BitcodeCompiler::~BitcodeCompiler() = default;
Rui Ueyama412c8022016-04-22 21:16:18 +0000148
Rui Ueyamaf52496e2017-11-03 21:21:47 +0000149static void undefine(Symbol *S) {
Rafael Espindolabec37652017-11-17 01:37:50 +0000150 replaceSymbol<Undefined>(S, nullptr, S->getName(), STB_GLOBAL, STV_DEFAULT,
151 S->Type);
Peter Collingbourne0ef38742016-05-12 19:46:14 +0000152}
153
Peter Smith3a52eb02017-02-01 10:26:03 +0000154void BitcodeCompiler::add(BitcodeFile &F) {
Davide Italiano786d8e32016-09-29 00:40:08 +0000155 lto::InputFile &Obj = *F.Obj;
Rui Ueyamad31b54b2018-05-08 17:50:54 +0000156 bool IsExec = !Config->Shared && !Config->Relocatable;
Rumeet Dhindsad366e362018-05-02 21:40:07 +0000157
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000158 if (Config->ThinLTOIndexOnly)
Rui Ueyama98e4a5c2018-09-11 14:37:27 +0000159 ThinIndices.insert(Obj.getName());
Rumeet Dhindsad366e362018-05-02 21:40:07 +0000160
Rui Ueyama2f9fa422018-05-08 17:50:43 +0000161 ArrayRef<Symbol *> Syms = F.getSymbols();
Rui Ueyamad31b54b2018-05-08 17:50:54 +0000162 ArrayRef<lto::InputFile::Symbol> ObjSyms = Obj.symbols();
Davide Italiano786d8e32016-09-29 00:40:08 +0000163 std::vector<lto::SymbolResolution> Resols(Syms.size());
Davide Italiano334fce92016-05-11 01:07:22 +0000164
Davide Italiano786d8e32016-09-29 00:40:08 +0000165 // Provide a resolution to the LTO API for each symbol.
Rui Ueyamad31b54b2018-05-08 17:50:54 +0000166 for (size_t I = 0, E = Syms.size(); I != E; ++I) {
167 Symbol *Sym = Syms[I];
168 const lto::InputFile::Symbol &ObjSym = ObjSyms[I];
169 lto::SymbolResolution &R = Resols[I];
Davide Italiano86f2bd52016-03-29 21:46:35 +0000170
Davide Italiano786d8e32016-09-29 00:40:08 +0000171 // Ideally we shouldn't check for SF_Undefined but currently IRObjectFile
172 // reports two symbols for module ASM defined. Without this check, lld
173 // flags an undefined in IR with a definition in ASM as prevailing.
174 // Once IRObjectFile is fixed to report only one symbol this hack can
175 // be removed.
Rafael Espindoladfebd362017-11-29 22:47:35 +0000176 R.Prevailing = !ObjSym.isUndefined() && Sym->File == &F;
Peter Collingbourne3ad1c1e2016-05-05 17:13:49 +0000177
George Rimar3a1af222017-08-22 08:36:54 +0000178 // We ask LTO to preserve following global symbols:
179 // 1) All symbols when doing relocatable link, so that them can be used
180 // for doing final link.
181 // 2) Symbols that are used in regular objects.
182 // 3) C named sections if we have corresponding __start_/__stop_ symbol.
183 // 4) Symbols that are defined in bitcode files and used for dynamic linking.
184 R.VisibleToRegularObj = Config->Relocatable || Sym->IsUsedInRegularObj ||
Rafael Espindolaaffe7202017-07-25 22:51:05 +0000185 (R.Prevailing && Sym->includeInDynsym()) ||
Rafael Espindola4b075bb2017-07-26 23:39:10 +0000186 UsedStartStop.count(ObjSym.getSectionName());
Dmitry Mikulinc84e0ee2018-02-07 00:49:51 +0000187 const auto *DR = dyn_cast<Defined>(Sym);
Rafael Espindolac6df38c2018-01-16 16:49:05 +0000188 R.FinalDefinitionInLinkageUnit =
Rui Ueyamad31b54b2018-05-08 17:50:54 +0000189 (IsExec || Sym->Visibility != STV_DEFAULT) && DR &&
Dmitry Mikulinc84e0ee2018-02-07 00:49:51 +0000190 // Skip absolute symbols from ELF objects, otherwise PC-rel relocations
191 // will be generated by for them, triggering linker errors.
192 // Symbol section is always null for bitcode symbols, hence the check
Dmitry Mikulin8ddd9222018-02-08 04:25:52 +0000193 // for isElf(). Skip linker script defined symbols as well: they have
194 // no File defined.
195 !(DR->Section == nullptr && (!Sym->File || Sym->File->isElf()));
Rafael Espindolac6df38c2018-01-16 16:49:05 +0000196
Davide Italiano786d8e32016-09-29 00:40:08 +0000197 if (R.Prevailing)
Peter Smith3a52eb02017-02-01 10:26:03 +0000198 undefine(Sym);
George Rimard28c26b2017-09-25 09:31:43 +0000199
George Rimarc4ccfb52018-01-30 09:04:27 +0000200 // We tell LTO to not apply interprocedural optimization for wrapped
201 // (with --wrap) symbols because otherwise LTO would inline them while
202 // their values are still not final.
203 R.LinkerRedefined = !Sym->CanInline;
Rui Ueyama25992482016-03-22 20:52:10 +0000204 }
Davide Italiano3bfa0812016-11-26 05:37:04 +0000205 checkError(LTOObj->add(std::move(F.Obj), Resols));
Davide Italianobc176632016-04-15 22:38:10 +0000206}
207
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000208static void createEmptyIndex(StringRef ModulePath) {
209 std::string Path = replaceThinLTOSuffix(getThinLTOOutputFile(ModulePath));
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000210 std::unique_ptr<raw_fd_ostream> OS = openFile(Path + ".thinlto.bc");
211 if (!OS)
212 return;
213
Teresa Johnson566b4022018-06-06 22:22:13 +0000214 ModuleSummaryIndex M(/*HaveGVs*/ false);
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000215 M.setSkipModuleByDistributedBackend();
216 WriteIndexToFile(M, *OS);
217
218 if (Config->ThinLTOEmitImportsFiles)
219 openFile(Path + ".imports");
220}
221
Rui Ueyama25992482016-03-22 20:52:10 +0000222// Merge all the bitcode files we have seen, codegen the result
Davide Italiano786d8e32016-09-29 00:40:08 +0000223// and return the resulting ObjectFile(s).
Rui Ueyama38dbd3e2016-09-14 00:05:51 +0000224std::vector<InputFile *> BitcodeCompiler::compile() {
Davide Italiano3bfa0812016-11-26 05:37:04 +0000225 unsigned MaxTasks = LTOObj->getMaxTasks();
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000226 Buf.resize(MaxTasks);
Peter Collingbournee02775f2017-03-01 23:00:10 +0000227 Files.resize(MaxTasks);
Davide Italiano828ac5412016-03-28 15:44:21 +0000228
Peter Collingbournee02775f2017-03-01 23:00:10 +0000229 // The --thinlto-cache-dir option specifies the path to a directory in which
230 // to cache native object files for ThinLTO incremental builds. If a path was
231 // specified, configure LTO to use it as the cache directory.
232 lto::NativeObjectCache Cache;
233 if (!Config->ThinLTOCacheDir.empty())
Peter Collingbourne128423f2017-03-17 00:34:07 +0000234 Cache = check(
235 lto::localCache(Config->ThinLTOCacheDir,
Teresa Johnson2c2ed3c2018-02-20 20:21:59 +0000236 [&](size_t Task, std::unique_ptr<MemoryBuffer> MB) {
237 Files[Task] = std::move(MB);
238 }));
Peter Collingbournee02775f2017-03-01 23:00:10 +0000239
240 checkError(LTOObj->run(
241 [&](size_t Task) {
242 return llvm::make_unique<lto::NativeObjectStream>(
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000243 llvm::make_unique<raw_svector_ostream>(Buf[Task]));
Peter Collingbournee02775f2017-03-01 23:00:10 +0000244 },
245 Cache));
Rafael Espindolaabf6c652016-04-17 23:20:08 +0000246
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000247 // Emit empty index files for non-indexed files
Rui Ueyama98e4a5c2018-09-11 14:37:27 +0000248 for (StringRef S : ThinIndices) {
249 std::string Path = getThinLTOOutputFile(S);
250 openFile(Path + ".thinlto.bc");
251 if (Config->ThinLTOEmitImportsFiles)
252 openFile(Path + ".imports");
Davide Italiano786d8e32016-09-29 00:40:08 +0000253 }
Peter Collingbournee02775f2017-03-01 23:00:10 +0000254
Rui Ueyamad54f1c22018-05-07 22:11:24 +0000255 // If LazyObjFile has not been added to link, emit empty index files.
256 // This is needed because this is what GNU gold plugin does and we have a
257 // distributed build system that depends on that behavior.
258 if (Config->ThinLTOIndexOnly) {
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000259 for (LazyObjFile *F : LazyObjFiles)
260 if (!F->AddedToLink && isBitcode(F->MB))
261 createEmptyIndex(F->getName());
Rui Ueyamad54f1c22018-05-07 22:11:24 +0000262
Rumeet Dhindsab5b7d6e2018-05-08 22:37:57 +0000263 if (!Config->LTOObjPath.empty())
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000264 saveBuffer(Buf[0], Config->LTOObjPath);
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000265
Rui Ueyamad54f1c22018-05-07 22:11:24 +0000266 // ThinLTO with index only option is required to generate only the index
267 // files. After that, we exit from linker and ThinLTO backend runs in a
268 // distributed environment.
Rui Ueyama554adb22018-05-07 22:11:34 +0000269 if (IndexFile)
270 IndexFile->close();
271 return {};
Rui Ueyamad54f1c22018-05-07 22:11:24 +0000272 }
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000273
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000274 if (!Config->ThinLTOCacheDir.empty())
275 pruneCache(Config->ThinLTOCacheDir, Config->ThinLTOCachePolicy);
276
277 std::vector<InputFile *> Ret;
278 for (unsigned I = 0; I != MaxTasks; ++I) {
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000279 if (Buf[I].empty())
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000280 continue;
281 if (Config->SaveTemps) {
282 if (I == 0)
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000283 saveBuffer(Buf[I], Config->OutputFile + ".lto.o");
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000284 else
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000285 saveBuffer(Buf[I], Config->OutputFile + Twine(I) + ".lto.o");
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000286 }
Rui Ueyamaf06d4942018-05-17 18:27:12 +0000287 InputFile *Obj = createObjectFile(MemoryBufferRef(Buf[I], "lto.tmp"));
Rumeet Dhindsa18883262018-05-08 20:12:07 +0000288 Ret.push_back(Obj);
289 }
Rumeet Dhindsad366e362018-05-02 21:40:07 +0000290
Peter Collingbournee02775f2017-03-01 23:00:10 +0000291 for (std::unique_ptr<MemoryBuffer> &File : Files)
292 if (File)
293 Ret.push_back(createObjectFile(*File));
Davide Italiano786d8e32016-09-29 00:40:08 +0000294 return Ret;
Rui Ueyama961f2ff2016-03-23 21:19:27 +0000295}