xref: /llvm-project-15.0.7/llvm/lib/LTO/LTO.cpp (revision 5a127cdc)
1 //===-LTO.cpp - LLVM Link Time Optimizer ----------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements functions and classes used to support LTO.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/LTO/LTO.h"
15 #include "llvm/ADT/Statistic.h"
16 #include "llvm/Analysis/TargetLibraryInfo.h"
17 #include "llvm/Analysis/TargetTransformInfo.h"
18 #include "llvm/Bitcode/BitcodeReader.h"
19 #include "llvm/Bitcode/BitcodeWriter.h"
20 #include "llvm/CodeGen/Analysis.h"
21 #include "llvm/Config/llvm-config.h"
22 #include "llvm/IR/AutoUpgrade.h"
23 #include "llvm/IR/DiagnosticPrinter.h"
24 #include "llvm/IR/LegacyPassManager.h"
25 #include "llvm/IR/Mangler.h"
26 #include "llvm/IR/Metadata.h"
27 #include "llvm/LTO/LTOBackend.h"
28 #include "llvm/LTO/SummaryBasedOptimizations.h"
29 #include "llvm/Linker/IRMover.h"
30 #include "llvm/Object/IRObjectFile.h"
31 #include "llvm/Support/Error.h"
32 #include "llvm/Support/ManagedStatic.h"
33 #include "llvm/Support/MemoryBuffer.h"
34 #include "llvm/Support/Path.h"
35 #include "llvm/Support/SHA1.h"
36 #include "llvm/Support/SourceMgr.h"
37 #include "llvm/Support/TargetRegistry.h"
38 #include "llvm/Support/ThreadPool.h"
39 #include "llvm/Support/Threading.h"
40 #include "llvm/Support/VCSRevision.h"
41 #include "llvm/Support/raw_ostream.h"
42 #include "llvm/Target/TargetMachine.h"
43 #include "llvm/Target/TargetOptions.h"
44 #include "llvm/Transforms/IPO.h"
45 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
46 #include "llvm/Transforms/Utils/FunctionImportUtils.h"
47 #include "llvm/Transforms/Utils/SplitModule.h"
48 
49 #include <set>
50 
51 using namespace llvm;
52 using namespace lto;
53 using namespace object;
54 
55 #define DEBUG_TYPE "lto"
56 
57 static cl::opt<bool>
58     DumpThinCGSCCs("dump-thin-cg-sccs", cl::init(false), cl::Hidden,
59                    cl::desc("Dump the SCCs in the ThinLTO index's callgraph"));
60 
61 /// Enable global value internalization in LTO.
62 cl::opt<bool> EnableLTOInternalization(
63     "enable-lto-internalization", cl::init(true), cl::Hidden,
64     cl::desc("Enable global value internalization in LTO"));
65 
66 // Computes a unique hash for the Module considering the current list of
67 // export/import and other global analysis results.
68 // The hash is produced in \p Key.
69 void llvm::computeLTOCacheKey(
70     SmallString<40> &Key, const Config &Conf, const ModuleSummaryIndex &Index,
71     StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList,
72     const FunctionImporter::ExportSetTy &ExportList,
73     const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
74     const GVSummaryMapTy &DefinedGlobals,
75     const std::set<GlobalValue::GUID> &CfiFunctionDefs,
76     const std::set<GlobalValue::GUID> &CfiFunctionDecls) {
77   // Compute the unique hash for this entry.
78   // This is based on the current compiler version, the module itself, the
79   // export list, the hash for every single module in the import list, the
80   // list of ResolvedODR for the module, and the list of preserved symbols.
81   SHA1 Hasher;
82 
83   // Start with the compiler revision
84   Hasher.update(LLVM_VERSION_STRING);
85 #ifdef LLVM_REVISION
86   Hasher.update(LLVM_REVISION);
87 #endif
88 
89   // Include the parts of the LTO configuration that affect code generation.
90   auto AddString = [&](StringRef Str) {
91     Hasher.update(Str);
92     Hasher.update(ArrayRef<uint8_t>{0});
93   };
94   auto AddUnsigned = [&](unsigned I) {
95     uint8_t Data[4];
96     Data[0] = I;
97     Data[1] = I >> 8;
98     Data[2] = I >> 16;
99     Data[3] = I >> 24;
100     Hasher.update(ArrayRef<uint8_t>{Data, 4});
101   };
102   auto AddUint64 = [&](uint64_t I) {
103     uint8_t Data[8];
104     Data[0] = I;
105     Data[1] = I >> 8;
106     Data[2] = I >> 16;
107     Data[3] = I >> 24;
108     Data[4] = I >> 32;
109     Data[5] = I >> 40;
110     Data[6] = I >> 48;
111     Data[7] = I >> 56;
112     Hasher.update(ArrayRef<uint8_t>{Data, 8});
113   };
114   AddString(Conf.CPU);
115   // FIXME: Hash more of Options. For now all clients initialize Options from
116   // command-line flags (which is unsupported in production), but may set
117   // RelaxELFRelocations. The clang driver can also pass FunctionSections,
118   // DataSections and DebuggerTuning via command line flags.
119   AddUnsigned(Conf.Options.RelaxELFRelocations);
120   AddUnsigned(Conf.Options.FunctionSections);
121   AddUnsigned(Conf.Options.DataSections);
122   AddUnsigned((unsigned)Conf.Options.DebuggerTuning);
123   for (auto &A : Conf.MAttrs)
124     AddString(A);
125   if (Conf.RelocModel)
126     AddUnsigned(*Conf.RelocModel);
127   else
128     AddUnsigned(-1);
129   if (Conf.CodeModel)
130     AddUnsigned(*Conf.CodeModel);
131   else
132     AddUnsigned(-1);
133   AddUnsigned(Conf.CGOptLevel);
134   AddUnsigned(Conf.CGFileType);
135   AddUnsigned(Conf.OptLevel);
136   AddUnsigned(Conf.UseNewPM);
137   AddUnsigned(Conf.Freestanding);
138   AddString(Conf.OptPipeline);
139   AddString(Conf.AAPipeline);
140   AddString(Conf.OverrideTriple);
141   AddString(Conf.DefaultTriple);
142   AddString(Conf.DwoDir);
143 
144   // Include the hash for the current module
145   auto ModHash = Index.getModuleHash(ModuleID);
146   Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
147   for (auto F : ExportList)
148     // The export list can impact the internalization, be conservative here
149     Hasher.update(ArrayRef<uint8_t>((uint8_t *)&F, sizeof(F)));
150 
151   // Include the hash for every module we import functions from. The set of
152   // imported symbols for each module may affect code generation and is
153   // sensitive to link order, so include that as well.
154   for (auto &Entry : ImportList) {
155     auto ModHash = Index.getModuleHash(Entry.first());
156     Hasher.update(ArrayRef<uint8_t>((uint8_t *)&ModHash[0], sizeof(ModHash)));
157 
158     AddUint64(Entry.second.size());
159     for (auto &Fn : Entry.second)
160       AddUint64(Fn);
161   }
162 
163   // Include the hash for the resolved ODR.
164   for (auto &Entry : ResolvedODR) {
165     Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.first,
166                                     sizeof(GlobalValue::GUID)));
167     Hasher.update(ArrayRef<uint8_t>((const uint8_t *)&Entry.second,
168                                     sizeof(GlobalValue::LinkageTypes)));
169   }
170 
171   // Members of CfiFunctionDefs and CfiFunctionDecls that are referenced or
172   // defined in this module.
173   std::set<GlobalValue::GUID> UsedCfiDefs;
174   std::set<GlobalValue::GUID> UsedCfiDecls;
175 
176   // Typeids used in this module.
177   std::set<GlobalValue::GUID> UsedTypeIds;
178 
179   auto AddUsedCfiGlobal = [&](GlobalValue::GUID ValueGUID) {
180     if (CfiFunctionDefs.count(ValueGUID))
181       UsedCfiDefs.insert(ValueGUID);
182     if (CfiFunctionDecls.count(ValueGUID))
183       UsedCfiDecls.insert(ValueGUID);
184   };
185 
186   auto AddUsedThings = [&](GlobalValueSummary *GS) {
187     if (!GS) return;
188     AddUnsigned(GS->isLive());
189     for (const ValueInfo &VI : GS->refs()) {
190       AddUnsigned(VI.isDSOLocal());
191       AddUsedCfiGlobal(VI.getGUID());
192     }
193     if (auto *GVS = dyn_cast<GlobalVarSummary>(GS))
194       AddUnsigned(GVS->isReadOnly());
195     if (auto *FS = dyn_cast<FunctionSummary>(GS)) {
196       for (auto &TT : FS->type_tests())
197         UsedTypeIds.insert(TT);
198       for (auto &TT : FS->type_test_assume_vcalls())
199         UsedTypeIds.insert(TT.GUID);
200       for (auto &TT : FS->type_checked_load_vcalls())
201         UsedTypeIds.insert(TT.GUID);
202       for (auto &TT : FS->type_test_assume_const_vcalls())
203         UsedTypeIds.insert(TT.VFunc.GUID);
204       for (auto &TT : FS->type_checked_load_const_vcalls())
205         UsedTypeIds.insert(TT.VFunc.GUID);
206       for (auto &ET : FS->calls()) {
207         AddUnsigned(ET.first.isDSOLocal());
208         AddUsedCfiGlobal(ET.first.getGUID());
209       }
210     }
211   };
212 
213   // Include the hash for the linkage type to reflect internalization and weak
214   // resolution, and collect any used type identifier resolutions.
215   for (auto &GS : DefinedGlobals) {
216     GlobalValue::LinkageTypes Linkage = GS.second->linkage();
217     Hasher.update(
218         ArrayRef<uint8_t>((const uint8_t *)&Linkage, sizeof(Linkage)));
219     AddUsedCfiGlobal(GS.first);
220     AddUsedThings(GS.second);
221   }
222 
223   // Imported functions may introduce new uses of type identifier resolutions,
224   // so we need to collect their used resolutions as well.
225   for (auto &ImpM : ImportList)
226     for (auto &ImpF : ImpM.second) {
227       GlobalValueSummary *S = Index.findSummaryInModule(ImpF, ImpM.first());
228       AddUsedThings(S);
229       // If this is an alias, we also care about any types/etc. that the aliasee
230       // may reference.
231       if (auto *AS = dyn_cast_or_null<AliasSummary>(S))
232         AddUsedThings(AS->getBaseObject());
233     }
234 
235   auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) {
236     AddString(TId);
237 
238     AddUnsigned(S.TTRes.TheKind);
239     AddUnsigned(S.TTRes.SizeM1BitWidth);
240 
241     AddUint64(S.TTRes.AlignLog2);
242     AddUint64(S.TTRes.SizeM1);
243     AddUint64(S.TTRes.BitMask);
244     AddUint64(S.TTRes.InlineBits);
245 
246     AddUint64(S.WPDRes.size());
247     for (auto &WPD : S.WPDRes) {
248       AddUnsigned(WPD.first);
249       AddUnsigned(WPD.second.TheKind);
250       AddString(WPD.second.SingleImplName);
251 
252       AddUint64(WPD.second.ResByArg.size());
253       for (auto &ByArg : WPD.second.ResByArg) {
254         AddUint64(ByArg.first.size());
255         for (uint64_t Arg : ByArg.first)
256           AddUint64(Arg);
257         AddUnsigned(ByArg.second.TheKind);
258         AddUint64(ByArg.second.Info);
259         AddUnsigned(ByArg.second.Byte);
260         AddUnsigned(ByArg.second.Bit);
261       }
262     }
263   };
264 
265   // Include the hash for all type identifiers used by this module.
266   for (GlobalValue::GUID TId : UsedTypeIds) {
267     auto TidIter = Index.typeIds().equal_range(TId);
268     for (auto It = TidIter.first; It != TidIter.second; ++It)
269       AddTypeIdSummary(It->second.first, It->second.second);
270   }
271 
272   AddUnsigned(UsedCfiDefs.size());
273   for (auto &V : UsedCfiDefs)
274     AddUint64(V);
275 
276   AddUnsigned(UsedCfiDecls.size());
277   for (auto &V : UsedCfiDecls)
278     AddUint64(V);
279 
280   if (!Conf.SampleProfile.empty()) {
281     auto FileOrErr = MemoryBuffer::getFile(Conf.SampleProfile);
282     if (FileOrErr) {
283       Hasher.update(FileOrErr.get()->getBuffer());
284 
285       if (!Conf.ProfileRemapping.empty()) {
286         FileOrErr = MemoryBuffer::getFile(Conf.ProfileRemapping);
287         if (FileOrErr)
288           Hasher.update(FileOrErr.get()->getBuffer());
289       }
290     }
291   }
292 
293   Key = toHex(Hasher.result());
294 }
295 
296 static void thinLTOResolvePrevailingGUID(
297     GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
298     DenseSet<GlobalValueSummary *> &GlobalInvolvedWithAlias,
299     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
300         isPrevailing,
301     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
302         recordNewLinkage) {
303   for (auto &S : GVSummaryList) {
304     GlobalValue::LinkageTypes OriginalLinkage = S->linkage();
305     // Ignore local and appending linkage values since the linker
306     // doesn't resolve them.
307     if (GlobalValue::isLocalLinkage(OriginalLinkage) ||
308         GlobalValue::isAppendingLinkage(S->linkage()))
309       continue;
310     // We need to emit only one of these. The prevailing module will keep it,
311     // but turned into a weak, while the others will drop it when possible.
312     // This is both a compile-time optimization and a correctness
313     // transformation. This is necessary for correctness when we have exported
314     // a reference - we need to convert the linkonce to weak to
315     // ensure a copy is kept to satisfy the exported reference.
316     // FIXME: We may want to split the compile time and correctness
317     // aspects into separate routines.
318     if (isPrevailing(GUID, S.get())) {
319       if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
320         S->setLinkage(GlobalValue::getWeakLinkage(
321             GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
322     }
323     // Alias and aliasee can't be turned into available_externally.
324     else if (!isa<AliasSummary>(S.get()) &&
325              !GlobalInvolvedWithAlias.count(S.get()))
326       S->setLinkage(GlobalValue::AvailableExternallyLinkage);
327     if (S->linkage() != OriginalLinkage)
328       recordNewLinkage(S->modulePath(), GUID, S->linkage());
329   }
330 }
331 
332 /// Resolve linkage for prevailing symbols in the \p Index.
333 //
334 // We'd like to drop these functions if they are no longer referenced in the
335 // current module. However there is a chance that another module is still
336 // referencing them because of the import. We make sure we always emit at least
337 // one copy.
338 void llvm::thinLTOResolvePrevailingInIndex(
339     ModuleSummaryIndex &Index,
340     function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
341         isPrevailing,
342     function_ref<void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)>
343         recordNewLinkage) {
344   // We won't optimize the globals that are referenced by an alias for now
345   // Ideally we should turn the alias into a global and duplicate the definition
346   // when needed.
347   DenseSet<GlobalValueSummary *> GlobalInvolvedWithAlias;
348   for (auto &I : Index)
349     for (auto &S : I.second.SummaryList)
350       if (auto AS = dyn_cast<AliasSummary>(S.get()))
351         GlobalInvolvedWithAlias.insert(&AS->getAliasee());
352 
353   for (auto &I : Index)
354     thinLTOResolvePrevailingGUID(I.second.SummaryList, I.first,
355                                  GlobalInvolvedWithAlias, isPrevailing,
356                                  recordNewLinkage);
357 }
358 
359 static void thinLTOInternalizeAndPromoteGUID(
360     GlobalValueSummaryList &GVSummaryList, GlobalValue::GUID GUID,
361     function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
362   for (auto &S : GVSummaryList) {
363     if (isExported(S->modulePath(), GUID)) {
364       if (GlobalValue::isLocalLinkage(S->linkage()))
365         S->setLinkage(GlobalValue::ExternalLinkage);
366     } else if (EnableLTOInternalization &&
367                // Ignore local and appending linkage values since the linker
368                // doesn't resolve them.
369                !GlobalValue::isLocalLinkage(S->linkage()) &&
370                S->linkage() != GlobalValue::AppendingLinkage &&
371                // We can't internalize available_externally globals because this
372                // can break function pointer equality.
373                S->linkage() != GlobalValue::AvailableExternallyLinkage)
374       S->setLinkage(GlobalValue::InternalLinkage);
375   }
376 }
377 
378 // Update the linkages in the given \p Index to mark exported values
379 // as external and non-exported values as internal.
380 void llvm::thinLTOInternalizeAndPromoteInIndex(
381     ModuleSummaryIndex &Index,
382     function_ref<bool(StringRef, GlobalValue::GUID)> isExported) {
383   for (auto &I : Index)
384     thinLTOInternalizeAndPromoteGUID(I.second.SummaryList, I.first, isExported);
385 }
386 
387 // Requires a destructor for std::vector<InputModule>.
388 InputFile::~InputFile() = default;
389 
390 Expected<std::unique_ptr<InputFile>> InputFile::create(MemoryBufferRef Object) {
391   std::unique_ptr<InputFile> File(new InputFile);
392 
393   Expected<IRSymtabFile> FOrErr = readIRSymtab(Object);
394   if (!FOrErr)
395     return FOrErr.takeError();
396 
397   File->TargetTriple = FOrErr->TheReader.getTargetTriple();
398   File->SourceFileName = FOrErr->TheReader.getSourceFileName();
399   File->COFFLinkerOpts = FOrErr->TheReader.getCOFFLinkerOpts();
400   File->ComdatTable = FOrErr->TheReader.getComdatTable();
401 
402   for (unsigned I = 0; I != FOrErr->Mods.size(); ++I) {
403     size_t Begin = File->Symbols.size();
404     for (const irsymtab::Reader::SymbolRef &Sym :
405          FOrErr->TheReader.module_symbols(I))
406       // Skip symbols that are irrelevant to LTO. Note that this condition needs
407       // to match the one in Skip() in LTO::addRegularLTO().
408       if (Sym.isGlobal() && !Sym.isFormatSpecific())
409         File->Symbols.push_back(Sym);
410     File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
411   }
412 
413   File->Mods = FOrErr->Mods;
414   File->Strtab = std::move(FOrErr->Strtab);
415   return std::move(File);
416 }
417 
418 StringRef InputFile::getName() const {
419   return Mods[0].getModuleIdentifier();
420 }
421 
422 LTO::RegularLTOState::RegularLTOState(unsigned ParallelCodeGenParallelismLevel,
423                                       Config &Conf)
424     : ParallelCodeGenParallelismLevel(ParallelCodeGenParallelismLevel),
425       Ctx(Conf), CombinedModule(llvm::make_unique<Module>("ld-temp.o", Ctx)),
426       Mover(llvm::make_unique<IRMover>(*CombinedModule)) {}
427 
428 LTO::ThinLTOState::ThinLTOState(ThinBackend Backend)
429     : Backend(Backend), CombinedIndex(/*HaveGVs*/ false) {
430   if (!Backend)
431     this->Backend =
432         createInProcessThinBackend(llvm::heavyweight_hardware_concurrency());
433 }
434 
435 LTO::LTO(Config Conf, ThinBackend Backend,
436          unsigned ParallelCodeGenParallelismLevel)
437     : Conf(std::move(Conf)),
438       RegularLTO(ParallelCodeGenParallelismLevel, this->Conf),
439       ThinLTO(std::move(Backend)) {}
440 
441 // Requires a destructor for MapVector<BitcodeModule>.
442 LTO::~LTO() = default;
443 
444 // Add the symbols in the given module to the GlobalResolutions map, and resolve
445 // their partitions.
446 void LTO::addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms,
447                                ArrayRef<SymbolResolution> Res,
448                                unsigned Partition, bool InSummary) {
449   auto *ResI = Res.begin();
450   auto *ResE = Res.end();
451   (void)ResE;
452   for (const InputFile::Symbol &Sym : Syms) {
453     assert(ResI != ResE);
454     SymbolResolution Res = *ResI++;
455 
456     StringRef Name = Sym.getName();
457     Triple TT(RegularLTO.CombinedModule->getTargetTriple());
458     // Strip the __imp_ prefix from COFF dllimport symbols (similar to the
459     // way they are handled by lld), otherwise we can end up with two
460     // global resolutions (one with and one for a copy of the symbol without).
461     if (TT.isOSBinFormatCOFF() && Name.startswith("__imp_"))
462       Name = Name.substr(strlen("__imp_"));
463     auto &GlobalRes = GlobalResolutions[Name];
464     GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
465     if (Res.Prevailing) {
466       assert(!GlobalRes.Prevailing &&
467              "Multiple prevailing defs are not allowed");
468       GlobalRes.Prevailing = true;
469       GlobalRes.IRName = Sym.getIRName();
470     } else if (!GlobalRes.Prevailing && GlobalRes.IRName.empty()) {
471       // Sometimes it can be two copies of symbol in a module and prevailing
472       // symbol can have no IR name. That might happen if symbol is defined in
473       // module level inline asm block. In case we have multiple modules with
474       // the same symbol we want to use IR name of the prevailing symbol.
475       // Otherwise, if we haven't seen a prevailing symbol, set the name so that
476       // we can later use it to check if there is any prevailing copy in IR.
477       GlobalRes.IRName = Sym.getIRName();
478     }
479 
480     // Set the partition to external if we know it is re-defined by the linker
481     // with -defsym or -wrap options, used elsewhere, e.g. it is visible to a
482     // regular object, is referenced from llvm.compiler_used, or was already
483     // recorded as being referenced from a different partition.
484     if (Res.LinkerRedefined || Res.VisibleToRegularObj || Sym.isUsed() ||
485         (GlobalRes.Partition != GlobalResolution::Unknown &&
486          GlobalRes.Partition != Partition)) {
487       GlobalRes.Partition = GlobalResolution::External;
488     } else
489       // First recorded reference, save the current partition.
490       GlobalRes.Partition = Partition;
491 
492     // Flag as visible outside of summary if visible from a regular object or
493     // from a module that does not have a summary.
494     GlobalRes.VisibleOutsideSummary |=
495         (Res.VisibleToRegularObj || Sym.isUsed() || !InSummary);
496   }
497 }
498 
499 static void writeToResolutionFile(raw_ostream &OS, InputFile *Input,
500                                   ArrayRef<SymbolResolution> Res) {
501   StringRef Path = Input->getName();
502   OS << Path << '\n';
503   auto ResI = Res.begin();
504   for (const InputFile::Symbol &Sym : Input->symbols()) {
505     assert(ResI != Res.end());
506     SymbolResolution Res = *ResI++;
507 
508     OS << "-r=" << Path << ',' << Sym.getName() << ',';
509     if (Res.Prevailing)
510       OS << 'p';
511     if (Res.FinalDefinitionInLinkageUnit)
512       OS << 'l';
513     if (Res.VisibleToRegularObj)
514       OS << 'x';
515     if (Res.LinkerRedefined)
516       OS << 'r';
517     OS << '\n';
518   }
519   OS.flush();
520   assert(ResI == Res.end());
521 }
522 
523 Error LTO::add(std::unique_ptr<InputFile> Input,
524                ArrayRef<SymbolResolution> Res) {
525   assert(!CalledGetMaxTasks);
526 
527   if (Conf.ResolutionFile)
528     writeToResolutionFile(*Conf.ResolutionFile, Input.get(), Res);
529 
530   if (RegularLTO.CombinedModule->getTargetTriple().empty())
531     RegularLTO.CombinedModule->setTargetTriple(Input->getTargetTriple());
532 
533   const SymbolResolution *ResI = Res.begin();
534   for (unsigned I = 0; I != Input->Mods.size(); ++I)
535     if (Error Err = addModule(*Input, I, ResI, Res.end()))
536       return Err;
537 
538   assert(ResI == Res.end());
539   return Error::success();
540 }
541 
542 Error LTO::addModule(InputFile &Input, unsigned ModI,
543                      const SymbolResolution *&ResI,
544                      const SymbolResolution *ResE) {
545   Expected<BitcodeLTOInfo> LTOInfo = Input.Mods[ModI].getLTOInfo();
546   if (!LTOInfo)
547     return LTOInfo.takeError();
548 
549   BitcodeModule BM = Input.Mods[ModI];
550   auto ModSyms = Input.module_symbols(ModI);
551   addModuleToGlobalRes(ModSyms, {ResI, ResE},
552                        LTOInfo->IsThinLTO ? ThinLTO.ModuleMap.size() + 1 : 0,
553                        LTOInfo->HasSummary);
554 
555   if (LTOInfo->IsThinLTO)
556     return addThinLTO(BM, ModSyms, ResI, ResE);
557 
558   Expected<RegularLTOState::AddedModule> ModOrErr =
559       addRegularLTO(BM, ModSyms, ResI, ResE);
560   if (!ModOrErr)
561     return ModOrErr.takeError();
562 
563   if (!LTOInfo->HasSummary)
564     return linkRegularLTO(std::move(*ModOrErr), /*LivenessFromIndex=*/false);
565 
566   // Regular LTO module summaries are added to a dummy module that represents
567   // the combined regular LTO module.
568   if (Error Err = BM.readSummary(ThinLTO.CombinedIndex, "", -1ull))
569     return Err;
570   RegularLTO.ModsWithSummaries.push_back(std::move(*ModOrErr));
571   return Error::success();
572 }
573 
574 // Checks whether the given global value is in a non-prevailing comdat
575 // (comdat containing values the linker indicated were not prevailing,
576 // which we then dropped to available_externally), and if so, removes
577 // it from the comdat. This is called for all global values to ensure the
578 // comdat is empty rather than leaving an incomplete comdat. It is needed for
579 // regular LTO modules, in case we are in a mixed-LTO mode (both regular
580 // and thin LTO modules) compilation. Since the regular LTO module will be
581 // linked first in the final native link, we want to make sure the linker
582 // doesn't select any of these incomplete comdats that would be left
583 // in the regular LTO module without this cleanup.
584 static void
585 handleNonPrevailingComdat(GlobalValue &GV,
586                           std::set<const Comdat *> &NonPrevailingComdats) {
587   Comdat *C = GV.getComdat();
588   if (!C)
589     return;
590 
591   if (!NonPrevailingComdats.count(C))
592     return;
593 
594   // Additionally need to drop externally visible global values from the comdat
595   // to available_externally, so that there aren't multiply defined linker
596   // errors.
597   if (!GV.hasLocalLinkage())
598     GV.setLinkage(GlobalValue::AvailableExternallyLinkage);
599 
600   if (auto GO = dyn_cast<GlobalObject>(&GV))
601     GO->setComdat(nullptr);
602 }
603 
604 // Add a regular LTO object to the link.
605 // The resulting module needs to be linked into the combined LTO module with
606 // linkRegularLTO.
607 Expected<LTO::RegularLTOState::AddedModule>
608 LTO::addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
609                    const SymbolResolution *&ResI,
610                    const SymbolResolution *ResE) {
611   RegularLTOState::AddedModule Mod;
612   Expected<std::unique_ptr<Module>> MOrErr =
613       BM.getLazyModule(RegularLTO.Ctx, /*ShouldLazyLoadMetadata*/ true,
614                        /*IsImporting*/ false);
615   if (!MOrErr)
616     return MOrErr.takeError();
617   Module &M = **MOrErr;
618   Mod.M = std::move(*MOrErr);
619 
620   if (Error Err = M.materializeMetadata())
621     return std::move(Err);
622   UpgradeDebugInfo(M);
623 
624   ModuleSymbolTable SymTab;
625   SymTab.addModule(&M);
626 
627   for (GlobalVariable &GV : M.globals())
628     if (GV.hasAppendingLinkage())
629       Mod.Keep.push_back(&GV);
630 
631   DenseSet<GlobalObject *> AliasedGlobals;
632   for (auto &GA : M.aliases())
633     if (GlobalObject *GO = GA.getBaseObject())
634       AliasedGlobals.insert(GO);
635 
636   // In this function we need IR GlobalValues matching the symbols in Syms
637   // (which is not backed by a module), so we need to enumerate them in the same
638   // order. The symbol enumeration order of a ModuleSymbolTable intentionally
639   // matches the order of an irsymtab, but when we read the irsymtab in
640   // InputFile::create we omit some symbols that are irrelevant to LTO. The
641   // Skip() function skips the same symbols from the module as InputFile does
642   // from the symbol table.
643   auto MsymI = SymTab.symbols().begin(), MsymE = SymTab.symbols().end();
644   auto Skip = [&]() {
645     while (MsymI != MsymE) {
646       auto Flags = SymTab.getSymbolFlags(*MsymI);
647       if ((Flags & object::BasicSymbolRef::SF_Global) &&
648           !(Flags & object::BasicSymbolRef::SF_FormatSpecific))
649         return;
650       ++MsymI;
651     }
652   };
653   Skip();
654 
655   std::set<const Comdat *> NonPrevailingComdats;
656   for (const InputFile::Symbol &Sym : Syms) {
657     assert(ResI != ResE);
658     SymbolResolution Res = *ResI++;
659 
660     assert(MsymI != MsymE);
661     ModuleSymbolTable::Symbol Msym = *MsymI++;
662     Skip();
663 
664     if (GlobalValue *GV = Msym.dyn_cast<GlobalValue *>()) {
665       if (Res.Prevailing) {
666         if (Sym.isUndefined())
667           continue;
668         Mod.Keep.push_back(GV);
669         // For symbols re-defined with linker -wrap and -defsym options,
670         // set the linkage to weak to inhibit IPO. The linkage will be
671         // restored by the linker.
672         if (Res.LinkerRedefined)
673           GV->setLinkage(GlobalValue::WeakAnyLinkage);
674 
675         GlobalValue::LinkageTypes OriginalLinkage = GV->getLinkage();
676         if (GlobalValue::isLinkOnceLinkage(OriginalLinkage))
677           GV->setLinkage(GlobalValue::getWeakLinkage(
678               GlobalValue::isLinkOnceODRLinkage(OriginalLinkage)));
679       } else if (isa<GlobalObject>(GV) &&
680                  (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
681                   GV->hasAvailableExternallyLinkage()) &&
682                  !AliasedGlobals.count(cast<GlobalObject>(GV))) {
683         // Any of the above three types of linkage indicates that the
684         // chosen prevailing symbol will have the same semantics as this copy of
685         // the symbol, so we may be able to link it with available_externally
686         // linkage. We will decide later whether to do that when we link this
687         // module (in linkRegularLTO), based on whether it is undefined.
688         Mod.Keep.push_back(GV);
689         GV->setLinkage(GlobalValue::AvailableExternallyLinkage);
690         if (GV->hasComdat())
691           NonPrevailingComdats.insert(GV->getComdat());
692         cast<GlobalObject>(GV)->setComdat(nullptr);
693       }
694 
695       // Set the 'local' flag based on the linker resolution for this symbol.
696       if (Res.FinalDefinitionInLinkageUnit)
697         GV->setDSOLocal(true);
698     }
699     // Common resolution: collect the maximum size/alignment over all commons.
700     // We also record if we see an instance of a common as prevailing, so that
701     // if none is prevailing we can ignore it later.
702     if (Sym.isCommon()) {
703       // FIXME: We should figure out what to do about commons defined by asm.
704       // For now they aren't reported correctly by ModuleSymbolTable.
705       auto &CommonRes = RegularLTO.Commons[Sym.getIRName()];
706       CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
707       CommonRes.Align = std::max(CommonRes.Align, Sym.getCommonAlignment());
708       CommonRes.Prevailing |= Res.Prevailing;
709     }
710 
711   }
712   if (!M.getComdatSymbolTable().empty())
713     for (GlobalValue &GV : M.global_values())
714       handleNonPrevailingComdat(GV, NonPrevailingComdats);
715   assert(MsymI == MsymE);
716   return std::move(Mod);
717 }
718 
719 Error LTO::linkRegularLTO(RegularLTOState::AddedModule Mod,
720                           bool LivenessFromIndex) {
721   std::vector<GlobalValue *> Keep;
722   for (GlobalValue *GV : Mod.Keep) {
723     if (LivenessFromIndex && !ThinLTO.CombinedIndex.isGUIDLive(GV->getGUID()))
724       continue;
725 
726     if (!GV->hasAvailableExternallyLinkage()) {
727       Keep.push_back(GV);
728       continue;
729     }
730 
731     // Only link available_externally definitions if we don't already have a
732     // definition.
733     GlobalValue *CombinedGV =
734         RegularLTO.CombinedModule->getNamedValue(GV->getName());
735     if (CombinedGV && !CombinedGV->isDeclaration())
736       continue;
737 
738     Keep.push_back(GV);
739   }
740 
741   return RegularLTO.Mover->move(std::move(Mod.M), Keep,
742                                 [](GlobalValue &, IRMover::ValueAdder) {},
743                                 /* IsPerformingImport */ false);
744 }
745 
746 // Add a ThinLTO module to the link.
747 Error LTO::addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
748                       const SymbolResolution *&ResI,
749                       const SymbolResolution *ResE) {
750   if (Error Err =
751           BM.readSummary(ThinLTO.CombinedIndex, BM.getModuleIdentifier(),
752                          ThinLTO.ModuleMap.size()))
753     return Err;
754 
755   for (const InputFile::Symbol &Sym : Syms) {
756     assert(ResI != ResE);
757     SymbolResolution Res = *ResI++;
758 
759     if (!Sym.getIRName().empty()) {
760       auto GUID = GlobalValue::getGUID(GlobalValue::getGlobalIdentifier(
761           Sym.getIRName(), GlobalValue::ExternalLinkage, ""));
762       if (Res.Prevailing) {
763         ThinLTO.PrevailingModuleForGUID[GUID] = BM.getModuleIdentifier();
764 
765         // For linker redefined symbols (via --wrap or --defsym) we want to
766         // switch the linkage to `weak` to prevent IPOs from happening.
767         // Find the summary in the module for this very GV and record the new
768         // linkage so that we can switch it when we import the GV.
769         if (Res.LinkerRedefined)
770           if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
771                   GUID, BM.getModuleIdentifier()))
772             S->setLinkage(GlobalValue::WeakAnyLinkage);
773       }
774 
775       // If the linker resolved the symbol to a local definition then mark it
776       // as local in the summary for the module we are adding.
777       if (Res.FinalDefinitionInLinkageUnit) {
778         if (auto S = ThinLTO.CombinedIndex.findSummaryInModule(
779                 GUID, BM.getModuleIdentifier())) {
780           S->setDSOLocal(true);
781         }
782       }
783     }
784   }
785 
786   if (!ThinLTO.ModuleMap.insert({BM.getModuleIdentifier(), BM}).second)
787     return make_error<StringError>(
788         "Expected at most one ThinLTO module per bitcode file",
789         inconvertibleErrorCode());
790 
791   return Error::success();
792 }
793 
794 unsigned LTO::getMaxTasks() const {
795   CalledGetMaxTasks = true;
796   return RegularLTO.ParallelCodeGenParallelismLevel + ThinLTO.ModuleMap.size();
797 }
798 
799 Error LTO::run(AddStreamFn AddStream, NativeObjectCache Cache) {
800   // Compute "dead" symbols, we don't want to import/export these!
801   DenseSet<GlobalValue::GUID> GUIDPreservedSymbols;
802   DenseMap<GlobalValue::GUID, PrevailingType> GUIDPrevailingResolutions;
803   for (auto &Res : GlobalResolutions) {
804     // Normally resolution have IR name of symbol. We can do nothing here
805     // otherwise. See comments in GlobalResolution struct for more details.
806     if (Res.second.IRName.empty())
807       continue;
808 
809     GlobalValue::GUID GUID = GlobalValue::getGUID(
810         GlobalValue::dropLLVMManglingEscape(Res.second.IRName));
811 
812     if (Res.second.VisibleOutsideSummary && Res.second.Prevailing)
813       GUIDPreservedSymbols.insert(GlobalValue::getGUID(
814           GlobalValue::dropLLVMManglingEscape(Res.second.IRName)));
815 
816     GUIDPrevailingResolutions[GUID] =
817         Res.second.Prevailing ? PrevailingType::Yes : PrevailingType::No;
818   }
819 
820   auto isPrevailing = [&](GlobalValue::GUID G) {
821     auto It = GUIDPrevailingResolutions.find(G);
822     if (It == GUIDPrevailingResolutions.end())
823       return PrevailingType::Unknown;
824     return It->second;
825   };
826   computeDeadSymbolsWithConstProp(ThinLTO.CombinedIndex, GUIDPreservedSymbols,
827                                   isPrevailing, Conf.OptLevel > 0);
828 
829   // Setup output file to emit statistics.
830   std::unique_ptr<ToolOutputFile> StatsFile = nullptr;
831   if (!Conf.StatsFile.empty()) {
832     EnableStatistics(false);
833     std::error_code EC;
834     StatsFile =
835         llvm::make_unique<ToolOutputFile>(Conf.StatsFile, EC, sys::fs::F_None);
836     if (EC)
837       return errorCodeToError(EC);
838     StatsFile->keep();
839   }
840 
841   Error Result = runRegularLTO(AddStream);
842   if (!Result)
843     Result = runThinLTO(AddStream, Cache);
844 
845   if (StatsFile)
846     PrintStatisticsJSON(StatsFile->os());
847 
848   return Result;
849 }
850 
851 Error LTO::runRegularLTO(AddStreamFn AddStream) {
852   for (auto &M : RegularLTO.ModsWithSummaries)
853     if (Error Err = linkRegularLTO(std::move(M),
854                                    /*LivenessFromIndex=*/true))
855       return Err;
856 
857   // Make sure commons have the right size/alignment: we kept the largest from
858   // all the prevailing when adding the inputs, and we apply it here.
859   const DataLayout &DL = RegularLTO.CombinedModule->getDataLayout();
860   for (auto &I : RegularLTO.Commons) {
861     if (!I.second.Prevailing)
862       // Don't do anything if no instance of this common was prevailing.
863       continue;
864     GlobalVariable *OldGV = RegularLTO.CombinedModule->getNamedGlobal(I.first);
865     if (OldGV && DL.getTypeAllocSize(OldGV->getValueType()) == I.second.Size) {
866       // Don't create a new global if the type is already correct, just make
867       // sure the alignment is correct.
868       OldGV->setAlignment(I.second.Align);
869       continue;
870     }
871     ArrayType *Ty =
872         ArrayType::get(Type::getInt8Ty(RegularLTO.Ctx), I.second.Size);
873     auto *GV = new GlobalVariable(*RegularLTO.CombinedModule, Ty, false,
874                                   GlobalValue::CommonLinkage,
875                                   ConstantAggregateZero::get(Ty), "");
876     GV->setAlignment(I.second.Align);
877     if (OldGV) {
878       OldGV->replaceAllUsesWith(ConstantExpr::getBitCast(GV, OldGV->getType()));
879       GV->takeName(OldGV);
880       OldGV->eraseFromParent();
881     } else {
882       GV->setName(I.first);
883     }
884   }
885 
886   if (Conf.PreOptModuleHook &&
887       !Conf.PreOptModuleHook(0, *RegularLTO.CombinedModule))
888     return Error::success();
889 
890   if (!Conf.CodeGenOnly) {
891     for (const auto &R : GlobalResolutions) {
892       if (!R.second.isPrevailingIRSymbol())
893         continue;
894       if (R.second.Partition != 0 &&
895           R.second.Partition != GlobalResolution::External)
896         continue;
897 
898       GlobalValue *GV =
899           RegularLTO.CombinedModule->getNamedValue(R.second.IRName);
900       // Ignore symbols defined in other partitions.
901       // Also skip declarations, which are not allowed to have internal linkage.
902       if (!GV || GV->hasLocalLinkage() || GV->isDeclaration())
903         continue;
904       GV->setUnnamedAddr(R.second.UnnamedAddr ? GlobalValue::UnnamedAddr::Global
905                                               : GlobalValue::UnnamedAddr::None);
906       if (EnableLTOInternalization && R.second.Partition == 0)
907         GV->setLinkage(GlobalValue::InternalLinkage);
908     }
909 
910     if (Conf.PostInternalizeModuleHook &&
911         !Conf.PostInternalizeModuleHook(0, *RegularLTO.CombinedModule))
912       return Error::success();
913   }
914   return backend(Conf, AddStream, RegularLTO.ParallelCodeGenParallelismLevel,
915                  std::move(RegularLTO.CombinedModule), ThinLTO.CombinedIndex);
916 }
917 
918 /// This class defines the interface to the ThinLTO backend.
919 class lto::ThinBackendProc {
920 protected:
921   Config &Conf;
922   ModuleSummaryIndex &CombinedIndex;
923   const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries;
924 
925 public:
926   ThinBackendProc(Config &Conf, ModuleSummaryIndex &CombinedIndex,
927                   const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries)
928       : Conf(Conf), CombinedIndex(CombinedIndex),
929         ModuleToDefinedGVSummaries(ModuleToDefinedGVSummaries) {}
930 
931   virtual ~ThinBackendProc() {}
932   virtual Error start(
933       unsigned Task, BitcodeModule BM,
934       const FunctionImporter::ImportMapTy &ImportList,
935       const FunctionImporter::ExportSetTy &ExportList,
936       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
937       MapVector<StringRef, BitcodeModule> &ModuleMap) = 0;
938   virtual Error wait() = 0;
939 };
940 
941 namespace {
942 class InProcessThinBackend : public ThinBackendProc {
943   ThreadPool BackendThreadPool;
944   AddStreamFn AddStream;
945   NativeObjectCache Cache;
946   std::set<GlobalValue::GUID> CfiFunctionDefs;
947   std::set<GlobalValue::GUID> CfiFunctionDecls;
948 
949   Optional<Error> Err;
950   std::mutex ErrMu;
951 
952 public:
953   InProcessThinBackend(
954       Config &Conf, ModuleSummaryIndex &CombinedIndex,
955       unsigned ThinLTOParallelismLevel,
956       const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
957       AddStreamFn AddStream, NativeObjectCache Cache)
958       : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
959         BackendThreadPool(ThinLTOParallelismLevel),
960         AddStream(std::move(AddStream)), Cache(std::move(Cache)) {
961     for (auto &Name : CombinedIndex.cfiFunctionDefs())
962       CfiFunctionDefs.insert(
963           GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
964     for (auto &Name : CombinedIndex.cfiFunctionDecls())
965       CfiFunctionDecls.insert(
966           GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Name)));
967   }
968 
969   Error runThinLTOBackendThread(
970       AddStreamFn AddStream, NativeObjectCache Cache, unsigned Task,
971       BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
972       const FunctionImporter::ImportMapTy &ImportList,
973       const FunctionImporter::ExportSetTy &ExportList,
974       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
975       const GVSummaryMapTy &DefinedGlobals,
976       MapVector<StringRef, BitcodeModule> &ModuleMap) {
977     auto RunThinBackend = [&](AddStreamFn AddStream) {
978       LTOLLVMContext BackendContext(Conf);
979       Expected<std::unique_ptr<Module>> MOrErr = BM.parseModule(BackendContext);
980       if (!MOrErr)
981         return MOrErr.takeError();
982 
983       return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
984                          ImportList, DefinedGlobals, ModuleMap);
985     };
986 
987     auto ModuleID = BM.getModuleIdentifier();
988 
989     if (!Cache || !CombinedIndex.modulePaths().count(ModuleID) ||
990         all_of(CombinedIndex.getModuleHash(ModuleID),
991                [](uint32_t V) { return V == 0; }))
992       // Cache disabled or no entry for this module in the combined index or
993       // no module hash.
994       return RunThinBackend(AddStream);
995 
996     SmallString<40> Key;
997     // The module may be cached, this helps handling it.
998     computeLTOCacheKey(Key, Conf, CombinedIndex, ModuleID, ImportList,
999                        ExportList, ResolvedODR, DefinedGlobals, CfiFunctionDefs,
1000                        CfiFunctionDecls);
1001     if (AddStreamFn CacheAddStream = Cache(Task, Key))
1002       return RunThinBackend(CacheAddStream);
1003 
1004     return Error::success();
1005   }
1006 
1007   Error start(
1008       unsigned Task, BitcodeModule BM,
1009       const FunctionImporter::ImportMapTy &ImportList,
1010       const FunctionImporter::ExportSetTy &ExportList,
1011       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1012       MapVector<StringRef, BitcodeModule> &ModuleMap) override {
1013     StringRef ModulePath = BM.getModuleIdentifier();
1014     assert(ModuleToDefinedGVSummaries.count(ModulePath));
1015     const GVSummaryMapTy &DefinedGlobals =
1016         ModuleToDefinedGVSummaries.find(ModulePath)->second;
1017     BackendThreadPool.async(
1018         [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
1019             const FunctionImporter::ImportMapTy &ImportList,
1020             const FunctionImporter::ExportSetTy &ExportList,
1021             const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
1022                 &ResolvedODR,
1023             const GVSummaryMapTy &DefinedGlobals,
1024             MapVector<StringRef, BitcodeModule> &ModuleMap) {
1025           Error E = runThinLTOBackendThread(
1026               AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
1027               ResolvedODR, DefinedGlobals, ModuleMap);
1028           if (E) {
1029             std::unique_lock<std::mutex> L(ErrMu);
1030             if (Err)
1031               Err = joinErrors(std::move(*Err), std::move(E));
1032             else
1033               Err = std::move(E);
1034           }
1035         },
1036         BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
1037         std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap));
1038     return Error::success();
1039   }
1040 
1041   Error wait() override {
1042     BackendThreadPool.wait();
1043     if (Err)
1044       return std::move(*Err);
1045     else
1046       return Error::success();
1047   }
1048 };
1049 } // end anonymous namespace
1050 
1051 ThinBackend lto::createInProcessThinBackend(unsigned ParallelismLevel) {
1052   return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
1053              const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1054              AddStreamFn AddStream, NativeObjectCache Cache) {
1055     return llvm::make_unique<InProcessThinBackend>(
1056         Conf, CombinedIndex, ParallelismLevel, ModuleToDefinedGVSummaries,
1057         AddStream, Cache);
1058   };
1059 }
1060 
1061 // Given the original \p Path to an output file, replace any path
1062 // prefix matching \p OldPrefix with \p NewPrefix. Also, create the
1063 // resulting directory if it does not yet exist.
1064 std::string lto::getThinLTOOutputFile(const std::string &Path,
1065                                       const std::string &OldPrefix,
1066                                       const std::string &NewPrefix) {
1067   if (OldPrefix.empty() && NewPrefix.empty())
1068     return Path;
1069   SmallString<128> NewPath(Path);
1070   llvm::sys::path::replace_path_prefix(NewPath, OldPrefix, NewPrefix);
1071   StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
1072   if (!ParentPath.empty()) {
1073     // Make sure the new directory exists, creating it if necessary.
1074     if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
1075       llvm::errs() << "warning: could not create directory '" << ParentPath
1076                    << "': " << EC.message() << '\n';
1077   }
1078   return NewPath.str();
1079 }
1080 
1081 namespace {
1082 class WriteIndexesThinBackend : public ThinBackendProc {
1083   std::string OldPrefix, NewPrefix;
1084   bool ShouldEmitImportsFiles;
1085   raw_fd_ostream *LinkedObjectsFile;
1086   lto::IndexWriteCallback OnWrite;
1087 
1088 public:
1089   WriteIndexesThinBackend(
1090       Config &Conf, ModuleSummaryIndex &CombinedIndex,
1091       const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1092       std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
1093       raw_fd_ostream *LinkedObjectsFile, lto::IndexWriteCallback OnWrite)
1094       : ThinBackendProc(Conf, CombinedIndex, ModuleToDefinedGVSummaries),
1095         OldPrefix(OldPrefix), NewPrefix(NewPrefix),
1096         ShouldEmitImportsFiles(ShouldEmitImportsFiles),
1097         LinkedObjectsFile(LinkedObjectsFile), OnWrite(OnWrite) {}
1098 
1099   Error start(
1100       unsigned Task, BitcodeModule BM,
1101       const FunctionImporter::ImportMapTy &ImportList,
1102       const FunctionImporter::ExportSetTy &ExportList,
1103       const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1104       MapVector<StringRef, BitcodeModule> &ModuleMap) override {
1105     StringRef ModulePath = BM.getModuleIdentifier();
1106     std::string NewModulePath =
1107         getThinLTOOutputFile(ModulePath, OldPrefix, NewPrefix);
1108 
1109     if (LinkedObjectsFile)
1110       *LinkedObjectsFile << NewModulePath << '\n';
1111 
1112     std::map<std::string, GVSummaryMapTy> ModuleToSummariesForIndex;
1113     gatherImportedSummariesForModule(ModulePath, ModuleToDefinedGVSummaries,
1114                                      ImportList, ModuleToSummariesForIndex);
1115 
1116     std::error_code EC;
1117     raw_fd_ostream OS(NewModulePath + ".thinlto.bc", EC,
1118                       sys::fs::OpenFlags::F_None);
1119     if (EC)
1120       return errorCodeToError(EC);
1121     WriteIndexToFile(CombinedIndex, OS, &ModuleToSummariesForIndex);
1122 
1123     if (ShouldEmitImportsFiles) {
1124       EC = EmitImportsFiles(ModulePath, NewModulePath + ".imports",
1125                             ModuleToSummariesForIndex);
1126       if (EC)
1127         return errorCodeToError(EC);
1128     }
1129 
1130     if (OnWrite)
1131       OnWrite(ModulePath);
1132     return Error::success();
1133   }
1134 
1135   Error wait() override { return Error::success(); }
1136 };
1137 } // end anonymous namespace
1138 
1139 ThinBackend lto::createWriteIndexesThinBackend(
1140     std::string OldPrefix, std::string NewPrefix, bool ShouldEmitImportsFiles,
1141     raw_fd_ostream *LinkedObjectsFile, IndexWriteCallback OnWrite) {
1142   return [=](Config &Conf, ModuleSummaryIndex &CombinedIndex,
1143              const StringMap<GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1144              AddStreamFn AddStream, NativeObjectCache Cache) {
1145     return llvm::make_unique<WriteIndexesThinBackend>(
1146         Conf, CombinedIndex, ModuleToDefinedGVSummaries, OldPrefix, NewPrefix,
1147         ShouldEmitImportsFiles, LinkedObjectsFile, OnWrite);
1148   };
1149 }
1150 
1151 Error LTO::runThinLTO(AddStreamFn AddStream, NativeObjectCache Cache) {
1152   if (ThinLTO.ModuleMap.empty())
1153     return Error::success();
1154 
1155   if (Conf.CombinedIndexHook && !Conf.CombinedIndexHook(ThinLTO.CombinedIndex))
1156     return Error::success();
1157 
1158   // Collect for each module the list of function it defines (GUID ->
1159   // Summary).
1160   StringMap<GVSummaryMapTy>
1161       ModuleToDefinedGVSummaries(ThinLTO.ModuleMap.size());
1162   ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
1163       ModuleToDefinedGVSummaries);
1164   // Create entries for any modules that didn't have any GV summaries
1165   // (either they didn't have any GVs to start with, or we suppressed
1166   // generation of the summaries because they e.g. had inline assembly
1167   // uses that couldn't be promoted/renamed on export). This is so
1168   // InProcessThinBackend::start can still launch a backend thread, which
1169   // is passed the map of summaries for the module, without any special
1170   // handling for this case.
1171   for (auto &Mod : ThinLTO.ModuleMap)
1172     if (!ModuleToDefinedGVSummaries.count(Mod.first))
1173       ModuleToDefinedGVSummaries.try_emplace(Mod.first);
1174 
1175   // Synthesize entry counts for functions in the CombinedIndex.
1176   computeSyntheticCounts(ThinLTO.CombinedIndex);
1177 
1178   StringMap<FunctionImporter::ImportMapTy> ImportLists(
1179       ThinLTO.ModuleMap.size());
1180   StringMap<FunctionImporter::ExportSetTy> ExportLists(
1181       ThinLTO.ModuleMap.size());
1182   StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
1183 
1184   if (DumpThinCGSCCs)
1185     ThinLTO.CombinedIndex.dumpSCCs(outs());
1186 
1187   if (Conf.OptLevel > 0)
1188     ComputeCrossModuleImport(ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1189                              ImportLists, ExportLists);
1190 
1191   // Figure out which symbols need to be internalized. This also needs to happen
1192   // at -O0 because summary-based DCE is implemented using internalization, and
1193   // we must apply DCE consistently with the full LTO module in order to avoid
1194   // undefined references during the final link.
1195   std::set<GlobalValue::GUID> ExportedGUIDs;
1196   for (auto &Res : GlobalResolutions) {
1197     // If the symbol does not have external references or it is not prevailing,
1198     // then not need to mark it as exported from a ThinLTO partition.
1199     if (Res.second.Partition != GlobalResolution::External ||
1200         !Res.second.isPrevailingIRSymbol())
1201       continue;
1202     auto GUID = GlobalValue::getGUID(
1203         GlobalValue::dropLLVMManglingEscape(Res.second.IRName));
1204     // Mark exported unless index-based analysis determined it to be dead.
1205     if (ThinLTO.CombinedIndex.isGUIDLive(GUID))
1206       ExportedGUIDs.insert(GUID);
1207   }
1208 
1209   // Any functions referenced by the jump table in the regular LTO object must
1210   // be exported.
1211   for (auto &Def : ThinLTO.CombinedIndex.cfiFunctionDefs())
1212     ExportedGUIDs.insert(
1213         GlobalValue::getGUID(GlobalValue::dropLLVMManglingEscape(Def)));
1214 
1215   auto isExported = [&](StringRef ModuleIdentifier, GlobalValue::GUID GUID) {
1216     const auto &ExportList = ExportLists.find(ModuleIdentifier);
1217     return (ExportList != ExportLists.end() &&
1218             ExportList->second.count(GUID)) ||
1219            ExportedGUIDs.count(GUID);
1220   };
1221   thinLTOInternalizeAndPromoteInIndex(ThinLTO.CombinedIndex, isExported);
1222 
1223   auto isPrevailing = [&](GlobalValue::GUID GUID,
1224                           const GlobalValueSummary *S) {
1225     return ThinLTO.PrevailingModuleForGUID[GUID] == S->modulePath();
1226   };
1227   auto recordNewLinkage = [&](StringRef ModuleIdentifier,
1228                               GlobalValue::GUID GUID,
1229                               GlobalValue::LinkageTypes NewLinkage) {
1230     ResolvedODR[ModuleIdentifier][GUID] = NewLinkage;
1231   };
1232   thinLTOResolvePrevailingInIndex(ThinLTO.CombinedIndex, isPrevailing,
1233                                   recordNewLinkage);
1234 
1235   std::unique_ptr<ThinBackendProc> BackendProc =
1236       ThinLTO.Backend(Conf, ThinLTO.CombinedIndex, ModuleToDefinedGVSummaries,
1237                       AddStream, Cache);
1238 
1239   // Tasks 0 through ParallelCodeGenParallelismLevel-1 are reserved for combined
1240   // module and parallel code generation partitions.
1241   unsigned Task = RegularLTO.ParallelCodeGenParallelismLevel;
1242   for (auto &Mod : ThinLTO.ModuleMap) {
1243     if (Error E = BackendProc->start(Task, Mod.second, ImportLists[Mod.first],
1244                                      ExportLists[Mod.first],
1245                                      ResolvedODR[Mod.first], ThinLTO.ModuleMap))
1246       return E;
1247     ++Task;
1248   }
1249 
1250   return BackendProc->wait();
1251 }
1252 
1253 Expected<std::unique_ptr<ToolOutputFile>>
1254 lto::setupOptimizationRemarks(LLVMContext &Context,
1255                               StringRef LTORemarksFilename,
1256                               bool LTOPassRemarksWithHotness, int Count) {
1257   if (LTOPassRemarksWithHotness)
1258     Context.setDiagnosticsHotnessRequested(true);
1259   if (LTORemarksFilename.empty())
1260     return nullptr;
1261 
1262   std::string Filename = LTORemarksFilename;
1263   if (Count != -1)
1264     Filename += ".thin." + llvm::utostr(Count) + ".yaml";
1265 
1266   std::error_code EC;
1267   auto DiagnosticFile =
1268       llvm::make_unique<ToolOutputFile>(Filename, EC, sys::fs::F_None);
1269   if (EC)
1270     return errorCodeToError(EC);
1271   Context.setDiagnosticsOutputFile(
1272       llvm::make_unique<yaml::Output>(DiagnosticFile->os()));
1273   DiagnosticFile->keep();
1274   return std::move(DiagnosticFile);
1275 }
1276