xref: /llvm-project-15.0.7/lld/ELF/LTO.cpp (revision 57a2eaf3)
1 //===- LTO.cpp ------------------------------------------------------------===//
2 //
3 // 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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "LTO.h"
10 #include "Config.h"
11 #include "InputFiles.h"
12 #include "LinkerScript.h"
13 #include "SymbolTable.h"
14 #include "Symbols.h"
15 #include "lld/Common/Args.h"
16 #include "lld/Common/ErrorHandler.h"
17 #include "lld/Common/TargetOptionsCommandFlags.h"
18 #include "llvm/ADT/STLExtras.h"
19 #include "llvm/ADT/SmallString.h"
20 #include "llvm/ADT/StringRef.h"
21 #include "llvm/ADT/Twine.h"
22 #include "llvm/BinaryFormat/ELF.h"
23 #include "llvm/Bitcode/BitcodeReader.h"
24 #include "llvm/Bitcode/BitcodeWriter.h"
25 #include "llvm/IR/DiagnosticPrinter.h"
26 #include "llvm/LTO/Caching.h"
27 #include "llvm/LTO/Config.h"
28 #include "llvm/LTO/LTO.h"
29 #include "llvm/Object/SymbolicFile.h"
30 #include "llvm/Support/CodeGen.h"
31 #include "llvm/Support/Error.h"
32 #include "llvm/Support/FileSystem.h"
33 #include "llvm/Support/MemoryBuffer.h"
34 #include <algorithm>
35 #include <cstddef>
36 #include <memory>
37 #include <string>
38 #include <system_error>
39 #include <vector>
40 
41 using namespace llvm;
42 using namespace llvm::object;
43 using namespace llvm::ELF;
44 
45 namespace lld {
46 namespace elf {
47 
48 // Creates an empty file to store a list of object files for final
49 // linking of distributed ThinLTO.
50 static std::unique_ptr<raw_fd_ostream> openFile(StringRef file) {
51   std::error_code ec;
52   auto ret =
53       std::make_unique<raw_fd_ostream>(file, ec, sys::fs::OpenFlags::OF_None);
54   if (ec) {
55     error("cannot open " + file + ": " + ec.message());
56     return nullptr;
57   }
58   return ret;
59 }
60 
61 static std::string getThinLTOOutputFile(StringRef modulePath) {
62   return lto::getThinLTOOutputFile(
63       std::string(modulePath), std::string(config->thinLTOPrefixReplace.first),
64       std::string(config->thinLTOPrefixReplace.second));
65 }
66 
67 static lto::Config createConfig() {
68   lto::Config c;
69 
70   // LLD supports the new relocations and address-significance tables.
71   c.Options = initTargetOptionsFromCodeGenFlags();
72   c.Options.RelaxELFRelocations = true;
73   c.Options.EmitAddrsig = true;
74 
75   // Always emit a section per function/datum with LTO.
76   c.Options.FunctionSections = true;
77   c.Options.DataSections = true;
78 
79   if (auto relocModel = getRelocModelFromCMModel())
80     c.RelocModel = *relocModel;
81   else if (config->relocatable)
82     c.RelocModel = None;
83   else if (config->isPic)
84     c.RelocModel = Reloc::PIC_;
85   else
86     c.RelocModel = Reloc::Static;
87 
88   c.CodeModel = getCodeModelFromCMModel();
89   c.DisableVerify = config->disableVerify;
90   c.DiagHandler = diagnosticHandler;
91   c.OptLevel = config->ltoo;
92   c.CPU = getCPUStr();
93   c.MAttrs = getMAttrs();
94   c.CGOptLevel = args::getCGOptLevel(config->ltoo);
95 
96   c.PTO.LoopVectorization = c.OptLevel > 1;
97   c.PTO.SLPVectorization = c.OptLevel > 1;
98 
99   // Set up a custom pipeline if we've been asked to.
100   c.OptPipeline = std::string(config->ltoNewPmPasses);
101   c.AAPipeline = std::string(config->ltoAAPipeline);
102 
103   // Set up optimization remarks if we've been asked to.
104   c.RemarksFilename = std::string(config->optRemarksFilename);
105   c.RemarksPasses = std::string(config->optRemarksPasses);
106   c.RemarksWithHotness = config->optRemarksWithHotness;
107   c.RemarksFormat = std::string(config->optRemarksFormat);
108 
109   c.SampleProfile = std::string(config->ltoSampleProfile);
110   c.UseNewPM = config->ltoNewPassManager;
111   c.DebugPassManager = config->ltoDebugPassManager;
112   c.DwoDir = std::string(config->dwoDir);
113 
114   c.HasWholeProgramVisibility = config->ltoWholeProgramVisibility;
115 
116   c.TimeTraceEnabled = config->timeTraceEnabled;
117   c.TimeTraceGranularity = config->timeTraceGranularity;
118 
119   c.CSIRProfile = std::string(config->ltoCSProfileFile);
120   c.RunCSIRInstr = config->ltoCSProfileGenerate;
121 
122   if (config->emitLLVM) {
123     c.PostInternalizeModuleHook = [](size_t task, const Module &m) {
124       if (std::unique_ptr<raw_fd_ostream> os = openFile(config->outputFile))
125         WriteBitcodeToFile(m, *os, false);
126       return false;
127     };
128   }
129 
130   if (config->saveTemps)
131     checkError(c.addSaveTemps(config->outputFile.str() + ".",
132                               /*UseInputModulePath*/ true));
133   return c;
134 }
135 
136 BitcodeCompiler::BitcodeCompiler() {
137   // Initialize indexFile.
138   if (!config->thinLTOIndexOnlyArg.empty())
139     indexFile = openFile(config->thinLTOIndexOnlyArg);
140 
141   // Initialize ltoObj.
142   lto::ThinBackend backend;
143   if (config->thinLTOIndexOnly) {
144     auto onIndexWrite = [&](StringRef s) { thinIndices.erase(s); };
145     backend = lto::createWriteIndexesThinBackend(
146         std::string(config->thinLTOPrefixReplace.first),
147         std::string(config->thinLTOPrefixReplace.second),
148         config->thinLTOEmitImportsFiles, indexFile.get(), onIndexWrite);
149   } else if (config->thinLTOJobs != -1U) {
150     backend = lto::createInProcessThinBackend(config->thinLTOJobs);
151   }
152 
153   ltoObj = std::make_unique<lto::LTO>(createConfig(), backend,
154                                        config->ltoPartitions);
155 
156   // Initialize usedStartStop.
157   for (Symbol *sym : symtab->symbols()) {
158     StringRef s = sym->getName();
159     for (StringRef prefix : {"__start_", "__stop_"})
160       if (s.startswith(prefix))
161         usedStartStop.insert(s.substr(prefix.size()));
162   }
163 }
164 
165 BitcodeCompiler::~BitcodeCompiler() = default;
166 
167 void BitcodeCompiler::add(BitcodeFile &f) {
168   lto::InputFile &obj = *f.obj;
169   bool isExec = !config->shared && !config->relocatable;
170 
171   if (config->thinLTOIndexOnly)
172     thinIndices.insert(obj.getName());
173 
174   ArrayRef<Symbol *> syms = f.getSymbols();
175   ArrayRef<lto::InputFile::Symbol> objSyms = obj.symbols();
176   std::vector<lto::SymbolResolution> resols(syms.size());
177 
178   // Provide a resolution to the LTO API for each symbol.
179   for (size_t i = 0, e = syms.size(); i != e; ++i) {
180     Symbol *sym = syms[i];
181     const lto::InputFile::Symbol &objSym = objSyms[i];
182     lto::SymbolResolution &r = resols[i];
183 
184     // Ideally we shouldn't check for SF_Undefined but currently IRObjectFile
185     // reports two symbols for module ASM defined. Without this check, lld
186     // flags an undefined in IR with a definition in ASM as prevailing.
187     // Once IRObjectFile is fixed to report only one symbol this hack can
188     // be removed.
189     r.Prevailing = !objSym.isUndefined() && sym->file == &f;
190 
191     // We ask LTO to preserve following global symbols:
192     // 1) All symbols when doing relocatable link, so that them can be used
193     //    for doing final link.
194     // 2) Symbols that are used in regular objects.
195     // 3) C named sections if we have corresponding __start_/__stop_ symbol.
196     // 4) Symbols that are defined in bitcode files and used for dynamic linking.
197     r.VisibleToRegularObj = config->relocatable || sym->isUsedInRegularObj ||
198                             (r.Prevailing && sym->includeInDynsym()) ||
199                             usedStartStop.count(objSym.getSectionName());
200     const auto *dr = dyn_cast<Defined>(sym);
201     r.FinalDefinitionInLinkageUnit =
202         (isExec || sym->visibility != STV_DEFAULT) && dr &&
203         // Skip absolute symbols from ELF objects, otherwise PC-rel relocations
204         // will be generated by for them, triggering linker errors.
205         // Symbol section is always null for bitcode symbols, hence the check
206         // for isElf(). Skip linker script defined symbols as well: they have
207         // no File defined.
208         !(dr->section == nullptr && (!sym->file || sym->file->isElf()));
209 
210     if (r.Prevailing)
211       sym->replace(Undefined{nullptr, sym->getName(), STB_GLOBAL, STV_DEFAULT,
212                              sym->type});
213 
214     // We tell LTO to not apply interprocedural optimization for wrapped
215     // (with --wrap) symbols because otherwise LTO would inline them while
216     // their values are still not final.
217     r.LinkerRedefined = !sym->canInline;
218   }
219   checkError(ltoObj->add(std::move(f.obj), resols));
220 }
221 
222 // If LazyObjFile has not been added to link, emit empty index files.
223 // This is needed because this is what GNU gold plugin does and we have a
224 // distributed build system that depends on that behavior.
225 static void thinLTOCreateEmptyIndexFiles() {
226   for (LazyObjFile *f : lazyObjFiles) {
227     if (!isBitcode(f->mb))
228       continue;
229     std::string path = replaceThinLTOSuffix(getThinLTOOutputFile(f->getName()));
230     std::unique_ptr<raw_fd_ostream> os = openFile(path + ".thinlto.bc");
231     if (!os)
232       continue;
233 
234     ModuleSummaryIndex m(/*HaveGVs*/ false);
235     m.setSkipModuleByDistributedBackend();
236     WriteIndexToFile(m, *os);
237     if (config->thinLTOEmitImportsFiles)
238       openFile(path + ".imports");
239   }
240 }
241 
242 // Merge all the bitcode files we have seen, codegen the result
243 // and return the resulting ObjectFile(s).
244 std::vector<InputFile *> BitcodeCompiler::compile() {
245   unsigned maxTasks = ltoObj->getMaxTasks();
246   buf.resize(maxTasks);
247   files.resize(maxTasks);
248 
249   // The --thinlto-cache-dir option specifies the path to a directory in which
250   // to cache native object files for ThinLTO incremental builds. If a path was
251   // specified, configure LTO to use it as the cache directory.
252   lto::NativeObjectCache cache;
253   if (!config->thinLTOCacheDir.empty())
254     cache = check(
255         lto::localCache(config->thinLTOCacheDir,
256                         [&](size_t task, std::unique_ptr<MemoryBuffer> mb) {
257                           files[task] = std::move(mb);
258                         }));
259 
260   if (!bitcodeFiles.empty())
261     checkError(ltoObj->run(
262         [&](size_t task) {
263           return std::make_unique<lto::NativeObjectStream>(
264               std::make_unique<raw_svector_ostream>(buf[task]));
265         },
266         cache));
267 
268   // Emit empty index files for non-indexed files
269   for (StringRef s : thinIndices) {
270     std::string path = getThinLTOOutputFile(s);
271     openFile(path + ".thinlto.bc");
272     if (config->thinLTOEmitImportsFiles)
273       openFile(path + ".imports");
274   }
275 
276   if (config->thinLTOIndexOnly) {
277     thinLTOCreateEmptyIndexFiles();
278 
279     if (!config->ltoObjPath.empty())
280       saveBuffer(buf[0], config->ltoObjPath);
281 
282     // ThinLTO with index only option is required to generate only the index
283     // files. After that, we exit from linker and ThinLTO backend runs in a
284     // distributed environment.
285     if (indexFile)
286       indexFile->close();
287     return {};
288   }
289 
290   if (!config->thinLTOCacheDir.empty())
291     pruneCache(config->thinLTOCacheDir, config->thinLTOCachePolicy);
292 
293   if (!config->ltoObjPath.empty()) {
294     saveBuffer(buf[0], config->ltoObjPath);
295     for (unsigned i = 1; i != maxTasks; ++i)
296       saveBuffer(buf[i], config->ltoObjPath + Twine(i));
297   }
298 
299   if (config->saveTemps) {
300     saveBuffer(buf[0], config->outputFile + ".lto.o");
301     for (unsigned i = 1; i != maxTasks; ++i)
302       saveBuffer(buf[i], config->outputFile + Twine(i) + ".lto.o");
303   }
304 
305   std::vector<InputFile *> ret;
306   for (unsigned i = 0; i != maxTasks; ++i)
307     if (!buf[i].empty())
308       ret.push_back(createObjectFile(MemoryBufferRef(buf[i], "lto.tmp")));
309 
310   for (std::unique_ptr<MemoryBuffer> &file : files)
311     if (file)
312       ret.push_back(createObjectFile(*file));
313   return ret;
314 }
315 
316 } // namespace elf
317 } // namespace lld
318